/* Base reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body reset */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #000;
}

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

h1 {
  font-family: "IBM Plex Sans", sans-serif;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 5rem auto;
}

.col {
  flex: 1;
  max-width: 100%;
}

.col-6 {
  flex: 0 0 calc((100% - 1rem * (2 - 1)) / 2);
  max-width: calc((100% - 1rem * (2 - 1)) / 2);
}

.col-m-4 {
  flex: 0 0 calc((100% - 1rem * (3 - 1)) / 3);
  max-width: calc((100% - 1rem * (3 - 1)) / 3);
}

.col-xl-3 {
  flex: 0 0 calc((100% - 1rem * (4 - 1)) / 4);
  max-width: calc((100% - 1rem * (4 - 1)) / 4);
}

@media (max-width: 375px) {
  .col-6,
  .col-m-4,
  .col-xl-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-m-4,
  .col-xl-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2rem 4rem;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1023px) {
  .site-header {
    padding: 0 1.5rem;
    height: 5rem;
  }
}
.site-header.scrolled {
  background: rgba(15, 36, 65, 0.95);
}
.site-header .site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}
.site-header .site-logo .logo-white {
  display: block;
}
.site-header .site-logo .logo-blue {
  display: none;
}
.site-header .site-logo svg {
  width: 260px;
  height: auto;
}
@media (max-width: 1023px) {
  .site-header .site-logo svg {
    width: 150px;
  }
}
.site-header .main-navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.site-header .main-navigation .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.site-header .main-navigation ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}
.site-header .main-navigation ul li a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #d8d8d8;
  position: relative;
}
.site-header .main-navigation ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.25s ease;
}
.site-header .main-navigation ul li a:hover {
  color: #ffffff;
}
.site-header .main-navigation ul li a:hover::after {
  width: 100%;
}
.site-header .main-navigation ul li.current-menu-item a {
  color: #ffffff;
}
.site-header .main-navigation ul li.current-menu-item a::after {
  width: 100%;
}
@media (max-width: 1280px) {
  .site-header .main-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(15, 36, 65, 0.98);
    transform: none;
  }
  .site-header .main-navigation.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .site-header .main-navigation ul {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }
  .site-header .main-navigation ul li a {
    font-size: 1.1rem;
    color: #ffffff;
  }
  .site-header .main-navigation ul li a::after {
    background: #ffffff;
  }
  .site-header .main-navigation ul li a:hover {
    color: #d8d8d8;
  }
  .site-header .main-navigation ul li.current-menu-item a {
    color: #ffffff;
  }
}
.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: auto;
}
@media (max-width: 1280px) {
  .site-header .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.site-header .menu-toggle .icon-menu,
.site-header .menu-toggle .icon-close {
  display: flex;
  align-items: center;
}
.site-header .menu-toggle .icon-menu svg,
.site-header .menu-toggle .icon-close svg {
  width: 32px;
  height: 32px;
}
.site-header .menu-toggle .icon-menu svg path,
.site-header .menu-toggle .icon-close svg path {
  fill: #ffffff;
}
.site-header .menu-toggle .icon-close {
  display: none;
}
.site-header .menu-toggle.active .icon-menu {
  display: none;
}
.site-header .menu-toggle.active .icon-close {
  display: flex;
}

body.page:not(.home) .site-header:not(.scrolled) {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}
body.page:not(.home) .site-header:not(.scrolled) .site-logo .logo-white {
  display: none;
}
body.page:not(.home) .site-header:not(.scrolled) .site-logo .logo-blue {
  display: block;
}
body.page:not(.home) .site-header:not(.scrolled) .main-navigation ul li a {
  color: #666;
}
body.page:not(.home) .site-header:not(.scrolled) .main-navigation ul li a::after {
  background-color: #1e3a5f;
}
body.page:not(.home) .site-header:not(.scrolled) .main-navigation ul li a:hover {
  color: #045292;
}
body.page:not(.home) .site-header:not(.scrolled) .main-navigation ul li a:hover::after {
  background-color: #045292;
}
body.page:not(.home) .site-header:not(.scrolled) .main-navigation ul li.current-menu-item a {
  color: #045292;
}
body.page:not(.home) .site-header:not(.scrolled) .main-navigation ul li.current-menu-item a::after {
  background-color: #045292;
  width: 100%;
}
body.page:not(.home) .site-header:not(.scrolled) .menu-toggle .icon-menu svg path {
  fill: #0f0f0f;
}
body.page:not(.home) .site-header:not(.scrolled) .menu-toggle .icon-close svg path {
  fill: #0f0f0f;
}
body.page:not(.home) .site-header:not(.scrolled) .menu-toggle.active .icon-close svg path {
  fill: #ffffff;
}

@media (max-width: 1280px) {
  body.page:not(.home) .site-header .main-navigation.active ul li a {
    color: #ffffff;
  }
  body.page:not(.home) .site-header .main-navigation.active ul li a::after {
    background-color: #ffffff;
  }
  body.page:not(.home) .site-header .main-navigation.active ul li a:hover {
    color: #d8d8d8;
  }
  body.page:not(.home) .site-header .main-navigation.active ul li.current-menu-item a {
    color: #ffffff;
  }
  body.page:not(.home) .site-header .main-navigation.active ul li.current-menu-item a::after {
    background-color: #ffffff;
  }
}
.site-footer {
  background: #0d1117;
  color: #d8d8d8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 24.5rem;
  padding-top: 6rem;
}
@media (max-width: 1023px) {
  .site-footer {
    min-height: 0;
    padding-top: 3rem;
  }
}
.site-footer__main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.17769rem;
  padding: 0.35544rem;
  width: 16.45338rem;
  text-decoration: none;
}
.site-footer__logo svg {
  width: 100%;
  height: auto;
}
.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0.625rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .site-footer__nav ul {
    gap: 1.5rem;
    flex-direction: column;
  }
}
@media (max-width: 375px) {
  .site-footer__nav ul {
    gap: 1.25rem;
  }
}
.site-footer__nav ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
  color: #d8d8d8;
  transition: color 0.2s ease;
}
.site-footer__nav ul li a:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .site-footer__nav ul li a {
    font-size: 0.825rem;
  }
}
.site-footer__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 1023px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }
}
.site-footer__copy, .site-footer__legal {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.6;
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.site-footer__legal a:hover {
  color: #ffffff;
}

.default-page {
  background: #f9f9f9;
  padding: 8rem 10rem;
}
@media (max-width: 1280px) {
  .default-page {
    padding: 8rem 3rem;
  }
}
@media (max-width: 767px) {
  .default-page {
    padding: 4rem 1.5rem;
  }
}
.default-page__container {
  max-width: 1280px;
  margin: 0 auto;
}
.default-page__container h1,
.default-page__container h2,
.default-page__container h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.default-page__container h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.default-page__container h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
}
.default-page__container h2 {
  color: #045292;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.default-page__container h2 {
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.default-page__container p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}
.default-page__container a {
  color: #045292;
  text-decoration: underline;
}
.default-page__container ul,
.default-page__container ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.default-page__container ul li,
.default-page__container ol li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #1a1a2e;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.825rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1;
  text-align: center;
}
.btn--primary {
  background-color: #045292;
  color: #ffffff;
  border-color: #045292;
}
.btn--primary:hover {
  background-color: #024BC1;
  border-color: #024BC1;
}
.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--outline:hover {
  background-color: #ffffff;
  color: #1e3a5f;
}
.btn--outline-dark {
  background-color: transparent;
  color: #1e3a5f;
  border-color: #1e3a5f;
}
.btn--outline-dark:hover {
  background-color: #1e3a5f;
  color: #ffffff;
}
@media (max-width: 375px) {
  .btn {
    width: 100%;
  }
}

