/* =======================================
   VARIABLES
   ======================================= */
/* =======================================
   IMPORTS
   ======================================= */
/* =======================================
   SIZES
   ======================================= */
/* =======================================
   FONTS
======================================= */
/* @font-face {
  font-family: "neulis neue";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/Font.ttf) format("ttf"), url(../fonts/Font.woff) format("woff"), url(../fonts/Font.woff2) format("woff2");
} */

body * {
  box-sizing: border-box;
}

body {
  font-family: "Neulis Neue", sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
}

/* main {
  background: #F2F2ED;
} */

header#header {
  z-index: 999;
  width: 100%;
  top: 0;
  position: relative;
}

header#header .top .container {
  max-width: 1728px;
  margin: 0 auto;
  padding: calc(16px / 2) 16px;
  display: flex;
  align-items: center;
}

@media (max-width: 1120px) {
  header#header .top .container {
    padding: 0 16px;
  }
}

header#header .top .container .menu-utility-menu-container {
  margin-left: auto;
}

header#header .top .container .menu-utility-menu-container .menu {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}

header#header .top .container .menu-utility-menu-container .menu li {
  display: inline-block;
  padding: calc(16px / 2);
  line-height: 14px;
}

header#header .top .container .menu-utility-menu-container .menu li:first-of-type {
  padding-left: 0;
}

header#header .top .container .menu-utility-menu-container .menu li:last-of-type {
  padding-right: 0;
}

header#header .top .container a {
  color: #000000;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: bold;
}

header#header .top .container a:hover {
  color: #131515;
}

@media (max-width: 1120px) {
  header#header .top {
    display: none;
  }
}

header#header .main .container {
  max-width: 1728px;
  margin: 0 auto;
  padding: 20px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFA;
}

@media (max-width: 1120px) {
  header#header .main .container {
    padding: 20px 16px;
  }
}

header#header .main .container .logo {
  flex: 0 0 auto;
}

header#header .main .container .logo img {
  display: block;
}

header#header .main .container #main-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}

header#header .main .container #main-menu .menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

header#header .main .container #main-menu .menu li {
  display: inline-block;
  padding: 0px 16px;
  position: relative;
}

header#header .main .container #main-menu .menu li:first-of-type {
  padding-left: 0;
}

header#header .main .container #main-menu .menu li:last-of-type {
  padding-right: 0;
}

header#header .main .container #main-menu .menu li a {
  color: #000000;
  font-size: 20px;
  line-height: 26px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: bold;
}

header#header .main .container #main-menu .menu li a:hover {
  color: #131515;
}

header#header .main .container #main-menu .menu li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  background: #EDEFF0;
  padding: calc(16px / 2) 16px;
  width: 100vw;
  max-width: 250px;
  margin-left: calc(0px - 16px);
}

header#header .main .container #main-menu .menu li .sub-menu li {
  padding: calc(16px / 2);
  display: block;
}

header#header .main .container #main-menu .menu li .sub-menu li a {
  text-transform: none;
  font-size: 18px;
  line-height: 26px;
  display: block;
}

header#header .main .container #main-menu .menu li:hover .sub-menu {
  display: block;
}

@media (max-width: 1120px) {
  header#header .main .container #main-menu {
    display: none;
  }
}

header#header #mobile-toggle {
  display: none;
  z-index: 999;
  margin-left: auto;
}

header#header #mobile-toggle a {
  position: relative;
  display: block;
  width: 70px;
  height: 26px;
}

header#header #mobile-toggle a span {
  visibility: hidden;
  transition: all 0.2s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 26px;
}

header#header #mobile-toggle a span.active {
  visibility: visible;
  opacity: 1;
}

header#header #mobile-toggle a span img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.logo-mobile-active {
  display: none !important;
}

header#header.active {
  background: #202153;
}

header#header.active .logo-default {
  display: none !important;
}

header#header.active .logo-mobile-active {
  display: block !important;
}

@media (max-width: 1120px) {
  header#header #mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

header#header #mobile-menu {
  visibility: hidden;
  z-index: -1;
  position: absolute;
  left: 0;
  width: 100%;
  background: #202153;
  padding: 16px;
  opacity: 0;
  transition: all 0.2s ease;
  height: calc(100vh - 100%);
  top: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;

  /* MENU SLIDES FROM THE TOP */
  /* visibility: hidden;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: calc(100vh - 100%);
  background: #202153;
  padding: 16px;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box; */
}

header#header.active .main .container {
  background: #202153;
}

header#header #mobile-menu.active {
  visibility: visible;
  opacity: 1;
  z-index: 900;

  transform: translateY(0);
}

header#header #mobile-menu ul {
  padding: 0;
  width: 100%;
}

header#header #mobile-menu ul li {
  list-style: none;
  display: flex;
  align-items: center;
}

header#header #mobile-menu ul li .sub-menu {
  display: none;
}

header#header #mobile-menu ul li.menu-item-has-children::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url(../img/chevron.svg) no-repeat center/contain;
  margin-left: auto;
}

header#header #mobile-menu ul li a {
  color: #FFF;
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: 38px;
  padding: 20px 0;
  display: block;
  flex-grow: 1;
  text-decoration: none;
  letter-spacing: 0.4px;
}

header#header #mobile-menu ul#mobile-menu-links .main-menu-wrapper ul li a {
  color: #FFF;
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: 38px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  text-decoration: none;
  letter-spacing: 0.4px;
}

header#header #mobile-menu ul#mobile-menu-links .main-menu-wrapper ul li a::after {
  content: '';
  display: inline-flex;
  width: 48px;
  height: 48px;
  padding: 14px;
  min-width: 48px;
  border-radius: 100px;
  background: #424480 url(../img/right_button_arrow.svg) no-repeat center / 20px;
  flex-shrink: 0;
  margin-left: auto;
  box-sizing: border-box;
}

header#header #mobile-menu .utility-menu-wrapper {
  margin-top: auto;
  padding: 24px 0;
  width: 100%;
}

header#header #mobile-menu ul#mobile-menu-links {
  width: 100%;
  flex: 1;
}

header#header #mobile-menu .utility-menu-wrapper .mobile-utility-links {
  list-style: none;
  margin: 0;
  padding: 0;
  /* padding-bottom: 40px; */
}

header#header #mobile-menu .utility-menu-wrapper .mobile-utility-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 40px;
  border-radius: 999px;
  background: #DA3839;
  color: #FFFFFA;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  transition: background 0.2s ease;
  gap: 12px;
}

header#header #mobile-menu .utility-menu-wrapper .mobile-utility-links li a:hover {
  background: #B22E2F;
}

header#header #mobile-menu ul li.hidden {
  display: none;
}

header#header #mobile-menu ul li.expanded {
  flex-wrap: wrap;
  border: none;
}

header#header #mobile-menu ul li.expanded::after {
  display: none;
}

header#header #mobile-menu ul li.expanded a {
  padding: 16px;
  margin: 0 calc(0px - 16px) calc(0px - 16px);
}

header#header #mobile-menu ul li.expanded a::after {
  display: none;
}

header#header #mobile-menu ul li.expanded a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url(../img/chevron.svg) no-repeat center/contain;
  margin-right: 16px;
  transform: rotate(180deg);
}

header#header #mobile-menu ul li.expanded .sub-menu {
  display: block;
  width: 100%;
}

header#header #mobile-menu ul li.expanded .sub-menu li {
  border-top: none;
}

header#header #mobile-menu ul li.expanded .sub-menu li::after {
  display: none;
}

header#header #mobile-menu ul li.expanded .sub-menu li a {
  text-transform: none !important;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 16px 0;
  background: transparent;
  margin: 0;
  border-bottom: none;
}

header#header #mobile-menu ul li.expanded .sub-menu li a::before {
  display: none;
}

/* Main menu centered */
header#header .main .container .main-menu-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.main-menu-wrapper .main-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
}

.main-menu-wrapper .main-menu-links li {
  display: inline-block;
}

.main-menu-wrapper .main-menu-links li a {
  color: #221F20;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.main-menu-wrapper .main-menu-links li a:hover,
.main-menu-wrapper .main-menu-links li.current-menu-item a,
.main-menu-wrapper .main-menu-links li.current-menu-ancestor a {
  color: #DA3839;
}

.main-menu-wrapper .main-menu-links li a::after {
  content: '';
  width: 6px;
  height: 6px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: #DA3839;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.main-menu-wrapper .main-menu-links li a:hover::after,
.main-menu-wrapper .main-menu-links li.current-menu-item a::after,
.main-menu-wrapper .main-menu-links li.current-menu-ancestor a::after {
  opacity: 1;
}

/* Utility menu on right */
header#header .main .container .utility-menu-wrapper {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.utility-menu-wrapper .utility-menu-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.utility-menu-wrapper .utility-menu-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #FFFFFA;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.16px;

}

.utility-menu-wrapper .utility-menu-links li a:hover {
  background-color: #B22E2F;
}


/* ================================
   FOOTER
================================ */

footer#footer {
  background: #202153;
  display: flex;
  flex-direction: column;
}

.footer-inner {
  max-width: 1728px;
  /* margin: 0 auto; */
  padding: clamp(40px, 5vw, 80px) clamp(16px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 48px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand img {
  display: block;
  width: 250px;
  height: auto;
}

.footer-tagline {
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 52px;
  color: #FFFFFA;
  margin: 0;
}

.footer-tagline span {
  color: #00BFDF;
}

.footer-copyright {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  color: #899BA7;
  margin: 0;
}

.footer-copyright a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  color: #899BA7;
  margin: 0;
}

.footer-copyright--mobile {
  display: none;
}

@media (max-width: 768px) {
  .footer-copyright--desktop {
    display: none;
  }

  .footer-copyright--mobile {
    display: block;
  }
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  align-items: flex-end;
}

.footer-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.footer-nav-links li a {
  color: #FFFFFA;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.16px;
}

/* .footer-nav-links li a:hover {
  color: #DA3839;
} */

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social .socialLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #2D2E66;
  transition: background 0.2s ease;
  position: relative;
}

.footer-social .socialLink:hover {
  background: #C2E8FB;
}

.footer-social .socialLink img {
  width: 20px;
  height: 20px;
  display: block;
  transition: opacity 0.2s ease;
  position: absolute;
}

.footer-social .socialLink .social-hover {
  opacity: 0;
}

.footer-social .socialLink:hover .social-default {
  opacity: 0;
}

.footer-social .socialLink:hover .social-hover {
  opacity: 1;
}

.footer-bottom {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

.footer-bottom-dots {
  width: 100%;
  display: block;
  height: clamp(35px, 20vw, 94px);
  object-fit: cover;
  object-position: center top;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-tagline {
    font-size: 42px;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-nav-links {
    text-align: left;
  }

  .footer-meta {
    align-items: flex-start;
  }
}





#alert {
  display: none;
}

#alert.visible {
  display: block;
  background: #131515;
  color: #FFFFFF;
  z-index: 1;
}

#alert .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(16px / 2) calc(16px * 3) calc(16px / 2) 16px;
  position: relative;
  max-width: calc(1200px - calc(16px * 2));
}

@media (max-width: 1120px) {
  #alert .container {
    padding: 0 16px;
  }
}

#alert .container .copy {
  margin: 0 16px;
}

#alert .container .copy p {
  margin: 0;
  line-height: 28px;
  text-transform: uppercase;
}

#alert .container .copy p a {
  color: #FFFFFF;
  text-transform: none;
  font-weight: 600;
}

#alert .container #noticeClose {
  position: absolute;
  right: 0;
  cursor: pointer;
  margin-right: 16px;
}

#alert {
  display: none;
}

#alert.visible {
  display: block;
  background: #131515;
  color: #FFFFFF;
  z-index: 1;
}

#alert .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(16px / 2) calc(16px * 3) calc(16px / 2) 16px;
  position: relative;
  max-width: calc(1200px - calc(16px * 2));
}

@media (max-width: 1120px) {
  #alert .container {
    padding: 0 16px;
  }
}

#alert .container .copy {
  margin: 0 16px;
}

#alert .container .copy p {
  margin: 0;
  line-height: 28px;
  text-transform: uppercase;
}

#alert .container .copy p a {
  color: #FFFFFF;
  text-transform: none;
  font-weight: 600;
}

#alert .container #noticeClose {
  position: absolute;
  right: 0;
  cursor: pointer;
  margin-right: 16px;
}


/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* .hero {
  padding: calc(16px * 4) 0;
}

.hero .container {
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: calc(16px * 4);
}

@media (max-width: 1120px) {
  .hero .container {
    padding: 0 16px;
  }
}

@media (max-width: 1120px) {
  .hero .container {
    flex-wrap: wrap;
    gap: calc(16px * 2);
  }

  .hero .container .left,
  .hero .container .right {
    width: 100%;
    text-align: center;
  }
}

.hero .container .right {
  height: 684.615px;
  flex: 1 0 0;
  aspect-ratio: 39/25;
  z-index: 0;
}

.hero .container .right::after {
  content: "";
  background: url('../img/dot_pattern.svg');
  background-size: cover;
  background-repeat: no-repeat;
  top: -80px;
  right: 0;
  position: absolute;
  width: 435px;
  height: 435px;
  z-index: -1;
} */

/* ================================
   HERO SECTION
================================ */

/* Hero video wrapper */
#home-hero .hero-media-wrapper {
  position: relative;
  display: inline-block;
  /* or block, depending on your layout */
}

/* Hide the video fallback image by default */
#home-hero .hero-image-fallback {
  display: none;
}

/* Toggle button — bottom right corner of the video */
#home-hero .hero-video-toggle {
  position: absolute;
  bottom: 0;
  right: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  line-height: 0;
}

#home-hero .hero-video-toggle img {
  width: 32px;
  /* adjust to match your SVG size */
  height: 32px;
  display: block;
}

/* Icon visibility — pause shown by default since video autoplays */
#home-hero .hero-video-icon--play {
  display: none;
}

#home-hero .hero-video-icon--pause {
  display: block;
}

/* Make the wrapper fill the .right container */
#home-hero.hero .container .right .hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Bump the toggle above the video */
#home-hero .hero-video-toggle {
  z-index: 3;
}



#home-hero.hero {
  position: relative;
  padding-block: clamp(56px, 4vw, 80px);
  padding-inline: clamp(16px, 4vw, 56px);
  overflow: hidden;
  background: #F2F2ED;
}

#home-hero.hero .container h1 span.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}

#home-hero.hero .container h1 span.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 32px;
  bottom: -5px;
  background: #C2E8FB;
  z-index: -1;
}

#home-hero.hero .container {
  max-width: 1728px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  overflow: visible;
  position: relative;
}

#home-hero.hero .container .left,
#home-hero.hero .container .content {
  max-width: 500px;
  align-self: start;
}

#home-hero.hero .container h1 {
  margin: 0 0 14px 0;
  font-size: 64px;
  color: #202153;
  line-height: 64px;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: none;
}

#home-hero.hero .container p {
  color: #221F20;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#home-hero.hero .container .buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
}

#home-hero.hero .button.primary,
#home-hero.hero .button.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 999px;
  color: #FFFFFA;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.16px;
  gap: 12px;
  transition: background 0.2s ease;
  text-transform: none;
}

#home-hero.hero .button.primary {
  background: #e5403a;
}

#home-hero.hero .button.primary:hover {
  background-color: #B22E2F;
}

