@font-face {
  font-family: "DINNextLTPro";
  src: url("/assets/fonts/DINNextLTPro/DINNextLTPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINNextLTPro";
  src: url("/assets/fonts/DINNextLTPro/DINNextLTPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINNextLTPro";
  src: url("/assets/fonts/DINNextLTPro/DINNextLTPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINNextLTPro";
  src: url("/assets/fonts/DINNextLTPro/DINNextLTPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DINNextLTPro", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-center {
  text-align: center;
}

p {
  color: #000000;
  font-size: 0.875rem;
  font-weight: 300;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1432px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}
@media (min-width: 1600px) {
  .container {
    padding: 0;
  }
}

.light {
  color: #ffffff !important;
}

.dark {
  color: #000000 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.625rem;
  transition: all 0.5s ease;
  white-space: nowrap;
}
.btn svg {
  flex-shrink: 0;
}
.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.btn-outline {
  background-color: transparent;
  color: #495057;
  border: 1px solid #dee2e6;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #000000;
}
.btn-lg {
  padding: 1rem 2rem;
  font-weight: 400 !important;
  font-family: "DINNextLTPro", sans-serif;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .btn-lg {
    font-size: 1.125rem;
  }
}

.section-header {
  display: flex;
  align-items: start;
  flex-direction: column;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.section-title {
  font-weight: 500;
  color: #124173;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 30px;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.main-header {
  background-color: #ffffff;
  padding-top: 3rem;
}
.main-header__container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0;
}
@media (min-width: 768px) {
  .main-header__container {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.main-header__menu-toggle {
  display: none;
}
.main-header__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .main-header__hamburger {
    display: none;
  }
}
.main-header__hamburger-line {
  height: 3px;
  width: 100%;
  background: #343a40;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.main-header__nav {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: #f8f9fa;
  margin-top: 1rem;
  border-radius: 0.625rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: max-height 0.3s ease;
}
@media (min-width: 768px) {
  .main-header__nav {
    max-height: none;
    overflow: visible;
    background: transparent;
    margin-top: 0;
    box-shadow: none;
  }
}
.main-header__nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 1rem;
  margin: 0;
  gap: 0;
}
@media (min-width: 768px) {
  .main-header__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 5rem;
    padding: 0;
  }
}
.main-header__nav-item {
  position: relative;
}
.main-header__nav-item:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .main-header__nav-item:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -34px;
    top: 2px;
    color: #6c757d;
  }
  .main-header__nav-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.main-header__nav-link {
  color: #343a40;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  white-space: nowrap;
  display: block;
  padding: 0.25rem 0;
  transition: all 0.15s ease;
}
.main-header__nav-link:hover {
  color: #124173;
}
.main-header__menu-toggle:checked ~ .main-header__nav {
  max-height: 500px;
}
.main-header__menu-toggle:checked + .main-header__top .main-header__hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.main-header__menu-toggle:checked + .main-header__top .main-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.main-header__menu-toggle:checked + .main-header__top .main-header__hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.footer {
  background-color: #ebebeb;
  padding: 1.5rem 0;
  font-family: "DINNextLTPro", sans-serif;
  border-left: 5px solid #dee2e6;
}
.footer__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 576px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__copyright {
  color: #000000;
  font-size: 0.875rem;
}
.footer__link {
  color: #000000;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}
.footer__link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.dual-info-section {
  background: linear-gradient(180deg, #e5eefa 0%, #e5eefa 50%, #062958 50%, #062958 100%);
}
@media (min-width: 768px) {
  .dual-info-section {
    background: linear-gradient(90deg, #e5eefa 0%, #e5eefa 60%, #062958 60%, #062958 100%);
  }
}
.dual-info-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 768px) {
  .dual-info-section__grid {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.dual-info-section .info-block {
  height: 100%;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .dual-info-section .info-block {
    padding: 4rem 0;
  }
}
.dual-info-section .programs-block .links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dual-info-section .programs-block .links-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #000000;
  line-height: 1;
}
.dual-info-section .programs-block .links-list li .icon-arrow {
  color: #062958;
  font-size: 0.9rem;
  opacity: 0.8;
}
.dual-info-section .publications-block {
  padding-left: 0;
}
@media (min-width: 768px) {
  .dual-info-section .publications-block {
    padding-left: 4rem;
  }
}
.dual-info-section .publications-block {
  background-color: #062958;
  color: #ffffff;
  border-top-left-radius: 90px;
}

.two-column-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .two-column-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .two-column-section {
    padding: 6rem 0;
  }
}
@media (min-width: 1200px) {
  .two-column-section {
    padding: 8rem 0;
  }
}
.two-column-section {
  background-color: #ffffff;
}
.two-column-section__title {
  margin-top: 4rem;
}
.two-column-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .two-column-section__grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.recognition-section {
  background-color: #ffffff;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .recognition-section {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .recognition-section {
    padding-bottom: 6rem;
  }
}
@media (min-width: 1200px) {
  .recognition-section {
    padding-bottom: 8rem;
  }
}
.recognition-section .recognition-grid {
  background-color: #ebebeb;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .recognition-section .recognition-grid {
    padding: 4rem;
    gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.recognition-section .recognition-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.recognition-section .blue-title {
  color: #124173;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 0;
}
.recognition-section .text-block strong {
  color: #000000;
  font-weight: 800;
}

.research-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .research-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .research-section {
    padding: 6rem 0;
  }
}
@media (min-width: 1200px) {
  .research-section {
    padding: 8rem 0;
  }
}
.research-section {
  background-color: #e5eefa;
}
.research-section__title {
  margin-top: 4rem;
}
.research-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .research-section__grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.research-section__image-wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.research-section__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.research-section__buttons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  width: 100%;
  border-radius: 0.625rem;
  background-color: #ffffff;
  margin-bottom: 1rem;
}
.research-section__button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px;
  color: #000000;
  font-size: 14px;
}
@media (min-width: 768px) {
  .research-section__button {
    font-size: 18px;
  }
}
.research-section__button {
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.research-section__button:hover {
  background-color: #124173;
  color: #ffffff;
  border-radius: 0.625rem;
}
.research-section__button--active {
  background-color: #124173;
  color: #ffffff;
  border-color: #124173;
  border-radius: 0.625rem;
}
.research-section__button--active .research-section__button-icon {
  fill: #ffffff;
}
.research-section__button svg {
  width: 20px;
  height: 20px;
  transition: all 0.15s ease;
}

.faculty-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .faculty-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .faculty-section {
    padding: 6rem 0;
  }
}
@media (min-width: 1200px) {
  .faculty-section {
    padding: 8rem 0;
  }
}
.faculty-section {
  background-color: #ffffff;
}
.faculty-section__content {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .faculty-section__content {
    flex-direction: row;
    gap: 6rem;
    justify-content: space-between;
  }
}
.faculty-section .faculty-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  max-width: 630px;
}
@media (min-width: 768px) {
  .faculty-section .faculty-member-card {
    flex-direction: row;
    text-align: left;
  }
}
.faculty-section .faculty-member-card__image-wrapper {
  max-width: 300px;
  max-height: 325px;
  height: 100%;
  width: 100%;
}
.faculty-section .faculty-member-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.faculty-section .faculty-member-card__details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}
.faculty-section .faculty-member-card__name {
  font-size: 1.125rem;
  color: #000000;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .faculty-section .faculty-member-card__name {
    font-size: 1.5rem;
  }
}
.faculty-section .faculty-member-card__position {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .faculty-section .faculty-member-card__position {
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 2rem;
  }
}
.faculty-section .faculty-member-card__line {
  width: 330px;
  height: 3px;
  background-color: #0051c5;
  margin: 0 auto 20px;
  visibility: hidden;
}
@media (min-width: 768px) {
  .faculty-section .faculty-member-card__line {
    margin-left: -54px !important;
    visibility: visible;
    margin: 0 0 20px 0;
  }
}
.faculty-section .faculty-member-card__description {
  font-size: 0.9em;
  color: #333;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .faculty-section .faculty-member-card__description {
    font-size: 0.95em;
    line-height: 1.6;
  }
}