.menu-toggle .icon-close {
  display: none;
}

.services-accordion .accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #ccc;
}
.services-accordion .accordion-item .accordion-title {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: #f0f0f0;
  cursor: pointer;
  border: none;
  font-weight: bold;
}
.services-accordion .accordion-item .accordion-content {
  display: none;
  padding: 1rem;
  background: #fff;
  color: #000;
}
.services-accordion .accordion-item.active .accordion-content {
  display: block;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #0f2441;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 75, 193, 0.55);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  pointer-events: none;
}
.hero-content .btn {
  pointer-events: auto;
}
.hero-content__tagline {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(2rem, 2.5vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 0.4rem;
  line-height: 1.2;
  max-width: 80vw;
}
@media (max-width: 1023px) {
  .hero-content__tagline {
    max-width: 90vw;
  }
}
.hero-content__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(2rem, 2.5vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2.5rem;
  line-height: 1.2;
  max-width: 80vw;
}
@media (max-width: 1023px) {
  .hero-content__title {
    max-width: 90vw;
  }
}

.hero-scroll-btn {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #045292;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  animation: hero-bounce 2.2s ease-in-out infinite;
}
.hero-scroll-btn:hover {
  background: #045292;
  color: #ffffff;
  animation: none;
  transform: translateX(-50%) scale(1.1);
}
.hero-scroll-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

@keyframes hero-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}
.about-section {
  background: #ffffff;
  padding: 7rem 4rem;
}
@media (max-width: 1023px) {
  .about-section {
    padding: 4rem 1.5rem 0;
  }
}
.about-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about-section__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}
.about-section__heading {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 0;
}
.about-section p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #1a1a2e;
  margin: 0;
}
.about-section p strong {
  color: #1a1a2e;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .about-section__image {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}
.about-section__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5/7;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 1023px) {
  .about-section__image img {
    height: 320px;
  }
}
@media (max-width: 375px) {
  .about-section__image img {
    height: 260px;
  }
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #045292;
  margin-bottom: 0.5rem;
}