#home-hero.hero .button.secondary {
  background: transparent;
  border: 2px solid #202153;
  color: #202153;
}

#home-hero.hero .button.secondary:hover {
  background: #202153;
  color: #FFFFFA;
}

/* #home-hero.hero .container .right {
  position: relative;
  z-index: 2;
  width: clamp(385px, calc(385px + (1068 - 385) * ((100vw - 600px) / (1728 - 600))), 1068px);
  height: calc(clamp(385px, calc(385px + (1068 - 385) * ((100vw - 600px) / (1728 - 600))), 1068px) * 0.641);
  overflow: visible;
  border-radius: 150px 0px 150px 0px;
} */

#home-hero.hero .container .right {
  position: relative;
  z-index: 2;
  width: clamp(385px, calc(385px + (1068 - 385) * ((100vw - 600px) / (1728 - 600))), 1068px);
  aspect-ratio: 16 / 9;
  overflow: visible;
  border-radius: 150px 0px 150px 0px;
}

#home-hero .hero-dots-wrapper {
  position: absolute;
  top: -95px;
  right: -56px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#home-hero.hero .container .right .hero-media-wrapper video,
#home-hero.hero .container .right img:not(.hero-dots-image):not(.hero-video-icon) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(80px, calc(80px + (150 - 80) * ((100vw - 600px) / (1728 - 600))), 150px) 0px clamp(80px, calc(80px + (150 - 80) * ((100vw - 600px) / (1728 - 600))), 150px) 0px;
  z-index: 2;
}

#home-hero .hero-dots-image {
  width: 435px;
  height: 435px;
  display: block;
  transform: translateX(57px);
}

/* Responsive */
@media (max-width: 1440px) {
  #home-hero.hero .container .right {
    width: clamp(600px, 54vw, 780px);
    height: calc(clamp(600px, 54vw, 780px) * 0.641);
  }

  #home-hero .hero-dots-image {
    transform: translateX(clamp(57px, 4vw, 57px));
  }
}

@media (max-width: 1180px) {
  #home-hero.hero .container .right {
    width: clamp(480px, 50vw, 600px);
    height: calc(clamp(480px, 50vw, 600px) * 0.641);
  }

  #home-hero .hero-dots-image {
    transform: translateX(clamp(40px, 25vw, 150px));
  }
}

@media (max-width: 1120px) {
  #home-hero.hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  #home-hero.hero .container .left,
  #home-hero.hero .container .content {
    order: 1;
    max-width: 640px;
  }

  #home-hero.hero .container .right {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1068 / 685;
  }

  #home-hero .hero-dots-wrapper {
    top: -56px;
  }

  #home-hero .hero-dots-image {
    width: 350px;
    height: 350px;
    transform: translateX(40px);
  }

  #home-hero .hero-video-toggle {
    bottom: -20px;
  }
}

@media (max-width: 600px) {
  #home-hero.hero .container {
    padding: 0;
  }

  #home-hero.hero .container .right {
    width: 100%;
    aspect-ratio: 114 / 73;
    height: auto;
  }

  /*  #home-hero.hero .container .right video,
  #home-hero.hero .container .right img:not(.hero-dots-image) {
    border-radius: 80px 0px 80px 0px;
  } */

  #home-hero .hero-dots-wrapper {
    top: -75px;
  }

  #home-hero .hero-dots-image {
    width: 276px;
    height: 275px;
    transform: translateX(188px);
  }
}

/* ================================
   WHO WE ARE SECTION
================================ */

.feature {
  padding-block: clamp(56px, 6vw, 80px);
  padding-inline: clamp(16px, 4vw, 56px);
}

.feature .container {
  max-width: 1728px;
  margin: 0 auto;
  background: #202153;
  border-radius: 32px;
  padding-block: clamp(56px, 6vw, 80px);
  padding-inline: clamp(24px, 4vw, 80px);
  position: relative;
  overflow: hidden;
}

.feature .container::after {
  content: '';
  position: absolute;
  bottom: -677px;
  right: -162px;
  width: 902px;
  height: 902px;
  border-radius: 16.55px 413.762px;
  background: #2D2E66;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-90deg);
}

.feature .whoweare-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.feature .whoweare-top-left {
  max-width: 600px;
}

/* .feature .whoweare-top-right {
  max-width: 763px;
} */

/* .feature .whoweare-top-left,
.feature .whoweare-top-right {
  color: #FFFFFA;
} */

.feature .whoweare-top-left h2 {
  color: #FFFFFA;
  font-size: clamp(42px, 3vw, 46px);
  font-style: normal;
  font-weight: 800;
  line-height: clamp(46px, 3vw, 52px);
  margin: 0 0 24px 0;
}

.feature .whoweare-top-left p {
  color: #FFFFFA;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.feature .whoweare-top-right p {
  color: #FFFFFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  margin: 0;
}

.feature .whoweare-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  row-gap: clamp(34px, 5vw, 72px);
  column-gap: clamp(58px, 14vw, 200px);
  align-items: center;
}

.feature .whoweare-logos .logo-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.feature .whoweare-logos .logo-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.feature .whoweare-logos .logo-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.feature .whoweare-logos .logo-item:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.feature .whoweare-logos .logo-item:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.feature .whoweare-logos .logo-item:nth-child(6) {
  grid-column: 1;
  grid-row: 3;
}

.feature .logo-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature .logo-item img {
  width: clamp(117px, 12vw, 200px);
  height: clamp(44px, 4vw, 57px);
  object-fit: contain;
}

.feature .whoweare-cta-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.feature .button.primary {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #FFFFFA;
  text-decoration: none;
  text-transform: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  transition: background 0.2s ease;
  gap: 12px;
}

.feature .button.primary:hover {
  background-color: #B22E2F;
}

/* Responsive */
/* @media (max-width: 1120px) {
  .feature .whoweare-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature .container::after {
    right: -280px;
    bottom: -710px;
  }
} */

@media (max-width: 1120px) {
  .feature .whoweare-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .feature .whoweare-logos {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 96px;
  }

  .feature .whoweare-logos .logo-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .feature .whoweare-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature .logo-item img {
    width: 117px;
    height: 44px;
  }

  .feature .whoweare-cta-wrapper {
    justify-content: center;
  }

  .feature .container::after {
    right: -513px;
    bottom: -723px;
  }
}

/* ================================
   SERVICES STRIP
================================ */
.services-strip-section {
  background: #00BFDF;
  overflow: hidden;
  padding-block: 48px;
  padding-inline: 0;
}

.services-strip-viewport {
  overflow: hidden;
  width: 100%;
}

.services-strip-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 20s linear infinite;
}

.services-strip-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.services-strip-item {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}

.services-strip-text {
  color: #202153;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px;
}

.services-strip-item img {
  width: 30px;
  height: 47px;
  display: block;
  flex-shrink: 0;
}

.services-strip-list+.services-strip-list {
  padding-left: 40px;
}

/* ================================
   TICKER ANIMATION
================================ */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-strip-track {
    animation: none;
  }
}

/* Pause on hover */
/* .services-strip-section:hover .services-strip-track {
  animation-play-state: paused;
} */

/* ================================
   MEET OUR PEOPLE
================================ */
.mop-section {
  background: #F2F2ED;
  padding-block: clamp(56px, 6vw, 80px);
  padding-inline: clamp(16px, 4vw, 56px);
  overflow: hidden;
}

.mop-inner {
  max-width: 1728px;
  margin: 0 auto;
  /* padding-inline: clamp(16px, 4vw, 56px); */
}

/* ================================
   HEADER
================================ */
.mop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.mop-kicker {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #202153;
  margin: 0 0 12px 0;
}

.mop-heading {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  color: #202153;
  line-height: 1.1;
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
}

.mop-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #FFFFFA;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.mop-cta:hover {
  background: #B22E2F;
}

.mop-cta-icon {
  width: 20px;
  height: 20px;
}

/* ================================
   SLIDER
================================ */

.mop-slider {
  display: flex;
  gap: 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-x: auto;
  overflow-y: visible;
  margin-right: -56px;
  padding-right: 56px;
}

.mop-slider::-webkit-scrollbar {
  display: none;
}

/* .mop-slider:not(.slick-initialized) {
  visibility: hidden;
  opacity: 0;
}

.mop-slider.slick-initialized {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
} */

.mop-slider-wrapper {
  position: relative;
}

/* .mop-slider .slick-list {
  overflow: visible;
} */

/* .mop-slide {
  padding: 0 12px;
} */

/* ================================
   CARD
================================ */
.mop-slide {
  padding: 0 25px 0 0;
  position: relative;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.mop-card-background {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #E8E8E0;
  z-index: 0;
  width: 422px;
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mop-card {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 50px;
  overflow: visible;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 422px;
  height: 600px;
  display: flex;
  flex-direction: column;
}

a.mop-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

/* .mop-slider.is-dragging .mop-card {
  transition: none;
  transform: translateY(0) !important;
} */

.mop-slide:hover .mop-card {
  transform: translateY(-12px);
}

.mop-slide:hover .mop-card-background {
  background: #00BFDF;
}

.mop-card-image-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 50px;
  padding: 16px;
  background: #FFFFFF;
}

.mop-card-image-wrapper--placeholder {
  background: #E8E8E0;
}

.mop-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 32px;
}

/* Hover headshot */
.mop-card-image--hover {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border-radius: 32px;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mop-slide:hover .mop-card-image--hover {
  opacity: 1;
}

/* LinkedIn icon */
.mop-card-linkedin {
  position: absolute;
  bottom: 37px;
  right: 37px;
  width: 88px;
  height: 88px;
  padding: 20px;
  border-radius: 45px 0 0 0;
  background: #FFFFFA;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
  transform: translate(25%, 25%);
}

.mop-card-linkedin img {
  width: 48px;
  height: 48px;
  display: block;
}

.mop-slide:hover .mop-card-linkedin {
  opacity: 1;
}

@media (max-width: 768px) {
  .mop-card {
    width: 318px;
  }

  a.mop-card {
    height: 473px;
    border-radius: 30px
  }

  .mop-card-image {
    border-radius: 20px;
  }

  .mop-card-image--hover {
    border-radius: 20px;
  }

  .mop-card-background {
    width: 318px;
    border-radius: 30px;
  }
}

@media (max-width: 1120px) {
  .mop-card-linkedin {
    opacity: 1;
  }
}

/* Card info */
.mop-card-info {
  padding: 8px 32px 32px
}

.mop-card-name {
  font-size: 24px;
  font-weight: 800;
  color: #202153;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.mop-card-title {
  font-size: 20px;
  font-weight: 400;
  color: #697680;
  margin: 0;
  opacity: 0.7;
}

/* ================================
   ARROWS
================================ */
.mop-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 56px;
}

.mop-arrow {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 14px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.mop-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.mop-arrow .arrow-hover {
  opacity: 0;
}

.mop-arrow:hover .arrow-default {
  opacity: 0;
}

.mop-arrow:hover .arrow-hover {
  opacity: 1;
}

.mop-arrow img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  transition: opacity 0.2s ease;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .mop-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
  background: #F2F2ED;
  padding-block: clamp(56px, 6vw, 56px);
  padding-inline: clamp(16px, 4vw, 56px);
}

.contact-inner {
  max-width: 1728px;
  margin: 0 auto;
  background: #202153;
  border-radius: 32px;
  padding-block: clamp(56px, 5vw, 72px);
  padding-inline: clamp(25px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 130px;
  position: relative;
  overflow: hidden;
}

/* ================================
   BACKGROUND SHAPE
================================ */
.contact-inner::after {
  content: '';
  position: absolute;
  bottom: -535px;
  right: -88px;
  width: 902px;
  height: 902px;
  border-radius: 16.55px 413.762px;
  background: #2D2E66;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-90deg);
  transition: bottom 0.3s ease, right 0.3s ease;
}

/* ================================
   LEFT
================================ */
.contact-left {
  position: relative;
  z-index: 1;
}

.contact-kicker {
  color: #C2E8FB;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.contact-heading {
  font-size: clamp(42px, 3vw, 46px);
  font-weight: 800;
  color: #FFFFFA;
  margin: 0 0 16px 0;
  text-transform: none;
  letter-spacing: normal;
  line-height: 46px;
}

.contact-description {
  font-size: clamp(16px, 1.2vw, 16px);
  font-weight: 400;
  color: #FFFFFA;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
  max-width: 480px;
}

/* ================================
   RIGHT
================================ */
.contact-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  justify-self: center;
}

.contact-subheading {
  color: #FFFFFA;
  font-size: clamp(24px, 2vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #FFFFFA;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.16px;
  gap: 12px;
  transition: background 0.2s ease;
}

.contact-cta:hover {
  background: #B22E2F;
}

.contact-cta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1440px) {
  .contact-inner::after {
    right: -223px;
    bottom: -558px;
  }
}

@media (max-width: 1180px) {
  .contact-inner::after {
    right: -345px;
    bottom: -558px;
  }
}

@media (max-width: 1120px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner::after {
    right: -373px;
    bottom: -572px;
  }

  .contact-right {
    margin-left: auto;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .contact-inner::after {
    right: -407px;
    bottom: -600px;
  }

  .contact-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contact-inner::after {
    right: -568px;
    bottom: -590px;
  }

  .contact-right {
    justify-self: flex-start;
    width: 100%;
  }

  .contact-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ================================
   CONTACT SECTION 
================================ */
section#contact-us.general.cream.default {
  padding-block: clamp(56px, 6vw, 56px);
  padding-inline: clamp(16px, 4vw, 56px);
}

section#contact-us.general.cream.default .container.halves {
  max-width: 1728px;
  margin: 0 auto;
  background: #202153;
  border-radius: 32px;
  padding-block: clamp(56px, 5vw, 72px);
  padding-inline: clamp(25px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 130px;
  position: relative;
  overflow: hidden;
}

/* Background shape */
section#contact-us.general.cream.default .container.halves::after {
  content: '';
  position: absolute;
  bottom: -535px;
  right: -88px;
  width: 902px;
  height: 902px;
  border-radius: 16.55px 413.762px;
  background: #2D2E66;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-90deg);
  transition: bottom 0.3s ease, right 0.3s ease;
}

/* ================================
   LEFT COLUMN
================================ */
section#contact-us.general.cream.default .container.halves .column:first-child {
  position: relative;
  z-index: 1;
}

/* Kicker — uppercase <p> before the <h2> */
section#contact-us.general.cream.default .container.halves .column:first-child .module>p:first-child {
  color: #C2E8FB;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

section#contact-us.general.cream.default .container.halves .column:first-child h2 {
  font-size: clamp(42px, 3vw, 46px);
  font-weight: 800;
  color: #FFFFFA;
  margin: 0 0 16px 0;
  text-transform: none;
  letter-spacing: normal;
  line-height: 46px;
}

/* Description — the <p> after the <h2> */
section#contact-us.general.cream.default .container.halves .column:first-child .module>p:last-child {
  font-size: clamp(16px, 1.2vw, 16px);
  font-weight: 400;
  color: #FFFFFA;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
  max-width: 550px;
}

/* ================================
   RIGHT COLUMN
================================ */
section#contact-us.general.cream.default .container.halves .column:last-child {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  justify-self: center;
}

