@import url("//fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600,700,800,900");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #1f2933;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.5;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  margin-bottom: -5.625rem;
  padding: 2rem 1.5625rem;
}
.site-header__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  display: block;
  position: relative;
  z-index: 2;
}
.site-header__logo img {
  display: block;
  height: auto;
}
.site-header__menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(6, 39, 70, 0.18);
  background-color: #FFFFFF;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3125rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.site-header__menu-toggle span {
  width: 1.25rem;
  height: 0.125rem;
  background-color: #062746;
}
.site-header__menu-toggle[aria-expanded=true] span:first-child {
  transform: translateY(0.4375rem) rotate(45deg);
}
.site-header__menu-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.site-header__menu-toggle[aria-expanded=true] span:last-child {
  transform: translateY(-0.4375rem) rotate(-45deg);
}
.site-header__nav .menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav .menu li {
  margin: 0;
}
.site-header__nav .menu .active.menu-item.current-menu-item a {
  border-bottom: 2px solid #4E96A6;
}
.site-header__nav .menu a {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  padding: 0.625rem 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #062746;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 47.9375rem) {
  .site-header {
    padding: 1.5rem 1.5625rem;
  }
  .site-header__container {
    position: relative;
    gap: 1.2rem;
  }
  .site-header__menu-toggle {
    display: flex;
  }
  .site-header__nav {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    display: none;
    padding: 1.5rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(6, 39, 70, 0.12);
    border-radius: 1.5rem 0 1.5rem 0;
    box-shadow: 0 1rem 2.5rem rgba(6, 39, 70, 0.12);
  }
  .site-header__nav .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .site-header.is-menu-open .site-header__nav {
    display: block;
  }
}

.site-footer {
  background-color: #062746;
  padding: 3.5rem 1.5625rem;
}
.site-footer__container {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11rem;
}
.site-footer__logo img {
  display: block;
  height: auto;
}
.site-footer__content {
  max-width: 40rem;
}
.site-footer__content p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  color: #FFFFFF;
}
.site-footer__content a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 47.9375rem) {
  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.error-page {
  min-height: 42rem;
  padding: 13rem 1.5625rem 7rem;
  background-color: #f4f9fa;
  display: flex;
  align-items: center;
}
.error-page__container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}
.error-page__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4E96A6;
}
.error-page__title {
  max-width: 42rem;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 3.25rem;
  line-height: 1.12;
  font-weight: 700;
  color: #062746;
}
.error-page__text {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #3B475C;
}
.error-page__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3E5D79;
  text-decoration: none;
}
.error-page__link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.375rem solid #3E5D79;
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
}
@media (max-width: 61.9375rem) {
  .error-page {
    min-height: 36rem;
    padding-top: 10rem;
  }
  .error-page__title {
    font-size: 2.375rem;
  }
}
@media (max-width: 47.9375rem) {
  .error-page {
    min-height: 32rem;
    padding: 8rem 1.5625rem 5rem;
  }
  .error-page__eyebrow {
    font-size: 1rem;
  }
  .error-page__title {
    font-size: 2.125rem;
  }
  .error-page__text {
    font-size: 1rem;
  }
}

.hero_newtitle {
  max-width: 800px;
  color: #3E5D79;
  text-shadow: 0 4px 64px #FFF;
  font-family: Roboto;
  font-size: 52px;
  font-style: normal;
  font-weight: 300;
  line-height: 61px; /* 190.625% */
}