.services-section {
  position: relative;
  padding: 8rem 4rem;
  background-color: #0f2441;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .services-section {
    padding: 5rem 1.5rem;
  }
}
.services-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 75, 193, 0.55);
  z-index: 1;
}
.services-section__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
@media (max-width: 1023px) {
  .services-section__container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.services-section__inner {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  text-align: left;
}
@media (max-width: 1023px) {
  .services-section__inner {
    grid-column: auto;
  }
}
.services-section__heading {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}
.services-section__text {
  font-size: 1.25rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.75);
}

.team-section,
.partners-section {
  background: #f9f9f9;
  padding: 12rem 10rem;
}
@media (max-width: 1280px) {
  .team-section,
  .partners-section {
    padding: 8rem 3rem;
  }
}
@media (max-width: 768px) {
  .team-section,
  .partners-section {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .team-section,
  .partners-section {
    padding: 4rem 1.5rem;
  }
}
.team-section__container,
.partners-section__container {
  max-width: 1280px;
  margin: 0 auto;
}
.team-section__header,
.partners-section__header {
  margin-bottom: 2.5rem;
  max-width: 70%;
}
@media (max-width: 1023px) {
  .team-section__header,
  .partners-section__header {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .team-section__header,
  .partners-section__header {
    max-width: 100%;
  }
}
.team-section__tagline,
.partners-section__tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #045292;
  margin-bottom: 1.25rem;
}
.team-section__title,
.partners-section__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 0;
}
.team-section__image,
.partners-section__image {
  margin-bottom: 3rem;
}
.team-section__image img,
.partners-section__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
@media (max-width: 1023px) {
  .team-section__image img,
  .partners-section__image img {
    aspect-ratio: 4/3;
  }
}