/* Subheading */
section#contact-us.general.cream.default .container.halves .column:last-child p:first-child {
  color: #FFFFFA;
  font-size: clamp(24px, 2vw, 24px);
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  margin-bottom: 24px;
}

/* CTA button */
section#contact-us.general.cream.default .container.halves .column:last-child a.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-decoration: none;
  border: none;

  transition: background 0.2s ease;
}

section#contact-us.general.cream.default .container.halves .column:last-child a.button.primary:hover {
  background: #B22E2F;
}

section#contact-us.general.cream.default .container.halves .column:first-child .module {
  width: 100%;
  max-width: 550px;
}

section#contact-us.general.cream.default .container.halves .column {
  width: auto;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1440px) {
  section#contact-us.general.cream.default .container.halves::after {
    right: -223px;
    bottom: -558px;
  }
}

@media (max-width: 1180px) {
  section#contact-us.general.cream.default .container.halves::after {
    right: -345px;
    bottom: -558px;
  }
}

@media (max-width: 1120px) {
  /* section#contact-us.general.cream.default .container.halves {
    grid-template-columns: 1fr;
  } */

  section#contact-us.general.cream.default .container.halves::after {
    right: -373px;
    bottom: -572px;
  }

  section#contact-us.general.cream.default .container.halves .column:last-child {
    margin-left: auto;
    /* margin-bottom: 50px; */
  }
}

@media (max-width: 800px) {
  section#contact-us.general.cream.default .container.halves {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section#contact-us.general.cream.default .container.halves::after {
    right: -407px;
    bottom: -600px;
  }

  section#contact-us.general.cream.default .container.halves .column:last-child a.button.primary {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  section#contact-us.general.cream.default .container.halves::after {
    right: -568px;
    bottom: -590px;
  }

  section#contact-us.general.cream.default .container.halves .column:last-child {
    justify-self: flex-start;
    width: 100%;
    align-items: stretch;
  }

  section#contact-us.general.cream.default .container.halves .column:last-child a.button.primary {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

section#contact-us.general.cream.default .container.halves .column:last-child a.button.primary::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('../img/right_button_arrow.svg') center / contain no-repeat;
  flex-shrink: 0;
}

/* ================================
   GLOBAL FORM LAYOUT (.form class)
   Kept — used elsewhere on the site
================================ */
.form {
  padding: calc(16px * 4) 0;
}

.form .container {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  .form .container {
    padding: 0 16px;
  }
}

.form .container .intro {
  width: 100%;
  margin-bottom: calc(16px * 3);
}

.form.withside .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1050px;
  gap: calc(16px * 2) 180px;
}

.form.withside .container .gForm {
  flex-grow: 1;
}

.form.withside .container .sidebar {
  width: 350px;
  margin-left: auto;
}

.form.withside .container .sidebar .block {
  background: #131515;
  color: #ffffff;
  padding: 16px calc(16px * 3);
  margin-bottom: calc(16px * 2);
}

.form.withside .container .sidebar .block h1,
.form.withside .container .sidebar .block h2,
.form.withside .container .sidebar .block h3,
.form.withside .container .sidebar .block h4,
.form.withside .container .sidebar .block h5,
.form.withside .container .sidebar .block h6 {
  margin: 16px 0;
}

@media (max-width: 1120px) {
  .form.withside .container {
    gap: calc(16px * 4);
  }
}

@media (max-width: 800px) {
  .form.withside .container {
    flex-direction: column;
  }

  .form.withside .container .sidebar {
    width: 100%;
  }
}

/* ================================
   GLOBAL INPUT STYLES
   Kept — applies site-wide
================================ */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  border: #707070 1px solid;
  padding: calc(16px - 5px) calc(16px * 1.5) !important;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  font-family: "Neulis Neue", "Helvetica", "Arial", sans-serif;
}

input[type=text]:focus,
input[type=text]:focus-visible,
input[type=email]:focus,
input[type=email]:focus-visible,
input[type=tel]:focus,
input[type=tel]:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
  border-color: #000000;
  outline: none;
}

/* ================================
   GLOBAL GRAVITY FORMS
   Kept — radio/checkbox, validation
   errors used across all forms
================================ */
.gform_wrapper.gravity-theme input[type=radio],
.gform_wrapper.gravity-theme input[type=checkbox] {
  display: none;
}

.gform_wrapper.gravity-theme .gfield_radio .gchoice label,
.gform_wrapper.gravity-theme .gfield_checkbox .gchoice label {
  display: inline-flex !important;
  align-items: center;
  cursor: pointer;
}

.gform_wrapper.gravity-theme .gfield_radio .gchoice label::before,
.gform_wrapper.gravity-theme .gfield_checkbox .gchoice label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: -3px;
  margin-right: calc(16px / 2);
}

.gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=radio]:checked+label::before,
.gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=checkbox]:checked+label::before,
.gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=radio]:checked+label::before,
.gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=checkbox]:checked+label::before {
  background: #131515;
}

.gform_wrapper.gravity-theme .gfield_radio .gchoice label::before {
  border-radius: 100%;
}

.gform_wrapper.gravity-theme .gform_validation_errors {
  border-color: #e3405f;
  background-color: #ffffff;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
  color: #e3405f;
  font-family: "Neulis Neue", "Helvetica", "Arial", sans-serif;
  text-transform: none;
  font-size: 16px;
}

.gform_wrapper.gravity-theme .gfield_error label,
.gform_wrapper.gravity-theme .gfield_error .gfield_required,
.gform_wrapper.gravity-theme .gfield_error .validation_message {
  color: #e3405f;
}

.gform_wrapper.gravity-theme .gfield_error input,
.gform_wrapper.gravity-theme .gfield_error textarea {
  border-color: #e3405f;
}

.gform_wrapper.gravity-theme .gfield_error .validation_message {
  border: none;
  padding: 0;
  background: transparent;
}

/* ================================
   GFORM 1 — SPECIFIC OVERRIDES
   Kept — unique inline form layout
================================ */
form#gform_1 {
  display: flex;
  align-items: flex-end;
}

form#gform_1 .gform_body {
  flex-grow: 1;
}

form#gform_1 .gform_footer {
  padding: 0;
}

form#gform_1 .gfield_required {
  display: none;
}

form#gform_1 .button {
  margin-bottom: 0;
  height: 50px;
  width: 50px;
  text-indent: -9999px;
  padding: 0;
  background: #ffffff url(../img/arrow-right-large.svg) no-repeat center/19px;
  margin-left: 16px;
  border: #707070 1px solid;
}

/* ================================
   CONTACT SECTION
================================ */
section#form.general.white.default {
  padding-block: clamp(56px, 6vw, 96px);
  padding-inline: clamp(16px, 4vw, 56px);
}

section#form.general.white.default .container.halves {
  max-width: 1328px;
  margin: 0 auto;
  align-items: start;
  justify-content: space-between;
}

section#form.general.white.default .container.halves .column {
  width: auto;
  flex: 1;
}

section#form.general.white.default .container.halves .column:first-child {
  max-width: 500px;
}

section#form.general.white.default .container.halves .column:last-child {
  max-width: 620px;
}

section#form.general.white.default .container.halves .column {
  width: auto;
}

section#form.general.white.default .container.halves .column:first-child .module>p:first-child {
  color: #454344;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

section#form.general.white.default .container.halves .column:first-child h2 {
  font-size: clamp(42px, 4vw, 46px);
  font-style: normal;
  font-weight: 800;
  line-height: 46px;
  color: #202153;
  margin: 0 0 24px 0;
}

section#form.general.white.default .container.halves .column:first-child .module>p:nth-child(3) {
  font-size: 16px;
  color: #221F20;
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 500px;
}

section#form.general.white.default .container.halves .column:first-child .module>p:nth-child(4) {
  display: none;
}

section#form.general.white.default .container.halves .column:first-child .module>p:empty,
section#form.general.white.default .container.halves .column:first-child .module>p:nth-child(4) {
  display: none;
}

section#form.general.white.default .container.halves .column:first-child .module>p:not(:first-child):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)):not(:has(a)) {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: #221F20;
  margin: 0 0 4px 0;
}

section#form.general.white.default .container.halves .column:first-child .module>p:not(:first-child):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)):has(a) {
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

section#form.general.white.default .container.halves .column:first-child .module>p:has(a) img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}



section#form.general.white.default .container.halves .column:first-child .module a {
  color: #DA3839;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.16px;
  text-decoration: none;
}

section#form.general.white.default .gform_wrapper .gfield_label,
section#form.general.white.default .gform_wrapper .gform-field-label--type-sub {
  color: #221F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.32px;
  text-transform: none;
}

section#form.general.white.default .gform_wrapper .gfield_required {
  color: #202153;
  font-weight: 400;
  font-size: 14px !important;
}

section#form.general.white.default .gform_wrapper .gfield_required_text {
  display: none;
}

section#form.general.white.default .gform_wrapper .gfield_required::after {
  content: '*';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.32px;
}

section#form.general.white.default .gform_wrapper input[type="text"],
section#form.general.white.default .gform_wrapper input[type="email"],
section#form.general.white.default .gform_wrapper textarea {
  width: 100%;
  border: 1.5px solid #202153 !important;
  border-radius: 8px;
  padding: 12px 16px !important;
  font-size: 15px;
  color: #202153;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

section#form.general.white.default .gform_wrapper input[type="text"]:focus,
section#form.general.white.default .gform_wrapper input[type="email"]:focus,
section#form.general.white.default .gform_wrapper textarea:focus {
  border-color: #202153 !important;
  box-shadow: 0 0 0 3px rgba(32, 33, 83, 0.1);
  outline: none;
}

section#form.general.white.default .gform_wrapper textarea {
  min-height: 140px;
  resize: vertical;
}

section#form.general.white.default .gform_wrapper .ginput_container--name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

section#form.general.white.default .gform_wrapper fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

section#form.general.white.default .gform_wrapper fieldset legend {
  display: none;
}

section#form.general.white.default .gform_wrapper .gfield {
  margin-bottom: 20px;
}

section#form.general.white.default .gform_wrapper .charleft {
  display: none;
}

.gform_required_legend {
  display: none;
}

section#form.general.white.default .gform_wrapper .gform-footer .button,
section#form.general.white.default .gform_wrapper .gform_footer .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

section#form.general.white.default .gform_wrapper .gform-footer .button:hover,
section#form.general.white.default .gform_wrapper .gform_footer .button:hover {
  background: #b22e2f;
}

section#form.general.white.default .gform_wrapper .gform-footer .button::after,
section#form.general.white.default .gform_wrapper .gform_footer .button::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('../img/right_button_arrow.svg') center / contain no-repeat;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  section#form.general.white.default .container.halves {
    flex-direction: column;
  }

  section#form.general.white.default .container.halves .column:first-child,
  section#form.general.white.default .container.halves .column:last-child {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  section#form.general.white.default .gform_wrapper .ginput_container--name {
    grid-template-columns: 1fr;
  }
}

section#form.confirmation-active .container.halves {
  display: block !important;
  width: 100%;
  max-width: 100%;
}

section#form.confirmation-active .column:first-child {
  display: none !important;
}

section#form.confirmation-active .column:last-child {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
}

.gf-confirmation-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 123px;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
  max-width: 1728px;
  margin: 0 auto;
  width: 100%;
}

.gf-confirmation-content {
  flex: 1 1 340px;
  max-width: 500px;
}

.gf-confirmation-heading {
  font-size: clamp(56px, 4vw, 64px);
  color: #202153;
  font-style: normal;
  font-weight: 800;
  line-height: 64px;
  margin: 0 0 24px;
  letter-spacing: normal;
  text-transform: none;
}

.gf-confirmation-body {
  font-size: 20px;
  color: #221F20;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 12px;
}

.gf-confirmation-link {
  color: #DA3839;
  text-decoration: none;
  font-weight: 500;
}

.gf-confirmation-link:hover {
  text-decoration: underline;
}

.gf-confirmation-images {
  flex: 0 0 705px;
  width: 705px;
  max-width: 705px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.gf-confirmation-img-top img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 0 110px 0 110px;
  display: block
}

.gf-confirmation-img-bottom {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  height: 340px;
}

.gf-confirmation-blob {
  width: 340px;
  height: 340px;
  flex-shrink: 0;
  object-fit: cover;
}

.gf-confirmation-img-portrait {
  width: 340px;
  height: 340px;
  flex-shrink: 0;
  overflow: hidden;
  margin-left: 0;
}

.gf-confirmation-img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 1200px) {
  .gf-confirmation-wrap {
    gap: 48px;
  }

  .gf-confirmation-images {
    flex: 1 1 auto;
    width: auto;
    max-width: 705px;
    min-width: 0;
  }

  .gf-confirmation-img-bottom {
    height: auto;
  }

  .gf-confirmation-blob {
    width: calc(50% - 12px);
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 1;
    flex: 1 1 0;
  }

  .gf-confirmation-img-portrait {
    width: calc(50% - 12px);
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 1;
    flex: 1 1 0;
  }
}

@media (max-width: 768px) {
  .gf-confirmation-wrap {
    flex-direction: column;
    gap: 32px;
  }

  .gf-confirmation-content {
    max-width: 100%;
    width: 100%;
  }

  .gf-confirmation-images {
    flex: none;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    gap: 12px;
  }

  .gf-confirmation-img-top img {
    height: auto;
    aspect-ratio: 705 / 340;
  }

  .gf-confirmation-img-bottom {
    height: auto;
    align-items: stretch;
    gap: 12px
  }

  .gf-confirmation-blob {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    width: auto;
    height: auto;
    aspect-ratio: 1;
    display: block;
  }

  .gf-confirmation-img-portrait {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: auto;
    aspect-ratio: 1;
  }

  .gf-confirmation-img-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}



/* ================================
   CONTACT US CONTACT SECTION
================================ */
section#form.general.cream.default {
  padding-block: clamp(56px, 6vw, 56px);
  padding-inline: clamp(16px, 4vw, 56px);
}

section#form.general.cream.default .container.halves {
  max-width: 1616px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: space-between;
}

section#form.general.cream.default .container.halves .column {
  width: auto;
  flex: 1;
}

section#form.general.cream.default .container.halves .column:first-child {
  max-width: 550px;
  display: flex;
  flex-direction: column;
}

section#form.general.cream.default .container.halves .column:last-child {
  max-width: 918px;
  padding: 80px;
  border-radius: 50px;
  background: var(--Secondary-Cream-300, #FFFFFA);
}

section#form.general.cream.default .container.halves .column {
  width: auto;
}

section#form.general.cream.default .container.halves .column:first-child .module {
  display: flex;
  flex-direction: column;
  flex: 1;
}


section#form.general.cream.default .container.halves .column:first-child h2 {
  font-size: clamp(42px, 4vw, 46px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  color: #202153;
  margin: 0 0 24px 0;
}

.module-top .link-row a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #DA3839;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.16px;
  text-decoration: none;
}

.module-top .link-row {
  margin: 0 0 20px 0;
}

.module-top .intro {
  font-size: 16px;
  color: #221F20;
  line-height: 1.6;
  margin: 0 0 48px 0;
  max-width: 500px;
}

.module-top .link-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.34px;
  color: #221F20;
  margin: 0 0 2px 0;
}



.module-top .link-row a img {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.module-top a {
  color: #DA3839;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.16px;
  text-decoration: none;
}

.module-top .link-row a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #DA3839;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.16px;
  text-decoration: none;
}