@media (max-width: 768px) {
  .hero_newtitle {
    font-size: 32px;
    line-height: 40px;
  }
}
.hero {
  min-height: 100vh;
  padding: 8rem 1.5625rem 5rem;
  background-size: cover;
  background-position: 0 -50px;
  background-repeat: no-repeat;
}
.hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.hero__content {
  max-width: 60rem;
}
.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #3E5D79;
}
.hero__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 3.25rem;
  line-height: 1.12;
  font-weight: 700;
  color: #062746;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3.625rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3E5D79;
  text-decoration: none;
}
.hero__news {
  max-width: 48.4375rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid #062746;
}
.hero__news p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 500;
  color: #3E5D79;
  letter-spacing: 3%;
  max-width: 43rem;
}
.hero__news strong {
  text-transform: uppercase;
  color: #062746;
}
.hero__news a {
  color: #3E5D79;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 74.9375rem) {
  .hero__title {
    font-size: 2.75rem;
  }
}
@media (max-width: 61.9375rem) {
  .hero {
    min-height: 53.125rem;
  }
  .hero__content {
    max-width: 40.625rem;
  }
  .hero__eyebrow {
    font-size: 1.5rem;
  }
  .hero__title {
    font-size: 2.375rem;
  }
}
@media (max-width: 47.9375rem) {
  .hero {
    min-height: 45rem;
    padding-top: 8.125rem;
    background-position: 60% top;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__eyebrow {
    font-size: 1.25rem;
  }
  .hero__title {
    font-size: 2.125rem;
  }
  .hero__title br {
    display: none;
  }
  .hero__cta {
    margin-top: 2.5rem;
  }
  .hero__news {
    margin-top: 2.25rem;
    padding-top: 2rem;
  }
}

.intro-card {
  position: relative;
  z-index: 2;
  margin-top: -18rem;
  padding: 0 0 1.5rem;
  display: flex;
  justify-content: flex-end;
}
.intro-card__container {
  max-width: 75rem;
  padding: 5rem 5rem 4.5rem;
  background-color: #fff;
  border-radius: 5rem 0 0 0;
  display: grid;
  grid-template-columns: 23.125rem 1fr;
  gap: 3.5rem;
  align-items: center;
}
.intro-card__media {
  position: relative;
}
.intro-card__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2.5rem 0 2.5rem 0;
}
.intro-card__content {
  max-width: 39rem;
}
.intro-card__content h2 {
  margin: 0 0 1.25rem;
  font-family: "Roboto", sans-serif;
  font-size: 2.375rem;
  line-height: 1.25;
  font-weight: 300;
  color: #4E96A6;
}
.intro-card__content p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #3B475C;
}
@media (max-width: 61.9375rem) {
  .intro-card {
    margin-top: -10rem;
  }
  .intro-card__container {
    padding: 4rem 3rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .intro-card__media {
    max-width: 23.125rem;
  }
  .intro-card__content h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .intro-card {
    margin-top: -6rem;
    padding-bottom: 4rem;
  }
  .intro-card__container {
    padding: 3rem 1.5625rem;
    border-radius: 3rem 0 0 0;
  }
  .intro-card__content h2 {
    font-size: 1.625rem;
  }
  .intro-card__content h2 br {
    display: none;
  }
  .intro-card__content p {
    font-size: 0.9375rem;
  }
}

.science {
  background-color: #062746;
  padding: 6rem 1.5625rem;
}
.science__container {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 28rem;
  gap: 5rem;
  align-items: center;
}
.science__content {
  max-width: 40rem;
}
.science__eyebrow {
  margin: 0 0 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.science__title {
  margin: 0 0 1.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 400;
  color: #A0E1F9;
  max-width: 37.5rem;
}
.science p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #FFFFFF;
}
.science p strong {
  font-weight: 700;
}
.science__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2.5rem 0 2.5rem 0;
}
@media (max-width: 61.9375rem) {
  .science__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .science__title {
    font-size: 2.25rem;
  }
  .science__media {
    max-width: 28rem;
  }
}
@media (max-width: 47.9375rem) {
  .science {
    padding: 4rem 1.5625rem;
  }
  .science__title {
    font-size: 2rem;
  }
  .science__text {
    font-size: 0.9375rem;
  }
}