.vm-section {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .vm-section {
    padding-top: 5rem;
  }
}
@media (min-width: 1024px) {
  .vm-section {
    padding-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .vm-section {
    padding-top: 8rem;
  }
}
.vm-section__subtitle {
  font-size: 14px;
  color: #000000;
  margin-top: 0.5rem;
  display: block;
  font-weight: 400;
  text-transform: none;
}
.vm-section__grid {
  border-radius: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.vm-section .vision {
  background-color: #1c4a88;
  border-radius: 1.5rem;
}
.vm-section .mission {
  background-color: #ebebeb;
  border-radius: 1.5rem;
}
.vm-section__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .vm-section__card {
    gap: 2rem;
    padding: 1.5rem 4rem;
    grid-template-columns: 0.5fr 3.5fr;
  }
}
.vm-section__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.vm-section__item {
  background-color: #ffffff;
  padding: 15px 25px;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  width: fit-content;
  max-width: 100%;
  transition: transform 0.2s ease;
}
.vm-section__item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-section {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .hero-section {
    padding-top: 5rem;
  }
}
@media (min-width: 1024px) {
  .hero-section {
    padding-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .hero-section {
    padding-top: 8rem;
  }
}
.hero-section__grid {
  background-color: #1c4a88;
  border-top-left-radius: 14.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero-section__grid {
    gap: 0;
    grid-template-columns: 1fr 1.5fr;
  }
}
.hero-section__content {
  display: grid;
  place-items: center;
  position: relative;
}
.hero-section__icon {
  position: absolute;
  top: 20px;
  left: 50px;
  border-radius: 99999px;
  background: #ffffff;
  box-shadow: 0 2px 10px #1c4a88;
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
}
@media (min-width: 768px) {
  .hero-section__icon {
    width: 85px;
    height: 85px;
    left: 35px;
  }
}
.hero-section__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.hero-section__image-wrapper {
  width: 100%;
}
.hero-section__image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 386px;
  object-fit: cover;
}
.hero-section__box {
  width: 100%;
  padding: 0 5rem;
  margin-top: 8rem;
}
.hero-section__line {
  width: 58px;
  height: 7px;
  margin-bottom: 1rem;
  background: #ffffff;
}
.hero-section__title {
  width: 100%;
  text-align: left;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .hero-section__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-section__title {
    font-size: 3.4294rem;
  }
}

.about-section {
  background-color: #ffffff;
}
.about-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-section__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media (min-width: 1024px) {
  .about-section__grid {
    gap: 8rem;
  }
}
.about-section__grid-layout {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-section__grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-section__grid-layout {
    gap: 8rem;
  }
}
.about-section__grid-layout p {
  margin-bottom: 30px;
}
.about-section__grid-layout p:last-child {
  margin-bottom: 0;
}
.about-section .intro-text {
  margin-bottom: 20px;
}
.about-section__content {
  padding-top: 4rem;
  order: 2;
}
@media (min-width: 768px) {
  .about-section__content {
    order: 1;
  }
}
.about-section__image-wrapper {
  width: 100%;
  order: 1;
}
@media (min-width: 768px) {
  .about-section__image-wrapper {
    order: 2;
  }
}
.about-section__image-wrapper img {
  width: 100%;
  height: 100%;
  object-position: bottom;
  object-fit: cover;
}
.about-section .pill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.about-section .pill-list li {
  background-color: #ebebeb;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  width: fit-content;
  transition: background-color 0.2s ease;
}
.about-section .pill-list li:hover {
  background-color: rgb(222.25, 222.25, 222.25);
}
.about-section .footer-text {
  font-size: 0.875rem;
}

.researcher {
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .researcher {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .researcher {
    padding-bottom: 6rem;
  }
}
@media (min-width: 1200px) {
  .researcher {
    padding-bottom: 8rem;
  }
}
.researcher__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.researcher__nav-btn {
  cursor: pointer;
  transition: background 0.2s ease;
}
.researcher__nav-btn svg {
  width: 34px;
  height: 34px;
}
.researcher__nav-btn svg:hover {
  color: #1c4a88;
}
.researcher__swiper {
  width: 100%;
}
.researcher .swiper-slide {
  display: grid;
  place-items: center;
}
.researcher .researcher-card {
  text-align: left;
  cursor: grab;
}
.researcher .researcher-card__image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  height: auto;
}
@media (min-width: 1024px) {
  .researcher .researcher-card__image {
    height: 290px;
  }
}
.researcher .researcher-card__image img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
}
.researcher .researcher-card__name {
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}

