@font-face {
  font-family: "Montserrat-Default";
  src: url("../fonts/Montserrat.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "avenir-lt-light";
  src: url("../fonts/avenir-lt-light.woff2") format("woff2");
}
@font-face {
  font-family: "mandioca";
  src: url("../fonts/mandioca.latin.woff2") format("woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  line-height: 1.6;
  color: rgb(40, 26, 57);
  overflow-x: hidden;
  background-color: #f6f6f6;
}
h1,
h2,
h3,
h4 {
  line-height: 1.2;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container,
.careers-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-science {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.container-pipeline {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.container-about {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(14, 26, 80);
  z-index: 1000;
  transition: all 0.3s ease;
  height: 71px;
  padding: 8px 0 0;
  opacity: 0.95;
}
.navbar.scrolled {
  background: #0a1c3e;
}
.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img {
  height: 50px;
  width: 162px;
  margin-top: 4px;
}
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-weight: 400;
  text-decoration: none;
  color: #f6f6f6;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  color: #f6f6f6;
}
.nav-link:hover {
  color: #f6f6f6;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f6f6f6;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
.bar {
  width: 25px;
  height: 3px;
  background: #f6f6f6;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}
.contact-section {
  padding: 70px 0 40px;
  background: rgb(15, 45, 90);
  color: #f6f6f6;
}
.contact-title {
  font-size: 20px;
  letter-spacing: 7px;
  text-align: left;
  color: #f6f6f6;
  margin-bottom: 10px;
  font-family: "Montserrat-Medium";
}
.contact-email {
  text-align: left;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.contact-email-item {
  display: flex;
  align-items: center;
}
.contact-email-item img {
  width: 22px;
  height: 22px;
}
.contact-email-item span {
  margin-right: 20px;
}
.contact-email a {
  color: #f6f6f6;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
}
.office {
  background: transparent;
  padding: 0;
}
.office-title {
  font-size: 18px;
  color: #f6f6f6;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-family: "Montserrat-Medium", "Helvetica Neue";
}
.office-subtitle {
  margin-left: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #f6f6f6;
  margin-bottom: 6px;
}
.office-address {
  margin-left: 15px;
  color: #f6f6f6;
  line-height: 28px;
  font-size: 16px;
}
.footer {
  background: rgb(15, 45, 90);
  color: #f6f6f6;
  padding-bottom: 20px;
  text-align: center;
}
.footer-text {
  font-size: 16px;
  color: #f6f6f6;
}
.footer-legal {
  text-align: center;
}
.legal-text {
  font-size: 14px;
  color: #f6f6f6;
  opacity: 0.8;
}
.read-more-btn {
  background: #2061b7;
  border: none;
  color: #f6f6f6;
  font-size: 14px;
  border-radius: 50px;
  cursor: pointer;
  width: 240px;
  height: 40px;
  font-family: "Montserrat";
}
.read-more-btn:hover {
  background: rgb(132, 63, 166);
}
.learn-more-btn {
  background: #2e5c99;
  color: #f6f6f6;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-family: "Montserrat";
}
.learn-more-btn:hover {
  background: #0a1c3e;
}
.hero {
  position: relative;
  height: 83vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0a1931 0, #182848 100%);
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  opacity: 0;
  z-index: 1;
}
.hero-content {
  text-align: center;
  z-index: 2;
  color: #f6f6f6;
  padding: 60 20px;
}
.hero-title {
  font-size: 31px;
  font-weight: 300;
  line-height: 41px;
  letter-spacing: 2.72px;
  margin-top: 0px;
  margin-left: -260px;
  text-transform: uppercase;
  color: #6bcbda;
}
.science-section {
  padding: 100px 0;
  text-align: center;
  background: url("../images/home_our_science.avif") no-repeat center center;
  background-size: cover;
}
.science-content-centered {
  max-width: 800px;
  margin: 0 auto;
}
.section-subtitle {
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #213bab;
  margin-bottom: 15px;
  position: relative;
}
.science-description {
  font-size: 16px;
  line-height: 29px;
  color: #281a39;
  margin-bottom: 40px;
  text-align: center;
  padding: 0 40px;
  letter-spacing: 0.03em;
}
.team-section {
  padding: 60px 0 80px;
  position: relative;
}
.team-section::before {
  background: url("../images/home_team.avif") no-repeat center center;
  background-size: cover;
  opacity: 0.85;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 28, 62, 0.8);
  z-index: 1;
}
.team-title,
.team-grid {
  position: relative;
  z-index: 2;
}
.team-title {
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 60px;
  color: #f6f6f6;
}
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.team-row {
  display: flex;
  justify-content: space-around;
}
.team-member {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  color: #f6f6f6;
}
.member-image {
  width: 193px;
  height: 193px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  flex-shrink: 0;
  background-color: #f6f6f6;
}
.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-name {
  font-family: "mandioca";
  font-size: 16px;
  color: #f6f6f6;
  letter-spacing: normal;
}
.member-title {
  margin-top: 10px;
  font-family: "avenir-lt-light";
  font-size: 13px;
  line-height: 15px;
  color: #f6f6f6;
  letter-spacing: normal;
}
.science-hero__image {
  width: 100vw;
  height: 326px;
  object-fit: cover;
}
.science-page .main-content {
  padding: 40px 0 60px;
  overflow-x: hidden;
}
.science-intro {
  display: flex;
  align-items: flex-start;
  margin-left: clamp(0, 10vw, 10px);
}
.science-diagram img {
  margin-left: 30px;
  margin-bottom: 80px;
  max-width: 660px;
  width: 100%;
  height: auto;
}
.science-explanation {
  flex: 2;
}
.explanation-group {
}
.explanation-group span {
  font-size: 22px;
  line-height: 33px;
  color: rgb(40, 26, 57);
  display: inline-block;
  font-weight: 300;
  letter-spacing: 2px;
}
.explanation-underline {
  width: 350px;
  height: 5px;
  background-color: rgb(65, 117, 134);
  margin-top: 5px;
}
.explanation-group ul {
  list-style: disc;
  font-size: 16px;
  line-height: 36px;
  color: rgb(40, 26, 57);
  padding: 10px 30px;
}
.explanation-group li {
  letter-spacing: 0.03em;
}
.why-points {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.point {
  text-align: left;
  width: calc(100% / 4 - 10px);
}
.point-number {
  color: rgb(32, 97, 183);
  font-size: 38px;
  line-height: 54px;
  display: block;
}
.point-text {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 1.8px;
  color: rgb(40, 26, 57);
  margin-left: 30px;
}
.about-page {
  background-color: rgb(228, 236, 251);
  padding: 70px 0;
}
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  background-color: #f6f6f6;
  height: 60px;
}
.tab-link {
  font-family: "Montserrat";
  background: none;
  border: none;
  padding: 15px 40px;
  cursor: pointer;
  font-size: 16px;
  color: #000000;
  position: relative;
  transition: color 0.3s ease;
}
.tab-link:hover {
  color: #000000;
}
.tab-link.active {
  color: #000000;
}
.tab-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #2061b7;
}
.tab-content {
  display: none;
  text-align: center;
}
.tab-content.active {
  display: block;
}
.team-section__title {
  font-size: 28px;
  color: #281a39;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}
.team-grid {
  gap: 60px;
  margin-top: 40px;
}
.team-member {
  color: rgb(40, 26, 57);
  transition-delay: inherit !important;
}
.member-image {
  border: 3px solid #fff;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
.about-member-name {
  font-family: "mandioca";
  font-size: 16px;
  color: #281a39;
  letter-spacing: normal;
}
.about-member-title {
  font-family: "avenir-lt-light";
  color: #281a39;
  font-size: 13px;
  margin-top: 5px;
  letter-spacing: normal;
}
#Q img {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.pipeline-page {
  position: relative;
  background-color: rgb(228, 236, 251);
  padding: 110px 0;
  min-height: 700px;
}
.pipeline-content {
  position: relative;
}
.pipeline-image {
  position: absolute;
  top: 0;
  left: 80px;
  width: 880px;
  z-index: 1;
}
.pipeline-text {
  background-color: #f6f6f6;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-5%);
  z-index: 10;
  width: 600px;
  height: 465px;
  padding: 30px 30px;
  padding-left: 70px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.pipeline-text p {
  width: 450px;
}
.pipeline-text span {
  font-size: 28px;
  display: inline-block;
  color: rgb(40, 38, 38);
}
.pipeline-underline {
  width: 100%;
  max-width: 350px;
  height: 1px;
  background-color: rgb(32, 97, 183);
  margin-top: 5px;
}
.pipeline-text p {
  font-size: 16px;
  line-height: 32px;
  color: #281a39;
  margin: 30px 0 0;
}
.pipeline-links {
}
.pipeline-link-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.pipeline-link-item img {
  width: 14px;
  height: 23px;
  margin-right: 15px;
}
.pipeline-link-item a {
  color: #285b98;
  text-decoration: none;
  margin-left: 10px;
  word-break: break-all;
}
#N .collaborators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
#N .collaborator-card {
  background: rgb(246, 246, 246, 0.4);
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
}
#N .collaborator-card img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
#N .collaborator-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgb(40, 26, 57);
  margin-bottom: 40px;
  text-align: left;
  flex-grow: 1;
}
#N .learn-more-btn {
  font-family: "avenir-lt-light";
  background: #366cad;
  color: #f6f6f6;
  padding: 10px 30px;
  border-radius: 0;
  display: inline-block;
  transition: background 0.3s ease;
}
#N .learn-more-btn:hover {
  background: #f6f6f6;
  border: 1px solid #366cad;
  color: #366cad;
}
.news-page {
  background-color: #f6f6f6;
  padding: 80px 0 0px;
}
.news-page .main-content {
  background: none;
  padding: 0;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  margin: 60px 0 30px;
}
.news-column {
  width: 95%;
}
.news-column span {
  font-size: 24px;
  letter-spacing: 2px;
  color: rgb(40, 26, 57);
  display: inline-block;
  position: relative;
}
.news-column a {
  letter-spacing: 0.03em;
}
.news-underline {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background-color: rgb(32, 97, 183);
  margin-top: 5px;
}
.news-underline-animation {
  width: 70px;
  height: 5px;
  background-color: rgb(40, 26, 57);
  margin-top: -5px;
  animation: slideInFromRight 1.2s ease-out;
}
@keyframes slideInFromRight {
  from {
    transform: translateX(150px);
    opacity: 0.8;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.news-column ul {
  list-style: disc;
  padding: 0;
  margin-top: 20px;
}
.news-column ul li {
  margin-bottom: 25px;
  margin-left: 20px;
  position: relative;
}
.news-column ul li a {
  color: rgb(40, 26, 57);
  text-decoration: underline;
  font-size: 16px;
  line-height: 25px;
}
.careers-page {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.careers-container {
  margin: 50px;
}
.careers-hero {
  text-align: center;
  padding: 0;
  margin-top: 90px;
}
.container-text {
  font-family: "Montserrat-Default";
  font-size: 64px;
  letter-spacing: 6px;
  line-height: 96px;
  color: #281a39;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}
.join-us-link {
  font-size: 24px;
  line-height: 43px;
  letter-spacing: 0.05em;
  color: 281a39;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
}
.animate-on-scroll {
  transition: transform 1.2s ease-in-out;
}
.slide-in-from-right {
  transform: translateX(calc(100% - 1px));
}
.slide-in-from-bottom {
  transform: translateY(100px);
}
.animate-on-scroll.is-visible {
  transform: none;
}
.delay-1 {
  transition-delay: 0.2s;
}
.animation-wrapper {
  opacity: 0;
  transition: opacity 0.1s ease-in;
}
.animation-wrapper.is-visible {
  opacity: 1;
}
@keyframes fadeInAndSlide {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromFullWidth {
  from {
    transform: translateX(calc(100% - 1px));
  }
  to {
    transform: translateX(0);
  }
}
.animation-wrapper.is-visible .explanation-group {
  transform: translateX(calc(100% - 1px));
  animation: slideInFromFullWidth 1.2s ease-in-out 0.2s forwards;
}
.animation-wrapper.is-visible .why-points {
  opacity: 0;
  animation: fadeInAndSlide 0.8s ease-out 1.6s forwards;
}
.hero-content {
  animation: fadeInUp 1.2s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .container-science {
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
  .hamburger {
    display: flex;
    position: relative;
    right: -20px; /* shift 20px further right */
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 71px;
    flex-direction: column;
    background-color: #f6f6f6;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    gap: 20px;
  }
  .nav-menu .nav-link {
    color: rgb(40, 26, 57);
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .hero-bg-img {
    object-position: center center;
  }
  .hero-title {
    font-size: 1.5rem;
    padding: 0 20px;
    margin-left: 0;
    font-weight: 300;
    letter-spacing: 0.09em;
    transform: translateY(-150px); /* move up by 100px */
  }
  .team-row {
    flex-direction: column;
    gap: 40px;
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
  .contact-section,
  .footer {
    text-align: center;
  }
  .contact-title,
  .contact-email,
  .office {
    text-align: center;
  }
  .contact-email-item {
    justify-content: center;
  }
  .office-subtitle,
  .office-address {
    margin-left: 0;
  }
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  #N .collaborators-grid {
    grid-template-columns: 1fr;
  }
  .why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .point {
    width: auto;
  }
  .pipeline-page {
    padding: 90px 0 60px;
    min-height: auto;
  }
  .pipeline-content {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .pipeline-image {
    position: static;
    width: 100%;
    max-width: 640px;
    left: auto;
    top: auto;
  }
  .pipeline-text {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 640px;
    height: auto;
    padding: 20px 20px 24px;
    margin: 0;
  }
  .pipeline-text p {
    width: 100%;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .news-page {
    padding: 90px 0 60px;
  }
  .science-intro {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
  .science-diagram img {
    margin-left: 0;
    margin-top: 24px;
    max-width: 100%;
  }
  .science-description {
    padding: 0 20px;
  }
  .careers-container {
    margin: 40px 20px;
  }
  .container-text {
    font-size: 34px;
    line-height: 1.4;
    letter-spacing: 0.06em;
  }
  .join-us-link {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .section-subtitle {
    font-size: 2rem;
  }
  .contact-title,
  .team-title {
    font-size: 1.8rem;
  }
  .container {
    padding: 0 15px;
  }
  .pipeline-page {
    padding: 80px 0 50px;
  }
  .pipeline-text {
    padding: 16px 16px 20px;
  }
  .why-points {
    grid-template-columns: 1fr;
  }
  .container-text {
    font-size: 28px;
    line-height: 1.3;
  }
  .join-us-link {
    font-size: 16px;
  }
}