.pipeline {
  padding: 6rem 1.5625rem;
  background-image: url("/wp-content/uploads/2026/05/FAQ-BG.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pipeline__container {
  max-width: 75rem;
  margin: 0 auto;
}
.pipeline__header {
  max-width: 58rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.pipeline__header p {
  margin: 0 0 0.75rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  text-transform: uppercase;
  color: #4E96A6;
}
.pipeline__header h2 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 2.375rem;
  line-height: 1.3;
  font-weight: 400;
  color: #062746;
}
.pipeline__item {
  background-color: #FFFFFF;
  border-radius: 1.5rem 0 1.5rem 0;
  overflow: hidden;
}
.pipeline__item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.pipeline__item.is-open .pipeline__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.pipeline__item.is-open .pipeline__content {
  display: block;
}
.pipeline__button {
  width: 100%;
  padding: 2rem 2.5rem;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  cursor: pointer;
}
.pipeline__button h3:first-child {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #4E96A6;
  margin: 0;
}
.pipeline__icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
}
.pipeline__icon::before, .pipeline__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1px;
  background-color: #4E96A6;
  transform: translate(-50%, -50%);
}
.pipeline__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.pipeline__content {
  display: none;
  padding: 0 2.5rem 2rem;
}
.pipeline__content p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #3B475C;
}
@media (max-width: 47.9375rem) {
  .pipeline {
    padding: 4rem 1.5625rem;
  }
  .pipeline__header {
    margin-bottom: 3rem;
  }
  .pipeline__header h2 {
    font-size: 1.875rem;
  }
  .pipeline__button {
    padding: 1.5rem;
  }
  .pipeline__button h3:first-child {
    font-size: 1.125rem;
  }
  .pipeline__content {
    padding: 0 1.5rem 1.5rem;
  }
}