.partnerships-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .partnerships-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .partnerships-section {
    padding: 6rem 0;
  }
}
@media (min-width: 1200px) {
  .partnerships-section {
    padding: 8rem 0;
  }
}
.partnerships-section__description {
  margin: 1rem auto;
  text-align: center;
  max-width: 900px;
  margin-bottom: 2rem;
}
.partnerships-section__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.partnerships-section__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.partnerships-section__nav .is-disabled {
  opacity: 0.4;
}
.partnerships-section__nav-btn {
  cursor: pointer;
  transition: background 0.2s ease;
}
.partnerships-section__nav-btn svg {
  width: 34px;
  height: 34px;
}
.partnerships-section__nav-btn svg:hover {
  color: #1c4a88;
}
.partnerships-section__swiper {
  width: 100%;
}
.partnerships-section .swiper-slide {
  display: grid;
  place-items: center;
}
.partnerships-section .partner-card {
  text-align: left;
  cursor: grab;
  padding: 30px;
  border-radius: 1.3125rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.partnerships-section .partner-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.partnerships-section .partner-card__image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  height: auto;
}
@media (min-width: 1024px) {
  .partnerships-section .partner-card__image {
    height: 290px;
  }
}
.partnerships-section .partner-card__image img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
}
.partnerships-section .partner-card__name {
  font-size: 24.34px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}