.team-member {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
  padding: 4rem 0;
  border-top: 1px solid #d8d8d8;
}
@media (max-width: 1023px) {
  .team-member {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }
}
.team-member:first-child {
  border-top: 0;
}
.team-member:last-child {
  border-bottom: 1px solid #d8d8d8;
}
.team-member__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0;
}
.team-member__name {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 110%;
  color: #0f0f0f;
  margin: 0;
}
@media (max-width: 767px) {
  .team-member__name {
    font-size: 2rem;
  }
}
.team-member__bio {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 190%;
  color: #0f0f0f;
  text-align: justify;
}
.team-member__bio p {
  margin: 0 0 0.75rem;
}
.team-member__bio p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .team-member__bio p {
    font-size: 1rem;
    line-height: 200%;
  }
}
.team-member__bio strong,
.team-member__bio b {
  font-weight: 600;
}
.team-member__bio u {
  text-decoration: underline;
}
.team-member__bio a {
  color: #045292;
  text-decoration: underline;
}
.team-member__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 0.5rem;
}
@media (max-width: 375px) {
  .team-member__links {
    flex-direction: column;
    gap: 1rem;
  }
}
.team-member__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #045292;
  text-decoration: none;
  border-bottom: 1px solid #045292;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.team-member__link ion-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.team-member__link:hover {
  color: #024BC1;
  border-bottom-color: #024BC1;
}
@media (max-width: 1023px) {
  .team-member__photo {
    order: -1;
  }
}
.team-member__photo img {
  width: 100%;
  aspect-ratio: 5/7;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.partners-section__container {
  max-width: 1280px;
  margin: 3rem auto;
}
.partners-section__description {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a2e;
  margin-top: 1rem;
}
@media (max-width: 1023px) {
  .partners-section__description {
    max-width: 100%;
  }
}

.studio-collaborator {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  background-color: #eaf2fe;
  padding: 2.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 1023px) {
  .studio-collaborator {
    flex-direction: column;
    align-items: flex-start;
  }
}
.studio-collaborator__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex: 1 0 0;
  min-width: 0;
}
@media (max-width: 1023px) {
  .studio-collaborator__content {
    width: 100%;
  }
}
.studio-collaborator__people {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 1023px) {
  .studio-collaborator__people {
    width: 100%;
  }
}
.studio-collaborator__name {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  color: #1a1a2e;
}
.studio-collaborator__divider {
  height: 1px;
  width: 100%;
  background-color: #d8d8d8;
}
.studio-collaborator__divider--mobile-only {
  display: none;
}
@media (max-width: 1023px) {
  .studio-collaborator__divider--mobile-only {
    display: block;
  }
}
.studio-collaborator__description {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.1;
  color: #1a1a2e;
  margin: 0;
  text-transform: uppercase;
}
.studio-collaborator__logo {
  flex-shrink: 0;
  width: 196px;
  height: 96px;
}
@media (max-width: 1023px) {
  .studio-collaborator__logo {
    width: 160px;
    height: auto;
  }
}
.studio-collaborator__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.services-list {
  background: #f9f9f9;
  padding: 12rem 10rem;
}
@media (max-width: 1280px) {
  .services-list {
    padding: 8rem 3rem;
  }
}
@media (max-width: 768px) {
  .services-list {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .services-list {
    padding: 4rem 1.5rem;
  }
}
.services-list__container {
  max-width: 1280px;
  margin: 0 auto;
}
.services-list__header {
  margin-bottom: 2.5rem;
}
@media (max-width: 1023px) {
  .services-list__header {
    margin-bottom: 2.5rem;
  }
}
.services-list__tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #045292;
  margin-bottom: 1.25rem;
}
.services-list__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 0;
}
.services-list__image {
  margin-bottom: 3rem;
}
.services-list__image img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}
@media (max-width: 1023px) {
  .services-list__image img {
    aspect-ratio: 4/3;
  }
}
.services-list__items {
  margin-top: 0;
}

.service-item {
  padding: 3rem 0;
  border-top: 1px solid #d8d8d8;
}
.service-item:first-child {
  border-top: none;
  padding-top: 0;
}
@media (max-width: 1023px) {
  .service-item {
    padding: 2rem 0;
  }
}
.service-item__title {
  color: #045292;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.service-item__text {
  color: #0f0f0f;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 200%;
  text-align: justify;
}
.service-item__text p {
  margin: 0 0 0.75rem;
}
.service-item__text p:last-child {
  margin-bottom: 0;
}
.service-item__text strong, .service-item__text b {
  font-weight: 600;
}
.service-item__text a {
  color: #045292;
  text-decoration: underline;
}

.contact-section {
  background: #f9f9f9;
  padding: 12rem 10rem;
}
@media (max-width: 1280px) {
  .contact-section {
    padding: 8rem 3rem;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 4rem 1.5rem;
  }
}
.contact-section__container {
  max-width: 1280px;
  margin: 0 auto;
}
.contact-section__header {
  margin-bottom: 2.5rem;
}
@media (max-width: 1023px) {
  .contact-section__header {
    margin-bottom: 2.5rem;
  }
}
.contact-section__tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #045292;
  margin-bottom: 1.25rem;
}
.contact-section__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 0;
  max-width: 900px;
}
.contact-section__map {
  margin-bottom: 3rem;
}
.contact-section__map iframe {
  display: block;
  width: 100%;
  height: 420px;
}
@media (max-width: 1023px) {
  .contact-section__map iframe {
    height: 300px;
  }
}
.contact-section__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  text-align: justify;
}
@media (max-width: 1023px) {
  .contact-section__info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.contact-section__intro p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #0f0f0f;
  margin: 0;
}
.contact-section__address p {
  font-size: 1rem;
  line-height: 1.75;
  color: #0f0f0f;
  margin: 0 0 0.25rem;
}
.contact-section__addr-name {
  font-weight: 700;
  font-size: 1rem;
}
.contact-section__form--placeholder {
  padding: 2rem;
  background: #ffffff;
  border: 1px dashed #d8d8d8;
  color: #555;
}