section#form.general.cream.default .gform_wrapper .gfield_label,
section#form.general.cream.default .gform_wrapper .gform-field-label--type-sub {
  color: #221F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.32px;
  text-transform: none;
}

section#form.general.cream.default .gform_wrapper .gfield_required {
  color: #202153;
  font-weight: 400;
  font-size: 14px !important;
}

section#form.general.cream.default .gform_wrapper .gfield_required_text {
  display: none;
}

section#form.general.cream.default .gform_wrapper .gfield_required::after {
  content: '*';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.32px;
}

section#form.general.cream.default .gform_wrapper input[type="text"],
section#form.general.cream.default .gform_wrapper input[type="email"],
section#form.general.cream.default .gform_wrapper textarea {
  width: 100%;
  border: 1.5px solid #202153 !important;
  border-radius: 8px;
  padding: 12px 16px !important;
  font-size: 15px;
  color: #202153;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

section#form.general.cream.default .gform_wrapper input[type="text"]:focus,
section#form.general.cream.default .gform_wrapper input[type="email"]:focus,
section#form.general.cream.default .gform_wrapper textarea:focus {
  border-color: #202153 !important;
  box-shadow: 0 0 0 3px rgba(32, 33, 83, 0.1);
  outline: none;
}

section#form.general.cream.default .gform_wrapper textarea {
  min-height: 140px;
  resize: vertical;
}

section#form.general.cream.default .gform_wrapper .ginput_container--name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

section#form.general.cream.default .gform_wrapper fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

section#form.general.cream.default .gform_wrapper fieldset legend {
  display: none;
}

section#form.general.cream.default .gform_wrapper .gfield {
  margin-bottom: 20px;
}

section#form.general.cream.default .gform_wrapper .charleft {
  display: none;
}

.gform_required_legend {
  display: none;
}

section#form.general.cream.default .gform_wrapper .gform-footer .button,
section#form.general.cream.default .gform_wrapper .gform_footer .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

section#form.general.cream.default .gform_wrapper .gform-footer .button:hover,
section#form.general.cream.default .gform_wrapper .gform_footer .button:hover {
  background: #b22e2f;
}

section#form.general.cream.default .gform_wrapper .gform-footer .button::after,
section#form.general.cream.default .gform_wrapper .gform_footer .button::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('../img/right_button_arrow.svg') center / contain no-repeat;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  section#form.general.cream.default .container.halves {
    flex-direction: column;
  }

  section#form.general.cream.default .container.halves .column:first-child,
  section#form.general.cream.default .container.halves .column:last-child {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  section#form.general.cream.default .gform_wrapper .ginput_container--name {
    grid-template-columns: 1fr;
  }
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.social-links a {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-image: var(--icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.2s ease;
}

.social-links a:hover {
  background-image: var(--icon-hover);
}

.social-links a img {
  display: none;
}

.module--contact {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.module-bottom p {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: #221F20;
  margin: 0 0 4px 0;
}

.module--contact .module-bottom {
  margin-top: auto;
}

/* OUR OFFICES */
section#offices.general.cream.default {
  padding-block: clamp(80px, 6vw, 56px);
  padding-inline: clamp(16px, 4vw, 56px);
}

section#offices.general.cream.default .container {
  padding-block: clamp(56px, 5vw, 56px);
  padding-inline: clamp(24px, 4vw, 56px);
  background: #1e2550;
  border-radius: 16px;
}

section#offices .module h2 {
  color: #FFFFFA;
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 52px;
  margin-bottom: 56px
}

section#offices .module p {
  margin: 0;
}

section#offices .offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

section#offices .office-card {
  display: flex;
  flex-direction: column;
  /* gap: 16px; */
}

section#offices .office-card .loc-icon {
  width: 48px;
  height: 48px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* padding-bottom: 16px; */
  margin-bottom: 16px;
}

section#offices .office-card .loc-icon img {
  width: 48px;
  height: 48px;
  display: block;
}

section#offices .office-card .city {
  color: #FFFFFA;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  /* padding-bottom: 16px; */
  margin-bottom: 16px;
}

section#offices .office-card .address {
  color: #FFFFFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  margin: 0;
}

section#offices .office-card .directions,
section#offices .office-card .phone {
  color: #FF5253;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin: 0;
}

section#offices .office-card .directions {
  display: block;
  /* margin-bottom: 16px; */
}

section#offices .office-card .phone {
  display: block;
  margin-top: 16px;
}

@media (max-width: 768px) {
  section#offices .offices-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  section#offices .offices-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================
   ABOUT HERO SECTION
   ============================================= */

#about-hero {
  position: relative;
  padding-block: clamp(56px, 4vw, 80px);
  padding-inline: clamp(16px, 4vw, 56px);
  overflow: hidden;
}

#about-hero .column:first-child .module:first-child {
  margin-bottom: 56px;
}

#about-hero .container.smallright {
  max-width: 1616px;
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: nowrap;
}

#about-hero .column:first-child {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: auto;
}

#about-hero .column:last-child {
  display: flex;
  /* flex-shrink: 0; */
  width: auto;
}

#about-hero .column:first-child .module:first-child p {
  font-size: 14px;
  margin: 0 0 14px 0;
  line-height: 1;
}

#about-hero .column:first-child .module:first-child h1 {
  margin: 0;
  line-height: 1.1;
}

#about-hero .column:first-child .module:first-child h1 .highlight {
  position: relative;
  /*  display: inline-block; */
  z-index: 0;
}

#about-hero .column:first-child .module:first-child h1 .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 32px;
  bottom: 5px;
  background: #C2E8FB;
  z-index: -1;
}

#about-hero .column:first-child .module:last-child img {
  display: block;
  width: 984px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 41 / 25;
  object-fit: cover;
  border-radius: 0 150px;
}

#about-hero .column:last-child .module img {
  display: block;
  width: 600px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 300px 300px 300px 0;
}

@media (max-width: 1120px) {
  #about-hero .container.smallright {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  #about-hero .column:first-child .module:first-child {
    margin-bottom: 32px;
  }

  #about-hero .column:last-child {
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  #about-hero .column:first-child .module:first-child {
    margin-bottom: 32px;
  }

  #about-hero .column:first-child .module:last-child img {
    border-radius: 0 54.573px;
  }

  #about-hero .column:last-child .module img {
    border-radius: 179px 179px 179px 0;
  }
}

#capabilities-hero {
  position: relative;
  padding-block: clamp(16px, 4vw, 56px);
  padding-inline: clamp(16px, 4vw, 56px);
  overflow: hidden;
}

#capabilities-hero .module p {
  font-size: 14px;
  margin: 0 0 14px 0;
  line-height: 1;
}

#capabilities-hero .module h1 {
  margin: 0;
  line-height: 1.1;
}

#capabilities-hero .module h1 .highlight {
  background-image: linear-gradient(#C2E8FB, #C2E8FB);
  background-repeat: no-repeat;
  background-size: 100% 39px;
  background-position: 0 bottom;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  position: relative;
  z-index: 0;
}

#capabilities-hero .column {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

#capabilities-hero .column .module:first-child {
  flex: 1 1 100%;
}

#capabilities-hero .column .module:nth-child(2) {
  flex: 984 984 0%;
  min-width: 0;
}

#capabilities-hero .column .module:nth-child(3) {
  flex: 600 600 0%;
  min-width: 0;
}

#capabilities-hero .column .module img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1120px) {

  #capabilities-hero .column .module:nth-child(2),
  #capabilities-hero .column .module:nth-child(3) {
    flex: 1 1 100%;
  }
}



/* =============================================
   ABOUT WHO WE ARE
   ============================================= */

#who-we-are {
  position: relative;
  padding-block: clamp(56px, 4vw, 80px);
  padding-inline: clamp(16px, 4vw, 56px);
  overflow: hidden;
}

/* Layout */
#who-we-are .container.halves {
  margin: 0 auto;
  align-items: start;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
}

#who-we-are .container.halves .column:first-child {
  width: 696px;
  flex: none;
}

#who-we-are .container.halves .column:last-child {
  width: 800px;
  flex: none;
}

#who-we-are .container.halves .column {
  flex: 1;
  width: auto;
}

/* Kicker */
#who-we-are .column:first-child .module>p:first-child {
  color: #454344;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

/* Heading */
#who-we-are .column:first-child h2 {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  color: #202153;
  margin: 0;
}

/* Body copy */
#who-we-are .column:last-child .module>p:first-child {
  color: #221F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  margin: 0 0 32px 0;
}

/* Button */
#who-we-are .column:last-child .module>p:last-child {
  margin: 0;
}

#who-we-are a.button.primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
}

#who-we-are a.button.primary:hover {
  background: #b22e2f;
}

#who-we-are a.button.primary::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('../img/right_button_arrow.svg') center / contain no-repeat;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 968px) {
  #who-we-are .container.halves {
    flex-direction: column;
  }

  #who-we-are .container.halves .column {
    width: 100%;
  }
}

/* =============================================
   HISTORY TIMELINE
   ============================================= */

#history {
  position: relative;
  padding-block: clamp(56px, 4vw, 80px);
  padding-inline: clamp(16px, 4vw, 56px);
  overflow: hidden;
}

.timeline-intro {
  margin-bottom: 56px;
}

.timeline-kicker {
  margin: 0 0 24px;
  color: #454344;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.timeline-heading {
  margin: 0;
}

.timeline-wrapper {
  display: flex;
  padding: 80px;
  align-items: flex-start;
  gap: 96px;
  border-radius: 50px;
  background: #FFFFFA;
  max-width: 1616px;
  margin: 0 auto;
}

.timeline-visual {
  width: clamp(294px, 40vw, 686px);
  height: clamp(314px, 42vw, 732px);
  flex-shrink: 0;
  position: relative;
}

.timeline-content__year {
  color: #202153;
  font-size: clamp(54px, 6vw, 64px);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0;
}

.timeline-content__desc {
  color: #202153;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
}

.timeline-content {
  position: relative;
  min-height: 200px;
  width: clamp(280px, 35vw, 522px);
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
}

.timeline-content__panel {
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding-top: 80px;
  gap: 80px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.timeline-visual__panel {
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.timeline-content__panel.is-active,
.timeline-visual__panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.timeline-visual__img {
  width: clamp(280px, 38vw, 644px);
  height: clamp(300px, 40vw, 694px);
  display: block;
  border-radius: 0 clamp(60px, 8vw, 121px);
}

.timeline-nav__arrow {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 14px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 100px;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.timeline-nav__arrow .arrow-active {
  display: none;
}

.timeline-nav__arrow .arrow-default {
  display: block;
}

.timeline-nav__arrow:not([disabled]) .arrow-active {
  display: block;
}

.timeline-nav__arrow:not([disabled]) .arrow-default {
  display: none;
}

.timeline-nav__arrow--prev .arrow-default {
  transform: rotate(0deg);
  /* pointing up */
}

.timeline-nav__arrow--prev .arrow-active {
  transform: rotate(180deg);
}

.timeline-nav__arrow--next .arrow-default {
  transform: rotate(180deg);
  /* pointing down */
}

.timeline-nav__arrow--next .arrow-active {
  transform: rotate(0deg);
}

.timeline-nav {
  display: flex;
  width: 56px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.timeline-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-left: 0;
  margin: 0;
}

.timeline-nav__item {
  width: 52px;
  flex-shrink: 0;
  color: #949491;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  list-style: none;
}

.timeline-nav__item.is-active {
  color: #DA3839;
}

@media (max-width: 1200px) {
  .timeline-wrapper {
    padding: 48px;
    gap: 48px;
  }

  .timeline-visual {
    width: 400px;
    height: 430px;
  }

  .timeline-visual__img {
    width: 380px;
    height: 408px;
  }

  .timeline-content {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 1120px) {
  .timeline-wrapper {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 56px 32px;
    gap: 24px;
  }

  .timeline-nav {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    /* border: 1px solid #e0e0e0; */
    padding: 8px 12px;
    box-sizing: border-box;
  }

  .timeline-nav__list {
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    justify-content: space-between;
  }

  .timeline-nav__item {
    width: auto;
    font-size: 20px;
    flex: 0 0 auto;
  }

  .timeline-nav__arrow--prev .arrow-default {
    transform: rotate(-90deg);
    /* pointing up */
  }

  .timeline-nav__arrow--prev .arrow-active {
    transform: rotate(90deg);
  }

  .timeline-nav__arrow--next .arrow-default {
    transform: rotate(90deg);
    /* pointing down */
  }

  .timeline-nav__arrow--next .arrow-active {
    transform: rotate(-90deg);
  }

  .timeline-content {
    position: relative;
    width: 100%;
    flex: unset;
    padding: 0;
    min-height: 0;
    gap: 24px;
  }

  .timeline-content__panel {
    position: relative;
    top: auto;
    left: auto;
    gap: 22px;
    padding-top: 56px;
  }

  .timeline-content__panel:not(.is-active) {
    display: none;
  }

  .timeline-visual__panel {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
  }

  .timeline-visual__panel:not(.is-active) {
    display: none;
  }

  .timeline-visual {
    display: flex;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-top: 32px;
  }

  .timeline-visual__img {
    width: clamp(280px, 45vw, 500px);
    height: clamp(300px, 48vw, 540px);
  }
}

@media (max-width: 768px) {
  .timeline-wrapper {
    flex-direction: column;
    border-radius: 24px;
  }

  .timeline-nav {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    /* border: 1px solid #e0e0e0; */
    padding: 8px 12px;
    box-sizing: border-box;
  }

  .timeline-nav__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: space-between;
    padding-inline: 8px;
    scroll-snap-type: x mandatory;

    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;

    -ms-overflow-style: none;
  }

  .timeline-nav__track {
    display: flex;
    transition: transform 0.3s ease;
  }

  .timeline-nav__list::-webkit-scrollbar {
    height: 0 !important;
    background: transparent;
  }

  .timeline-nav__list::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .timeline-nav__item {
    flex: 0 0 auto;
    font-size: 16px;
    width: calc(100% / 7);
    text-align: center;
    scroll-snap-align: center;
    line-height: 1;
    white-space: nowrap;
    padding: 6px 12px;
    cursor: pointer;
  }

  .timeline-content {
    width: 100%;
    padding: 0;
    gap: 16px;
    min-height: 200px;
  }

  .timeline-visual {
    width: 100%;
    height: 314px;
  }

  .timeline-visual__img {
    width: 294px;
    height: 314px;
    border-radius: 0 60px;
  }
}

@media (max-width: 600px) {
  .timeline-nav__item {
    width: calc(100% / 3);
  }

  .timeline-visual__panel {
    justify-content: center;
  }
}



/*  */
/*  */

.general {
  padding: calc(16px * 4) 0;
}

.general .container {
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 2);
}



.general .container .column {
  width: 100%;
}

.general .container .column .module:not(:last-of-type) {
  margin-bottom: 16px;
}



.general .container.halves .column {
  width: calc(50% - 16px);
}

@media (max-width: 600px) {
  .general .container.halves .column {
    width: 100% !important;
  }
}

.general .container.smallleft .column:first-of-type {
  width: calc(40% - 16px);
}

.general .container.smallleft .column:last-of-type {
  width: calc(60% - 16px);
}

@media (max-width: 600px) {
  .general .container.smallleft .column {
    width: 100% !important;
  }
}

.general .container.smallright .column:first-of-type {
  width: calc(60% - 16px);
}

.general .container.smallright .column:last-of-type {
  width: calc(40% - 16px);
}

@media (max-width: 600px) {
  .general .container.smallright .column {
    width: 100% !important;
  }
}

.general .container.thirds .column {
  width: calc(33.3333% - 16px * 1.3333);
}

@media (max-width: 600px) {
  .general .container.thirds .column {
    width: 100%;
  }
}

.general .container.fourths .column {
  width: calc(25% - 16px - calc(16px / 2));
}

@media (max-width: 1120px) {
  .general .container.fourths .column {
    width: calc(50% - 16px);
  }
}

@media (max-width: 600px) {
  .general .container.fourths .column {
    width: 100%;
  }
}

.general.small .container {
  max-width: 1050px;
}

/* FAQ */
/*     */

/* -------------------- Accordion Block -------------------- */
.accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 312px;
  gap: 56px;
  width: 100%;
  box-sizing: border-box;
}

.accordion .container {
  max-width: 1104px;
  width: 100%;
  margin: 0 auto;
  display: block;
  align-items: center;
}

/* Headline */
.accordionIntro {
  text-align: center;
  margin-bottom: 56px;
}

.accordionIntro h2 {
  color: #202153;
  font-size: 38px;
  font-weight: 800;
  line-height: 38px;
  margin: 0;
}

/* Accordion items */
.accordionItems {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.accordionItem {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 30px;
  background: #FFFFFA;
  transition: background 0.3s ease;
}

/* Title */
.accordionTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  padding: 24px 24px 24px 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  color: #221F20;
  border-radius: 30px;
  transition: background 0.2s ease;
}

/* Hover only on closed items */
.accordionTitle:not(.active):hover {
  background: #00BFDF;
}

/* Active item background stays white */
.accordionTitle.active {
  background: #FFFFFA;
}

/* Icon */
.accordionTitle::before {
  display: none;
}

.accordionTitle::after {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/openplus.svg) no-repeat center/contain;
  transition: all 0.2s ease;
}