.pipeline-table {
  background-color: #f4f9fa;
  padding: 7rem 1.5625rem 6rem;
}
.pipeline-table__container {
  max-width: 75rem;
  margin: 0 auto;
}
.pipeline-table__header {
  margin-bottom: 4rem;
  text-align: center;
}
.pipeline-table__header p {
  margin: 0 0 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  text-transform: uppercase;
  color: #4E96A6;
}
.pipeline-table__header h2 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 2.375rem;
  line-height: 1.3;
  font-weight: 400;
  color: #062746;
}
.pipeline-table__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  color: #3B475C;
}
.pipeline-table__table th {
  padding: 0 1rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  color: #3B475C;
}
.pipeline-table__table td {
  height: 7rem;
  padding: 1.375rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(62, 93, 121, 0.12);
  font-size: 1.125rem;
  line-height: 1.15;
}
.pipeline-table__table th:nth-child(1),
.pipeline-table__table td:nth-child(1) {
  width: 18%;
}
.pipeline-table__table th:nth-child(2),
.pipeline-table__table td:nth-child(2) {
  width: 17%;
}
.pipeline-table__table th:nth-child(3),
.pipeline-table__table td:nth-child(3) {
  width: 17%;
}
.pipeline-table__table th:nth-child(n+4),
.pipeline-table__table td:nth-child(n+4) {
  width: 12%;
}
.pipeline-table__progress-cell {
  position: relative;
  padding: 0 0 0 0 !important;
  background-color: #FFFFFF;
  background-image: linear-gradient(to right, transparent 0%, transparent 24.8%, rgba(62, 93, 121, 0.12) 24.8%, rgba(62, 93, 121, 0.12) 25%, transparent 25%, transparent 49.8%, rgba(62, 93, 121, 0.12) 49.8%, rgba(62, 93, 121, 0.12) 50%, transparent 50%, transparent 74.8%, rgba(62, 93, 121, 0.12) 74.8%, rgba(62, 93, 121, 0.12) 75%, transparent 75%, transparent 100%);
}
.pipeline-table__bar {
  display: block;
  height: 1.75rem;
  border-radius: 0 2rem 2rem 0;
  background: linear-gradient(90deg, #A0E1F9 0%, #1d6fb3 100%);
}
.pipeline-table__bar--large {
  width: 68%;
}
.pipeline-table__bar--medium {
  width: 42%;
}
.pipeline-table__bar--small {
  width: 36%;
}
.pipeline-table .pipeline-mobile {
  display: none;
}
@media (max-width: 64rem) {
  .pipeline-table {
    padding: 4rem 1.5625rem;
  }
  .pipeline-table__scroll {
    display: none;
  }
  .pipeline-table__header {
    margin-bottom: 3rem;
  }
  .pipeline-table__header h2 {
    font-size: 1.875rem;
  }
  .pipeline-table__header h2 br {
    display: none;
  }
  .pipeline-table .pipeline-mobile {
    display: grid;
    gap: 1rem;
  }
  .pipeline-table .pipeline-mobile__card {
    background-color: #FFFFFF;
  }
  .pipeline-table .pipeline-mobile__field {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(62, 93, 121, 0.08);
  }
  .pipeline-table .pipeline-mobile__field p {
    font-family: "Inter", sans-serif;
    color: #3B475C;
  }
  .pipeline-table .pipeline-mobile__field h3,
  .pipeline-table .pipeline-mobile__field div {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.15;
    font-weight: 400;
    color: #3B475C;
  }
  .pipeline-table .pipeline-mobile__field h3 {
    font-weight: 400;
  }
}
@media (max-width: 64rem) and (max-width: 22.5rem) {
  .pipeline-table .pipeline-mobile__field {
    padding: 1.25rem 0.5rem;
  }
}
@media (max-width: 64rem) {
  .pipeline-table .pipeline-mobile__progress {
    background-color: #FFFFFF;
  }
  .pipeline-table .pipeline-mobile__phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .pipeline-table .pipeline-mobile__phases span {
    min-height: 2.625rem;
    padding: 0.875rem 0.25rem 0.625rem 1rem;
    border-right: 1px solid rgba(62, 93, 121, 0.08);
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    color: #3B475C;
  }
  .pipeline-table .pipeline-mobile__phases span:last-child {
    border-right: 0;
  }
}
@media (max-width: 64rem) and (max-width: 22.5rem) {
  .pipeline-table .pipeline-mobile__phases span {
    padding: 0.875rem 0.25rem 0.625rem 0.5rem;
  }
}
@media (max-width: 64rem) {
  .pipeline-table .pipeline-mobile__track {
    min-height: 3.75rem;
    padding-top: 1.125rem;
    background-image: linear-gradient(to right, transparent 0%, transparent 24.8%, rgba(62, 93, 121, 0.08) 24.8%, rgba(62, 93, 121, 0.08) 25%, transparent 25%, transparent 49.8%, rgba(62, 93, 121, 0.08) 49.8%, rgba(62, 93, 121, 0.08) 50%, transparent 50%, transparent 74.8%, rgba(62, 93, 121, 0.08) 74.8%, rgba(62, 93, 121, 0.08) 75%, transparent 75%, transparent 100%);
  }
  .pipeline-table .pipeline-mobile__bar {
    display: block;
    height: 1.75rem;
    border-radius: 0 2rem 2rem 0;
    background: linear-gradient(90deg, #A0E1F9 0%, #1d6fb3 100%);
  }
  .pipeline-table .pipeline-mobile__bar--large {
    width: 68%;
  }
  .pipeline-table .pipeline-mobile__bar--medium {
    width: 42%;
  }
  .pipeline-table .pipeline-mobile__bar--small {
    width: 36%;
  }
}

.careers-cta {
  background-color: #4E96A6;
  padding: 7rem 1.5625rem;
}
.careers-cta__container {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 7rem;
  color: #FFFFFF;
}
.careers-cta h2 {
  margin: 0 0 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 3.188rem;
  line-height: 1.15;
  font-weight: 400;
}
.careers-cta__left p {
  max-width: 26rem;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
}
.careers-cta__right {
  max-width: 37rem;
}
.careers-cta__right p {
  margin: 0 0 2rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 1.9;
}
.careers-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
}
.careers-cta__link::after {
  content: "";
  width: 1px;
  height: 1.5rem;
  background-color: #FFFFFF;
}
.careers-cta__link::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.375rem solid #FFFFFF;
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  order: 3;
}
@media (max-width: 61.9375rem) {
  .careers-cta__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .careers-cta h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .careers-cta {
    padding: 4rem 1.5625rem;
  }
  .careers-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 74.9375rem) {
  .intro-card__content h2,
  .science__title,
  .pipeline__header h2,
  .pipeline-table__header h2,
  .careers-cta h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 61.9375rem) {
  .intro-card__content h2,
  .science__title,
  .careers-cta h2,
  .pipeline__header h2,
  .pipeline-table__header h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .intro-card__content h2 {
    font-size: 1.625rem;
  }
  .science__title,
  .careers-cta h2 {
    font-size: 2rem;
  }
  .pipeline__header h2,
  .pipeline-table__header h2 {
    font-size: 1.875rem;
  }
}
.team-hero {
  min-height: 40.625rem;
  padding: 10.75rem 1.5625rem 5rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.team-hero__container {
  max-width: 75rem;
  margin: 0 auto;
}
.team-hero__title {
  max-width: 48rem;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 3.75rem;
  line-height: 1.2;
  font-weight: 700;
  color: #3E5D79;
}
@media (max-width: 74.9375rem) {
  .team-hero__title {
    font-size: 2.75rem;
  }
}
@media (max-width: 61.9375rem) {
  .team-hero {
    min-height: 34rem;
    padding-top: 9rem;
  }
  .team-hero__title {
    font-size: 2.375rem;
  }
}
@media (max-width: 47.9375rem) {
  .team-hero {
    min-height: 30rem;
    padding-top: 8rem;
    background-position: 60% top;
  }
  .team-hero__title {
    font-size: 2.125rem;
  }
}

.team-intro-card {
  margin-top: -12.813rem;
}
@media (max-width: 61.9375rem) {
  .team-intro-card .intro-card__container {
    padding: 4rem 3rem 0rem;
  }
}
@media (max-width: 25rem) {
  .team-intro-card {
    margin-top: -8rem;
  }
}

.team-members {
  padding: 1.5rem 1.5625rem 7rem;
  background-color: #FFFFFF;
}
.team-members__container {
  max-width: 64rem;
  margin: 0 auto;
}
.team-members__heading {
  margin: 0 0 2.75rem;
  font-family: "Roboto", sans-serif;
  font-size: 3.188rem;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  color: #4E96A6;
}
.team-members__heading--advisors {
  margin-top: 5rem;
}
.team-members__grid {
  display: grid;
  gap: 4rem;
  justify-content: center;
}
.team-members__grid--leadership {
  grid-template-columns: repeat(3, 16.813rem);
}
.team-members__grid--advisors {
  grid-template-columns: repeat(2, 16.813rem);
}

.team-member__image {
  width: 16.813rem;
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
  position: relative;
}
.team-member__image img {
  width: 100%;
  height: 100%;
}
.team-member__name {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.375rem;
  line-height: 1.15;
  font-weight: 600;
  color: #0E59A0;
}
.team-member__role {
  margin: 0.375rem 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.813rem;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
  color: #062746;
}

@media (max-width: 61.9375rem) {
  .team-members__heading {
    margin: 2rem 0 2rem;
    font-size: 2.25rem;
  }
  .team-members__grid--leadership {
    grid-template-columns: repeat(2, 18rem);
  }
}
@media (max-width: 47.9375rem) {
  .team-member__image {
    width: 14rem;
  }
  .team-members {
    padding: 0 1.5625rem 4rem;
  }
  .team-members__heading {
    margin: 3rem 0 2rem;
    font-size: 2rem;
  }
  .team-members__grid--leadership {
    grid-template-columns: repeat(1, 15rem);
  }
  .team-members__grid--advisors {
    grid-template-columns: repeat(1, 15rem);
  }
}

/*# sourceMappingURL=main.css.map */