.tech-platforms {
  background-color: #ffffff;
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .tech-platforms {
    padding-top: 5rem;
  }
}
@media (min-width: 1024px) {
  .tech-platforms {
    padding-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .tech-platforms {
    padding-top: 8rem;
  }
}
.tech-platforms .intro-header {
  margin-bottom: 2rem;
}
.tech-platforms .platform-card {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 30px;
}
@media (min-width: 768px) {
  .tech-platforms .platform-card {
    padding: 50px;
  }
}
.tech-platforms .platform-card .card-category {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000000;
  text-transform: uppercase;
}
.tech-platforms .platform-card .card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 1024px) {
  .tech-platforms .platform-card .card-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}
.tech-platforms p {
  margin-bottom: 20px;
}
.tech-platforms p strong {
  color: #000000;
}
.tech-platforms .col-right .info-group {
  margin-bottom: 30px;
}
.tech-platforms .col-right .info-group h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #000000;
}
.tech-platforms .col-right .arrow-list {
  list-style: none;
  padding: 0;
}
.tech-platforms .col-right .arrow-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: #000000;
}
.tech-platforms .col-right .arrow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  background-image: url("../assets/images/right-arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.tech-platforms .col-right .summary-note {
  font-weight: 500;
  color: #000000;
  margin-top: 20px;
}

.tech-platforms-2 {
  background-color: #e5eefa;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .tech-platforms-2 {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .tech-platforms-2 {
    padding: 6rem 0;
  }
}
@media (min-width: 1200px) {
  .tech-platforms-2 {
    padding: 8rem 0;
  }
}
.tech-platforms-2 .platform-card {
  background-color: rgba(255, 255, 255, 0.4);
}

/* keep if you actually need it */

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