.accordionTitle.active::after {
  background: url(../img/closeminus.svg) no-repeat center/contain;
}

/* Accordion content */
.accordionCopy {
  display: none;
  padding: 0 24px 24px 40px;
  overflow: hidden;
  font-size: 16px;
  line-height: 24px;
  color: #221F20;
}

/* Footer CTA */
.accordionFooter {
  margin-top: 56px;
  text-align: center;
  width: 100%;
}

.accordionFooter a.button.primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
}

.accordionFooter a.button.primary:hover {
  background: #b22e2f;
}

.accordionFooter a.button.primary::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/right_button_arrow.svg) center / contain no-repeat;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1120px) {
  .accordion {
    padding: 80px 16px;
  }
}




/* cards */
/* Section */
#what-we-do.cards.none.cream,
#what-we-do.cards.stretch.cream {
  background: #F2F2ED;
  padding-block: clamp(56px, 6vw, 80px);
  padding-inline: clamp(16px, 4vw, 56px);
  isolation: isolate;
}

#what-we-do.cards .container {
  max-width: 1728px;
  margin: 0 auto;
}

#what-we-do.cards .intro {
  margin-bottom: 56px;
}

#what-we-do.cards .intro p:first-child {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 24px 0;
  color: #202153;
}

#what-we-do.cards .intro h2 {
  font-size: clamp(42px, 3vw, 46px);
  font-weight: 800;
  color: #202153;
  line-height: 1.1;
  margin: 0;
  max-width: 821px;
  text-transform: none;
  letter-spacing: normal;
}

#what-we-do.cards.none .container,
#what-we-do.cards.stretch .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

#what-we-do.cards .intro {
  grid-column: 1 / -1;
}

#what-we-do.cards .card {
  position: relative;
  z-index: 0;
  isolation: isolate;
  background: #FFFFFA;
  border-radius: 50px;
  padding: clamp(32px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: visible;
}

#what-we-do.cards .card:hover {
  transform: translateY(-12px);
}

#what-we-do.cards .card .image {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

#what-we-do.cards .card .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#what-we-do.cards .card .content p:empty {
  display: none;
}

#what-we-do.cards .card .content h4 {
  font-size: 28px;
  font-weight: 800;
  color: #202153;
  margin: 0 0 16px 0;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.2;
}

#what-we-do.cards .card .content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  padding-left: 10px;
  flex-grow: 1;
}

#what-we-do.cards .card .content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.64px;
  color: #221F20;
  padding: 4px 0 4px 16px;
  position: relative;
}

#what-we-do.cards .card .content ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 800;
}

#what-we-do.cards .card .content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  color: #DA3839;
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.2s ease, color 0.2s ease;
  background-color: #F2F2ED;
}

#what-we-do.cards .card:hover .content span {
  background: #DA3839;
  color: #FFFFFA;
}

#what-we-do.cards .card:hover .content span img {
  filter: brightness(0) invert(1);
}

#what-we-do .card-wrap {
  position: relative;
  border-radius: 50px;
  height: 100%;
}

#what-we-do .card-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #00BFDF;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#what-we-do .card-wrap:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1120px) {

  #what-we-do.cards.none .container,
  #what-we-do.cards.stretch .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  #what-we-do.cards.none .container,
  #what-we-do.cards.stretch .container {
    grid-template-columns: 1fr;
  }

  #what-we-do.cards .intro {
    margin-bottom: 32px;
  }
}

/* ================================
   INSIGHTS HEADER SECTION
================================ */
#insights.general.cream.default {
  padding-block: clamp(56px, 6vw, 80px);
  padding-inline: clamp(16px, 4vw, 56px);
  padding-bottom: 56px;
}

#insights.general.cream.default .container.halves {
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: auto;
}

#insights.general.cream.default .container.halves .column {
  width: auto;
}

/* Kicker */
#insights.general.cream.default .container.halves .column:first-child .module {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

#insights.general.cream.default .container.halves .column:first-child .module p {
  color: #202153;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

#insights.general.cream.default .container.halves .column:first-child h2 {
  font-size: clamp(42px, 3vw, 46px);
  font-weight: 800;
  color: #202153;
  margin: 0;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: normal;
}

/* View Insights button */
#insights.general.cream.default .container.halves .column:last-child {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}

#insights.general.cream.default .container.halves .column:last-child .module {
  margin: 0;
}

#insights.general.cream.default .container.halves .column:last-child .module p {
  margin: 0;
}

#insights.general.cream.default .container.halves .column:last-child a.button.primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #FFFFFA;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.16px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

#insights.general.cream.default .container.halves .column:last-child a.button.primary:hover {
  background: #b22e2f;
}

#insights.general.cream.default .container.halves .column:last-child a.button.primary::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('../img/right_button_arrow.svg') center / contain no-repeat;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #insights.general.cream.default .container.halves {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  #insights.general.cream.default .container.halves .column:last-child a.button.primary {
    width: 100%;
    justify-content: center;
  }
}

/* ================================
   INSIGHTS FEED
================================ */
#insights-feed.insights-feed {
  background: #F2F2ED;
  padding-inline: clamp(16px, 4vw, 56px);
  padding-bottom: clamp(56px, 6vw, 80px);
}

#insights-feed .insights-feed__inner {
  max-width: 1728px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Featured */
#insights-feed .insights-featured {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 16px 16px 32px 16px;
  background: #00BFDF;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease;
  flex: 1 0 0;
}

#insights-feed .insights-featured:hover {
  background: #FFFFFA;
}

#insights-feed .insights-featured__image {
  width: 100%;
  aspect-ratio: 71 / 40;
  border-radius: 34px;
  overflow: hidden;
  align-self: stretch;
}

#insights-feed .insights-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 34px;
}

#insights-feed .insights-featured__body {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#insights-feed .insights-featured__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: #202153;
  margin: 0;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
}

#insights-feed .insights-featured__meta {
  font-size: 13px;
  color: #202153;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
}

#insights-feed .insights-featured__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #202153;
}

#insights-feed .insights-featured__author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* Secondary posts */
#insights-feed .insights-secondary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#insights-feed .insights-post {
  display: flex;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  padding: 16px;
}

#insights-feed .insights-post:hover {
  background: #FFFFFA;
  border-radius: 30px;
}

#insights-feed .insights-post__image img {
  width: 202px;
  height: 202px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

#insights-feed .insights-post__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#insights-feed .insights-post__title {
  overflow: hidden;
  color: var(--Primary-Deep-Purple-200, #202153);
  text-overflow: ellipsis;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 8px;
}

#insights-feed .insights-post__meta {
  color: #221F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}

#insights-feed .insights-post__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  color: #221F20;
}

#insights-feed .insights-post__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1120px) {
  #insights-feed .insights-feed__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #insights-feed .insights-post {
    display: grid;
    grid-template-columns: 1fr;
  }

  #insights-feed .insights-post__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 71 / 40;
    border-radius: 12px;
  }
}



/* CAREER */
#benefits {
  padding: 120px 200px;
  box-sizing: border-box;
}

#benefits .container.halves {
  display: flex;
  gap: 238px;
  align-items: flex-start;
  flex-wrap: wrap;
}

#benefits .column {
  width: 550px;
  min-width: 280px;
  flex: 1 1 280px;
}

#benefits .column:first-child h2 {
  color: #202153;
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 52px;
  /* margin: 0 0 24px; */
}

#benefits .column:first-child p {
  color: #221F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  /* margin: 0 0 16px; */
}

.module {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* reset */
}

.module>p,
.module>h2 {
  margin: 0;
}

/* spacing rules */
.module>p:first-of-type {
  margin-bottom: 24px;
}

.module>h2 {
  margin-bottom: 32px;
}

#benefits a.button.primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
  margin-top: 32px;
}

#benefits a.button.primary::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/right_button_arrow.svg) center / contain no-repeat;
  flex-shrink: 0;
}

#benefits .column:first-child p:last-child {
  margin-bottom: 0;
}

#benefits .column:last-child ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#benefits .column:last-child ul li {
  color: #202153;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

#benefits .column:last-child ul li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #00BFDF;
}


@media (max-width: 1100px) {
  #benefits {
    padding: 80px 80px;
  }

  #benefits .container.halves {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  #benefits {
    padding: 60px 24px;
  }

  #benefits .container.halves {
    flex-direction: column;
    gap: 48px;
  }

  #benefits .column {
    width: 100%;
  }
}


/* CAREERS LISTING */
#careers-listing {
  padding: 80px 56px;
  box-sizing: border-box;
}

#careers-listing .careers-two-col {
  display: flex;
  gap: 238px;
  align-items: flex-start;
  flex-wrap: wrap;
  background: #202153;
  padding: 80px;
  border-radius: 50px;
}

#careers-listing .careers-two-col__left {
  flex: 0 0 300px;
  min-width: 600px;
}

#careers-listing .careers-two-col__left h2 {
  color: #FFFFFA;
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 52px;
  margin: 0 0 32px;
}

#careers-listing .careers-two-col__left p {
  color: #FFFFFA;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

#careers-listing .careers-two-col__right {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
}

#careers-listing .careers-post {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 32px;
  border-radius: 12px;
  background: #2D2E66;
  text-decoration: none;
  transition: background 0.2s ease;
  max-width: 728px;
}

#careers-listing .careers-post:hover {
  background: #424480;
}

#careers-listing .careers-post__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

#careers-listing .careers-post__title {
  color: #FFFFFA;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
}

#careers-listing .careers-post__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#careers-listing .careers-post__location::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/location.svg) center / contain no-repeat;
  flex-shrink: 0;
}

#careers-listing .careers-post__location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}

#careers-listing .careers-post__apply {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  white-space: nowrap;
  flex-shrink: 0;
}

#careers-listing .careers-post__apply::after {
  content: '';
  display: inline-block;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: url(../img/arrow-next.svg) center / contain no-repeat;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

#careers-listing .careers-post:hover .careers-post__apply::after {
  background-image: url(../img/arrow-next-hover.svg);
}

@media (max-width: 1100px) {
  #careers-listing {
    padding: 80px 80px;
  }

  #careers-listing .careers-two-col {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  #careers-listing {
    padding: 60px 24px;
  }

  #careers-listing .careers-two-col {
    flex-direction: column;
    gap: 48px;
  }

  #careers-listing .careers-two-col__left,
  #careers-listing .careers-two-col__right {
    width: 100%;
    flex: none;
  }
}




/* SINGLE CAREER POSTING */

#career-single {
  background: #F2F2ED;
}

.career-single-wrap {
  display: flex;
  flex-direction: column;
}

.career-hero {
  padding: 56px;
}

.career-eyebrow {
  display: block;
  margin-bottom: 14px;
}

.career-hero h1 {
  margin: 0;
}

.career-body {
  display: flex;
  gap: 113px;
  padding: 80px 56px;
}

.career-gutter {
  margin: 0;
  flex-shrink: 0;
}

.career-type-location {
  margin: 0;
  padding-top: 16px;
}

.career-gutter .btn-apply,
.career-gutter .btn-back {
  display: block;
  text-decoration: none
}

.career-content .btn-apply,
.career-content .btn-back {
  display: block;
  text-decoration: none
}

.position-info {
  max-width: 880px;
}

#career-single a.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
  margin: 32px 0;
}

#career-single a.btn-apply::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/arrow-diagonal.svg) center / contain no-repeat;
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .career-hero {
    padding: 40px;
  }

  .career-body {
    gap: 60px;
    padding: 60px 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .career-hero {
    padding: 56px 24px;
  }

  .career-body {
    flex-direction: column;
    gap: 0;
    padding: 80px 24px;
  }

  .career-gutter {
    order: 1;
    padding-bottom: 56px;
  }

  .career-content {
    order: 1;
  }

  .career-gutter .btn-apply {
    display: none;
  }

  .position-info {
    max-width: 100%;
  }
}



.newsletter {
  padding: calc(16px * 4) 0;
}

.newsletter .container {
  max-width: 1200px;
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  gap: 120px;
  align-items: flex-end;
}

@media (max-width: 1120px) {
  .newsletter .container {
    padding: 0 16px;
  }
}

.newsletter .container .left,
.newsletter .container .right {
  width: 50%;
}

@media (max-width: 1120px) {
  .newsletter .container {
    flex-direction: column;
    gap: calc(16px * 2);
  }

  .newsletter .container .left,
  .newsletter .container .right {
    width: 100%;
  }
}



section.cta:not(.hero) {
  padding: calc(16px * 4) 0;
}

section.cta:not(.hero) .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: calc(calc(16px * 4) * 2);
  align-items: center;
}

@media (max-width: 1120px) {
  section.cta:not(.hero) .container {
    padding: 0 16px;
  }
}

section.cta:not(.hero) .container .left,
section.cta:not(.hero) .container .right {
  width: 50%;
}

section.cta:not(.hero) .container .left {
  max-width: 470px;
}

section.cta:not(.hero) .container .left h2 {
  margin-top: 0;
}

section.cta:not(.hero) .container .left p {
  line-height: 26px;
}

section.cta:not(.hero) .container .left .buttons {
  display: flex;
  margin-top: calc(16px * 2);
  gap: calc(16px * 1.5);
}

section.cta:not(.hero) .container .left.noimage {
  max-width: 100%;
  text-align: center;
  width: 100%;
}