.contact-section__form .wpcf7-form .cf7-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
@media (max-width: 1023px) {
  .contact-section__form .wpcf7-form .cf7-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.contact-section__form .wpcf7-form .cf7-col-left,
.contact-section__form .wpcf7-form .cf7-col-right {
  display: flex;
  flex-direction: column;
}
.contact-section__form .wpcf7-form .cf7-col-left p,
.contact-section__form .wpcf7-form .cf7-col-right p {
  margin: 0 0 1rem;
}
.contact-section__form .wpcf7-form .cf7-col-right p:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-section__form .wpcf7-form .cf7-col-right p:last-child textarea {
  flex: 1;
  min-height: 180px;
  resize: vertical;
}
.contact-section__form .wpcf7-form .cf7-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 0rem;
}
.contact-section__form .wpcf7-form .cf7-footer .cf7-acceptance {
  grid-column: 2;
  grid-row: 1;
}
.contact-section__form .wpcf7-form .cf7-footer > p,
.contact-section__form .wpcf7-form .cf7-footer > input[type=submit] {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin: 0;
}
@media (max-width: 1023px) {
  .contact-section__form .wpcf7-form .cf7-footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-section__form .wpcf7-form .cf7-footer .cf7-acceptance,
  .contact-section__form .wpcf7-form .cf7-footer > p,
  .contact-section__form .wpcf7-form .cf7-footer > input[type=submit] {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }
}
.contact-section__form .wpcf7-form .cf7-acceptance {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #555;
  cursor: pointer;
}
.contact-section__form .wpcf7-form .cf7-acceptance .wpcf7-list-item {
  display: inline;
  margin: 0;
}
.contact-section__form .wpcf7-form .cf7-acceptance input[type=checkbox] {
  display: inline-block;
  width: auto;
  appearance: auto;
  -webkit-appearance: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
  flex-shrink: 0;
}
.contact-section__form .wpcf7-form .cf7-acceptance a {
  color: #045292;
  text-decoration: underline;
}
.contact-section__form .wpcf7-form input[type=text],
.contact-section__form .wpcf7-form input[type=email],
.contact-section__form .wpcf7-form input[type=tel],
.contact-section__form .wpcf7-form input[type=url],
.contact-section__form .wpcf7-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #0f0f0f;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-section__form .wpcf7-form input[type=text]::placeholder,
.contact-section__form .wpcf7-form input[type=email]::placeholder,
.contact-section__form .wpcf7-form input[type=tel]::placeholder,
.contact-section__form .wpcf7-form input[type=url]::placeholder,
.contact-section__form .wpcf7-form textarea::placeholder {
  color: #aaa;
}
.contact-section__form .wpcf7-form input[type=text]:focus,
.contact-section__form .wpcf7-form input[type=email]:focus,
.contact-section__form .wpcf7-form input[type=tel]:focus,
.contact-section__form .wpcf7-form input[type=url]:focus,
.contact-section__form .wpcf7-form textarea:focus {
  border-color: #045292;
}
.contact-section__form .wpcf7-form textarea {
  resize: vertical;
  min-height: 180px;
}
.contact-section__form .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.25rem;
  display: block;
}
.contact-section__form .wpcf7-form .wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: 0;
}
.contact-section__form .wpcf7-form .btn--primary {
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  margin-top: 1rem;
}
@media (max-width: 1023px) {
  .contact-section__form .wpcf7-form .btn--primary {
    width: 100%;
  }
}

.help-section {
  position: relative;
  background-color: #1e3a5f;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 8rem 4rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .help-section {
    padding: 6rem 3rem;
  }
}
@media (max-width: 767px) {
  .help-section {
    padding: 5rem 1.5rem;
  }
}
.help-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 75, 193, 0.55);
  z-index: 0;
}
.help-section__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.help-section__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}
.help-section__text {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 700px;
}

.btn--outline-white {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-top: 0.5rem;
}
.btn--outline-white:hover {
  background-color: #ffffff;
  color: #1e3a5f;
}

body {
  font-family: "Inter", sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  min-height: 100vh;
}

body.page {
  background: #f9f9f9;
}
/*# sourceMappingURL=main.css.map */
