@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body,
html {
  background-color: var(--color-white);
  margin: 0;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

blockquote {
  padding: 0;
  margin: 0;
}

p {
  margin: 0 0 15px;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

/* vars */
:root {
  --font-body: "Roboto", sans-serif;
  --color-black: #000;
  --color-dark: #1c1c1c;
  --color-gray: #707070;
  --color-gray-light: #eee;
  --color-white: #fff;
  --color-pitt-royal: #003594;
  --color-sky: #DBEEFF;
  --color-pitt-gold: #ffb81c;
  --color-blue: #66B2E3;
  --color-new-sky: #DBEEFF;
  --color-yellow-dark: #A96A2F;
  --border: 6px solid var(--color-blue);
  --before-opacity: 1;
  --hero-overlay-height: 1200px;
  --hero-overlay-height-sm: 600px;
  --s-sm: 20px;
  --s-md: 40px;
  --s-lg: 60px;
  --s-xl: 80px;
  --s-xxl: 100px;
  --max-width-container: 1460px;
}

/* typography */
body {
  font-size: 16px;
  line-height: 25px;
  font-family: var(--font-body);
  color: var(--color-pitt-royal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* text */
.p1, .block-stats .card p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 130%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p1, .block-stats .card p {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 130%;
  }
}

.p1-list {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 32px;
  letter-spacing: 0.24px;
}
@media (min-width: 768px) {
  .p1-list {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 38px;
  }
}

/* headings */
.heading-2 {
  font-size: 55px;
  font-size: 3.4375rem;
  line-height: 100%;
  font-weight: 800;
}
@media (min-width: 768px) {
  .heading-2 {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 100%;
  }
}

.heading-3 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 100%;
  font-weight: 800;
}
@media (min-width: 768px) {
  .heading-3 {
    font-size: 65px;
    font-size: 4.0625rem;
    line-height: 100%;
  }
}

.heading-5 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 100%;
  font-weight: 500;
}
@media (min-width: 768px) {
  .heading-5 {
    font-size: 35px;
    font-size: 2.1875rem;
    line-height: 100%;
  }
}

.stat {
  font-size: 55px;
  font-size: 3.4375rem;
  line-height: 100%;
  font-weight: 800;
}
@media all and (min-width: 1200px) {
  .stat {
    font-size: 75px;
    font-size: 4.6875rem;
    line-height: 100%;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 100%;
  font-weight: 800;
  color: var(--color-pitt-gold);
  text-transform: uppercase;
  letter-spacing: 0.72px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .eyebrow {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 100%;
  }
}

.button {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.72px;
  color: var(--color-pitt-royal);
  font-weight: 800;
  white-space: nowrap;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--color-pitt-royal);
  position: relative;
  transition: all 0.2s ease-in;
}
@media (min-width: 768px) {
  .button {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 100%;
  }
}
@media (min-width: 960px) {
  .button {
    padding: 16px 18px 15px;
  }
  .button:hover {
    background-color: var(--color-pitt-gold);
  }
}
.button::after {
  content: "";
  display: inline-block;
  background: url(../images/arrow.svg);
  background-size: 17px;
  width: 17px;
  height: 17px;
  margin: 0 0 -2px 10px;
}

.button-solid {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.72px;
  background-color: var(--color-pitt-royal);
  color: var(--color-white);
  font-weight: 800;
  white-space: nowrap;
  padding: 20px;
  position: relative;
  transition: all 0.2s ease-in;
}
@media (min-width: 768px) {
  .button-solid {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 100%;
  }
}
.button-solid:hover {
  background-color: var(--color-sky);
}
.button-solid:hover:hover {
  background-color: var(--color-pitt-gold);
  color: var(--color-pitt-royal);
}
.button-solid-gold {
  background-color: var(--color-pitt-gold);
  color: var(--color-pitt-royal);
}
.button-solid-gold:hover {
  background-color: var(--color-sky) !important;
}

.container, .block-hero-inner, .header-inner {
  max-width: var(--max-width-container);
  margin-inline: auto;
  padding: 0 30px;
}
@media (min-width: 960px) {
  .container, .block-hero-inner, .header-inner {
    padding-left: 70px;
    padding-right: 70px;
  }
}

.wrap {
  max-width: 100%;
  overflow-x: hidden;
}

.lity {
  background: rgba(0, 0, 0, 0.7);
}

picture {
  display: block;
}

@media (max-width: 959px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

.block-cta {
  background-color: var(--color-sky);
  padding: 90px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .block-cta {
    padding-top: 152px;
    padding-bottom: 166px;
  }
}
.block-cta .container, .block-cta .block-hero-inner, .block-cta .header-inner {
  max-width: 1110px;
}
.block-cta .links {
  margin: 60px auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  max-width: 910px;
}
.block-cta .links li {
  width: 100%;
  text-align: start;
}
@media (min-width: 768px) {
  .block-cta .links li {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .block-cta .links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .block-cta .links li {
    width: auto;
  }
}
.block-cta .links .button {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .block-cta .links .button {
    display: inline-block;
  }
}
@media (max-width: 666px) {
  .block-cta .links .button {
    white-space: normal;
    padding-right: 40px;
  }
  .block-cta .links .button::after {
    position: absolute;
    bottom: 13px;
    right: 0;
  }
}
.block-cta .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .block-cta .buttons {
    flex-direction: row;
    gap: 20px;
  }
}
.block-cta .buttons .button-solid {
  min-width: 150px;
}
@media (max-width: 666px) {
  .block-cta .buttons .button-solid {
    width: 100%;
    text-align: center;
    display: block;
    white-space: normal;
  }
}

.footer {
  background: var(--color-pitt-royal) url(../images/bg-footer-sm.jpg) no-repeat bottom 20% center;
  background-size: cover;
  color: var(--color-white);
  text-align: center;
  padding: 85px 0 150px;
}
@supports (background-image: url("image.webp")) {
  .footer {
    background: var(--color-pitt-royal) url(../images/bg-footer-sm.webp) no-repeat bottom 20% center;
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .footer {
    background: var(--color-pitt-royal) url(../images/bg-footer.jpg) no-repeat center;
    padding-top: 95px;
    padding-bottom: 95px;
  }
}
@supports (background-image: url("image.webp")) {
  @media (min-width: 768px) {
    .footer {
      background: var(--color-pitt-royal) url(../images/bg-footer.webp) no-repeat center;
      background-size: cover;
    }
  }
}
.footer .social {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
}
@media (min-width: 768px) {
  .footer .social {
    margin-top: 36px;
  }
}

.header {
  background-color: var(--color-white);
  height: 75px;
}
@media (min-width: 768px) {
  .header {
    height: 72px;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .logo {
  width: 234px;
}
@media (min-width: 768px) {
  .header .logo {
    width: auto;
  }
}

.block-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.block-hero::before {
  background: var(--color-white) url(../images/bg.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  opacity: var(--before-opacity, 1);
  transition: opacity 0.3s ease-out;
}
@supports (background-image: url("image.webp")) {
  .block-hero::before {
    background: var(--color-white) url(../images/bg.webp) no-repeat center;
    background-size: cover;
  }
}
.block-hero-inner {
  margin-bottom: -120px;
}
.block-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-pitt-gold);
  z-index: 3;
  opacity: 1;
}
.block-hero .hero-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--hero-overlay-height-sm, 600px);
  background: url(../images/orange-texture.jpg) no-repeat top;
  background-size: cover;
  display: block;
  z-index: 3;
}
@supports (background-image: url("image.webp")) {
  .block-hero .hero-overlay::after {
    background: url(../images/orange-texture.webp) no-repeat top;
    background-size: cover;
  }
}
@media (min-width: 960px) {
  .block-hero .hero-overlay::after {
    height: var(--hero-overlay-height, 1200px);
  }
}
.block-hero-inner {
  position: relative;
  height: 100vh;
}
.block-hero h1 {
  color: var(--color-white);
  position: absolute;
  top: 10%;
  left: 30px;
  z-index: 3;
  margin-bottom: -500px;
  max-width: 80%;
}
@media (min-width: 960px) {
  .block-hero h1 {
    top: 60%;
    left: 70px;
  }
}
.block-hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}
@media (min-width: 960px) {
  .block-hero h1 span {
    transform: translateY(180px);
  }
}
.block-hero .image {
  z-index: 1;
  position: absolute;
}
.block-hero .b {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 100%;
  z-index: 5;
  max-width: 600px;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  display: none;
}
@media (min-width: 960px) {
  .block-hero .b {
    left: auto;
    right: 72px;
  }
}
@media all and (min-width: 960px) and (max-width: 1100px) {
  .block-hero .b {
    max-width: 35%;
    right: 3%;
  }
}
@media all and (min-width: 1100px) and (max-width: 1300px) {
  .block-hero .b {
    max-width: 42%;
    right: 5%;
  }
}
.block-hero .c {
  width: 100%;
  height: 100vh;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}
.block-hero .c h2 {
  margin: 0 auto 100px;
  color: var(--color-white);
  max-width: 88%;
}
@media (min-width: 960px) {
  .block-hero .c h2 {
    max-width: 970px;
  }
}
.block-hero .c p {
  font-weight: 800;
  margin: 0 auto;
  max-width: 970px;
}
.block-hero .c ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 10px;
  max-width: 840px;
  font-weight: 800;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .block-hero .c ul {
    gap: 2px 20px;
  }
}
.block-hero .c ul li::before {
  content: "+";
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--color-pitt-gold);
}
@media (min-width: 960px) {
  .block-hero .c ul li::before {
    margin-right: 20px;
  }
}
.block-hero .c ul li:first-child::before {
  display: none;
}