section.cta:not(.hero) .container .left.noimage .buttons {
  justify-content: center;
}

section.cta:not(.hero) .container .right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 50%;
  margin-left: auto;
}

section.cta:not(.hero) .container .right img {
  width: 100%;
  height: auto;
}

@media (max-width: 1120px) {
  section.cta:not(.hero) .container {
    flex-direction: column;
    gap: 0px;
  }

  section.cta:not(.hero) .container .left {
    width: 100%;
    max-width: 100%;
  }

  section.cta:not(.hero) .container .right {
    max-width: calc(100% + calc(16px * 2));
    width: calc(100% + calc(16px * 2));
    margin-left: 0;
    padding-bottom: calc(16px * 4);
  }

  section.cta:not(.hero) .container .right::before {
    display: none;
  }
}

section.cta:not(.hero).notop .left {
  padding-top: 0;
}

section.cta:not(.hero).nobottom .left {
  padding-bottom: 0;
}

.comparison {
  padding: calc(16px * 4) 0;
}

.comparison .container {
  max-width: 1200px;
  margin: 0 auto;
  max-width: 1050px;
}

@media (max-width: 1120px) {
  .comparison .container {
    padding: 0 16px;
  }
}

.comparison .container .intro {
  max-width: 600px;
  padding-bottom: calc(16px * 2);
}

.comparison .container .comparisonTable {
  display: flex;
  gap: calc(16px * 3);
  justify-content: center;
}

@media (max-width: 1120px) {
  .comparison .container .comparisonTable {
    flex-wrap: wrap;
  }
}

.comparison .container .comparisonTable .tableItem {
  width: 33.3333%;
  background: #EDEFF0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1120px) {
  .comparison .container .comparisonTable .tableItem {
    width: calc(50% - calc(16px * 4));
  }
}

@media (max-width: 600px) {
  .comparison .container .comparisonTable .tableItem {
    width: 100%;
  }
}

.comparison .container .comparisonTable .tableItem .heading {
  background: #DEDEDE;
  padding: 16px calc(16px * 2);
  min-height: calc(100px - calc(16px * 2));
}

.comparison .container .comparisonTable .tableItem .heading h3 {
  margin: 0;
  max-width: 80%;
}

.comparison .container .comparisonTable .tableItem.flagged .heading {
  position: relative;
}

.comparison .container .comparisonTable .tableItem.flagged .heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 46px;
  background: #131515;
  mask-image: url(../img/banner.svg);
  -webkit-mask-image: url(../img/banner.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  top: 0;
  right: 16px;
}

.comparison .container .comparisonTable .tableItem:first-of-type .heading {
  border-color: #131515;
}

.comparison .container .comparisonTable .tableItem:first-of-type .heading::after {
  background: #131515;
}

.comparison .container .comparisonTable .tableItem:nth-child(3) .heading {
  border-color: #131515;
}

.comparison .container .comparisonTable .tableItem:nth-child(3) .heading::after {
  background: #131515;
}

.comparison .container .comparisonTable .tableItem .content {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.comparison .container .comparisonTable .tableItem .content .tableItems {
  padding: 16px calc(16px * 2);
}

.comparison .container .comparisonTable .tableItem .content .tableItems .item {
  padding: 16px 0;
}

.comparison .container .comparisonTable .tableItem .content .tableItems .item.small {
  font-size: 16px;
  color: #000000;
  line-height: 26px;
  letter-spacing: 0.32px;
}

.comparison .container .comparisonTable .tableItem .content .tableItems .item span {
  display: block;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.4px;
  color: #000000;
  font-weight: 500;
}

.comparison .container .comparisonTable .tableItem .content .cta {
  margin-top: auto;
  padding: 16px calc(16px * 2) calc(16px * 2);
}

.comparison .disclaimer {
  margin-top: -100px;
  padding: calc(100px + calc(16px * 2)) 0 calc(16px * 2);
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.32px;
  font-style: italic;
}

.comparison .disclaimer p {
  max-width: 700px;
  margin: 16px auto;
}

/* ============================================================
   VALUES
   ============================================================ */

#values.slider {
  position: relative;
  padding-block: clamp(56px, 4vw, 80px);
  padding-inline: clamp(16px, 4vw, 56px);
  overflow: hidden;
}

/* ── Container ── */
#values .container {
  display: flex;
  align-items: stretch;
  gap: 26px;
  max-width: 1616px;
  margin: 0 auto;
  border-radius: 50px;
  background: #202153;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

#values .container::after {
  content: '';
  position: absolute;
  bottom: -692px;
  left: -238px;
  width: 902px;
  height: 902px;
  border-radius: 16.55px 413.762px;
  background: #2D2E66;
  z-index: 0;
  pointer-events: none;
  transform: rotate(180deg);
}

/* ── Left column: eyebrow + headline + counter ── */
#values .intro-copy {
  /* flex: 0 0 670px; */
  width: 670px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── Intro copy: eyebrow ── */
#values .intro-copy p {
  color: #C2E8FB;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 24px;
}

/* ── Intro copy: headline ── */
#values .intro-copy h2 {
  font-size: clamp(42px, 3vw, 46px);
  color: #FFF;
  font-style: normal;
  font-weight: 800;
  line-height: 1.15;
  /* max-width: 670px; */
  margin: 0;
}

/* ── Right column: slider only ── */
#values .slider-wrapper {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

/* ============================================================
   SLICK SLIDER
   ============================================================ */

/* Hide default slick arrows + dots */
#values .slick-prev,
#values .slick-next {
  display: none !important;
}

#values .slick-dots {
  display: none !important;
}

#values .slider-single {
  width: clamp(295px, 44.7vw, 760px);
  flex-shrink: 0;
}

#values .slick-list {
  overflow: hidden;
}

/* ── Slide ── */
#values .slide {
  position: relative;
  line-height: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* ── Slide image ── */
#values .slide img {
  /* width: clamp(295px, 44.7vw, 626px); */
  height: clamp(332px, 41.4vw, 703px);
  display: block;
  border-radius: 24px;
  margin-left: auto;
  flex-shrink: 0;
}

#values .slide .copy-wrap {
  position: absolute;
  bottom: 62px;
  left: 0;
  overflow: hidden;
  border-radius: 30px 0 30px 30px;
  max-width: 95%;
}

/* ── Slide copy bubble ── */
#values .slide .copy {
  border-radius: 30px 0 30px 30px;
  white-space: normal;
  pointer-events: none;

  color: #161638;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;

  display: flex;
  padding: clamp(16px, 2vw, 25px) clamp(16px, 2.5vw, 25px);
  align-items: center;
  gap: 10px;

  transform: translateX(100%);
  transition: transform 0.5s ease;
  transition-delay: 1s;
}

#values .slick-current .copy {
  transform: translateX(0);
}

/* Odd slides → cyan */
#values .slick-slide:nth-child(odd) .copy {
  background-color: #00BFDF;
}

/* Even slides → yellow */
#values .slick-slide:nth-child(even) .copy {
  background-color: #FFECA3;
}

/* ============================================================
   SLIDE COUNTER — lives in .intro-copy, bottom left
   ============================================================ */

.slider-counter {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: auto;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}

.slider-counter .counter-display {
  display: flex;
  height: 48px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  margin-right: 12px;

  border-radius: 100px;
  background: var(--Secondary-Sky, #C2E8FB);
}

.slider-counter .counter-display span {
  color: #221F20;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.slider-counter .counter-prev,
.slider-counter .counter-next {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: opacity 0.2s ease;
}

.slider-counter .counter-prev:hover,
.slider-counter .counter-next:hover {
  opacity: 0.75;
}

.slider-counter .counter-prev img,
.slider-counter .counter-next img {
  width: 45px;
  height: 45px;
  display: block;
}

.slider-counter .counter-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  #values .container {
    gap: 20px;
    padding: 60px 48px;
  }

  #values .intro-copy {
    flex: 0 0 340px;
    width: 340px;
  }

  #values .slider-wrapper {
    flex: 1 1 auto;
    min-width: 0;
  }

  #values .slider-single {
    width: 100%;
  }

  #values .slide {
    display: block;
    /* keep it block, not flex, at tablet */
    position: relative;
    line-height: 0;
  }

  #values .slide img {
    width: auto;
    /* width: 100%; */
    /* height: auto; */
    /* aspect-ratio: 626 / 703; */
  }

  #values .container::after {
    bottom: -758px;
    left: -238px;
  }
}

@media (max-width: 968px) {
  #values .container {
    flex-direction: column;
    padding: 56px 24px;
    gap: 32px;
  }

  #values .intro-copy {
    flex: 0 0 auto;
    width: 100%;
  }

  #values .slider-wrapper {
    width: 100%;
  }

  #values .slider-single {
    width: 100%;
  }

  #values .slide {
    display: flex;
    flex-direction: column;
    line-height: normal;
  }

  #values .slide img {
    width: 100%;
    height: auto;
    padding-bottom: clamp(16px, 2vw, 24px);
    order: 1;
  }

  #values .slide .content {
    order: 2;
    line-height: normal;
    width: 100%;
  }

  #values .slick-slide>div,
  #values .slide,
  #values .slide .content,
  #values .slide .copy-wrap {
    width: 100%;
  }

  #values .slide .copy-wrap {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 190px;
    overflow: hidden;
    border-radius: 0 30px 30px 30px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  #values .slide .copy {
    transform: none !important;
    transition: none !important;
    width: 100% !important;
    max-width: 100% !important;
    /* height: 190px; */
    display: flex;
    align-items: center;
    font-size: 32px;
    padding: 32px;
    box-sizing: border-box;
    white-space: normal;
  }

  .slider-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 16px;
  }

  .slider-counter .counter-display {
    margin-right: 0;
  }

  #values .container::after {
    bottom: -758px;
    left: -456px;
  }
}

/* ABOUT CAREERS */
#careers {
  position: relative;
  padding-block: clamp(56px, 4vw, 80px);
  padding-inline: 0;
  overflow: hidden;
}

#careers .kicker {
  color: #454344;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

#careers p {
  margin: 0;
}

#careers h2 {
  margin: 24px 0 32px;
}

#careers .container.halves {
  display: flex;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(16px, 6vw, 200px);
  box-sizing: border-box;
  gap: clamp(56px, 5vw, 120px);
  justify-content: center;
  align-items: center;
}

#careers .container.halves .column:first-child {
  flex: 1 1 400px;
  max-width: 530px;
}

#careers .container.halves .column:last-child {
  flex: 1 1 500px;
  max-width: 678px;
}

#careers .column:last-child img {
  /* width: clamp(358px, 40vw, 678px); */
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
}

#careers .column:last-child {
  flex: 0 0 auto;
}

#careers a.button.primary::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/right_button_arrow.svg) center / contain no-repeat;
  flex-shrink: 0;
}

#careers a.button.primary:hover {
  background: #b22e2f;
}

#careers a.button.primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
  margin-top: 32px;
}

/* TESTIMONIAL */
#give-back {
  width: 100%;
  padding: 0;
}

#give-back .container {
  display: flex;
  width: 100%;
  max-width: 1728px;
  padding: clamp(80px, 8vw, 120px) clamp(16px, 4vw, 200px);
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  margin: 0 auto;
  box-sizing: border-box;
}

#give-back .intro-copy {
  display: flex;
  width: min(800px, 100%);
  flex-direction: column;
  align-items: center;
}

#give-back .kicker {
  color: #454344;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

#give-back h2 {
  margin: 24px 0 32px;
}

#give-back p {
  margin: 0;
}

#give-back .organization {
  color: #221F20;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.4px;
}

/* ── Base ── */
.testimonial {
  max-width: 100%;
  overflow: hidden;
}

/* ── Single ── */
.testimonial.single .container {
  display: flex;
  max-width: 900px;
  gap: calc(16px * 3);
  align-items: center;
}

.testimonial.single .container .image {
  width: 33%;
}

.testimonial.single .container .image img {
  display: block;
}

.testimonial.single .container .content {
  padding: calc(16px * 3) 0;
  width: 66%;
}

.testimonial.single .container .content blockquote {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #000000;
  letter-spacing: 0.48px;
  line-height: 38px;
  padding: 0;
  margin: 0;
  display: block;
}

.testimonial.single .container .content .author {
  display: inline-block;
  margin-top: 16px;
}

.testimonial.single .container .content .author p {
  margin: 4px 0;
}

.testimonial.single .container .content .author a {
  color: #131515;
  text-decoration: none;
}

.testimonial.single .container .content .author a:hover {
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .testimonial.single .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .testimonial.single .container .image {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .testimonial.single .container .content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

/* ── Multi: Slider wrapper ── */
.testimonial.multi .testimonialSlider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 56px);
  width: 100%;
}

.testimonial.multi .testimonialSlider .slick-list {
  order: 2;
  flex: 1;
  min-width: 0;
}

.testimonial.multi .testimonialSlider .slick-slide {
  z-index: 900 !important;
}

/* ── Multi: Slide ── */
.testimonial.multi .slide {
  display: flex !important;
  gap: clamp(16px, 2vw, 48px);
  align-items: flex-start;
  width: 100%;
}

.testimonial.multi .slide .image {
  width: clamp(200px, 46%, 607px);
  aspect-ratio: 607 / 386;
  flex-shrink: 0;
  border-radius: clamp(40px, 5vw, 80px) clamp(40px, 5vw, 80px) 0 clamp(40px, 5vw, 80px);
  overflow: hidden;
}

