  @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: 1142px;
  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;
}

.news-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .news-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .news-section {
    padding: 6rem 0;
  }
}
@media (min-width: 1200px) {
  .news-section {
    padding: 8rem 0;
  }
}
.news-section {
  background-color: #1c4a88;
}
.news-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .news-section__grid {
    grid-template-columns: repeat(auto-fit, minmax(364px, 1fr));
  }
}
.news-section .news-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}
.news-section .news-card:hover .news-card__title {
  color: #124173;
}
@media (min-width: 768px) {
  .news-section .news-card:hover {
    scale: 1.04;
  }
}
.news-section .news-card:hover {
  scale: 1.01;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.news-section .news-card__figure {
  margin: 0;
}
.news-section .news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-section .news-card__content {
  padding: 1.5rem;
}
.news-section .news-card__title {
  color: #000000;
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .news-section .news-card__title {
    font-size: 1.5rem;
  }
}
.news-section .news-card__description {
  margin-bottom: 1rem;
}
.news-section .news-card__read-more {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  position: relative;
  transition: all 0.15s ease;
}
.news-section .news-card__read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #124173;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.news-section .news-card__read-more:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.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__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 4rem;
}
@media (min-width: 768px) {
  .two-column-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.facilities-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .facilities-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .facilities-section {
    padding: 6rem 0;
  }
}
@media (min-width: 1200px) {
  .facilities-section {
    padding: 8rem 0;
  }
}
.facilities-section {
  background-color: #1c4a88;
}
.facilities-section__header, .facilities-section__card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .facilities-section__header, .facilities-section__card-wrapper {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.facilities-section .facilities-card {
  margin-top: 4rem;
  display: block;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.5s ease;
}
.facilities-section .facilities-card:hover {
  transform: scale(1.02);
}
.facilities-section .facilities-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.facilities-section .facilities-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.facilities-section .facilities-card__text {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(18, 65, 115, 0.4);
  color: #124173;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem 1.5rem;
  border: 1px solid #ffffff;
  border-radius: 0.75rem;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .facilities-section .facilities-card__text {
    font-size: 1.5625rem;
  }
}

.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__grid {
  margin-top: 4rem;
  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;
}

.strategic-pillars-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .strategic-pillars-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .strategic-pillars-section {
    padding: 6rem 0;
  }
}
@media (min-width: 1200px) {
  .strategic-pillars-section {
    padding: 8rem 0;
  }
}
.strategic-pillars-section {
  background-color: #ffffff;
}
.strategic-pillars-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .strategic-pillars-section__grid {
    grid-template-columns: repeat(auto-fit, minmax(364px, 1fr));
  }
}
.strategic-pillars-section__subtitle {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .strategic-pillars-section__subtitle {
    font-size: 19px;
    margin-bottom: 40px;
  }
}
.strategic-pillars-section__footer-text {
  margin-top: 4rem;
  text-align: left;
}
.strategic-pillars-section .strategic-pillar-card {
  background-color: transparent;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 768px) {
  .strategic-pillars-section .strategic-pillar-card {
    padding: 30px;
  }
}
.strategic-pillars-section .strategic-pillar-card__number {
  position: absolute;
  top: -10px;
  line-height: 1.2;
  color: rgba(0, 81, 197, 0.4);
  margin-bottom: 10px;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .strategic-pillars-section .strategic-pillar-card__number {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .strategic-pillars-section .strategic-pillar-card__number {
    font-size: 3.75rem;
  }
}
.strategic-pillars-section .strategic-pillar-card__title {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .strategic-pillars-section .strategic-pillar-card__title {
    font-size: 19px;
  }
}

.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: 950px;
}
@media (min-width: 768px) {
  .faculty-section .faculty-member-card {
    flex-direction: row;
    text-align: left;
  }
}
.faculty-section .faculty-member-card__image-wrapper {
  width: 100%;
  height: 100%;
  min-width: fit-content;
}
.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;
}
@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: 400;
}
@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: 102px;
  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__grid {
  background-color: #ebebeb;
  border-radius: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .vm-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vm-section .vision {
  background-color: #1c4a88;
  border-radius: 1.5rem;
}
.vm-section__card {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .vm-section__card {
    padding: 4rem;
  }
}

.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 svg {
  width: 32px;
  height: 32px;
  color: #1c4a88;
}
.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 6rem;
  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__content {
  padding-top: 4rem;
}
.about-section__image-wrapper {
  width: 100%;
}
.about-section__image-wrapper img {
  width: 100%;
  height: 100%;
  object-position: bottom;
  object-fit: cover;
}

.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;
}
.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;
  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;
}

/* keep if you actually need it */

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