.block-links {
  background-color: var(--color-pitt-royal);
  color: var(--color-white);
  padding: 58px 0 90px;
}
@media (min-width: 768px) {
  .block-links {
    padding-top: 152px;
    padding-bottom: 122px;
  }
}
.block-links .heading-3 {
  color: var(--color-white);
}
.block-links .cards-wrapper {
  position: relative;
}
@media all and (min-width: 768px) and (max-width: 1279px) {
  .block-links .cards-wrapper::before, .block-links .cards-wrapper::after {
    content: "";
    position: absolute;
    top: 80px;
    width: 40px;
    height: calc(100% - 80px);
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    display: block;
    z-index: 3;
  }
  .block-links .cards-wrapper::before {
    opacity: 0;
  }
  .block-links .cards-wrapper.shade-before::before {
    left: 0;
    background: linear-gradient(90deg, #003594 0%, rgba(0, 53, 148, 0.5) 40%, rgba(0, 53, 148, 0) 85%);
    opacity: 1;
    z-index: 3;
  }
  .block-links .cards-wrapper.shade-after::after {
    right: 0;
    background: linear-gradient(-90deg, #003594 0%, rgba(0, 53, 148, 0.5) 40%, rgba(0, 53, 148, 0) 85%);
    opacity: 1;
  }
}
.block-links .cards-scroller {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.block-links .cards-scroller::-webkit-scrollbar {
  display: none;
}
.block-links .custom-scrollbar {
  display: none;
}
@media all and (min-width: 768px) and (max-width: 1279px) {
  .block-links .custom-scrollbar {
    display: block;
    position: relative;
    height: 6px;
    background-color: #999;
    margin-top: var(--s-md);
    border-radius: 15px;
    margin-inline: auto;
    max-width: 416px;
    z-index: 2;
  }
  .block-links .custom-scrollbar .scrollbar-thumb {
    position: absolute;
    height: 100%;
    width: 40%;
    background-color: var(--color-pitt-gold);
    border-radius: 15px;
  }
}
.block-links .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 54px;
}
@media all and (min-width: 768px) {
  .block-links .cards {
    min-width: 1100px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
    gap: 46px;
  }
}
.block-links .card {
  border-radius: 33px;
  border: 3px solid var(--color-pitt-gold);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  transition: all 0.2s ease-in;
  min-height: 500px;
}
@media (min-width: 768px) {
  .block-links .card {
    min-height: 625px;
  }
}
.block-links .card:hover {
  border-color: var(--color-sky);
}
.block-links .card:hover .eyebrow {
  color: var(--color-sky);
}
.block-links .card:hover .button-solid {
  background-color: var(--color-sky);
}
.block-links .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(0deg, rgb(0, 53, 148) 30%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.block-links .card-text {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 24px 24px 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .block-links .card-text {
    padding: 34px 34px 0;
  }
}
.block-links .card-text .eyebrow {
  text-align: start;
  margin-left: 0;
  display: block;
  transition: color 0.2s ease-in;
}
.block-links .card-text h3 {
  color: var(--color-white);
  text-align: start;
}
.block-links .card-text .button-solid {
  display: inline-block;
  margin: 34px auto 0;
  padding: 12px 40px 11px;
}
.block-links .card img {
  width: 100%;
  display: block;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.block-stats {
  background-color: var(--color-sky);
  color: var(--color-pitt-royal);
  padding: 40px 0 45px;
}
@media (min-width: 768px) {
  .block-stats {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 47px;
    padding-bottom: 0;
  }
}
.block-stats .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .block-stats .cards {
    padding-top: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .block-stats .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.block-stats .card {
  border-bottom: 1px solid var(--color-blue);
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) {
  .block-stats .card {
    border-right: 1px solid var(--color-blue);
    border-bottom: 0;
  }
}
.block-stats .card:last-child {
  border-right: 0;
  border-bottom: 0;
}
.block-stats .card .stat {
  margin-bottom: 15px;
  padding-right: 40px;
}
@media (min-width: 960px) {
  .block-stats .card .stat {
    margin-top: -20px;
    margin-bottom: 100px;
  }
}
.block-stats .card p {
  font-weight: 500;
  margin: auto 0 32px;
  padding-right: 40px;
}

.block-stories {
  padding: 50px 0 0;
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .block-stories {
    padding: 90px 30px;
  }
}
@media (min-width: 960px) {
  .block-stories {
    padding-left: 0;
    padding-right: 0;
  }
}
.block-stories .story {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin: 0 auto 150px;
}
@media (max-width: 666px) {
  .block-stories .story {
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .block-stories .story {
    grid-template-columns: 50% 50%;
  }
  .block-stories .story:last-child {
    margin-bottom: 0;
  }
}
.block-stories .story-image {
  position: relative;
  order: 1;
}
.block-stories .story-image img {
  position: relative;
  z-index: 2;
}
.block-stories .story-image .bg {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 1;
}
.block-stories .story-text {
  order: 2;
  position: relative;
}
.block-stories .story-text h2 {
  position: relative;
  z-index: 3;
}
.block-stories .story-text .modal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: -30px;
  display: none;
  background-color: var(--color-new-sky);
  z-index: 4;
}
@media (min-width: 768px) {
  .block-stories .story-text .modal {
    left: 0;
    right: auto;
    width: 540px;
  }
}
.block-stories .story-text .modal p {
  padding: 50px;
}
.block-stories .story-text .modal .close {
  margin-top: 10px;
  background-color: var(--color-pitt-royal);
  padding: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .block-stories .story-text .modal .close {
    padding: 43px;
  }
}
@media (min-width: 768px) {
  .block-stories .story:nth-child(2) .story-image {
    order: 2;
  }
  .block-stories .story:nth-child(2) .story-text {
    order: 1;
  }
}
.block-stories .story .open {
  margin: 30px -30px 0 0;
  background-color: var(--color-pitt-royal);
  padding: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in;
}
.block-stories .story .open:hover {
  background-color: var(--color-pitt-gold);
}
@media (min-width: 768px) {
  .block-stories .story .open {
    padding: 43px;
    margin: 63px 0 0;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}

[data-aos=fade-up] {
  transform: translate3d(0, 20px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-20px, 0, 0);
}

[data-aos=zoom-in] {
  transform: scale(0.9);
}