.testimonial.multi .slide .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial.multi .slide .content {
  display: flex;
  padding: clamp(32px, 5vw, 78px) clamp(24px, 4vw, 55px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  border-radius: clamp(40px, 5vw, 80px) clamp(40px, 5vw, 80px) clamp(40px, 5vw, 80px) 0;
  background: #FFFFFA;
}

.testimonial.multi .slide .content blockquote {
  color: #221F20;
  font-size: clamp(18px, 1.8vw, 24px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  display: block;
  align-self: stretch;
}

.testimonial.multi .slide .content .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial.multi .slide .content .author p {
  margin: 0;
}

.testimonial.multi .slide .content .author a {
  color: #131515;
  text-decoration: none;
}

.testimonial.multi .slide .content .author a:hover {
  text-decoration: underline;
}

/* ── Multi: Arrows ── */
.testimonial.multi .slick-prev,
.testimonial.multi .slick-next {
  position: static;
  flex-shrink: 0;
  width: clamp(32px, 3vw, 48px);
  height: clamp(32px, 3vw, 48px);
  border: none;
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  padding: 0;
}

.testimonial.multi .slick-prev::before,
.testimonial.multi .slick-next::before {
  display: none;
}

.testimonial.multi .slick-next {
  background-image: url('../img/button-arrow-right.svg');
  order: 3;
}

.testimonial.multi .slick-next:hover {
  background-image: url('../img/arrow-hover-right.svg');
}

.testimonial.multi .slick-prev {
  background-image: url('../img/button-arrow-right.svg');
  transform: scaleX(-1);
  order: 1;
}

.testimonial.multi .slick-prev:hover {
  background-image: url('../img/arrow-hover-right.svg');
  transform: scaleX(-1);
}

.testimonial.multi .slick-dots {
  display: none !important;
}

/* ── Mobile ── */
@media (max-width: 968px) {
  .testimonial.multi .testimonialSlider {
    flex-wrap: wrap;
    gap: 24px;
  }

  .testimonial.multi .testimonialSlider .slick-list {
    order: 1;
    width: 100%;
    flex: 0 0 100%;
  }

  .testimonial.multi .slick-prev {
    order: 2;
  }

  .testimonial.multi .slick-next {
    order: 3;
  }

  .testimonial.multi .slide {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .testimonial.multi .slide .image {
    width: 100%;
    border-radius: 40px 40px 0 40px;
  }

  .testimonial.multi .slide .content {
    width: 100%;
    border-radius: 0 0 40px 40px;
  }
}

/* =========================================================
   PRICING GUIDE  
   ========================================================= */

/* ── Section shell ── */
.pg-section {
  background-color: #202153;
  color: #ffffff;
  padding: 80px 56px;
  overflow: hidden;
}

.pg-inner {
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* =========================================================
   TOP
   ========================================================= */
.pg-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pg-top-left {
  max-width: 696px;
}

/* Left */
.pg-kicker {
  color: #C2E8FB;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.pg-heading {
  color: #FFFFFA;
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 52px;
  /* 113.043% */
  margin: 0 0 20px;
}

/* .pg-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 440px;
} */

.pg-body p {
  color: #FFFFFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.pg-body a {
  color: #ff4e3a;
  /* brand red – adjust to your palette */
  text-decoration: none;
}

.pg-body a:hover {
  text-decoration: underline;
}

/* Right */
.pg-top-right {
  margin: 0 auto;
  max-width: 600px;
}

.pg-right-title {
  color: #FFFFFA;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.pg-bullet-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.pg-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #FFFFFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pg-bullet-list li {
  color: #FFFFFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 16px;
  position: relative;
}

.pg-bullet-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   SLIDER
   ========================================================= */
.pg-slider-wrapper {
  position: relative;
}

/* Mask – cards overflow to the right, hidden on the left */
.pg-slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

/* .pg-slider-wrapper::before {
  display: none !important;
} */

.pg-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-right: -56px;
  padding-right: 56px;
}

.pg-slider::-webkit-scrollbar {
  display: none;
}

/* ── Card ── */
.pg-slide {
  flex: 0 0 calc((100% - (3 * 24px)) / 2.97);
  min-width: 280px;
  background: #424480;
  border-radius: 50px;
  padding: 32px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.pg-card-icon {
  width: 64px;
  height: 64px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pg-card-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.pg-card-heading {
  color: #FFFFFA;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-top: 16px;
  margin-bottom: 25px;
}

/* ── Rows inside a card ── */
.pg-card-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pg-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: none;
}

.pg-card-row {
  border-bottom: 1px solid #2D2E66;
}

.pg-row-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.pg-row-title {
  color: #FFFFFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.32px;
}

.pg-row-desc {
  color: #E8E8E3;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.28px;
}

.pg-row-right {
  flex-shrink: 0;
}

.pg-row-price {
  display: flex;
  background: #2D2E66;
  border-radius: 10px;
  padding: 12px;
  gap: 10px;
  white-space: nowrap;

  color: #FFFFFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.32px;
}

/* ── Nav Arrows ── */
.pg-arrows {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 56px;
  position: relative;
  z-index: 10;
}

.pg-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  /* background: transparent; */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.2s;
  position: relative;
  z-index: 5;
}

/* .pg-arrow:hover {
  border-color: rgba(255, 255, 255, 0.8);
} */

.pg-arrow img {
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.pg-arrow .arrow-hover {
  display: none;
  position: absolute;
}

.pg-arrow:hover .arrow-default {
  opacity: 0;
}

.pg-arrow:hover .arrow-hover {
  display: block;
  opacity: 1;
}

.pg-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* =========================================================
   BOTTOM
   ========================================================= */
.pg-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  padding-top: 8px;
}

.pg-bottom-left {
  max-width: 824px;
}

.pg-bottom-title {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
}

.pg-bottom-body p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
  margin-bottom: 0;
}

.pg-bottom-right {
  flex-shrink: 0;
}

/* CTA Button */
.pg-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  background: #e5403a;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-decoration: none;
  border: none;
}

.pg-cta:hover {
  background: #b22e2f;
}

.pg-cta::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('../img/right_button_arrow.svg') center / contain no-repeat;
  flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .pg-inner {
    padding: 0 40px;
  }

  .pg-slide {
    flex: 0 0 calc((100% - (2 * 24px)) / 2.25);
  }
}

@media (max-width: 900px) {
  .pg-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pg-slide {
    flex: 0 0 calc((100% - 24px) / 1.2);
  }

  .pg-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .pg-inner {
    padding: 0 20px;
  }

  .pg-section {
    padding: 56px 0;
  }

  .pg-bullet-columns {
    grid-template-columns: 1fr;
  }

  .pg-slide {
    flex: 0 0 85%;
  }
}

/* ============================================================
   CAPABILITIES WWD
   ============================================================ */

#wwd {
  background-color: #f5f3ee;
  padding: 80px 16px;
}

#wwd.notop {
  padding-top: 0;
}

#wwd.nobottom {
  padding-bottom: 0;
}

#wwd .container {
  max-width: 1104px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

#wwd .intro {
  text-align: center;
  margin-bottom: 0;
}

/* ---- Card Wrap ---- */
#wwd .card-wrap {
  width: 100%;
}

/* ---- Card ---- */
#wwd .card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 1104px;
  max-width: 100%;
  height: 315px;
  overflow: hidden;
}

/* ---- Image Area ---- */
#wwd .card .image {
  flex: 0 0 315px;
  width: 315px;
  height: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#wwd .card .image img {
  width: 315px;
  height: 315px;
  object-fit: contain;
}

/* ---- Content Area ---- */
#wwd .card .content {
  flex: 1 1 auto;
  padding: 0 0 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

#wwd .card .content h4 {
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: 38px;
  color: #202153;
  margin: 0;
}

#wwd .card .content p {
  color: #202153;
  margin: 32px 0;
  line-height: 1.6;
  max-width: 100%;
}

/* ---- Two-column list, max 4 items per column ---- */
/* #wwd .card .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, min-content);
  grid-auto-flow: column;
  column-gap: 32px;
  row-gap: 4px;
  padding-left: 12px;
  align-items: start;
} */

#wwd .card .content .list-columns {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

#wwd .card .content .list-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 0;
  /* each column takes equal width */
  padding-left: 12px;
}

#wwd .card .content .list-columns ul li {
  color: #221F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.32px;
  padding: 3px 0 3px 14px;
  position: relative;
}

#wwd .card .content .list-columns ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #1a1f5e;
  font-size: 16px;
  line-height: 1.3;
}

/*  */

/* #wwd .card .content ul li {
  color: #221F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.32px;
  padding: 3px 0 3px 14px;
  position: relative;
}

#wwd .card .content ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #1a1f5e;
  font-size: 16px;
  line-height: 1.3;
} */



/* ---- First / Last CTA cards ---- */
#wwd .card.first,
#wwd .card.last {
  height: auto;
  min-height: 120px;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
}

/* ---- Responsive: stack below 768px ---- */
@media (max-width: 1100px) {
  #wwd .card .content {
    padding-left: 40px;
  }
}

/* @media (max-width: 900px) {
  #wwd .card .content {
    padding-left: 24px;
  }
} */

@media (max-width: 900px) {
  #wwd .card {
    flex-direction: column;
    height: auto;
  }

  #wwd .card .image {
    flex: 0 0 358px;
    width: 100%;
    /* height: 200px; */
    border-radius: 0;
  }

  #wwd .card .image img {
    width: 358px;
    height: 358px;
    object-fit: contain;
  }

  #wwd .card .content {
    padding: 80px 16px;
  }

  #wwd .card .content ul {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  #wwd .container {
    gap: 60px;
  }
}

/*  */
@media (max-width: 600px) {
  #wwd .card .content .list-columns {
    flex-direction: column;
    gap: 0;
  }
}



/*  */
.slick-dots li.slick-active button {
  background-color: #131515;
}

.videoCarousel {
  position: inherit !important;
  padding: calc(16px * 4) 0;
}

.videoCarousel .container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  .videoCarousel .container {
    padding: 0 16px;
  }
}

.videoCarousel .container .buttons {
  text-align: center;
}

.videoCarousel .container .buttons.left {
  text-align: left;
}

.videoCarousel .container .slide .thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.videoCarousel .container .slide .thumbnail img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.videoCarousel .container .slide .thumbnail svg {
  position: absolute;
  max-width: 50px;
  max-height: 50px;
}

.videoCarousel .video-slider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.videoCarousel .video-slider .slick-list {
  max-width: calc(100% - 92px);
  margin: 0 -20px;
}

.videoCarousel .video-slider .slick-list .slick-slide {
  margin: 0 20px;
}

.videoCarousel .popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 2;
}

.videoCarousel .popup .loading {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
}

.videoCarousel .popup.active {
  display: flex;
}

.videoCarousel .popup .close {
  margin-left: auto;
  cursor: pointer;
  position: relative;
  width: 34px;
  height: 34px;
}

.videoCarousel .popup .content {
  z-index: 2;
  max-width: 90%;
}

.videoCarousel .popup .content iframe {
  max-width: 100%;
}

.videoCarousel .st0 {
  fill: none;
}

.videoCarousel .st1 {
  fill: #FFFFFF;
}

.videoCarousel .st2 {
  fill: #131515;
}

.tabs {
  padding: calc(16px * 4) 0;
}

.tabs .container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  .tabs .container {
    padding: 0 16px;
  }
}

.tabs .container .tabItems .topTabs {
  display: flex;
  justify-content: center;
}

@media (max-width: 1120px) {
  .tabs .container .tabItems .topTabs {
    flex-direction: column;
  }
}

.tabs .container .tabItems .topTabs .tabTitle {
  text-transform: uppercase;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(16px / 2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tabs .container .tabItems .topTabs .tabTitle:hover {
  color: #000000;
  font-weight: bold;
}

.tabs .container .tabItems .topTabs .tabTitle.active {
  color: #131515;
  font-weight: bold;
}

.tabs .container .tabItems.side {
  display: flex;
  align-items: center;
}

.tabs .container .tabItems.side .sideTabs {
  width: 50%;
  margin-right: calc(16px * 2);
  display: flex;
  gap: 16px;
  flex-direction: column;
}

@media (max-width: 600px) {
  .tabs .container .tabItems.side .sideTabs {
    width: 100%;
    margin: 0;
  }
}

.tabs .container .tabItems.side .sideTabs .tabTitle {
  display: flex;
  cursor: pointer;
}

.tabs .container .tabItems.side .sideTabs .tabTitle:not(:last-of-type) {
  margin-bottom: 16px;
}

.tabs .container .tabItems.side .sideTabs .tabTitle a {
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.tabs .container .tabItems.side .sideTabs .tabTitle .icon {
  background: #FFFFFF;
  overflow: hidden;
  width: calc(16px * 2);
  height: calc(16px * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: all 0.2s ease;
  padding: calc(16px / 2);
}

@media (max-width: 600px) {
  .tabs .container .tabItems.side .sideTabs .tabTitle .icon {
    width: calc(calc(16px * 2) + calc(16px / 2));
    height: calc(calc(16px * 2) + calc(16px / 2));
  }
}

.tabs .container .tabItems.side .sideTabs .tabTitle .icon img {
  max-width: 100%;
  max-height: 100%;
}

.tabs .container .tabItems.side .sideTabs .tabTitle .tabTitleContent {
  width: calc(100% - calc(16px * 3));
}

.tabs .container .tabItems.side .sideTabs .tabTitle span {
  font-size: 24px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: calc(16px / 2);
  display: block;
  transition: all 0.2s ease;
}

.tabs .container .tabItems.side .tabContent {
  width: 50%;
  display: flex;
}

@media (max-width: 600px) {
  .tabs .container .tabItems.side .tabContent {
    display: none;
  }
}

.tabs .container .tabItems.side .tabContent .tabCopy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs .container .tabItems.side .tabContent .tabCopy img {
  max-width: 100%;
}

.tabs .container .tabItems.right .sideTabs {
  order: 2;
  margin-right: 0;
  margin-left: calc(16px * 2);
}

@media (max-width: 600px) {
  .tabs .container .tabItems.right .sideTabs {
    margin-left: 0;
    margin-top: 16px;
  }
}

.tabs .container .tabItems.right .tabContent {
  order: 1;
}

.tabs .container .tabItems .tabContent {
  display: flex;
  overflow: hidden;
}

.tabs .container .tabItems .tabContent .tabCopy {
  width: 100%;
  margin-top: 16px;
  padding-bottom: 16px;
  margin-right: -100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

.tabs .container .tabItems .tabContent .tabCopy.active {
  opacity: 1;
  visibility: visible;
}

.tabs .container .tabItems .tabContent.top .flex {
  display: flex;
  align-items: center;
  gap: calc(16px * 3);
}

@media (max-width: 1120px) {
  .tabs .container .tabItems .tabContent.top .flex {
    flex-wrap: wrap;
  }
}

.tabs .container .tabItems .tabContent.top .flex img.left {
  order: 1;
}

.tabs .container .tabItems .tabContent.top .flex .content {
  order: 2;
  width: 50%;
}

@media (max-width: 1120px) {
  .tabs .container .tabItems .tabContent.top .flex .content {
    width: 100%;
  }
}

.tabs .container .tabItems .tabContent.top .flex img.right {
  order: 3;
  margin-left: 16px;
}

.tabs .container .tabItems .tabContent.top .flex img {
  width: 50%;
}

@media (max-width: 1120px) {
  .tabs .container .tabItems .tabContent.top .flex img {
    width: 100%;
    order: 3 !important;
    margin: 16px 0 0;
  }
}

.tabs .container .tabItems .tabContent.top .tabCopy.full .content {
  width: 100% !important;
}

.gallery {
  padding: calc(16px * 4) 0;
}

.gallery .container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  .gallery .container {
    padding: 0 16px;
  }
}

.gallery .container .images {
  margin-top: calc(16px * 3);
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 2);
}

.gallery .container .images .image {
  width: calc(33.3333% - 16px * 1.3333);
}

.gallery .container .images .image img {
  max-width: 100%;
  min-width: 50%;
  height: auto;
  margin: 0 auto;
}

.gallery .container .images .image figcaption {
  margin-top: 16px;
  font-size: 16px;
  font-style: italic;
}

.gallery .container .images.four .image {
  width: calc(25% - calc(16px * 1.5));
}

.gallery .container .images.five .image {
  width: calc(20% - 16px * 1.6);
}

@media (max-width: 1120px) {

  .gallery .container .images.four .image,
  .gallery .container .images.five .image {
    width: calc(33.3333% - 16px * 1.3333);
  }
}

@media (max-width: 600px) {
  .gallery .container .images .image {
    width: 100% !important;
  }
}

section.team {
  padding: calc(16px * 3) 0 calc(16px * 4);
}

section.team .container {
  max-width: 1200px;
  margin: 0 auto;
  max-width: 1050px;
}

@media (max-width: 1120px) {
  section.team .container {
    padding: 0 16px;
  }
}

section.team .container .search {
  margin-bottom: calc(16px * 4);
}

section.team .container .search form {
  display: flex;
  align-items: flex-end;
  gap: calc(16px * 4);
}

section.team .container .search form div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

section.team .container .search form div strong {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1.12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: calc(16px / 2);
}

section.team .container .search form div select {
  background: #FFFFFF url(../img/down.svg) no-repeat calc(100% - calc(16px * 1.5)) center;
  border: #000000 1px solid;
  padding: calc(16px - 2px) calc(calc(16px * 1.5) - 2px);
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.34px;
  font-family: "Neulis Neue", "Helvetica", "Arial", sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

@media (max-width: 600px) {
  section.team .container .search form {
    flex-direction: column;
    gap: calc(16px * 2);
    align-items: center;
  }

  section.team .container .search form div {
    width: 100%;
  }
}

section.team .container .teamMembers {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 3);
  align-items: flex-start;
}

section.team .container .teamMembers .member {
  max-width: 318px;
  width: 100%;
  flex-grow: 1;
  height: 400px;
  overflow: hidden;
  position: relative;
}

section.team .container .teamMembers .member .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

section.team .container .teamMembers .member img {
  width: 100%;
  transition: all 0.2s ease;
}

section.team .container .teamMembers .member .content {
  position: absolute;
  bottom: 0;
  padding: 16px 16px calc(16px * 2) 16px;
  text-align: center;
  width: calc(100% - calc(16px * 2));
  color: #FFFFFF;
  z-index: 2;
}

section.team .container .teamMembers .member .content h3 {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0.44px;
  font-weight: 800;
  font-family: "Neulis Neue", "Helvetica", "Arial", sans-serif;
  color: #FFFFFF;
  margin: 0 0 calc(16px / 2);
}

section.team .container .teamMembers .member .content span {
  display: block;
}

section.team .container .teamMembers .member .content a {
  display: block;
  margin-top: 0;
  color: #FFFFFF;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

section.team .container .teamMembers .member:hover img {
  transform: scale(1.05);
}

section.team .container .teamMembers .member:hover .content a {
  margin-top: 16px;
  max-height: 100%;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1120px) {
  section.team .container .teamMembers .member .content a {
    margin-top: 16px;
    max-height: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  section.team .container .teamMembers {
    justify-content: center;
  }
}

/* ================================
   BLOG POST PAGE
================================ */
.archive .wrapper {
  background: #F2F2ED;
}

.archive .container {
  max-width: 1728px;
  margin: 0 auto;
  padding: 56px clamp(16px, 3.24vw, 56px);
  background: #F2F2ED;
}

.archive .container .header .eyebrow {
  color: #454344;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.32px;
  word-wrap: break-word;
  margin: 0 0 12px;
}

.archive .container .header h1 {
  margin: 0;
}

/* Posts Grid */
.archive .container .posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: clamp(32px, 3vw, 48px);
  padding: calc(16px * 4) 0;
}

@media (max-width: 1200px) {
  .archive .container .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .archive .container .posts {
    grid-template-columns: 1fr;
  }
}

/* Card */
.archive .container .posts .post {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  min-width: 358px;
  max-width: 523px;
  padding: 12px;
  flex-shrink: 0;
  text-decoration: none;
  border-radius: var(--rounded-corners-medium, 30px);
  background: var(--Interface, #F2F2ED);
}

.archive .container .posts .post:hover {
  background: #FFFFFA;
  border-radius: var(--rounded-corners-medium, 30px);
}

/* Featured Image */
.archive .container .posts .post .thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.archive .container .posts .post .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
  border-radius: 18px;
}

/* Card Content */
.archive .container .posts .post .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.archive .container .posts .post .content h3 {
  margin: 0;
  overflow: hidden;
  color: var(--Primary-Deep-Purple-200, #202153);
  text-overflow: ellipsis;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

/* Meta: date, read time, author */
.archive .container .posts .post .content .meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.archive .container .posts .post .content .meta .date-read {
  display: flex;
  align-items: center;
  gap: 24px;
}

.archive .container .posts .post .content .meta .date,
.archive .container .posts .post .content .meta .read-time {
  margin: 0;
  color: var(--Neutral-100, #221F20);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.archive .container .posts .post .content .meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.archive .container .posts .post .content .meta .author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.archive .container .posts .post .content .meta .author span {
  color: var(--Neutral-100, #221F20);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}

/* Pagination */
.archive .container .navigation {
  text-align: center;
}

.archive .container .navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.archive .container .navigation .nav-links .page-numbers {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--Secondary-Cream-100, #E8E8E3);
  text-decoration: none;
  color: #454344;
  font-size: 20px;
  font-weight: 400;
  word-wrap: break-word
}

.archive .container .navigation .nav-links .page-numbers.current {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--Secondary-Sky, #C2E8FB);
}

.archive .container .navigation .nav-links .page-numbers.prev,
.archive .container .navigation .nav-links .page-numbers.next {
  color: var(--Body-Copy-Light, #221F20);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.16px;
  background: none;
  /* text-decoration: none; */
}

.archive .container .navigation .nav-links .page-numbers.prev {
  margin-right: 70px;
}

.archive .container .navigation .nav-links .page-numbers.next {
  margin-left: 70px;
}

/* ================================
   SINGLE BLOG POST PAGE
================================ */
.single-blog_post .wrapper {
  /* max-width: 1728px; */
  background: #F2F2ED;
}

.single-blog_post .container {
  max-width: 1728px;
  margin: 0 auto;
  padding: 56px clamp(16px, 3.24vw, 56px);
  background: #F2F2ED;
}

.single-blog_post .container .divider {
  width: 60px;
  height: 5px;
  border-radius: 100px;
  background: var(--Primary-Ignite-200,
      #00BFDF);
}

/* Header: eyebrow + title */
.single-blog_post .container .single_blog_header {
  margin-bottom: 40px;
}

.single-blog_post .container .single_blog_header .return_eyebrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.32px;
  text-decoration: none;
  color: #454344;
  text-transform: none;
  margin: 18px 0;
}

.single-blog_post .container .single_blog_header h1 {
  margin: 0;
  color: #202153;
  font-size: 64px;
  font-weight: 800;
  line-height: 64px;
  word-wrap: break-word;
  text-transform: none;
}

/* Featured Image */
.single-blog_post .container .blog_image {
  max-width: 1328px;
  height: clamp(201px, 56.1vw, 746px);
  margin: 0 auto 56px;
  overflow: hidden;
  border-radius: clamp(30px, 3.76vw, 50px);
}

.single-blog_post .container .blog_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: clamp(30px, 3.76vw, 50px);
}

/* Content: side by side */
.single-blog_post .container .content {
  display: flex;
  align-items: flex-start;
  gap: clamp(56px, 8.5vw, 113px);
  max-width: 1328px;
  margin: 0 auto;
}

/* Left Gutter */
.single-blog_post .container .content .data {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 255px;
  flex-shrink: 0;
}

.divider {
  width: 60px;
  height: 5px;
  border-radius: 100px;
  background: var(--Primary-Ignite-200, #00BFDF);
}

.single-blog_post .container .content .data .date-read {
  display: flex;
  align-items: center;
  gap: 24px;
}

.single-blog_post .container .content .data .date-read .date,
.single-blog_post .container .content .data .date-read .read-time {
  margin: 0;
  font-size: 14px;
  color: #555555;
}

.single-blog_post .container .content .data .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-blog_post .container .content .data .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.single-blog_post .container .content .data .author span {
  font-size: 16px;
  font-weight: 500;
}

/* Main Content */
.single-blog_post .container .content .post_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 1;
  min-width: 0;
  margin-bottom: 74px;
}

/* Headings */
.single-blog_post .container .content .post_content h2 {
  color: var(--Headlines-Light, #202153);
  font-size: 46px;
  font-weight: 800;
  line-height: 52px;
  margin: 56px 0 16px;
}

.single-blog_post .container .content .post_content h2:first-child {
  margin-top: 0;
}

.single-blog_post .container .content .post_content h3 {
  color: var(--Headlines-Light, #202153);
  font-size: 38px;
  font-weight: 800;
  line-height: 38px;
  margin: 40px 0 12px;
}

/* Paragraphs */
.single-blog_post .container .content .post_content p {
  color: var(--Body-Copy-Light, #221F20);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.32px;
  /* margin: 0 0 56px; */
}

/* Links */
.single-blog_post .container .content .post_content a {
  color: var(--CTA-Light, #DA3839);
  text-decoration: none;
}

/* Lists */
.single-blog_post .container .content .post_content ul,
.single-blog_post .container .content .post_content ol {
  color: var(--Body-Copy-Light, #221F20);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.32px;
  margin: 0 0 56px;
}

.single-blog_post .container .content .post_content ul {
  list-style: none;
  padding-left: 16px;
}

.single-blog_post .container .content .post_content ul li {
  position: relative;
  padding-left: 16px;
}

.single-blog_post .container .content .post_content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  line-height: 24px;
  color: var(--Body-Copy-Light, #221F20);
}

.single-blog_post .container .content .post_content ol {
  padding-left: 24px;
}

/* Images */
.single-blog_post .container .content .post_content img[class*="wp-image-"] {
  border-radius: 18px;
}

/* Captions */
.single-blog_post .container .content .post_content figcaption {
  color: var(--Neutral-200, #454344);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.28px;
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .single-blog_post .container .content {
    flex-direction: column;
  }

  .single-blog_post .container .content .data,
  .single-blog_post .container .content .post_content {
    width: 100%;
  }

  .single-blog_post .container .single_blog_related {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .related_gutter {
    width: 100%;
  }
}

/* Post Navigation */
.single-blog_post .container .post_navigation {
  max-width: 1328px;
  margin: 0 auto 80px;
}

.single-blog_post .container .post_navigation .post_nav_divider {
  border: none;
  border-top: 1px solid #D9D9D4;
  margin: 0 0 32px;
}

.single-blog_post .container .post_navigation .post_nav_links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.single-blog_post .container .post_navigation .post_nav_links .post_nav_prev,
.single-blog_post .container .post_navigation .post_nav_links .post_nav_next {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 45%;
}

.single-blog_post .container .post_navigation .post_nav_links .post_nav_next {
  text-align: right;
  align-items: flex-end;
}

.single-blog_post .container .post_navigation .post_nav_links .nav_label {
  font-size: 12px;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--Neutral-200, #454344);
  letter-spacing: 0.5px;
}

.single-blog_post .container .post_navigation .post_nav_links a {
  color: var(--Headlines-Light, #202153);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.single-blog_post .container .post_navigation .post_nav_links a:hover {
  color: var(--CTA-Light, #DA3839);
}

/* RELATED */
.single-blog_post .container .single_blog_related .related_eyebrow {
  display: inline-block;
  max-width: 255px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.32px;
  text-decoration: none;
  color: #202153;
  margin-bottom: 14px;
}

.single_blog_related {
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: clamp(56px, 8.5vw, 113px);
  justify-content: start;
  padding-top: 80px;
  max-width: 1328px;
  margin: 0 auto;
  width: 100%;
}

.related_gutter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 255px;
  flex-shrink: 0;
}

.related_articles {
  width: 100%;
}

.related_articles_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.related_article_row {
  display: flex;
  gap: 24px;
  text-decoration: none;
  align-items: flex-start;
}

.related_thumbnail img {
  width: 202px;
  height: 202px;
  object-fit: cover;
  border-radius: 12px;
}

.related_article_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related_title {
  margin: 0;
  overflow: hidden;
  color: #202153;
  text-overflow: ellipsis;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.related_meta {
  display: flex;
  gap: 12px;
  color: #221F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.related_author {
  display: flex;
  color: #221f20;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.related_author img {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  border-radius: 50px;
}


/* =======================================
   GLOBAL STYLES
   ======================================= */
body {
  font-family: "neulis-neue", "Helvetica", "Arial", sans-serif;
  margin: 0;
  font-size: 18px;
  background: #fffffa;
  /* --------- GLOBAL TEXT STYLES --------- */
  /* --------- LINKS --------- */
  /* --------- GLOBAL SECTION STYLES --------- */
  /* --------- LIST STYLES --------- */
  /* --------- BREADCRUMBS --------- */
}

body.active {
  overflow-y: hidden;
  overflow: hidden;
}

body h1,
body h2,
body h3 {
  font-family: "neulis-neue", "Helvetica", "Arial", sans-serif;
  color: #202153;
}

body h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 64px;
}

body h2 {
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 52px;
}

body h3 {
  font-size: 38px;
}

body p {
  color: #221F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.64px;
}

body a {
  color: #DA3839;
  transition: all 0.2s ease;
}

/* body .button {
  display: inline-block;
  padding: calc(16px / 2) calc(16px * 2);
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid;
} */

/* body .button.primary {
  background: #DEDEDE;
  color: #000000;
  border-color: #131515;
} */

body .button.primary:hover {
  background: #131515;
  border-color: #131515;
  color: #FFFFFF;
}

body .button.secondary {
  background: #FFFFFF;
  color: #131515;
  border-color: #131515;
}

body .button.secondary:hover {
  background: #131515;
  border-color: #131515;
  color: #FFFFFF;
}

body hr.anchor {
  border: none;
  margin: 0;
}

body section {
  padding: 0 16px;
}

body section *:first-child {
  margin-top: 0;
}

/* body section *:last-child {
  margin-bottom: 0;
} */

body section.gray {
  background: #EDEFF0;
}

body section.cream {
  background: #f2f2ed;
}

body section.notop {
  padding-top: 0;
}

body section.nobottom {
  padding-bottom: 0;
}

body section img {
  display: block;
}

body .checklist {
  padding: 0;
  list-style: none;
}

body .checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: calc(16px * 1.5);
  font-weight: 500;
}

body .checklist li::before {
  content: "";
  display: inline-block;
  background: url(../img/check.svg);
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  margin-right: calc(16px / 2);
  margin-top: -2px;
}

body ol,
body ul {
  padding-left: 20px;
}

body ol.two,
body ul.two {
  -moz-columns: 2;
  columns: 2;
}

body ol.three,
body ul.three {
  -moz-columns: 3;
  columns: 3;
}

body .breadcrumbWrapper {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  body .breadcrumbWrapper {
    padding: 0 16px;
  }
}

.privacy-policy .wrapper {
  padding-block: clamp(56px, 6vw, 56px);
  padding-inline: clamp(16px, 4vw, 56px);
}

.highlight {
  background-image: linear-gradient(#C2E8FB, #C2E8FB);
  background-repeat: no-repeat;
  background-size: 100% 39px;
  background-position: 0 bottom;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  position: relative;
  z-index: 0;
}

.wp-block-quote {
  border-left: 3px solid #00BFDF !important;
  padding-left: 18px;
  margin: 0;
  /* margin-bottom: 56px; */
  padding: 8px;
}

.wp-block-quote p {
  display: inline;
  background-color: #f6f6f7;
  padding: 4px 8px;
  margin-bottom: 0;
}

mark.has-inline-color {
  background-color: transparent !important;
}

.single-blog_post .container .content .post_content ul li::before {
  content: "•";
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 28px;
  line-height: 20px;
  color: var(--Body-Copy-Light, #221F20);
}

/* Default: video playing, show pause icon */
.hero-video-icon--play {
  display: none;
}

.hero-video-icon--pause {
  display: block;
}

/* Paused: show play icon */
.hero-video-toggle.is-paused .hero-video-icon--play {
  display: block;
}

.hero-video-toggle.is-paused .hero-video-icon--pause {
  display: none;
}

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