@charset "UTF-8";
/*
Theme Name: NuHarbor Security
Theme URI: https://nuharborsecurity.com/
Description: From hyper-growth startups to Fortune 500 companies, NuHarbor Security is the leading cybersecurity company helping organizations to make cyber easier.
Version: 1.0.0
Author: Redonk Marketing
Author URI: https://www.redonkmarketing.com
Tags: cybersecurity, startup, organizations
License: MIT
License URI: http://opensource.org/licenses/mit-license.php
*/
:root {
  /* nH Blue Scale */
  --color-blue-950: #0A0F1E;
  --color-blue-900: #051B66;
  --color-blue-800: #062F80;
  --color-blue-700: #0C4799;
  --color-blue-600: #0770E5;
  --color-blue-500: #0397EF;
  --color-blue-400: #03B8FA;
  --color-blue-300: #03D5FF;
  --color-blue-200: #70D9FF;
  --color-blue-100: #C0EDFE;
  /* Accent Colors */
  --color-white: #FFFFFF;
  --color-text: #373737;
  --color-grey: #F2F8FC;
  --color-teal: #0E9E9B;
  --color-yellow: #D9FA50;
  --color-orange: #F48A36;
  /* Gradient */
  --gradient-blue: linear-gradient(to bottom, #007BEF, #0773E9);
  /* Variables */
  --color-divider: #CDD9E0;
  --color-text-on-blue: rgba(255, 255, 255, 0.9);
  /* Border */
  --radius: 8px;
  --border: 0.5px solid #CDDAE0;
}

.button {
  border-radius: 999px;
  border: 1.5px solid var(--color-blue-950);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px 0 8px;
  height: 52px;
  font-size: 15px;
  font-weight: 650;
  line-height: 152%; /* 24.32px */
  letter-spacing: 0.3px;
  text-decoration: none;
  color: #FFF;
  transition: all 0.2s;
  background-color: var(--color-blue-950);
}
@media (max-width: 1024px) {
  .button {
    gap: 8px;
  }
}
.button svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.button svg rect {
  fill: #FFF;
  stroke: #FFF;
  transition: all 0.2s;
}
.button svg path {
  fill: var(--color-blue-950);
  transition: all 0.2s;
}
.button:hover {
  background-color: var(--color-blue-600);
  color: #FFF;
  border-color: var(--color-blue-600);
}
.button:hover svg rect {
  fill: #FFF;
  stroke: #FFF;
}
.button:hover svg path {
  fill: var(--color-blue-600);
}
.button--large {
  font-size: 16px;
  padding: 0 24px 0 16px;
  height: 68px;
}
.button--blue {
  border-color: #FFF;
  background-color: #FFF;
  color: var(--color-blue-950);
}
.button--blue svg rect {
  fill: var(--color-blue-600);
  stroke: var(--color-blue-600);
}
.button--blue svg path {
  fill: #FFF;
}
.button--blue:hover {
  border-color: var(--color-blue-300);
  background-color: var(--color-blue-300);
  color: var(--color-blue-950);
}
.button--blue:hover svg rect {
  fill: var(--color-blue-600);
  stroke: var(--color-blue-600);
}
.button--blue:hover svg path {
  fill: #FFF;
}
.button--secondary {
  color: var(--color-blue-950);
  border: 1.5px solid rgba(7, 110, 229, 0.12);
  background-color: transparent;
}
.button--secondary svg rect {
  fill: var(--color-blue-600);
}
.button--secondary svg path {
  fill: #FFF;
}
.button--secondary:hover {
  background-color: var(--color-blue-600);
  color: #FFF;
  border-color: var(--color-blue-600);
}
.button--secondary:hover svg rect {
  fill: #FFF;
  stroke: #FFF;
}
.button--secondary:hover svg path {
  fill: var(--color-blue-600);
}
.button--secondary.button--blue {
  border-color: var(--color-blue-300);
  background-color: transparent;
  color: #FFF;
}
.button--secondary.button--blue svg rect {
  fill: var(--color-blue-300);
  stroke: var(--color-blue-300);
}
.button--secondary.button--blue svg path {
  fill: var(--color-blue-600);
}
.button--secondary.button--blue:hover {
  border-color: var(--color-blue-300);
  background-color: var(--color-blue-300);
  color: var(--color-blue-950);
}
.button--secondary.button--blue:hover svg rect {
  fill: var(--color-blue-600);
  stroke: var(--color-blue-600);
}
.button--secondary.button--blue:hover svg path {
  fill: #FFF;
}
.button--full-width, .button--center {
  width: 100%;
  justify-content: center;
}
.button--full-width span, .button--center span {
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .button--mobile-full-width {
    width: 100%;
    justify-content: center;
  }
  .button--mobile-full-width span {
    width: 100%;
    text-align: center;
  }
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 650;
  line-height: 152%; /* 24.32px */
  letter-spacing: 0.3px;
  color: var(--color-blue-950);
  text-decoration: none;
  transition: all 0.2s;
}
.button-link svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.button-link svg rect {
  transition: all 0.2s;
}
.button-link svg path {
  transition: all 0.2s;
}
.button-link:hover {
  color: var(--color-blue-600);
  text-decoration: underline;
}
.button-link:hover rect {
  fill: var(--color-blue-600);
}
.button-link:hover path {
  fill: #FFF;
}
.button-link--blue {
  color: #FFF;
}
.button-link--blue svg rect {
  stroke: var(--color-blue-300);
}
.button-link--blue svg path {
  fill: #FFF;
}
.button-link--blue:hover {
  color: #FFF;
  text-decoration: underline;
}
.button-link--blue:hover svg rect {
  fill: var(--color-blue-300);
}
.button-link--blue:hover svg path {
  fill: var(--color-blue-600);
}
.button-link--white {
  color: var(--color-white);
}
.button-link--white svg rect {
  stroke: var(--color-white);
}
.button-link--white svg path {
  fill: var(--color-white);
}
.button-link--white:hover {
  color: var(--color-white);
  text-decoration: underline;
}
.button-link--white:hover svg rect {
  fill: var(--color-white);
}
.button-link--white:hover svg path {
  fill: var(--color-blue-600);
}
.button-link--large {
  font-size: 16px;
}

@font-face {
  font-family: "Season VF";
  src: url("../fonts/SeasonCollectionVF-TRIAL.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}
.no-padding {
  padding: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.d-none {
  display: none !important;
}

.hide-desktop {
  display: none !important;
}
@media (max-width: 1024px) {
  .hide-desktop {
    display: block !important;
  }
}

@media (max-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-tablet {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

.max-w-100 {
  max-width: 100%;
}

.max-w-467 {
  max-width: 467px;
}

.max-700 {
  max-width: 700px;
}

.max-630 {
  max-width: 630px;
}

.pt-56 {
  padding-top: 56px !important;
}

.pb-160 {
  padding-bottom: 160px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

.title {
  margin: 0;
}

.position-relative {
  position: relative !important;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.horizon--column-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.horizon--column-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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

.headline__title {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .headline__title {
    margin-bottom: 40px;
  }
}
.headline--action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.headline--action .headline__title {
  margin-bottom: 0;
}
.headline--border {
  border-bottom: 1px solid var(--Divider, #CDDAE0);
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-full {
  flex-basis: 100%;
}

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

.g-12 {
  gap: 12px;
}

.g-16 {
  gap: 16px;
}

.g-24 {
  gap: 24px;
}

.g-48 {
  gap: 48px;
}

.img-fill {
  position: absolute;
  max-width: initial;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imgdevider {
  width: 100%;
  height: 4px;
  background: url("../images/divider@2x.jpg") no-repeat center center;
  background-size: cover;
}

.spacer-180 {
  height: 180px;
}
@media (max-width: 767px) {
  .spacer-180 {
    height: 40px;
  }
}

.color-600 {
  color: var(--color-blue-600);
}

.color-text {
  color: var(--color-text);
}

.mt-40 {
  margin-top: 40px;
}

:root {
  --fvs-title: 'wght' 420, 'slnt' 0, 'SERF' 50;
  --fvs-h1: 'wght' 420, 'slnt' 0, 'SERF' 44;
  --fvs-h1-5: 'wght' 420, 'slnt' 0, 'SERF' 50;
  --fvs-h2: 'wght' 420, 'slnt' 0, 'SERF' 50;
  --fvs-h3: 'wght' 420, 'slnt' 0, 'SERF' 44;
  --fvs-h4: 'wght' 420, 'slnt' 0, 'SERF' 44;
  --fvs-h5: 'wght' 432, 'slnt' 0, 'SERF' 50;
  --fvs-h6: 'wght' 510, 'slnt' 0, 'SERF' 44;
  --fvs-h7: 'wght' 470, 'slnt' 0, 'SERF' 44;
}

h1, .h1 {
  font-family: "Season VF", sans-serif;
  font-size: 72px;
  font-weight: 420;
  line-height: 92%;
  letter-spacing: -1%;
  font-variation-settings: var(--fvs-h1);
}
@media (max-width: 1024px) {
  h1, .h1 {
    font-size: 46px;
    line-height: 98%;
    letter-spacing: -1%;
  }
}

.h1-5 {
  font-family: "Season VF", sans-serif;
  font-size: 84px;
  font-weight: 400;
  line-height: 92%;
  letter-spacing: -1%;
  font-variation-settings: var(--fvs-h1-5);
}
@media (max-width: 1024px) {
  .h1-5 {
    font-size: 46px;
    line-height: 98%;
    letter-spacing: -0.46px;
  }
}

h2, .h2 {
  font-family: "Season VF", sans-serif;
  font-size: 64px;
  font-weight: 460;
  line-height: 100%;
  letter-spacing: -1%;
  font-variation-settings: var(--fvs-h2);
}
@media (max-width: 1024px) {
  h2, .h2 {
    font-size: 38px;
    letter-spacing: -0.38px;
  }
}

h3, .h3 {
  font-family: "Season VF", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1%;
  font-variation-settings: var(--fvs-h3);
}
@media (max-width: 1024px) {
  h3, .h3 {
    font-size: 31px;
    line-height: 110%;
    letter-spacing: 0;
  }
}

h4, .h4 {
  font-family: "Season VF", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  font-variation-settings: var(--fvs-h4);
}
@media (max-width: 1024px) {
  h4, .h4 {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 1%;
  }
}

h5, .h5 {
  font-family: "Season VF", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 1%;
  font-variation-settings: var(--fvs-h5);
}
@media (max-width: 1024px) {
  h5, .h5 {
    font-size: 20px;
    letter-spacing: 0.2px;
  }
}

h6, .h6 {
  font-family: "Season VF", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1%;
  font-variation-settings: var(--fvs-h6);
}

h7, .h7 {
  font-family: "Season VF", sans-serif;
  font-size: 21px;
  font-weight: 470;
  line-height: 130%;
  letter-spacing: 1%;
  font-variation-settings: var(--fvs-h7);
}

@media (max-width: 1024px) {
  .mobile-h1 {
    font-size: 46px;
    font-weight: 443;
    line-height: 98%; /* 45.08px */
    letter-spacing: -0.46px;
  }
  .mobile-h2 {
    font-size: 38px;
    letter-spacing: -0.38px;
  }
  .mobile-h3 {
    font-size: 31px;
    line-height: 110%;
    letter-spacing: 0;
  }
  .mobile-h4 {
    font-size: 24px;
    font-weight: 510;
    line-height: 120%; /* 28.8px */
    letter-spacing: 0.24px;
    font-variation-settings: "wght" 510, "slnt" 0, "SERF" 44;
  }
  .mobile-h5 {
    font-size: 21px;
    font-weight: 550;
    line-height: 120%; /* 25.2px */
    letter-spacing: 0.21px;
    font-variation-settings: "wght" 550, "slnt" 0, "SERF" 44;
  }
}
h1, h2, h3, h4, h5, h6, h7 {
  margin: 0;
}
@media (max-width: 767px) {
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, h7 br {
    display: none;
  }
}

.title {
  font-family: "Season VF", sans-serif;
  font-size: 93px;
  line-height: 92%;
  letter-spacing: -1%;
  font-variation-settings: var(--fvs-title);
}
@media (max-width: 1024px) {
  .title {
    font-size: 46px;
    line-height: 98%;
    letter-spacing: -1%;
  }
}

p {
  font-family: "Season VF", sans-serif;
  font-size: 18px;
  font-weight: 520;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.36px;
  margin: 0 0 24px 0;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  p {
    font-size: 15px;
    letter-spacing: 0.45px;
  }
}
@media (max-width: 767px) {
  p br {
    display: none;
  }
}

.body-16 {
  font-family: "Season VF", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .body-16 {
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.3px;
  }
}

.body-16--on-dark {
  color: rgba(255, 255, 255, 0.9);
}

.misc-text {
  font-size: 13px;
  font-weight: 650;
  line-height: 152%; /* 19.76px */
  letter-spacing: 0.39px;
}

.eyebrow {
  color: var(--color-blue-600);
  font-size: 18px;
  font-weight: 650;
  line-height: 152%; /* 27.36px */
  letter-spacing: 0.54px;
}
@media (max-width: 767px) {
  .eyebrow {
    font-size: 15px;
    font-weight: 620;
    letter-spacing: 0.3px;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.embed-responsive:before {
  content: "";
  display: block;
}
.embed-responsive.embed-responsive-16by9:before {
  padding-top: 57.25%;
}
.embed-responsive iframe,
.embed-responsive object {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}

.pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--color-blue-600);
  color: var(--color-blue-600);
  font-size: 13px;
  font-weight: 650;
  line-height: 152%; /* 19.76px */
  letter-spacing: 0.39px;
}
.pill--white span {
  color: #FFF;
  border-color: #FFF;
}
.pill--group {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .pill--group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.pill__active {
  background-color: var(--color-blue-600);
  color: #FFF !important;
}
.pill--no-border span {
  border: none;
  padding: 0;
}

.custom-container {
  display: block;
  max-width: 1328px;
  padding: 0 24px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .custom-container {
    padding: 0 20px;
  }
}

:root {
  --footer-shape-height: 135px;
  --footer-cta-shape-height: 185px;
}
@media (max-width: 767px) {
  :root {
    --footer-shape-height: 80px;
  }
}

.footer-cta-wrapper {
  background: url("../images/footer-cta-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: calc((var(--footer-shape-height) + 5px) * -1);
  margin-top: calc((var(--footer-cta-shape-height) + 5px) * -1);
  padding: 266px 0 200px 0;
  clip-path: polygon(0 0, 100% 185px, 100% 100%, 0 100%);
}
.footer-cta-wrapper h2 {
  color: var(--White, #FFF);
  text-align: center;
  font-family: "Season VF";
  font-size: 93px;
  font-weight: 420;
  line-height: 92%; /* 85.56px */
  letter-spacing: -0.93px;
  margin: 0 0 48px 0;
}
.footer-cta-wrapper h2:last-child {
  margin: 0;
}
.footer-cta-wrapper .description {
  max-width: 560px;
  margin: 0 auto 48px auto;
}
.footer-cta-wrapper .description p {
  opacity: 0.8;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 520;
  line-height: 152%; /* 27.36px */
  letter-spacing: 0.36px;
}
.footer-cta-wrapper .description p:last-child {
  margin: 0;
}
.footer-cta-wrapper .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-cta-wrapper {
    padding: 96px 0 130px 0;
    clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%);
    background-position: center right 45%;
  }
  .footer-cta-wrapper h2 {
    font-size: 46px;
    font-weight: 443;
    line-height: 98%;
    letter-spacing: -0.46px;
    margin: 0 0 24px 0;
  }
  .footer-cta-wrapper h2 br {
    display: block;
  }
  .footer-cta-wrapper .description {
    margin: 0 auto 24px auto;
    max-width: 324px;
  }
  .footer-cta-wrapper .description p {
    font-size: 15px;
    line-height: 160%; /* 24px */
    letter-spacing: 0.3px;
  }
  .footer-cta-wrapper .description p br {
    display: none;
  }
}

.site-footer {
  position: relative;
  width: 100%;
  background: transparent;
}

.footer__top-shape {
  display: block;
  width: 100%;
  height: var(--footer-shape-height);
  background: #000912;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  position: relative;
  bottom: -1px;
}

.footer__body {
  background: #000912;
  padding: 86px 0;
}

.footer__inner {
  display: block;
  position: relative;
  width: 100%;
}

.footer__columns {
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer__columns {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .footer__columns {
    flex-direction: column-reverse;
  }
  .footer__columns .footer__nav-columns {
    width: 100%;
    gap: 0;
  }
  .footer__columns .footer__nav-columns .footer__nav-col {
    position: relative;
  }
  .footer__columns .footer__nav-columns .footer__nav-col::before {
    content: "";
    position: absolute;
    left: -32px;
    right: -32px;
    height: 1px;
    background: rgba(205, 218, 224, 0.2);
    bottom: 0;
  }
  .footer__columns .footer__nav-columns .footer__nav-col:last-child::before {
    display: none;
  }
  .footer__columns .footer__nav-columns .footer__nav-col.footer__nav-heading-open .footer__nav-heading:before {
    transform: rotate(180deg);
  }
  .footer__columns .footer__nav-columns .footer__nav-col.footer__nav-heading-open .footer__nav-list {
    max-height: 600px;
    transition: all 0.3s;
  }
  .footer__columns .footer__nav-columns .footer__logo {
    width: 100%;
    display: block !important;
    padding-bottom: 40px;
    position: relative;
  }
  .footer__columns .footer__nav-columns .footer__logo::before {
    content: "";
    position: absolute;
    left: -32px;
    right: -32px;
    height: 1px;
    background: rgba(205, 218, 224, 0.2);
    bottom: 0;
  }
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 209px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .footer__col--brand {
    width: 100%;
    gap: 40px;
  }
  .footer__col--brand .footer__logo {
    display: none;
  }
  .footer__col--brand .footer__address {
    gap: 20px;
  }
  .footer__col--brand .footer__tagline br,
  .footer__col--brand .footer__address-text br {
    display: block;
  }
}

.footer__logo img {
  display: block;
  height: 35px;
  width: auto;
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__tagline {
  font-family: "Season VF", sans-serif;
  font-size: 15px;
  font-weight: 470;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: #fff;
  margin: 0;
  text-transform: capitalize;
  font-variation-settings: "wght" 470, "slnt" 0, "SERF" 44;
}

.footer__address-text {
  font-family: "Season VF", sans-serif;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.52;
  letter-spacing: 0.42px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.footer__address-text p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}
.footer__address-text p a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.footer__address-text p a:hover {
  text-decoration: underline;
  color: #FFF;
}

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .footer__social {
    margin: 0;
  }
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s;
  flex-shrink: 0;
}
.footer__social-link svg path {
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  border-color: #fff;
  background-color: #fff;
}
.footer__social-link:hover svg path {
  fill: var(--nH-Blue-600, #076EE5);
}
.footer__social-link img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer__nav-columns {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex: 1;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .footer__nav-columns {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .footer__nav-columns {
    gap: 40px;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .footer__nav-columns {
    gap: 32px;
    flex-wrap: wrap;
  }
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 100px;
}
@media (max-width: 767px) {
  .footer__nav-col {
    min-width: 100%;
    gap: 0;
  }
}

.footer__nav-heading {
  font-family: "Season VF", sans-serif;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: #fff;
  margin: 0;
  text-transform: capitalize;
  font-variation-settings: "wght" 470, "slnt" 0, "SERF" 44;
}
@media (max-width: 767px) {
  .footer__nav-heading {
    font-size: 20px;
    line-height: 120%; /* 24px */
    letter-spacing: 0.8px;
    position: relative;
    padding: 20px 0;
  }
  .footer__nav-heading:before {
    content: "";
    position: absolute;
    right: 0;
    top: 23px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 18px;
    background-repeat: no-repeat;
  }
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.footer__nav-list a {
  font-family: "Season VF", sans-serif;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.52;
  letter-spacing: 0.42px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: color 0.2s, opacity 0.2s;
}
.footer__nav-list a:hover {
  color: #fff;
  text-decoration: underline;
  opacity: 1;
}
@media (max-width: 767px) {
  .footer__nav-list {
    max-height: 0;
    overflow: hidden;
    gap: 16px;
  }
  .footer__nav-list li:last-child {
    padding-bottom: 28px;
  }
  .footer__nav-list a {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.footer__divider {
  height: 4px;
  width: 100%;
  background-image: url("../images/footer-divider.jpg");
  background-size: 100% 100%;
  overflow: hidden;
  position: relative;
}

.footer__bottom-wrapper {
  background: #000912;
  padding-top: 55px;
  padding-bottom: 55px;
}
@media (max-width: 767px) {
  .footer__bottom-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.footer__copyright {
  font-family: "Season VF", sans-serif;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.52;
  letter-spacing: 0.42px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  white-space: nowrap;
  display: block;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__legal a {
  font-family: "Season VF", sans-serif;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.52;
  letter-spacing: 0.42px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal a:hover {
  color: #fff;
  text-decoration: underline;
  opacity: 1;
}

.footer__legal-item {
  position: relative;
}
.footer__legal-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
  .footer__body {
    padding: 32px 0 56px 0;
  }
  .footer__inner {
    padding: 0 32px;
  }
  .footer__top-shape {
    height: var(--footer-shape-height);
  }
}
.mega-menu-opened {
  overflow: hidden;
}

#header {
  position: fixed;
  z-index: 99;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.03);
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.3s;
}
#header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
#header .header-wrapper-fixed {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
}
#header .announcement-bar-wrapper {
  background: var(--color-blue-500);
  overflow: hidden;
  padding: 0;
}
#header .announcement-bar-wrapper .announcement-bar {
  display: flex;
  width: 100%;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin: 0 auto;
  max-width: 1328px;
  overflow: hidden;
}
#header .announcement-bar-wrapper .announcement-bar a {
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 24px;
}
#header .announcement-bar-wrapper .announcement-bar a > span {
  color: #FFF;
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
#header .announcement-bar-wrapper .announcement-bar a > span svg {
  width: 20px;
  line-height: normal;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 3px;
}
#header .announcement-bar-wrapper .announcement-bar a > span .separator {
  width: 3px;
  height: 4px;
  border-radius: 100px;
  background: #FFF;
  display: inline-block;
  padding: 0;
  margin: 0 4px;
  line-height: 16px;
  vertical-align: middle;
}
#header .announcement-bar-wrapper .announcement-bar a > span .separator:after {
  display: none;
}
#header .announcement-bar-wrapper .announcement-bar a > span span {
  text-decoration: none;
  padding: 0 16px 0 0;
  display: inline-block;
  transition: opacity 0.3s;
  font-weight: 450;
  color: #FFF;
  font-size: 14px;
  font-weight: 450;
  line-height: 16px; /* 107.143% */
  letter-spacing: 0.28px;
  position: relative;
}
#header .announcement-bar-wrapper .announcement-bar a > span span:after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 550;
  line-height: 16px;
  letter-spacing: 0.32px;
}
#header .announcement-bar-wrapper .announcement-bar a > span span:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  #header .announcement-bar-wrapper .announcement-bar a > span {
    font-size: 13px;
  }
  #header .announcement-bar-wrapper .announcement-bar a > span span {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #header .announcement-bar-wrapper .announcement-bar a {
    padding: 12px 15px;
  }
}
#header.search-open .search-form-wrapper {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  #header.search-open .search-form-wrapper {
    height: 76px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.03);
  }
}
#header .search-form-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  z-index: 9999;
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#header .search-form-wrapper .search-form {
  max-width: 1052px;
  padding: 0 24px;
  margin: 0 auto;
  width: 100%;
}
#header .search-form-wrapper form {
  position: relative;
}
#header .search-form-wrapper form input {
  border-radius: 8px;
  border: 1px solid var(--Divider, #CDDAE0);
  background: var(--White, #FFF);
  box-shadow: 0 24px 32px -20px rgba(0, 0, 0, 0.4);
  width: 100%;
  padding: 19px 108px 19px 24px;
  line-height: 36px;
  outline: none !important;
  z-index: 9;
  font-family: "Season VF", sans-serif;
}
#header .search-form-wrapper form input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
#header .search-form-wrapper form input::placeholder {
  color: var(--nH-Blue-950, #0A0F1E);
  font-family: "Season VF", sans-serif;
  font-size: 18px;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.18px;
  opacity: 0.4;
  font-variation-settings: "wght" 470, "slnt" 0, "SERF" 44;
}
#header .search-form-wrapper form button svg {
  transition: all 0.3s ease;
}
#header .search-form-wrapper form button svg * {
  transition: all 0.3s ease;
}
#header .search-form-wrapper form button[type=submit] {
  all: unset;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  top: 20px;
  right: 60px;
  width: 36px;
  height: 36px;
}
#header .search-form-wrapper form button[type=submit] svg {
  width: 100%;
  height: auto;
  display: block;
}
#header .search-form-wrapper form button[type=submit]:hover rect {
  fill: #076EE5;
}
#header .search-form-wrapper form button[type=submit]:hover path {
  fill: #FFFFFF;
}
#header .search-form-wrapper form button[type=button] {
  all: unset;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  top: 28px;
  right: 24px;
  width: 23px;
  height: 18px;
}
#header .search-form-wrapper form button[type=button] svg {
  width: 100%;
  height: auto;
  display: block;
}
#header .search-form-wrapper form button[type=button] svg:hover {
  transform: rotate(90deg);
}
@media (max-width: 1024px) {
  #header .search-form-wrapper {
    position: absolute;
    background: #fff;
    backdrop-filter: none;
    top: 75px;
    left: 0;
    right: 0;
    height: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }
  #header .search-form-wrapper .search-form {
    padding: 0px 20px 4px 20px;
  }
  #header .search-form-wrapper .search-form form input {
    box-shadow: none;
    padding: 7px 108px 7px 24px;
  }
  #header .search-form-wrapper .search-form form input::placeholder {
    font-size: 16px;
  }
  #header .search-form-wrapper .search-form form button[type=submit] {
    top: 8px;
  }
  #header .search-form-wrapper .search-form form button[type=button] {
    top: 16px;
  }
}
#header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#header .header-wrapper {
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
#header .header-wrapper .site-logo img, #header .header-wrapper .site-logo svg {
  display: block;
}
#header .header-top {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}
#header .header-top ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 17px 0;
}
#header .header-top ul li {
  margin-left: 20px;
  padding-right: 20px;
  border-right: 0.5px solid rgba(0, 0, 0, 0.2);
  line-height: 14px;
  font-size: 13px;
}
#header .header-top ul li:last-child {
  padding: 0;
  border: none;
}
#header .header-top ul li a {
  text-decoration: none;
  color: var(--text, #373737);
  font-size: 13px;
  font-weight: 550;
  line-height: 10.4px; /* 80% */
  letter-spacing: 0.26px;
  transition: all 0.3s;
}
#header .header-top ul li a:hover {
  color: #076EE5;
}
#header .header-top ul li a:hover.search-link {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M10.5194 9.69349L13.0176 12.1917L12.1927 13.0167L9.69447 10.5184C8.79616 11.2371 7.65698 11.667 6.41797 11.667C3.51997 11.667 1.16797 9.315 1.16797 6.41699C1.16797 3.51899 3.51997 1.16699 6.41797 1.16699C9.31598 1.16699 11.668 3.51899 11.668 6.41699C11.668 7.656 11.238 8.79518 10.5194 9.69349ZM9.34902 9.26061C10.0623 8.52554 10.5013 7.52279 10.5013 6.41699C10.5013 4.16096 8.67401 2.33366 6.41797 2.33366C4.16193 2.33366 2.33464 4.16096 2.33464 6.41699C2.33464 8.67303 4.16193 10.5003 6.41797 10.5003C7.52377 10.5003 8.52652 10.0613 9.26159 9.34804L9.34902 9.26061Z' fill='%23076EE5'/%3E%3C/svg%3E");
}
#header .header-top ul li a.search-link {
  padding-left: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M10.5194 9.69349L13.0176 12.1917L12.1927 13.0167L9.69447 10.5184C8.79616 11.2371 7.65698 11.667 6.41797 11.667C3.51997 11.667 1.16797 9.315 1.16797 6.41699C1.16797 3.51899 3.51997 1.16699 6.41797 1.16699C9.31598 1.16699 11.668 3.51899 11.668 6.41699C11.668 7.656 11.238 8.79518 10.5194 9.69349ZM9.34902 9.26061C10.0623 8.52554 10.5013 7.52279 10.5013 6.41699C10.5013 4.16096 8.67401 2.33366 6.41797 2.33366C4.16193 2.33366 2.33464 4.16096 2.33464 6.41699C2.33464 8.67303 4.16193 10.5003 6.41797 10.5003C7.52377 10.5003 8.52652 10.0613 9.26159 9.34804L9.34902 9.26061Z' fill='%23373737'/%3E%3C/svg%3E");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 14px;
}
#header .header-bottom {
  padding-top: 16px;
}
#header .header-bottom .header-wrapper {
  display: flex;
  align-items: center;
}
#header .header-bottom .logo {
  display: block;
  width: 152px;
  height: auto;
}
#header .header-bottom .logo svg {
  display: block;
  width: 100%;
  height: auto;
}
#header .header-bottom .header-cta {
  margin-left: auto;
}
#header .header-bottom .mega-menu {
  margin-left: 64px;
}
#header .header-bottom .mega-menu ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
#header .header-bottom .mega-menu ul li {
  padding: 31px 8px;
  padding: 0;
  line-height: 18px;
}
@media (min-width: 1025px) {
  #header .header-bottom .mega-menu ul li:last-child {
    padding: 0;
    border: none;
  }
  #header .header-bottom .mega-menu ul li:hover > a {
    color: #076EE5;
  }
  #header .header-bottom .mega-menu ul li:hover.submenu > a {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M9.75 7.85413L6.5 4.60413L3.25 7.85413' stroke='%23076EE5' stroke-width='1.08333' stroke-linecap='square'/%3E%3C/svg%3E");
  }
  #header .header-bottom .mega-menu ul li:hover.submenu .submenu-content {
    visibility: visible;
    pointer-events: initial;
  }
  #header .header-bottom .mega-menu ul li:hover.submenu .submenu-content .submenu-content-wrapper {
    transform: none;
    opacity: 1;
    transition: all 0.5s;
  }
  #header .header-bottom .mega-menu ul li:hover.submenu .submenu-content .submenu-content-title p:before {
    background-size: 100% 100%;
  }
}
#header .header-bottom .mega-menu ul li.active .submenu-content {
  visibility: visible;
  pointer-events: initial;
}
#header .header-bottom .mega-menu ul li.active .submenu-content .submenu-content-wrapper {
  transform: none;
  opacity: 1;
  transition: all 0.5s;
}
#header .header-bottom .mega-menu ul li > a {
  color: #373737;
  font-size: 15px;
  font-weight: 580;
  line-height: 18px;
  letter-spacing: 0.45px;
  text-decoration: none;
  display: block;
  padding: 31px 8px 31px 8px;
}
#header .header-bottom .mega-menu ul li.submenu > a {
  padding: 31px 25px 31px 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M3.25 5.14587L6.5 8.39587L9.75 5.14587' stroke='%23373737' stroke-width='1.08333' stroke-linecap='square'/%3E%3C/svg%3E");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 13px;
}
#header .header-bottom .mega-menu .submenu-content {
  position: absolute;
  left: 0;
  top: 78px;
  padding-top: 10px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  right: 0;
  border-radius: 0;
  visibility: hidden;
  pointer-events: none;
  max-width: 1278px;
  max-width: 1326px;
  margin-left: auto;
  margin-right: auto;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-wrapper {
  padding: 24px 24px 32px 24px;
  border-radius: 8px;
  background: rgb(255, 255, 255);
  box-shadow: 0 41px 80px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  display: flex;
  justify-content: space-between;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-wrapper-links {
  width: 100%;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-title {
  padding: 0 16px;
  margin-bottom: 24px;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-title p {
  margin: 0;
  color: #0A0F1E;
  font-size: 20px;
  font-weight: 510;
  line-height: 32px;
  letter-spacing: 0.2px;
  position: relative;
  font-variation-settings: "SERF" 44;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-title p:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: url("../images/mega-menu-divider.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 105% 100%;
  transition: all 1s ease;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-title p a {
  padding: 16px 0 16px 44px;
  color: #0A0F1E;
  font-size: 20px;
  font-weight: 510;
  line-height: 32px;
  letter-spacing: 0.2px;
  position: relative;
  font-variation-settings: "SERF" 44;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-title p a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 35 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.75' y='0.75' width='33.5' height='33.5' rx='16.75' stroke='%23076EE5' stroke-width='1.5'/%3E%3Cpath d='M18.0975 21.84L17.1375 20.88L20.6175 17.415L17.1525 13.935L18.1125 12.99L22.5225 17.415L18.0975 21.84ZM21.3825 16.65V18.165H12.5025V16.65H21.3825Z' fill='%23076EE5'/%3E%3C/svg%3E%0A");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 34px;
  z-index: 1;
  transition: all 0.3s ease;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-title p a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 35 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.75' y='0.75' width='33.5' height='33.5' rx='16.75' fill='%23076EE5'/%3E%3Crect x='0.75' y='0.75' width='33.5' height='33.5' rx='16.75' stroke='%23076EE5' stroke-width='1.5'/%3E%3Cpath d='M18.0975 21.84L17.1375 20.88L20.6175 17.415L17.1525 13.935L18.1125 12.99L22.5225 17.415L18.0975 21.84ZM21.3825 16.65V18.165H12.5025V16.65H21.3825Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 34px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-title p a:hover {
  color: var(--nH-Blue-600, #076EE5);
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-title p a:hover:before {
  opacity: 0;
}
#header .header-bottom .mega-menu .submenu-content .submenu-content-title p a:hover:after {
  opacity: 1;
}
#header .header-bottom .mega-menu .submenu-content .columns {
  display: flex;
  gap: 24px;
}
#header .header-bottom .mega-menu .submenu-content .columns .column {
  width: 25%;
}
#header .header-bottom .mega-menu .submenu-content .columns .column:not(:first-child) {
  border-left: 0.5px solid var(--Divider, #CDDAE0);
  padding-left: 24px;
}
#header .header-bottom .mega-menu .submenu-content .columns .column-title {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
#header .header-bottom .mega-menu .submenu-content .columns .column-title .mobile-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#header .header-bottom .mega-menu .submenu-content .columns .column-title .icon {
  width: 100%;
  height: 24px;
}
#header .header-bottom .mega-menu .submenu-content .columns .column-title .icon svg,
#header .header-bottom .mega-menu .submenu-content .columns .column-title .icon img {
  width: auto;
  height: 100%;
  display: block;
  max-width: 100%;
}
#header .header-bottom .mega-menu .submenu-content .columns .column-title p {
  color: var(--nH-Blue-950, #0A0F1E);
  font-variation-settings: "SERF" 44;
  font-size: 20px;
  font-weight: 510;
  line-height: 120%; /* 24px */
  letter-spacing: 0.2px;
  margin: 0;
}
#header .header-bottom .mega-menu .submenu-content .columns .column-title span {
  color: var(--text, #373737);
  font-size: 12px;
  font-size: 13px;
  font-weight: 550;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.36px;
  max-width: 195px;
  max-width: 210px;
  display: block;
  opacity: 0.7;
}
#header .header-bottom .mega-menu .submenu-content .columns .column-title.category {
  margin-bottom: 12px;
}
#header .header-bottom .mega-menu .submenu-content .columns .column-title.category p {
  color: var(--nH-Blue-600, #076EE5);
  font-size: 12px;
  font-size: 13px;
  font-weight: 650;
  line-height: 152%; /* 18.24px */
  letter-spacing: 0.36px;
  font-variation-settings: "SERF" 0;
}
#header .header-bottom .mega-menu .submenu-content .columns ul {
  flex-direction: column;
  gap: 0;
}
#header .header-bottom .mega-menu .submenu-content .columns ul li {
  padding: 0;
  margin: 0;
  width: 100%;
}
#header .header-bottom .mega-menu .submenu-content .columns ul li a {
  color: var(--text, #373737);
  font-size: 14px;
  font-size: 15px;
  font-weight: 650;
  line-height: 18px; /* 128.571% */
  line-height: 140%;
  letter-spacing: 0.28px;
  padding: 10px 32px 10px 16px;
  padding: 12px 32px 12px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}
#header .header-bottom .mega-menu .submenu-content .columns ul li a:after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  color: #076EE5;
  font-size: 16px;
  font-weight: 550;
  line-height: 16px;
  letter-spacing: 0.32px;
  opacity: 0;
}
#header .header-bottom .mega-menu .submenu-content .columns ul li a span {
  color: var(--text, #373737);
  font-size: 12px;
  font-size: 13px;
  font-weight: 550;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.36px;
  max-width: 195px;
  display: block;
  opacity: 0.7;
  display: block;
  padding-top: 4px;
}
#header .header-bottom .mega-menu .submenu-content .columns ul li a:hover {
  color: var(--nH-Blue-600, #076EE5);
  background: var(--Grey, #F2F8FC);
}
#header .header-bottom .mega-menu .submenu-content .columns ul li a:hover:after {
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), right 0.3s ease;
  right: 16px;
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
}
#header .header-bottom .mega-menu .submenu-content.columns-type-2 {
  max-width: 1204px;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-2 .submenu-content-wrapper-links {
  max-width: 780px;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-2 .columns .column {
  width: 30%;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-2 .columns .column:last-child {
  width: 70%;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-2 .columns .column:last-child ul {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 0;
  padding: 0;
  margin: 0;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-3 {
  max-width: 943px;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-3 .submenu-content-wrapper-links {
  max-width: 518px;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-3 .columns {
  gap: 24px;
  height: 100%;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-3 .columns ul {
  gap: 4px;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-3 .columns .column {
  width: 48%;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-3 .columns .column:last-child {
  width: 52%;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-4 {
  max-width: 664px;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-4 .submenu-content-wrapper-links {
  max-width: 240px;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-4 .columns {
  height: 100%;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-4 .columns ul {
  gap: 4px;
}
#header .header-bottom .mega-menu .submenu-content.columns-type-4 .columns .column {
  width: 100%;
}
#header .header-bottom .mega-menu .tile-box {
  max-width: 288px;
  min-height: 280px;
  height: 100%;
  width: 100%;
  padding: 24px 32px;
  border-radius: 8px;
  background: var(--Grey, #F2F8FC);
  text-decoration: none;
  display: block;
  display: flex;
}
#header .header-bottom .mega-menu .tile-box:hover .tile-box-link span {
  color: var(--nH-Blue-600, #076EE5);
  text-decoration: underline;
}
#header .header-bottom .mega-menu .tile-box:hover .tile-box-link:before {
  opacity: 0;
}
#header .header-bottom .mega-menu .tile-box:hover .tile-box-link:after {
  opacity: 1;
}
#header .header-bottom .mega-menu .tile-box .tile-box-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
#header .header-bottom .mega-menu .tile-box .tile-box-category {
  color: var(--nH-Blue-600, #076EE5);
  font-size: 12px;
  font-weight: 650;
  line-height: 152%; /* 18.24px */
  letter-spacing: 0.36px;
  margin: 0 0 12px 0;
}
#header .header-bottom .mega-menu .tile-box .tile-box-title {
  color: var(--nH-Blue-950, #0A0F1E);
  font-variation-settings: "SERF" 44;
  font-size: 18px;
  font-weight: 510;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.18px;
  margin: 0 0 24px 0;
}
#header .header-bottom .mega-menu .tile-box .tile-box-image {
  border-radius: 8px;
  overflow: hidden;
  height: 150px;
  margin: 0 0 24px 0;
}
#header .header-bottom .mega-menu .tile-box .tile-box-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#header .header-bottom .mega-menu .tile-box .tile-box-description {
  color: var(--text, #373737);
  font-weight: 550;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.36px;
  margin: 0 0 24px 0;
  font-size: 13px;
  opacity: 0.7;
}
#header .header-bottom .mega-menu .tile-box .tile-box-link {
  color: var(--text, #373737);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.28px;
  text-decoration: none;
  padding-left: 48px;
  position: relative;
  line-height: 36px;
  display: inline-block;
  margin-top: auto;
}
#header .header-bottom .mega-menu .tile-box .tile-box-link span {
  display: inline-block;
  line-height: 22px;
  transition: all 0.3s ease;
}
#header .header-bottom .mega-menu .tile-box .tile-box-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 35 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.75' y='0.75' width='33.5' height='33.5' rx='16.75' stroke='%23076EE5' stroke-width='1.5'/%3E%3Cpath d='M18.0975 21.84L17.1375 20.88L20.6175 17.415L17.1525 13.935L18.1125 12.99L22.5225 17.415L18.0975 21.84ZM21.3825 16.65V18.165H12.5025V16.65H21.3825Z' fill='%23076EE5'/%3E%3C/svg%3E%0A");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 36px;
  z-index: 1;
  transition: all 0.3s ease;
}
#header .header-bottom .mega-menu .tile-box .tile-box-link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 35 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.75' y='0.75' width='33.5' height='33.5' rx='16.75' fill='%23076EE5'/%3E%3Crect x='0.75' y='0.75' width='33.5' height='33.5' rx='16.75' stroke='%23076EE5' stroke-width='1.5'/%3E%3Cpath d='M18.0975 21.84L17.1375 20.88L20.6175 17.415L17.1525 13.935L18.1125 12.99L22.5225 17.415L18.0975 21.84ZM21.3825 16.65V18.165H12.5025V16.65H21.3825Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 36px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
#header .button {
  padding: 7px 20px;
  height: 40px;
  color: #FFF;
  letter-spacing: 0.3px;
}
#header .header-mobile-menu {
  width: 60px;
  height: 24px;
  position: relative;
  margin-left: auto;
  display: none;
  z-index: 3;
  padding-right: 32px;
}
#header .header-mobile-menu .search-link {
  width: 18px;
  height: 18px;
  display: block;
  margin-top: 3px;
}
#header .header-mobile-menu .search-link img, #header .header-mobile-menu .search-link svg {
  display: block;
  width: 100%;
  height: auto;
}
#header .header-mobile-menu .hamburger {
  all: unset;
  padding: 0;
  height: 24px;
  position: absolute;
  right: 0;
  top: 1px;
  width: 25px;
}
#header .header-mobile-menu .hamburger:before, #header .header-mobile-menu .hamburger:after {
  top: 0;
}
#header .header-mobile-menu .hamburger span {
  display: inline-block;
  border-radius: 18px;
  width: 20px;
  height: 2px;
  background-color: #0A0F1E;
  position: absolute;
  transition: transform 0.2s, width 0.2s;
  right: 0;
  top: calc(50% - 1.5px);
}
#header .header-mobile-menu .hamburger span:first-child {
  transform: translateY(-300%);
  transition-delay: 450ms;
}
#header .header-mobile-menu .hamburger span:last-child {
  transform: translateY(300%);
  transition-delay: 750ms;
  width: 20px;
}
#header .header-mobile-menu .hamburger span:nth-child(2) {
  transition-delay: 600ms;
}
#header .header-mobile-menu .hamburger:before {
  content: "";
  border-radius: 18px;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 0;
  height: 2px;
  background-color: #000000;
  transform: rotate(45deg);
  transition: all 200ms ease;
  transform-origin: left bottom;
  transition-delay: 150ms;
}
#header .header-mobile-menu .hamburger:after {
  content: "";
  border-radius: 18px;
  position: absolute;
  top: 4px;
  right: 2px;
  width: 0;
  height: 2px;
  background-color: #000000;
  transform: rotate(-45deg);
  transition: all 200ms ease;
  transform-origin: top right;
}
#header .header-mobile-menu .hamburger.open:before {
  width: 20px;
  transition-delay: 600ms;
}
#header .header-mobile-menu .hamburger.open:after {
  width: 20px;
  transition-delay: 750ms;
}
#header .header-mobile-menu .hamburger.open span {
  width: 0;
}
#header .header-mobile-menu .hamburger.open span:nth-child(2) {
  transition-delay: 150ms;
}
#header .header-mobile-menu .hamburger.open span:first-child {
  transition-delay: 0ms;
}
#header .header-mobile-menu .hamburger.open span:last-child {
  transition-delay: 300ms;
}
@media (max-width: 1200px) {
  #header .header-bottom .mega-menu {
    margin-left: 32px;
  }
}
@media (max-width: 1024px) {
  #header .header-top {
    display: none;
  }
  #header .header-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  #header .header-bottom .header-wrapper {
    padding: 0 20px;
  }
  #header .header-bottom .header-wrapper .site-logo img, #header .header-bottom .header-wrapper .site-logo svg {
    width: 112px;
  }
  #header .header-bottom .header-mobile-menu {
    display: block;
  }
  #header .header-bottom .header-cta {
    display: none;
  }
  #header .header-bottom .back-btn {
    display: block !important;
    padding: 20px 20px 20px 48px;
    color: var(--nH-Blue-600, #076EE5);
    font-size: 16px;
    font-weight: 620;
    line-height: 150%; /* 24px */
    letter-spacing: 0.32px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='11' viewBox='0 0 13 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.30981 10.62L6.46181 9.46799L2.28581 5.30999L6.44381 1.13399L5.29181 -1.27554e-05L-0.000191569 5.30999L5.30981 10.62ZM1.36781 4.39199V6.20999H12.0238V4.39199H1.36781Z' fill='%23076EE5'/%3E%3C/svg%3E%0A");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: left 20px center;
    position: relative;
    margin: 0;
  }
  #header .header-bottom .back-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: url(../images/mega-menu-divider.jpg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 105% 100%;
    transition: all 1s ease;
  }
  #header .header-bottom .submenu-content-title {
    padding: 0 !important;
  }
  #header .header-bottom .submenu-content-title p {
    border-bottom: 0.5px solid var(--Divider, #CDDAE0);
    padding-left: 16px;
  }
  #header .header-bottom .submenu-content-title p a {
    padding: 24px 0 24px 44px !important;
  }
  #header .header-bottom .submenu-content-title p:before {
    display: none;
  }
  #header .header-bottom .mega-menu {
    position: fixed;
    overflow-x: auto;
    background: #fff;
    left: 0;
    top: calc(73px + var(--toaster-height));
    right: 0;
    height: 100vh;
    height: calc(100vh - (73px + var(--toaster-height)));
    padding: 0;
    opacity: 0;
    margin: 0;
    visibility: hidden;
    transition: top 0.5s linear 0s;
    overflow: auto;
  }
  #header .header-bottom .mega-menu > ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
  }
  #header .header-bottom .mega-menu > ul > li {
    width: 100%;
    border-top: 0.5px solid var(--Divider, #CDDAE0);
    min-height: 64.5px;
  }
  #header .header-bottom .mega-menu > ul > li:last-child {
    border-bottom: 0.5px solid var(--Divider, #CDDAE0);
  }
  #header .header-bottom .mega-menu > ul > li > a {
    padding: 20px 32px !important;
    width: 100%;
    display: block;
    color: var(--nH-Blue-950, #0A0F1E);
    font-size: 20px;
    font-weight: 510;
    line-height: 120%; /* 24px */
    letter-spacing: 0.2px;
    font-variation-settings: "SERF" 44;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='11' viewBox='0 0 13 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.71412 10.62L5.56212 9.46799L9.73812 5.30999L5.58012 1.13399L6.73212 -1.27554e-05L12.0241 5.30999L6.71412 10.62ZM10.6561 4.39199V6.20999H0.00011719V4.39199H10.6561Z' fill='%230A0F1E'/%3E%3C/svg%3E%0A") !important;
    background-size: 14px !important;
    background-repeat: no-repeat;
    background-position: right 32px center !important;
  }
  #header .header-bottom .mega-menu > ul > li.submenu {
    position: relative;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content {
    margin-top: -64px;
    top: 0;
    z-index: 99;
    position: relative;
    left: 0;
    padding: 0;
    opacity: 1;
    pointer-events: initial;
    visibility: visible;
    box-shadow: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    max-width: 100% !important;
    margin-top: 0;
    height: calc(100vh - (75px + var(--toaster-height)));
    top: calc(75px + var(--toaster-height));
    position: fixed;
    overflow: auto;
    background: #ffffff;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .submenu-content-wrapper {
    transform: none;
    padding: 0 16px;
    box-shadow: none;
    height: 100%;
    overflow-x: hidden;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .submenu-content-wrapper-links {
    width: 100% !important;
    max-width: 100% !important;
    transform: translateX(100px);
    transition: all 0.3s ease;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .columns {
    flex-wrap: wrap;
    padding-bottom: 40px;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .columns ul li a {
    font-size: 16px;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .columns ul li a br {
    display: none;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .columns ul li a span {
    margin-top: 2px;
    font-size: 14px;
    letter-spacing: 0.42px;
    max-width: 100%;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .columns ul li a span br {
    display: none;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .columns .column {
    width: 100% !important;
    padding-left: 0;
    border: 0;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .columns .column .column-title .mobile-stack {
    display: flex;
    gap: 12px;
    flex-direction: row;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath d='M10 1L5.5 5.5L1 1' stroke='%230A0F1E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: right 0 center;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .columns .column .column-title .mobile-stack .icon {
    width: 24px;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content .columns .column .column-title span {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    display: none;
    font-size: 14px;
    letter-spacing: 0.42px;
    max-width: none;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-1 .columns {
    gap: 0;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-1 .columns .column {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 0.5px solid var(--Divider, #CDDAE0);
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-1 .columns .column .column-title {
    margin: 0;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-1 .columns .column:last-child {
    border: 0;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-1 .columns .column ul {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-1 .columns .column ul li:first-child {
    margin-top: 24px;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-1 .columns .column.show-sub-submenu .column-title span {
    opacity: 0.7;
    max-height: 1000px;
    transition: all 0.3s;
    display: block;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-1 .columns .column.show-sub-submenu ul {
    opacity: 1;
    max-height: 1000px;
    transition: all 0.3s;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-2 .columns .column:last-child {
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 0.5px solid var(--Divider, #CDDAE0);
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-2 .columns .column:last-child ul {
    display: block;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-3 .columns, #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-4 .columns {
    height: initial;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-3 .columns .column, #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-4 .columns .column {
    padding-top: 24px;
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-3 .columns .column:last-child, #header .header-bottom .mega-menu > ul > li.submenu .submenu-content.columns-type-4 .columns .column:last-child {
    padding-bottom: 24px;
    border-top: 0.5px solid var(--Divider, #CDDAE0);
  }
  #header .header-bottom .mega-menu > ul > li.submenu .submenu-content-tile {
    display: none;
  }
  #header .header-bottom .mega-menu > ul > li.submenu.show-submenu .submenu-content {
    max-height: 2000px;
    transition: all 0.3s;
  }
  #header .header-bottom .mega-menu > ul > li.submenu.show-submenu .submenu-content .submenu-content-wrapper {
    opacity: 1;
  }
  #header .header-bottom .mega-menu > ul > li.submenu.show-submenu .submenu-content .submenu-content-wrapper .submenu-content-wrapper-links {
    transform: none;
  }
  #header .header-bottom .header-cta-mobile {
    display: block !important;
    padding: 32px;
  }
  #header .header-bottom .header-cta-mobile a {
    width: 100%;
    text-align: center;
    display: block;
    position: relative;
    height: 52px;
    padding: 8px 24px 8px 52px;
    line-height: 36px;
    border: 0;
  }
  #header .header-bottom .header-cta-mobile a:before {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    left: 8px;
    top: 8px;
    bottom: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='36' height='36' rx='18' fill='white'/%3E%3Cpath d='M18.12 22.34L17.16 21.38L20.64 17.915L17.175 14.435L18.135 13.49L22.545 17.915L18.12 22.34ZM21.405 17.15V18.665H12.525V17.15H21.405Z' fill='%230A0F1E'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 36px;
  }
  #header .header-bottom .mobile-only {
    display: block !important;
    padding: 24px 32px;
    width: 100%;
  }
  #header .header-bottom .mobile-only .search-link {
    display: none !important;
  }
  #header .header-bottom .mobile-only ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  #header .header-bottom .mobile-only ul li {
    width: 100%;
  }
  #header .header-bottom .mobile-only ul li a {
    color: var(--text, #373737);
    font-size: 16px;
    font-weight: 550;
    line-height: 18px; /* 112.5% */
    letter-spacing: 0.32px;
    opacity: 0.7;
    padding: 8px 0;
    display: block;
  }
  #header.open .header-bottom .mega-menu {
    opacity: 1;
    visibility: visible;
  }
}

body.header-blue #header {
  left: 0;
  top: 0;
  right: 0;
}
body.header-blue #header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
}
body.header-blue #header .button {
  border: 1.5px solid #ffffff;
  color: #0A0F1E;
  background-color: #ffffff;
}
body.header-blue #header .button:hover {
  border: 1.5px solid #03D5FF;
  background-color: #03D5FF;
}
@media (max-width: 1024px) {
  body.header-blue #header .button {
    border: 0;
    background-color: var(--color-blue-950);
    color: #FFF;
  }
  body.header-blue #header .button:hover {
    border: 0;
    background-color: var(--color-blue-600);
  }
  body.header-blue #header .button:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='36' height='36' rx='18' fill='white'/%3E%3Cpath d='M18.12 22.34L17.16 21.38L20.64 17.915L17.175 14.435L18.135 13.49L22.545 17.915L18.12 22.34ZM21.405 17.15V18.665H12.525V17.15H21.405Z' fill='%23076EE5'/%3E%3C/svg%3E%0A");
  }
}
body.header-blue #header .header-mobile-menu .search-link svg path {
  fill: #fff !important;
}
body.header-blue #header .header-mobile-menu .hamburger span {
  background-color: #ffffff;
}
body.header-blue #header .header-mobile-menu .hamburger:before, body.header-blue #header .header-mobile-menu .hamburger:after {
  background-color: #ffffff;
}
body.header-blue #header .header-top {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
}
body.header-blue #header .header-top ul li {
  border-right: 0.5px solid rgba(255, 255, 255, 0.2);
}
body.header-blue #header .header-top ul li:last-child {
  border: 0;
}
body.header-blue #header .header-top ul li a {
  color: var(--White, #FFF);
}
body.header-blue #header .header-top ul li a.search-link {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M10.5194 9.69349L13.0176 12.1917L12.1927 13.0167L9.69447 10.5184C8.79616 11.2371 7.65698 11.667 6.41797 11.667C3.51997 11.667 1.16797 9.315 1.16797 6.41699C1.16797 3.51899 3.51997 1.16699 6.41797 1.16699C9.31598 1.16699 11.668 3.51899 11.668 6.41699C11.668 7.656 11.238 8.79518 10.5194 9.69349ZM9.34902 9.26061C10.0623 8.52554 10.5013 7.52279 10.5013 6.41699C10.5013 4.16096 8.67401 2.33366 6.41797 2.33366C4.16193 2.33366 2.33464 4.16096 2.33464 6.41699C2.33464 8.67303 4.16193 10.5003 6.41797 10.5003C7.52377 10.5003 8.52652 10.0613 9.26159 9.34804L9.34902 9.26061Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
body.header-blue #header .header-wrapper .site-logo svg path {
  fill: #ffffff;
}
@media (min-width: 1025px) {
  body.header-blue #header .header-bottom .mega-menu ul li > a {
    color: #fff;
  }
  body.header-blue #header .header-bottom .mega-menu ul li.submenu > a {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M3.25 5.14587L6.5 8.39587L9.75 5.14587' stroke='%23ffffff' stroke-width='1.08333' stroke-linecap='square'/%3E%3C/svg%3E");
  }
}
body.header-blue #header .announcement-bar-wrapper {
  background: linear-gradient(90deg, #076EE5 0%, #0397EF 100%);
}
body.header-blue #header .announcement-bar-wrapper span {
  color: #ffffff !important;
}
body.header-blue #header .announcement-bar-wrapper span .separator {
  background: #ffffff !important;
}
body.header-blue #header .announcement-bar-wrapper span span:after {
  color: #ffffff !important;
}
body #header.header--fixed::before {
  display: none;
}

body.header-blue #header.header--fixed::before {
  display: none;
}
body.header-blue #header.header--fixed .button {
  border: 1.5px solid var(--color-blue-950);
  color: #FFF;
  background-color: var(--color-blue-950);
}
body.header-blue #header.header--fixed .button:hover {
  border: 1.5px solid #03D5FF;
  background-color: #03D5FF;
}
@media (max-width: 1024px) {
  body.header-blue #header.header--fixed .button {
    border: 0;
    background-color: var(--color-blue-950);
    color: #FFF;
  }
  body.header-blue #header.header--fixed .button:hover {
    border: 0;
    background-color: var(--color-blue-600);
  }
}
body.header-blue #header.header--fixed .header-mobile-menu .search-link svg path {
  fill: #0A0F1E !important;
}
body.header-blue #header.header--fixed .header-mobile-menu .hamburger span {
  background-color: #0A0F1E;
}
body.header-blue #header.header--fixed .header-mobile-menu .hamburger:before, body.header-blue #header.header--fixed .header-mobile-menu .hamburger:after {
  background-color: #0A0F1E;
}
body.header-blue #header.header--fixed .header-top {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}
body.header-blue #header.header--fixed .header-top ul li {
  border-right: 0.5px solid rgba(0, 0, 0, 0.1);
}
body.header-blue #header.header--fixed .header-top ul li:last-child {
  border: 0;
}
body.header-blue #header.header--fixed .header-top ul li a {
  color: var(--color-text);
}
body.header-blue #header.header--fixed .header-top ul li a.search-link {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M10.5194 9.69349L13.0176 12.1917L12.1927 13.0167L9.69447 10.5184C8.79616 11.2371 7.65698 11.667 6.41797 11.667C3.51997 11.667 1.16797 9.315 1.16797 6.41699C1.16797 3.51899 3.51997 1.16699 6.41797 1.16699C9.31598 1.16699 11.668 3.51899 11.668 6.41699C11.668 7.656 11.238 8.79518 10.5194 9.69349ZM9.34902 9.26061C10.0623 8.52554 10.5013 7.52279 10.5013 6.41699C10.5013 4.16096 8.67401 2.33366 6.41797 2.33366C4.16193 2.33366 2.33464 4.16096 2.33464 6.41699C2.33464 8.67303 4.16193 10.5003 6.41797 10.5003C7.52377 10.5003 8.52652 10.0613 9.26159 9.34804L9.34902 9.26061Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
body.header-blue #header.header--fixed .header-wrapper svg path {
  fill: #0A0F1E !important;
}
body.header-blue #header.header--fixed .header-wrapper svg path:last-of-type {
  fill: url(#paint0_linear_1005_19855) !important;
}
@media (min-width: 1025px) {
  body.header-blue #header.header--fixed .header-bottom .mega-menu ul li > a {
    color: var(--color-text);
  }
  body.header-blue #header.header--fixed .header-bottom .mega-menu ul li.submenu > a {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M3.25 5.14587L6.5 8.39587L9.75 5.14587' stroke='%23373737' stroke-width='1.08333' stroke-linecap='square'/%3E%3C/svg%3E");
  }
}

body #header.open .header-bottom {
  background-color: #FFF !important;
}
body #header.open .header-wrapper .site-logo svg path {
  fill: #0A0F1E !important;
}
body #header.open .header-wrapper .site-logo svg path:last-of-type {
  fill: url(#paint0_linear_1005_19855) !important;
}
body #header.open .header-mobile-menu .search-link svg path {
  fill: #0A0F1E !important;
}
body #header.open .header-mobile-menu .hamburger:before, body #header.open .header-mobile-menu .hamburger:after {
  background-color: #000000 !important;
}

/* Hide Solutions link */
#header .header-bottom .submenu--solutions .submenu-content-title a {
  pointer-events: none;
  padding-left: 0 !important;
}
#header .header-bottom .submenu--solutions .submenu-content-title a::before, #header .header-bottom .submenu--solutions .submenu-content-title a::after {
  display: none;
}

#site-container {
  padding-top: var(--header-height);
}

.header-blue #site-container {
  padding-top: 0;
}

body.header-blue .header--fixed {
  top: 0;
}

body #header.header--fixed {
  background-color: #FFF;
}

.header--hidden {
  transform: translateY(-100%);
}

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

body {
  padding: 0;
  margin: 0;
  font-family: "Season VF", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.36px;
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
    letter-spacing: 0.45px;
  }
}

#site-container {
  position: relative;
  background-color: #FFF;
}

.listing-posts {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px 80px;
}
@media (max-width: 767px) {
  .listing-posts {
    margin-bottom: 40px;
  }
}
.listing-posts__wrapper {
  padding: 0 12px;
  text-decoration: none;
  color: var(--color-text);
}
.listing-posts .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid var(--Divider, #CDDAE0);
  background: #FFF;
  padding: 40px 32px;
}
@media (max-width: 767px) {
  .listing-posts .card {
    padding: 32px 24px;
  }
}
.listing-posts .card__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.listing-posts .card__bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.listing-posts__load-more {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .listing-posts__load-more {
    margin-top: 40px;
  }
}
.listing-posts__load-more svg {
  transform: rotate(90deg);
}

.listing-posts--type1 {
  row-gap: 64px;
}
@media (max-width: 767px) {
  .listing-posts--type1 {
    row-gap: 24px;
  }
}
.listing-posts--type1 .listing-posts {
  row-gap: 56px;
}
@media (max-width: 767px) {
  .listing-posts--type1 .listing-posts {
    row-gap: 24px;
  }
}
.listing-posts--type1 .listing-posts__wrapper {
  width: 33.33333%;
}
@media (max-width: 1024px) {
  .listing-posts--type1 .listing-posts__wrapper {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .listing-posts--type1 .listing-posts__wrapper {
    width: 100%;
  }
}
.listing-posts--type1 .listing-posts__wrapper .hbspt {
  height: 100%;
}
.listing-posts--type1 .card {
  height: 100%;
  min-height: 585px;
}
@media (max-width: 767px) {
  .listing-posts--type1 .card {
    min-height: 0;
  }
}
.listing-posts--type1 .card .card__feature-img img {
  transition: transform 0.3s ease-out;
}
.listing-posts--type1 .card:hover .card__feature-img img {
  transform: scale(1.04);
}

.listing-posts--type2 {
  margin-bottom: 64px;
}
.listing-posts--type2 .listing-posts__wrapper {
  width: 100%;
}
.listing-posts--type2 .card {
  padding: 32px 0;
  border: none;
  border-bottom: 1px solid var(--Divider, #CDDAE0);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 64px;
  align-items: stretch;
  height: 100%;
  border-radius: 0;
}
.listing-posts--type2 .card:hover {
  background-color: inherit;
}
.listing-posts--type2 .card:hover .card__feature-img img,
.listing-posts--type2 .card:hover .card__media-asset {
  transform: scale(1.05);
}
.listing-posts--type2 .card:hover .card__title {
  text-decoration: underline;
  color: var(--color-blue-600);
}
@media (max-width: 767px) {
  .listing-posts--type2 .card {
    border-radius: 0;
    flex-direction: column;
    gap: 24px;
  }
}
.listing-posts--type2 .card__top {
  flex: 0 0 351px;
  width: 351px;
}
@media (max-width: 767px) {
  .listing-posts--type2 .card__top {
    width: 100%;
    flex: 0 0 auto;
  }
}
.listing-posts--type2 .card__bottom {
  max-width: 640px;
  gap: 12px;
  justify-content: space-between;
}
.listing-posts--type2 .card__bottom-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.listing-posts--type2 .card__title, .listing-posts--type2 .card__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* Change to your desired number of lines */
  overflow: hidden;
}
.listing-posts--type2 .card__feature-img {
  width: 100%;
  max-width: none;
  aspect-ratio: 351/230;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}
.listing-posts--type2 .card__feature-img img {
  transition: transform 0.4s ease-out;
}
@media (max-width: 767px) {
  .listing-posts--type2 .card__feature-img {
    width: 100%;
    aspect-ratio: 302/197;
  }
}

.listing-posts--type3 {
  row-gap: 0;
  margin-left: 0;
  margin-right: 0;
}
.listing-posts--type3 .listing-posts {
  row-gap: 56px;
}
@media (max-width: 767px) {
  .listing-posts--type3 .listing-posts {
    row-gap: 24px;
  }
}
.listing-posts--type3 .listing-posts__wrapper {
  width: 33.33333%;
}
@media (max-width: 1024px) {
  .listing-posts--type3 .listing-posts__wrapper {
    width: 100%;
  }
}
.listing-posts--type3 .card {
  height: 100%;
  gap: 75px;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 32px 20px 48px;
}
@media (min-width: 1025px) {
  .listing-posts--type3 .card:hover {
    background-color: rgb(0, 120, 239);
  }
  .listing-posts--type3 .card:hover .pill span {
    color: #FFF;
    border-color: #FFF;
  }
  .listing-posts--type3 .card:hover .card__title {
    color: #FFF;
  }
  .listing-posts--type3 .card:hover .card__date {
    color: var(--color-blue-200);
  }
}
@media (max-width: 1024px) {
  .listing-posts--type3 .card {
    padding: 24px 0;
    flex-direction: row;
    gap: 12px;
  }
  .listing-posts--type3 .card:hover {
    background-color: transparent;
  }
  .listing-posts--type3 .card .button-link span {
    display: none;
  }
  .listing-posts--type3 .card .card__bottom {
    align-items: center;
    flex-direction: row;
    height: 100%;
  }
}
.listing-posts--type3 .card__title {
  font-size: 25px;
  font-weight: 510;
  line-height: 120%; /* 30px */
  letter-spacing: 0.25px;
  color: var(--color-blue-950);
}
.listing-posts--type3 .card__date {
  color: rgba(33, 33, 33, 0.8);
  font-size: 14px;
  font-weight: 550;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.42px;
}
.listing-posts--type3 .listing-posts__wrapper {
  padding: 0;
}
@media (max-width: 1024px) {
  .listing-posts--type3 .listing-posts__wrapper:first-child .card {
    border-top: none;
  }
}

.loading-wrapper-div {
  width: 100%;
  position: relative;
}
.loading-wrapper-div .loading-wrapper {
  position: absolute;
  left: 0;
  top: 90px;
  right: 0;
  bottom: 150px;
  z-index: 99;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.loading-wrapper-div .loading-wrapper svg {
  filter: drop-shadow(5px 5px 10px #000000);
}
.loading-wrapper-div .spinner {
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid var(--color-blue-600);
  border-right: 3px solid var(--color-blue-600);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  display: inline-block;
  position: sticky;
  width: 80px;
  height: 80px;
  top: 50%;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-wrapper-div.loading .loading-wrapper {
  opacity: 1;
  visibility: visible;
}
.loading-wrapper-div.loading .listing-posts,
.loading-wrapper-div.loading .cases__list {
  filter: blur(3px);
  opacity: 0.7;
}

.services-overview-hero {
  padding-top: 86px;
  background: #fff;
}
@media (max-width: 1024px) {
  .services-overview-hero {
    padding-top: 40px;
  }
}
.services-overview-hero .service-overview-box-container {
  --blue-height: 596px;
  --angle-height: 168px;
  position: relative;
  overflow: hidden;
  padding-bottom: 129px;
}
@media (max-width: 1024px) {
  .services-overview-hero .service-overview-box-container {
    padding-top: 60px;
    padding-bottom: 32px;
    --blue-height: 1082px;
    --angle-height: 55px;
  }
}
.services-overview-hero .service-overview-box-container:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--blue-height);
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/services-hero2@2x.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media (max-width: 1798px) {
  .services-overview-hero .service-overview-box-container:before {
    background-size: 1798px 596px;
  }
}
@media (max-width: 1024px) {
  .services-overview-hero .service-overview-box-container:before {
    background-size: cover;
    bottom: initial;
    top: 0;
  }
}
@media (max-width: 767px) {
  .services-overview-hero .service-overview-box-container:before {
    background-image: url("../images/services-hero-mobile@2x.jpg");
    background-position: center top;
  }
}
.services-overview-hero .service-overview-box-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--blue-height) - var(--angle-height) - 1px);
  height: calc(var(--angle-height) + 2px);
  pointer-events: none;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media (max-width: 1024px) {
  .services-overview-hero .service-overview-box-container::after {
    bottom: initial;
    top: -1px;
  }
}
.services-overview-hero__text {
  max-width: 670px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-bottom: 53px;
}
@media (max-width: 767px) {
  .services-overview-hero__text {
    gap: 16px;
    margin-bottom: 24px;
  }
}
.services-overview-hero h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 92%; /* 66.24px */
  letter-spacing: -0.72px;
  color: var(--color-blue-950);
  margin: 0;
}
@media (max-width: 767px) {
  .services-overview-hero h1 {
    font-size: 46px;
    font-weight: 443;
    line-height: 98%; /* 45.08px */
    letter-spacing: -0.46px;
    max-width: 350px;
  }
}
.services-overview-hero h1 span {
  color: var(--color-blue-600);
}
.services-overview-hero p {
  color: var(--color-text);
  margin: 0;
  max-width: 615px;
}
.services-overview-hero .imgdevider {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.service-box {
  display: flex;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 24px 32px rgba(5, 28, 102, 0.1);
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  align-items: center;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
  background-color: #FFF;
  cursor: pointer;
}
.service-box__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 295px;
}
@media (max-width: 767px) {
  .service-box__content {
    flex-direction: row;
  }
}
.service-box--4 {
  padding: 32px 0 32px 32px;
  position: relative;
  z-index: 1;
}
.service-box--4 .service-box__content {
  padding-left: 32px;
  padding-right: 64px;
}
.service-box--3 {
  padding: 24px 0 24px 24px;
  max-width: 944px;
  position: relative;
  z-index: 2;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media (min-width: 1025px) {
  .service-box--3 {
    min-width: 740px;
  }
}
.service-box--3 .service-box__content {
  padding-left: 32px;
  padding-right: 64px;
}
.service-box--2 {
  max-width: 614px;
  padding: 24px 0 24px 24px;
  position: relative;
  z-index: 3;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.service-box--2 .service-box__content {
  padding-left: 32px;
  padding-right: 46px;
}
.service-box--1 {
  max-width: 288px;
  position: relative;
  z-index: 4;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.service-box--1 .service-box__content {
  padding-left: 32px;
  padding-right: 46px;
}
@media (max-width: 1024px) {
  .service-box--1 .service-box__content {
    padding: 26px 24px 29px;
  }
}
.service-box h3 {
  margin: 0;
  color: var(--color-blue-950);
  font-size: 26px;
  font-weight: 500;
  line-height: 120%; /* 31.2px */
  letter-spacing: 0.26px;
}
.service-box p {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 152%; /* 24.32px */
  letter-spacing: 0.48px;
}
.service-box__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-box__top svg {
  margin-top: 26px;
}
.service-box__bottom {
  padding-bottom: 21px;
}
.service-box__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1024px) {
  .service-box {
    flex-direction: column;
  }
  .service-box--4, .service-box--3, .service-box--2, .service-box--1 {
    padding: 8px;
    width: 100%;
    max-width: none;
  }
  .service-box .service-box__content {
    padding-top: 26px;
    width: 100%;
  }
  .service-box--4 .service-box__content {
    padding-right: 43px;
    padding-left: 43px;
    padding-bottom: 33px;
  }
  .service-box--3 .service-box__content {
    padding-right: 34px;
    padding-left: 35px;
    padding-bottom: 16px;
  }
  .service-box--2 .service-box__content {
    padding-right: 25px;
    padding-left: 26px;
    padding-bottom: 16px;
  }
  .service-box--1 .service-box__content {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
  }
  .service-box__content {
    height: auto;
    justify-content: space-between;
    gap: 16px;
  }
  .service-box__top {
    gap: 12px;
  }
  .service-box__top svg {
    margin-top: 0;
  }
  .service-box__text {
    gap: 9px;
  }
  .service-box h3 {
    font-size: 24px;
    letter-spacing: 0.24px;
  }
  .service-box p {
    font-size: 14px;
    letter-spacing: 0.42px;
  }
  .service-box__bottom {
    padding-bottom: 0;
    display: flex;
    align-items: center;
  }
  .service-box__arrow svg {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 1201px) {
  .service-overview-boxes.is-hovering-service-box--1 .service-box--1 {
    background: #076ee5;
  }
  .service-overview-boxes.is-hovering-service-box--1 .service-box--1 .service-box__icon path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--1 .service-box--1 .service-box__arrow rect {
    fill: #FFF;
  }
  .service-overview-boxes.is-hovering-service-box--1 .service-box--1 h3,
  .service-overview-boxes.is-hovering-service-box--1 .service-box--1 p {
    color: rgba(255, 255, 255, 0.8);
  }
  .service-overview-boxes.is-hovering-service-box--2 .service-box--1 {
    background: rgba(3, 213, 255, 0.2);
  }
  .service-overview-boxes.is-hovering-service-box--2 .service-box--1 .service-box__icon path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--2 .service-box--1 .service-box__arrow rect {
    stroke: var(--color-blue-300);
    fill: transparent !important;
  }
  .service-overview-boxes.is-hovering-service-box--2 .service-box--1 .service-box__arrow path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--2 .service-box--1 h3,
  .service-overview-boxes.is-hovering-service-box--2 .service-box--1 p {
    color: rgba(255, 255, 255, 0.8);
  }
  .service-overview-boxes.is-hovering-service-box--2 .service-box--2 {
    background: #076ee5;
  }
  .service-overview-boxes.is-hovering-service-box--2 .service-box--2 .service-box__icon path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--2 .service-box--2 .service-box__arrow rect {
    fill: #FFF;
  }
  .service-overview-boxes.is-hovering-service-box--2 .service-box--2 h3,
  .service-overview-boxes.is-hovering-service-box--2 .service-box--2 p {
    color: rgba(255, 255, 255, 0.8);
  }
  .service-overview-boxes.is-hovering-service-box--3 .service-box--1,
  .service-overview-boxes.is-hovering-service-box--3 .service-box--2 {
    background: rgba(3, 213, 255, 0.2);
  }
  .service-overview-boxes.is-hovering-service-box--3 .service-box--1 .service-box__icon path,
  .service-overview-boxes.is-hovering-service-box--3 .service-box--2 .service-box__icon path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--3 .service-box--1 .service-box__arrow rect,
  .service-overview-boxes.is-hovering-service-box--3 .service-box--2 .service-box__arrow rect {
    stroke: var(--color-blue-300);
    fill: transparent !important;
  }
  .service-overview-boxes.is-hovering-service-box--3 .service-box--1 .service-box__arrow path,
  .service-overview-boxes.is-hovering-service-box--3 .service-box--2 .service-box__arrow path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--3 .service-box--1 h3,
  .service-overview-boxes.is-hovering-service-box--3 .service-box--1 p,
  .service-overview-boxes.is-hovering-service-box--3 .service-box--2 h3,
  .service-overview-boxes.is-hovering-service-box--3 .service-box--2 p {
    color: rgba(255, 255, 255, 0.8);
  }
  .service-overview-boxes.is-hovering-service-box--3 .service-box--3 {
    background: #076ee5;
  }
  .service-overview-boxes.is-hovering-service-box--3 .service-box--3 .service-box__icon path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--3 .service-box--3 .service-box__arrow rect {
    fill: #FFF;
  }
  .service-overview-boxes.is-hovering-service-box--3 .service-box--3 h3,
  .service-overview-boxes.is-hovering-service-box--3 .service-box--3 p {
    color: rgba(255, 255, 255, 0.8);
  }
  .service-overview-boxes.is-hovering-service-box--4 .service-box--1,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--2,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--3 {
    background: rgba(3, 213, 255, 0.2);
  }
  .service-overview-boxes.is-hovering-service-box--4 .service-box--1 .service-box__icon path,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--2 .service-box__icon path,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--3 .service-box__icon path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--4 .service-box--1 .service-box__arrow rect,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--2 .service-box__arrow rect,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--3 .service-box__arrow rect {
    stroke: var(--color-blue-300);
    fill: transparent !important;
  }
  .service-overview-boxes.is-hovering-service-box--4 .service-box--1 .service-box__arrow path,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--2 .service-box__arrow path,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--3 .service-box__arrow path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--4 .service-box--1 h3,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--1 p,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--2 h3,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--2 p,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--3 h3,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--3 p {
    color: rgba(255, 255, 255, 0.8);
  }
  .service-overview-boxes.is-hovering-service-box--4 .service-box--4 {
    background: #076ee5;
  }
  .service-overview-boxes.is-hovering-service-box--4 .service-box--4 .service-box__icon path {
    fill: var(--color-blue-300);
  }
  .service-overview-boxes.is-hovering-service-box--4 .service-box--4 .service-box__arrow rect {
    fill: #FFF;
  }
  .service-overview-boxes.is-hovering-service-box--4 .service-box--4 h3,
  .service-overview-boxes.is-hovering-service-box--4 .service-box--4 p {
    color: rgba(255, 255, 255, 0.8);
  }
}
.services__maturity-top {
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}
@media (max-width: 1024px) {
  .services__maturity-top {
    padding-top: 30px;
  }
  .services__maturity-top:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 6px;
    height: 77px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='842' viewBox='0 0 6 842' fill='none'%3E%3Cpath d='M2.88672 0L-3.26633e-05 5H5.77347L2.88672 0ZM2.88672 841.788L5.77347 836.788H-3.26633e-05L2.88672 841.788ZM2.88672 4.5H2.38672V837.288H2.88672H3.38672V4.5H2.88672Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
  }
}
@media (min-width: 1025px) {
  .services__maturity-top {
    display: none !important;
  }
}
.services__maturity-bottom {
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}
@media (max-width: 1024px) {
  .services__maturity-bottom:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 6px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='842' viewBox='0 0 6 842' fill='none'%3E%3Cpath d='M2.88672 0L-3.26633e-05 5H5.77347L2.88672 0ZM2.88672 841.788L5.77347 836.788H-3.26633e-05L2.88672 841.788ZM2.88672 4.5H2.38672V837.288H2.88672H3.38672V4.5H2.88672Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
    transform: rotate(180deg);
  }
}
@media (max-width: 1024px) {
  .services__maturity-bottom .services__maturity-text-left {
    display: none;
  }
}
.services__maturity {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .services__maturity {
    margin-top: 0;
  }
}
.services__maturity svg {
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .services__maturity svg {
    display: none;
  }
}
.services__maturity-text {
  display: flex;
  justify-content: space-between;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%; /* 20px */
  letter-spacing: 0.4px;
  gap: 6px;
}
@media (max-width: 1024px) {
  .services__maturity-text {
    font-size: 17px;
    font-weight: 470;
    letter-spacing: 0.34px;
    padding-left: 20px;
  }
}
.services__maturity-text span {
  display: block;
  color: var(--color-blue-400);
  font-size: 16px;
  font-weight: 650;
  line-height: 152%; /* 24.324px */
  letter-spacing: 0.48px;
}
@media (max-width: 1024px) {
  .services__maturity-text span {
    font-size: 14px;
  }
}
.services__maturity-text .services__maturity-text-right {
  text-align: right;
}
@media (max-width: 1024px) {
  .services__maturity-text .services__maturity-text-right {
    text-align: left;
  }
}

.services-overview__nav {
  z-index: 999;
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(32px);
  transition: all 0.2s;
}
@media (max-width: 900px) {
  .services-overview__nav {
    display: none;
  }
}
.services-overview__nav:hover {
  background: #FFF;
  backdrop-filter: blur(0px);
}
.services-overview__nav-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .services-overview__nav-wrapper {
    overflow-x: scroll;
  }
}
.services-overview__nav-link.is-active {
  border-bottom: 4px solid #CCC;
}
.services-overview__nav-title {
  color: var(--color-blue-600);
  font-size: 22px;
  font-weight: 564;
  line-height: 100%; /* 22px */
  letter-spacing: 0.66px;
  margin-right: 24px;
  padding: 32px 0;
  font-variation-settings: "SERF" 44;
}
.services-overview__nav-link {
  color: var(--text, #373737);
  font-size: 15px;
  font-style: normal;
  font-weight: 580;
  line-height: 90%; /* 13.5px */
  letter-spacing: 0.45px;
  text-decoration: none;
  margin-left: 40px;
  padding: 34px 0;
  transition: color 0.25s ease;
}
.services-overview__nav-link:hover {
  color: var(--color-blue-600);
}
.services-overview .get-started-btn {
  border-radius: 999px;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  height: 40px;
  padding: 14.124px 20px;
  justify-content: center;
  gap: 7.062px;
  position: absolute;
  right: 0;
  border-radius: 999px;
  background: var(--color-blue-950);
  color: #FFF;
  font-size: 15px;
  font-weight: 650;
  line-height: 152%; /* 22.8px */
  letter-spacing: 0.3px;
}
.services-overview .get-started-btn:hover {
  background-color: var(--color-blue-600);
}
.services-overview .feature-block__wrapper {
  display: flex;
  flex-direction: column;
}
.services-overview .feature-block__item {
  display: flex;
  align-items: center;
  gap: 124px;
  padding-top: 180px;
}
@media (max-width: 900px) {
  .services-overview .feature-block__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-top: 60px;
  }
}
.services-overview .feature-block__item:first-child {
  padding-top: 96px;
}
@media (max-width: 900px) {
  .services-overview .feature-block__item:first-child {
    padding-top: 48px;
  }
}
.services-overview .feature-block__item:nth-child(odd) .feature-block__media-wrapper {
  order: 1;
}
.services-overview .feature-block__item:nth-child(odd) .feature-block__text-wrapper {
  max-width: 523px;
}
@media (max-width: 900px) {
  .services-overview .feature-block__item:nth-child(even) .feature-block__media-wrapper {
    order: 1;
  }
}
.services-overview .feature-block .feature-block__media-wrapper {
  display: flex;
  max-width: 627px;
  position: relative;
}
@media (max-width: 900px) {
  .services-overview .feature-block .feature-block__media-wrapper {
    max-width: none;
  }
}
.services-overview .feature-block .feature-block__media-wrapper img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .services-overview .feature-block .feature-block__media-wrapper img {
    aspect-ratio: 350/546;
    object-fit: cover;
    overflow: hidden;
    border-radius: 8px;
  }
}
.services-overview .feature-block__testimonial {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.8);
  padding: 32px 32px 32px 27px;
  margin: 0 32px 49px;
  font-size: 18px;
  color: #FFF;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.36px;
}
@media (max-width: 900px) {
  .services-overview .feature-block__testimonial {
    margin-left: 16px;
    margin-right: 23px;
    margin-bottom: 46px;
  }
}
.services-overview .feature-block__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 41%;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .services-overview .feature-block__text-wrapper {
    gap: 32px;
    width: auto;
    flex-shrink: initial;
  }
}
.services-overview .feature-block__title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.services-overview .feature-block__title-wrapper img {
  height: 32px;
}
.services-overview .feature-block__headline {
  font-size: 18px;
  font-weight: 620;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
  color: var(--color-blue-600);
  font-variation-settings: normal;
}
.services-overview .feature-block .feature-block-cta {
  margin-top: 24px;
}
.services-overview .feature-block__description {
  margin-bottom: 32px;
}
.services-overview .feature-block__subhead {
  color: var(--color-blue-950);
  font-size: 26px;
  font-weight: 500;
  line-height: 120%; /* 31.2px */
  letter-spacing: 0.26px;
  font-variation-settings: "SERF" 44;
}
@media (max-width: 900px) {
  .services-overview .feature-block__subhead {
    font-size: 24px;
    letter-spacing: 0.24px;
    margin-bottom: 12px;
  }
}
.services-overview .feature-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: url("../images/feature-block-divider.svg") no-repeat center top;
}
.services-overview .feature-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 0;
  border-bottom: var(--border);
  font-size: 16px;
  font-weight: 520;
  line-height: 152%; /* 24.32px */
  letter-spacing: 0.32px;
}
.services-overview .feature-block__list li:not(.feature-block__list-item-highlighted) svg path:nth-child(1) {
  fill: #FFF;
}
.services-overview .feature-block__list li:not(.feature-block__list-item-highlighted) svg path:nth-child(2) {
  stroke: var(--color-blue-600);
}
.services-overview .feature-block__list li:not(.feature-block__list-item-highlighted) svg path:nth-child(3) {
  stroke: var(--color-blue-600);
}
.services-overview .feature-block__list li:last-child {
  border-bottom: none;
}
.services-overview .feature-block__list li.feature-block__list-item-highlighted {
  color: var(--color-blue-600);
  font-weight: 670;
}
.services-overview .feature-block__list li svg {
  flex-shrink: 0;
}
.services-overview .feature-block--blue-feature {
  color: #FFF;
}
@media (max-width: 767px) {
  .services-overview .feature-block__desktop-cta {
    display: none !important;
  }
}
.services-overview .feature-block__mobile-cta {
  display: none;
}
@media (max-width: 767px) {
  .services-overview .feature-block__mobile-cta {
    display: inline-flex !important;
  }
}

.section__pad {
  padding: 180px 0;
}
@media (max-width: 767px) {
  .section__pad {
    padding: 96px 0;
  }
}
.section__pad-sm {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .section__pad-sm {
    padding: 48px 0 64px;
  }
}
.section__pad-112 {
  padding: 112px 0;
}
@media (max-width: 767px) {
  .section__pad-112 {
    padding: 48px 0;
  }
}
.section_pt-80 {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .section_pt-80 {
    padding-top: 40px;
  }
}
.section_pb-80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section_pb-80 {
    padding-bottom: 40px;
  }
}

.section-bg-light {
  background-color: #F2F8FC;
}

.section {
  --angle-height: 185px;
  --angle-color: #fff;
  position: relative;
}
.section_blue {
  color: var(--color-white);
  background: #0151CE url("../images/blue-bg-wave.jpg") no-repeat top center;
  background-size: cover;
}
.section_corner::before, .section_corner::after {
  position: absolute;
  left: 0;
  right: 0;
  height: var(--angle-height);
  background: var(--angle-color);
  z-index: 1;
  pointer-events: none;
}
.section_corner-top {
  padding-top: calc(34px + var(--angle-height));
}
.section_corner-top::before {
  content: "";
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.section_corner-bottom {
  padding-bottom: calc(34px + var(--angle-height));
}
.section_corner-bottom::after {
  content: "";
  bottom: -1px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.section_corner-bottom-reverse {
  padding-bottom: calc(34px + var(--angle-height));
}
.section_corner-bottom-reverse::after {
  content: "";
  bottom: -1px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.section_corner-bottom-reverse.related_resources-section {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--angle-height)));
  padding-bottom: calc(125px + var(--angle-height));
}
@media (max-width: 767px) {
  .section_corner-bottom-reverse.related_resources-section {
    padding-bottom: calc(64px + var(--angle-height));
  }
}
.section_corner-top-light:before {
  --angle-color: #F2F8FC;
}
.section_corner-bottom-light:after {
  --angle-color: #F2F8FC;
}

.single-text__wrapper {
  max-width: 868px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
}
.single-text .eyebrow {
  margin-bottom: 12px;
}
.single-text .h2 {
  margin-bottom: 28px;
}
.single-text__body {
  max-width: 680px;
  margin: 0 auto;
}
.single-text__body p:last-child {
  margin-bottom: 0;
}
.single-text .button {
  margin-top: 51px;
}

.entry-content {
  color: var(--color-text);
}
@media (min-width: 1600px) {
  .entry-content {
    min-width: 970px;
  }
}
.entry-content .custom-number-block__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 0 100px;
}
@media (max-width: 767px) {
  .entry-content .custom-number-block__content {
    margin-bottom: 56px;
  }
}
.entry-content .custom-number-block__item {
  display: flex;
  gap: 24px;
}
.entry-content .custom-number-block__body-copy p {
  margin: 0 0 24px;
}
.entry-content .custom-number-block__label p {
  font-weight: 650;
  margin: 0 0 16px;
}
.entry-content .custom-number-block__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.entry-content .custom-number-block__list-item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content > *:not(img, .wp-block-image) {
  max-width: 808px;
}
.entry-content a:not(.btn) {
  color: var(--color-blue-600);
  text-decoration: underline;
}
.entry-content a:not(.btn):hover {
  text-decoration: none;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  color: var(--color-blue-950);
}
.entry-content h1 b,
.entry-content h1 strong, .entry-content h2 b,
.entry-content h2 strong, .entry-content h3 b,
.entry-content h3 strong, .entry-content h4 b,
.entry-content h4 strong, .entry-content h5 b,
.entry-content h5 strong, .entry-content h6 b,
.entry-content h6 strong {
  font-weight: inherit;
}
.entry-content > .article-section:first-child > h1, .entry-content > .article-section:first-child > #section-1 > h1, .entry-content > .article-section:first-child > h2, .entry-content > .article-section:first-child > #section-1 > h2 {
  margin-top: 0;
}
.entry-content h1, .entry-content h2 {
  margin: 100px 0 0;
  color: var(--color-blue-950);
  text-align: left;
  font-size: 40px;
  font-style: normal;
  font-weight: 420;
  line-height: 100%; /* 40px */
}
@media (max-width: 767px) {
  .entry-content h1, .entry-content h2 {
    font-size: 31px;
    line-height: 110%; /* 40px */
    margin: 56px 0 0;
  }
}
.entry-content h3 {
  font-size: 26px;
  font-weight: 510;
  line-height: 120%; /* 31.2px */
  letter-spacing: 0.26px;
  color: var(--color-blue-600);
  margin: 48px 0 24px;
}
.entry-content h4, .entry-content h5, .entry-content h6, .entry-content h7 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 18px */
  letter-spacing: -0.4px;
  color: var(--color-blue-600);
  margin: 40px 0 0;
  text-transform: none;
}
@media (max-width: 767px) {
  .entry-content h4, .entry-content h5, .entry-content h6, .entry-content h7 {
    font-size: 20px;
    line-height: 110%; /* 22px */
    letter-spacing: -0.6px;
    margin: 32px 0 0;
  }
}
@media (max-width: 1024px) {
  .entry-content h1 br, .entry-content h2 br, .entry-content h3 br, .entry-content h4 br, .entry-content h5 br, .entry-content h6 br {
    display: none;
  }
}
.entry-content p {
  margin-top: 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 520;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.36px;
}
@media (max-width: 767px) {
  .entry-content p {
    font-size: 15px;
    margin-bottom: 0;
  }
}
.entry-content p + p,
.entry-content ol + p,
.entry-content li + p {
  margin-top: 34px;
}
@media (max-width: 767px) {
  .entry-content p + p,
  .entry-content ol + p,
  .entry-content li + p {
    margin-top: 24px;
  }
}
.entry-content .entry-content > p:first-child,
.entry-content .entry-content > h1:first-child {
  margin-top: 0;
}
.entry-content strong {
  font-weight: 700;
}
.entry-content img[class*=wp-image],
.entry-content .wp-block-image {
  margin: 100px 0 100px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .entry-content img[class*=wp-image],
  .entry-content .wp-block-image {
    margin: 56px 0 56px;
  }
}
.entry-content img[class*=wp-image].p-40,
.entry-content .wp-block-image.p-40 {
  margin: 40px 0 0;
}
.entry-content img[class*=wp-image] img,
.entry-content .wp-block-image img {
  width: 100%;
  border-radius: 8px;
}
.entry-content img[class*=wp-image] figcaption,
.entry-content .wp-block-image figcaption {
  font-size: 14px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 18.2px */
  letter-spacing: 0.28px;
  margin-top: 16px;
  color: #5D727F;
}
.entry-content ul,
.entry-content ol {
  list-style: none !important;
  padding: 0;
  margin: 32px 0 0;
  max-width: 748px;
}
@media (max-width: 767px) {
  .entry-content ul,
  .entry-content ol {
    margin: 24px 0 0;
  }
}
.entry-content ul li,
.entry-content ol li {
  padding-left: 16px;
  position: relative;
  font-size: 18px;
  font-weight: 520;
  line-height: 160%;
  letter-spacing: 0.36px;
}
@media (max-width: 767px) {
  .entry-content ul li,
  .entry-content ol li {
    font-size: 15px;
    letter-spacing: 0.3px;
  }
}
.entry-content ul li:before,
.entry-content ol li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.94em;
  transform: translateY(-50%);
}
.entry-content ul li:not(:last-child),
.entry-content ol li:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .entry-content ul li:not(:last-child),
  .entry-content ol li:not(:last-child) {
    margin-bottom: 12px;
  }
}
.entry-content ul:last-child,
.entry-content ol:last-child {
  margin-bottom: 0;
}
.entry-content ul.dots-triangle li,
.entry-content ol.dots-triangle li {
  padding-left: 24px;
}
.entry-content ul.dots-triangle li:before,
.entry-content ol.dots-triangle li:before {
  content: "";
  width: 0.555em;
  height: 0.555em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='9' fill='none' viewBox='0 0 8 9'%3E%3Cpath fill='%23076ee5' d='M7.5 4.33 0 8.66V0z'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  top: 0.8em;
}
.entry-content ol {
  counter-reset: item;
}
.entry-content ol li {
  padding-left: 36px;
}
@media (max-width: 767px) {
  .entry-content ol li {
    padding-left: 32px;
  }
}
.entry-content ol li::before {
  content: counter(item) ".";
  counter-increment: item;
  color: var(--abyss);
  display: inline-block;
  background: transparent;
  top: 16px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .entry-content ol li::before {
    top: 2px;
  }
}
.entry-content .wp-caption {
  width: 100% !important;
}
.entry-content .wp-caption img {
  width: 100%;
}
.entry-content img {
  width: 100%;
  border-radius: 24px;
}
.entry-content .wp-caption-text {
  text-align: left;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  margin-top: 16px;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--fin-tip);
  margin-top: 40px;
  margin-bottom: 40px;
  overflow-x: auto;
}
@media (max-width: 576px) {
  .entry-content table {
    display: block;
  }
}
.entry-content table thead {
  background-color: var(--fin-tip);
}
.entry-content table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: var(--body-copy);
  border-right: 2px solid #FFF;
}
.entry-content table thead th:last-child {
  border-right: none;
}
.entry-content table tbody tr {
  border-top: 1px solid var(--fin-tip);
}
.entry-content table tbody tr:last-child {
  border-bottom: 1px solid var(--fin-tip);
}
.entry-content table tbody td {
  padding: 16px 20px;
  font-size: 16px;
  color: var(--body-copy);
  border-right: 1px solid var(--fin-tip);
}
.entry-content table tbody td:last-child {
  border-right: none;
}
.entry-content .blue-table-wrap {
  overflow: auto;
  margin: 40px 0;
}
.entry-content table.blue-table {
  margin: 0;
  width: 100%;
  border: none;
  min-width: 600px;
}
.entry-content table.blue-table th,
.entry-content table.blue-table td {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--color-divider);
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .entry-content table.blue-table th,
  .entry-content table.blue-table td {
    padding: 12px;
    font-size: 14px;
  }
}
.entry-content table.blue-table th:last-child,
.entry-content table.blue-table td:last-child {
  border: 1px solid var(--color-divider);
}
.entry-content table.blue-table .blue-table__section th {
  font-family: "Season VF", sans-serif;
  padding: 12px 16px;
  line-height: 1.1;
  font-weight: normal;
  color: var(--color-white);
  background: var(--color-blue-600);
  font-size: 21px;
  letter-spacing: 0.01em;
}
@media (max-width: 1024px) {
  .entry-content table.blue-table .blue-table__section th {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .entry-content table.blue-table .blue-table__section th {
    font-size: 22px;
  }
}
.entry-content table.blue-table .blue-table__columns th {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 650;
  background: var(--color-blue-100);
  color: var(--color-blue-950);
}
.entry-content table.blue-table .blue-table__data td:first-child {
  font-weight: 650;
}
.entry-content table.blue-table .blue-table__data:nth-of-type(odd) {
  background: var(--color-white);
}
.entry-content table.blue-table .blue-table__data:nth-of-type(even) {
  background: var(--color-grey);
}
.entry-content .blog-cta-banner {
  display: flex;
  padding: 40px;
  margin: 40px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--liquid-sky-50);
}
.entry-content .blog-cta-banner p {
  margin-bottom: 0;
}
.entry-content .blog-cta-banner h3 {
  margin: 0 0 16px;
}
.entry-content .blog-cta-banner .cta-row p:first-child {
  margin-top: 0;
}
.entry-content .blog-cta-banner a {
  text-decoration: none;
  color: inherit;
}
.entry-content blockquote {
  position: relative;
  margin: 100px 0;
  padding: 0 0 0 40px;
}
@media (max-width: 767px) {
  .entry-content blockquote {
    margin: 56px 0;
  }
}
.entry-content blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-image: url("../images/quote-divider.svg");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 2px auto;
}
.entry-content blockquote svg {
  margin-bottom: 16px;
}
.entry-content blockquote p {
  font-size: 19px;
  font-style: normal;
  font-weight: 432;
  line-height: 180%; /* 34.2px */
  letter-spacing: 0.19px;
  margin: 0;
}
.entry-content blockquote p:not(:last-child) {
  margin-bottom: 16px;
}
.entry-content blockquote .blockquote__quotee {
  font-size: 16px;
  font-style: normal;
  font-weight: 650;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
}

.author-banner {
  display: flex;
  gap: 40px;
  margin: 100px 0 0;
  border-top: 1px solid #CDDAE0;
  padding-top: 64px;
}
@media (max-width: 767px) {
  .author-banner {
    margin-top: 56px;
    padding-top: 32px;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid #CDDAE0;
    padding-bottom: 40px;
  }
}
.author-banner__photo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .author-banner__photo {
    flex-direction: row;
  }
}
.author-banner__photo img {
  width: 120px;
  height: auto;
  border-radius: 9999px;
}
.author-banner__social {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.author-banner__social .social-links__item {
  width: 40px;
  height: 40px;
  border: none;
}
.author-banner__social .social-links__item svg path {
  fill: var(--color-blue-600);
}
.author-banner__social .social-links__item:hover svg path {
  fill: #FFF;
}
@media (max-width: 1024px) {
  .author-banner__social {
    display: none;
  }
}
.author-banner__social-mobile {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
}
.author-banner__social-mobile .social-links__item {
  width: 48px;
  height: 48px;
  border: none;
}
.author-banner__social-mobile .social-links__item svg {
  width: 48px;
  height: 48px;
}
.author-banner__social-mobile .social-links__item svg path {
  fill: var(--color-blue-600);
}
.author-banner__social-mobile .social-links__item:hover svg path {
  fill: #FFF;
}
@media (min-width: 1025px) {
  .author-banner__social-mobile {
    display: none;
  }
}
.author-banner__social rect, .author-banner__social-mobile rect {
  fill: transparent;
}
.author-banner h4 {
  margin: 0 0 12px;
  color: var(--color-blue-950);
  font-size: 26px;
  font-weight: 510;
  line-height: 120%; /* 31.2px */
  letter-spacing: 0.26px;
}
@media (max-width: 767px) {
  .author-banner h4 {
    font-size: 24px;
    letter-spacing: 0.24px;
  }
}
.author-banner p {
  margin: 0;
  font-family: "Season VF", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .author-banner p {
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.3px;
  }
}

.two-col-layout .page-title {
  margin: 0;
  text-align: left;
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.96px;
}
.two-col-layout .two-col-content {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 1600px) {
  .two-col-layout .two-col-content {
    gap: 80px;
  }
}
.two-col-layout .col-content {
  flex: 1 1 auto;
  min-width: 0;
}
.two-col-layout .col-toc {
  flex: 0 0 370px;
  width: 370px;
  transform: translateX(146px);
}
@media (max-width: 1600px) {
  .two-col-layout .col-toc {
    transform: translateX(0);
  }
}
.two-col-layout .col-toc .sticky {
  position: sticky;
  top: 0;
}
.two-col-layout .toc-wrapper {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 48px 32px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 205px 57px rgba(166, 194, 206, 0), 0 131px 52px rgba(166, 194, 206, 0.01), 0 74px 44px rgba(166, 194, 206, 0.05), 0 33px 33px rgba(166, 194, 206, 0.09), 0 8px 18px rgba(166, 194, 206, 0.1);
}
@media (max-width: 767px) {
  .two-col-layout .toc-wrapper {
    border-radius: 16px;
    padding: 24px;
  }
}
.two-col-layout .toc-wrapper .title {
  color: var(--bayside-300);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.two-col-layout .toc-wrapper ul,
.two-col-layout .toc-wrapper ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.two-col-layout .toc-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0 40px;
}
.two-col-layout .toc-list li {
  margin: 0;
}
.two-col-layout .toc-list li:before {
  display: none;
}
.two-col-layout .toc-list a {
  display: inline-block;
  text-decoration: none;
  color: #2d2e33;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.075px;
}
.two-col-layout .toc-list a.h2 {
  font-weight: 700;
}
.two-col-layout .toc-section-title {
  margin: 40px 0 24px;
  color: #000;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.two-col-layout .toc-list--links {
  align-items: flex-start;
  margin-bottom: 0;
}
.two-col-layout .toc-list--links a {
  border-bottom: 2px solid transparent;
}
.two-col-layout .toc-list--links a:hover,
.two-col-layout .toc-list--links a.active {
  border-bottom-color: var(--liquid-sky-400);
}
.two-col-layout .share__links {
  display: flex;
  gap: 12px;
}
.two-col-layout .share__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid var(--liquid-sky-400);
}
.two-col-layout .share__links a:hover {
  background-color: var(--liquid-sky-300);
  border-color: var(--liquid-sky-300);
}
.two-col-layout .share__links a path {
  fill: var(--abyss);
}
.two-col-layout #js-toc-content,
.two-col-layout #tags-content,
.two-col-layout #customer-logo {
  border-bottom: 1px solid rgba(0, 137, 197, 0.3);
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.two-col-layout #customer-logo img {
  max-width: 100%;
  height: auto;
}
.two-col-layout #share-content .toc-list {
  margin-bottom: 0;
}
.two-col-layout .col-toc__button-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}
.two-col-layout .col-toc__button-group .button {
  width: 100%;
}
@media (max-width: 1024px) {
  .two-col-layout .two-col-content {
    gap: 64px;
  }
  .two-col-layout .col-toc {
    flex-basis: 300px;
    width: 300px;
  }
}
@media (max-width: 1024px) {
  .two-col-layout .two-col-content {
    padding: 0 24px 36px;
    flex-wrap: wrap;
    gap: 0;
  }
  .two-col-layout .col-toc {
    flex: 0 0 100%;
    width: 100%;
  }
  .two-col-layout .col-content {
    width: 100%;
    padding: 40px 0;
  }
  .two-col-layout .col-content .spacer {
    margin-top: 40px;
  }
  .two-col-layout .col-content .col-toc {
    display: block !important;
    margin-bottom: 40px;
  }
  .two-col-layout .col-content .col-toc .toc-wrapper #js-toc-content {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .two-col-layout .col-toc:not(.d-none) .toc #js-toc-content {
    display: none;
  }
  .two-col-layout .col-toc:not(.d-none) .toc + .toc-social {
    padding: 0 !important;
    margin: 0 !important;
    border-top: 0 !important;
  }
  .two-col-layout .col-toc:not(.d-none) .toc-tags {
    padding: 0 !important;
    margin: 0 !important;
    border-top: 0 !important;
  }
  .two-col-layout .toc-mobile .toc-wrapper {
    padding: 0;
  }
  .two-col-layout .toc-mobile .toc-wrapper .title {
    padding: 24px 32px 24px 24px;
    position: relative;
  }
  .two-col-layout .toc-mobile .toc-wrapper .title:before {
    content: "";
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 11px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' viewBox='0 0 18 11' fill='none'%3E%3Cpath d='M0.707031 0.707092L8.70703 8.70709L16.707 0.707092' stroke='%2304141E' stroke-width='2' /%3E%3C/svg%3E") no-repeat center/18px 11px;
  }
  .two-col-layout .toc-mobile .toc-wrapper .toc-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin: 0;
  }
  .two-col-layout .toc-mobile .toc-wrapper .toc.open .toc-list,
  .two-col-layout .toc-mobile .toc-wrapper #js-toc-content.open .toc-list {
    max-height: 280px;
    overflow: auto;
    padding: 16px 32px;
  }
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .article-sidebar {
    gap: 32px;
  }
}
.article-sidebar h4 {
  margin: 0 0 16px;
  color: var(--color-blue-950);
  font-size: 21px;
  font-weight: 470;
  line-height: 130%; /* 27.3px */
  letter-spacing: 0.21px;
}
.article-sidebar__pill {
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-section__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .content-section__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
  }
}
.content-section__wrapper {
  display: flex;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .content-section__wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.content-section__item--highlighted {
  background-image: url("../images/related-resource-highlighted-texture.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 60px 48px 40px;
  width: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  display: flex;
  flex-direction: column;
  max-width: 703px;
  text-decoration: none;
}
.content-section__item--highlighted:hover .content-section__img {
  transform: scale(1.04);
}
.content-section__item--highlighted:hover .button-link--blue, .content-section__item--highlighted:focus-visible .button-link--blue {
  color: #FFF;
  text-decoration: underline;
}
.content-section__item--highlighted:hover .button-link--blue svg rect, .content-section__item--highlighted:focus-visible .button-link--blue svg rect {
  fill: var(--color-blue-300);
}
.content-section__item--highlighted:hover .button-link--blue svg path, .content-section__item--highlighted:focus-visible .button-link--blue svg path {
  fill: var(--color-blue-600);
}
@media (max-width: 1024px) {
  .content-section__item--highlighted {
    border-radius: 8px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
  }
}
.content-section__item--highlighted .content-section__inner-top {
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .content-section__item--highlighted .content-section__inner-top {
    margin-bottom: 33px;
  }
}
.content-section__item--highlighted .content-section__text {
  height: auto;
}
@media (max-width: 1024px) {
  .content-section__item--highlighted .content-section__text {
    order: 1;
    align-self: flex-start;
  }
}
.content-section__item--highlighted .content-section__img {
  position: relative;
  transition: transform 0.2s;
}
@media (max-width: 1024px) {
  .content-section__item--highlighted .content-section__img {
    display: flex;
    justify-content: center;
  }
}
.content-section__item--highlighted .content-section__img::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 43px;
  width: 252px;
  height: 342px;
  background: #010101;
  opacity: 0.5;
  filter: blur(40px);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .content-section__item--highlighted .content-section__img::after {
    left: -28px;
    top: initial;
    bottom: -20px;
    width: 149px;
    height: 203px;
    filter: blur(23px);
    transform: translateX(50%);
  }
}
.content-section__item--highlighted .content-section__img img {
  max-width: 271px;
  z-index: 1;
  position: relative;
}
@media (max-width: 1024px) {
  .content-section__item--highlighted .content-section__img img {
    width: 59.41%;
  }
}
.content-section__item--highlighted .content-section__text-img-wrapper {
  display: flex;
  gap: 83px;
  align-items: center;
}
@media (max-width: 1024px) {
  .content-section__item--highlighted .content-section__text-img-wrapper {
    flex-direction: column;
    gap: 36px;
  }
}
@media (max-width: 1024px) {
  .content-section__item--highlighted .pill span {
    height: 29px;
  }
}
@media (max-width: 1024px) {
  .content-section__item--highlighted .content-section__title {
    font-size: 24px;
    font-weight: 510;
    line-height: 120%; /* 28.8px */
    letter-spacing: 0.24px;
    margin-bottom: 24px;
    padding-right: 10px;
  }
}
.content-section__item--highlighted .content-section__body {
  color: #FFF;
}
@media (max-width: 1024px) {
  .content-section__item--highlighted .content-section__body {
    display: none;
  }
}
.content-section__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #FFF;
}
.content-section__subtitle {
  color: var(--color-blue-600);
}
.content-section__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 432;
  line-height: 110%; /* 35.2px */
  letter-spacing: 0.32px;
  margin: 0 0 12px;
}
.content-section__item:not(.content-section__item--highlighted) .card__img {
  width: 218px;
  height: 145px;
  display: flex;
  aspect-ratio: 218/145;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .content-section__item:not(.content-section__item--highlighted) .card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 350/207;
  }
}
.content-section__item:not(.content-section__item--highlighted) .card__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s;
}
.content-section__body {
  font-family: "Season VF", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .content-section__body {
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.3px;
  }
}

.content-section .content-section__item:not(.content-section__item--highlighted) {
  border-top: 0.5px solid var(--Divider, #CDDAE0);
  border-right: 0.5px solid var(--Divider, #CDDAE0);
  border-bottom: 0.5px solid var(--Divider, #CDDAE0);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #FFF;
}
@media (max-width: 1024px) {
  .content-section .content-section__item:not(.content-section__item--highlighted) {
    background-color: transparent;
    border: none;
    border-radius: 0;
    gap: 24px;
    display: flex;
    flex-direction: column;
  }
}
.content-section .card {
  padding: 44px 32px;
  border-bottom: 0.5px solid var(--Divider, #CDDAE0);
  max-height: 259px;
}
@media (max-width: 1024px) {
  .content-section .card {
    padding: 0;
    border: none;
  }
}
.content-section .card:last-child {
  border-bottom: none;
}
.content-section .card:hover {
  background-color: initial;
}
.content-section .card:hover .card__title {
  color: var(--color-blue-600);
}
.content-section .card:hover .card__img img {
  transform: scale(1.02);
}

.card {
  display: flex;
  gap: 21px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.card:hover {
  background: var(--Grey, #F2F8FC);
}
.card:hover .button-link {
  color: var(--color-blue-600);
  text-decoration: underline;
}
.card:hover .button-link rect {
  fill: var(--color-blue-600);
}
.card:hover .button-link path {
  fill: #FFF;
}
.card:hover .card__media-asset {
  transform: scale(1.025);
  box-shadow: 0 22px 44px rgba(5, 16, 39, 0.38);
}
.card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card__description {
  font-family: "Season VF", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .card__description {
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.3px;
  }
}
.card__author-block {
  display: flex;
  gap: 13px;
  align-items: center;
}
.card__author-block img {
  width: 35px;
  border-radius: 999px;
  overflow: hidden;
}
.card__author {
  color: #0A0F1E;
  font-size: 12px;
  font-weight: 715;
  line-height: 140%;
  letter-spacing: 0.36px;
  display: flex;
  flex-direction: column;
}
.card__author span {
  color: rgba(33, 33, 33, 0.8);
  font-weight: 550;
}
.card__inline-meta {
  display: flex;
  gap: 24px;
}
.card__inline-meta-item {
  font-size: 14px;
  font-weight: 550;
  line-height: 1;
  letter-spacing: 0.42px;
  color: var(--color-blue-950);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card__feature-img {
  aspect-ratio: 351/230;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  max-width: 351px;
  position: relative;
}
@media (max-width: 1024px) {
  .card__feature-img {
    aspect-ratio: 302/197;
    max-width: none;
  }
}
.card__feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__feature-img img.card__feature-img-thumb {
  position: absolute;
  object-fit: contain;
  bottom: -20%;
}
.card__media {
  overflow: hidden;
  border-radius: 6px;
}
.card__media img {
  display: block;
}
.card__media--image img {
  width: 100%;
  height: auto;
}
.card__media--asset-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
}
.card__media-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px);
  transform: scale(1.08);
}
.card__media-asset {
  position: relative;
  z-index: 1;
  max-width: 55%;
  height: auto;
  margin-bottom: -24.5%;
  box-shadow: 0 14px 28px rgba(5, 16, 39, 0.26);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
.card__media--video .card__media-asset {
  max-width: 72.83%;
  margin-bottom: 0;
}
.card__media--video .card__media-backdrop {
  filter: none;
  transform: none;
}
@media (max-width: 1024px) {
  .card {
    flex-direction: column;
    max-height: none !important;
  }
  .card__img {
    order: -1;
  }
}

.hero {
  --angle-height: 200px;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background-color: #009fe3;
  background-image: url("../images/hero-blog-article@2x.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 260px;
  padding-bottom: calc(var(--angle-height) + 16px);
}
@media (max-width: 1024px) {
  .hero {
    padding: 40px 0 66px;
    --angle-height: 64px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--angle-height);
  background: #fff;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}
.hero_rtl:after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  margin: 48px 0 30px;
}
@media (max-width: 1024px) {
  .hero__inner {
    gap: 40px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero__content {
  min-width: 546px;
  max-width: 592px;
  flex: 0 0 auto;
  width: 50.7%;
  gap: 24px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .hero__content {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
}
.hero__media {
  flex: 0 0 auto;
  width: 49.3%;
  position: relative;
}
@media (max-width: 1024px) {
  .hero__media {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
.hero__media img {
  border-radius: 8px;
}
.hero__kicker {
  opacity: 0.8;
  font-size: 18px;
  font-weight: 620;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
  margin: 0;
}
@media (max-width: 1024px) {
  .hero__kicker {
    font-size: 15px;
    line-height: 152%; /* 22.8px */
    letter-spacing: 0.3px;
  }
}
.hero__title {
  font-size: 64px;
  font-weight: 420;
  line-height: 100%; /* 64px */
  letter-spacing: -0.64px;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 38px;
    font-style: normal;
    letter-spacing: -0.38px;
  }
}
.hero__meta {
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero__meta img {
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  overflow: hidden;
}
.hero__wrap {
  display: flex;
  flex-direction: column;
  color: var(--White, #FFF);
  font-size: 14px;
  font-weight: 750;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.42px;
}
.hero__wrap span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 550;
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 1024px) {
  .hero__meta-item {
    gap: 6px;
    border-bottom: 1px solid #FFF;
    padding-bottom: 12px;
    line-height: 1;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .hero__meta-item:last-child {
    border: none;
  }
}
.hero__description {
  color: #FFF;
  font-size: 20px;
  line-height: 150%; /* 36px */
  letter-spacing: 0.24px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .hero__description {
    font-size: 16px;
    line-height: 160%; /* 25.6px */
    margin-top: 12px;
  }
}
.hero__info-group {
  display: flex;
  gap: 32px;
}
.hero__info-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 550;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.48px;
  gap: 8px;
}
.hero--gated-content {
  --angle-height: 168px;
  padding-top: 64px;
  padding-bottom: 168px;
  margin-bottom: -44px;
}
.hero--gated-content .hero__content {
  max-width: 740px;
  min-width: 0;
  gap: 16px;
}
.hero--gated-content .hero__inner {
  margin-top: 0;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .hero--gated-content .hero__inner {
    margin: 48px 0 30px;
  }
}
.hero--gated-content .hero__title {
  margin-bottom: 32px;
}
.hero--gated-content .hero__logo {
  margin-bottom: 80px;
}
.hero--type4 {
  padding-bottom: 0;
  background-position: center top;
}
@media (max-width: 1024px) {
  .hero--type4 {
    padding-top: calc(40px + var(--hero-mobile-top-padding));
  }
}
.hero--type4.hero_rtl:after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: calc(var(--angle-height) - 80px);
}
@media screen and (max-width: 1200px) {
  .hero--type4.hero_rtl:after {
    bottom: calc(var(--angle-height) + 30px);
  }
}
@media screen and (max-width: 767px) {
  .hero--type4.hero_rtl:after {
    bottom: var(--angle-height);
  }
}
@media screen and (max-width: 480px) {
  .hero--type4.hero_rtl:after {
    bottom: calc(var(--angle-height) - 30px);
  }
}
.hero--type4.hero_rtl:before {
  content: "";
  width: 100%;
  height: calc(var(--angle-height) - 78px);
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .hero--type4.hero_rtl:before {
    height: calc(var(--angle-height) + 32px);
  }
}
@media screen and (max-width: 767px) {
  .hero--type4.hero_rtl:before {
    height: calc(var(--angle-height) + 2px);
  }
}
@media screen and (max-width: 480px) {
  .hero--type4.hero_rtl:before {
    height: calc(var(--angle-height) - 28px);
  }
}
.hero--type4 .hero__content {
  max-width: none;
  width: 81%;
}
@media (max-width: 1024px) {
  .hero--type4 .hero__content {
    width: 100%;
  }
}
.hero--type5 {
  padding-bottom: 0;
  background-position: center top;
}
@media (max-width: 1024px) {
  .hero--type5 {
    padding-top: calc(40px + var(--hero-mobile-top-padding));
  }
}
.hero--type5.hero_rtl:after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: calc(var(--angle-height) - 80px);
}
@media screen and (max-width: 1200px) {
  .hero--type5.hero_rtl:after {
    bottom: calc(var(--angle-height) + 30px);
  }
}
@media screen and (max-width: 767px) {
  .hero--type5.hero_rtl:after {
    bottom: var(--angle-height);
  }
}
@media screen and (max-width: 480px) {
  .hero--type5.hero_rtl:after {
    bottom: calc(var(--angle-height) - 30px);
  }
}
.hero--type5.hero_rtl:before {
  content: "";
  width: 100%;
  height: calc(var(--angle-height) - 78px);
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .hero--type5.hero_rtl:before {
    height: calc(var(--angle-height) + 32px);
  }
}
@media screen and (max-width: 767px) {
  .hero--type5.hero_rtl:before {
    height: calc(var(--angle-height) + 2px);
  }
}
@media screen and (max-width: 480px) {
  .hero--type5.hero_rtl:before {
    height: calc(var(--angle-height) - 28px);
  }
}
.hero--type5 .hero__content {
  max-width: none;
  width: 81%;
}
@media (max-width: 1024px) {
  .hero--type5 .hero__content {
    width: 100%;
  }
}
.hero--type5 .hero__media {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .hero--type5 .hero__media {
    margin-top: 40px;
  }
}
.hero--type5 .hero__media-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 414px;
}
@media screen and (max-width: 1200px) {
  .hero--type5 .hero__media-wrap {
    min-height: 320px;
  }
}
@media screen and (max-width: 1023px) {
  .hero--type5 .hero__media-wrap {
    min-height: auto;
  }
  .hero--type5 .hero__media-wrap .img-fill {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .hero--type5 .hero__media-wrap {
    border-radius: 3px;
  }
}

.hero-clear {
  --hero-col-width: 520px;
}
@media screen and (max-width: 1200px) {
  .hero-clear {
    --hero-col-width: 420px;
  }
}
.hero-clear_pt {
  padding-top: 120px;
}
.hero-clear__wrap {
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .hero-clear__wrap {
    gap: 48px;
  }
}
.hero-clear__row {
  gap: 32px;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .hero-clear__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .hero-clear__row {
    gap: 24px;
  }
}
.hero-clear__title {
  color: var(--color-blue-950);
}
@media screen and (max-width: 1200px) {
  .hero-clear__title {
    font-size: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-clear__title {
    font-size: 46px;
  }
}
.hero-clear__text {
  flex: 0 0 var(--hero-col-width);
  max-width: var(--hero-col-width);
  margin-left: auto;
  color: var(--color-text);
}
@media screen and (max-width: 1200px) {
  .hero-clear__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-clear__text {
    margin-left: 0;
    flex: auto;
    max-width: initial;
  }
}
.hero-clear__gallery {
  background: url("../images/case-hero-bg@2x.jpg") no-repeat center center;
  background-size: cover;
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 32px;
  border-radius: var(--radius);
  margin: 0 -48px;
}
@media screen and (max-width: 1200px) {
  .hero-clear__gallery {
    padding: 24px;
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .hero-clear__gallery {
    grid-template-columns: minmax(0, 1fr) 40%;
    gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-clear__gallery {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.hero-clear__image {
  height: 334px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--color-grey);
}
@media screen and (max-width: 1200px) {
  .hero-clear__image {
    height: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-clear__image {
    height: 256px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-clear__image:first-child {
    height: 360px;
  }
}

.homepage-hero {
  padding: 88px 0 120px 0 !important;
}
.homepage-hero .csd-hero__text {
  max-width: 678px;
  margin: 0 auto;
  text-align: center;
  gap: 16px;
}
.homepage-hero .csd-hero__text .csd-hero__eyebrow {
  margin-bottom: 4px;
}
.homepage-hero .csd-hero__text h1 {
  color: var(--text, #373737);
  font-size: 93px;
  font-weight: 420;
  line-height: 92%; /* 85.56px */
  letter-spacing: -0.93px;
}
.homepage-hero .csd-hero__text p {
  color: var(--text, #373737);
  font-size: 18px;
  font-weight: 520;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.36px;
  max-width: 576px;
  margin: 0 auto;
}
.homepage-hero .csd-hero__text .ctas-wrapper {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.homepage-hero .csd-hero__gallery {
  margin-top: 80px;
}
.homepage-hero .stats__item {
  gap: 32px;
  padding-right: 52px;
}
.homepage-hero .stats__num {
  font-size: 40px;
  font-weight: 420;
  line-height: 100%; /* 40px */
}
.homepage-hero .stats__text {
  font-size: 16px;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
}
.homepage-hero .csd-hero__image {
  position: relative;
  aspect-ratio: initial !important;
  overflow: visible;
}
.homepage-hero .csd-hero__image:before {
  content: "";
  position: absolute;
  left: 50px;
  top: 50%;
  right: 50px;
  bottom: -40px;
  opacity: 0.6;
  background: #010101;
  mix-blend-mode: plus-darker;
  filter: blur(43.5999984741px);
  z-index: 1;
}
.homepage-hero .csd-hero__image img {
  position: relative;
  z-index: 99;
  border-radius: 8px;
}
.homepage-hero .stats__wrap_p {
  padding-top: 96px !important;
}
.homepage-hero .video-wrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.homepage-hero .video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.homepage-hero .video-wrapper .video-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.homepage-hero .video-wrapper .video-cover img.img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage-hero .video-wrapper .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 999;
  width: 128px;
  height: 128px;
  transition: all 0.3s ease;
}
.homepage-hero .video-wrapper:hover .play-btn {
  width: 160px;
  height: 160px;
}
@media (max-width: 767px) {
  .homepage-hero {
    padding: 40px 0 0 0 !important;
  }
  .homepage-hero .stats__wrap_p {
    padding-top: 48px !important;
  }
  .homepage-hero .csd-hero__text {
    max-width: 520px;
  }
  .homepage-hero .csd-hero__text .csd-hero__eyebrow {
    margin-bottom: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .homepage-hero .csd-hero__text h1 {
    font-size: 46px;
    font-weight: 443;
    line-height: 98%; /* 45.08px */
    letter-spacing: -0.46px;
  }
  .homepage-hero .csd-hero__text p {
    font-size: 16px;
    line-height: 160%; /* 28.8px */
    letter-spacing: 0.4px;
  }
  .homepage-hero .csd-hero__text .ctas-wrapper {
    gap: 12px;
  }
  .homepage-hero .csd-hero__text .ctas-wrapper a {
    width: 100%;
    text-align: center;
    padding: 0 24px 0 8px;
  }
  .homepage-hero .csd-hero__text .ctas-wrapper a svg {
    width: 36px;
    height: auto;
    min-width: 36px;
  }
  .homepage-hero .csd-hero__text .ctas-wrapper a span {
    width: 100%;
    text-align: center;
  }
  .homepage-hero .csd-hero__text .ctas-wrapper a.button-link {
    border-radius: 999px;
    border: 1px solid rgba(7, 110, 229, 0.12);
    height: 52px;
  }
  .homepage-hero .csd-hero__text .ctas-wrapper a.button-link svg rect {
    fill: var(--color-blue-600);
  }
  .homepage-hero .csd-hero__text .ctas-wrapper a.button-link svg path {
    fill: #FFF;
  }
  .homepage-hero .csd-hero__text .ctas-wrapper a.button-link:hover {
    background-color: var(--color-blue-600);
    color: #FFF;
    text-decoration: none;
  }
  .homepage-hero .csd-hero__text .ctas-wrapper a.button-link:hover svg rect {
    fill: #FFF;
  }
  .homepage-hero .csd-hero__text .ctas-wrapper a.button-link:hover svg path {
    fill: var(--color-blue-950);
  }
  .homepage-hero .csd-hero__gallery {
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .homepage-hero .csd-hero__gallery .csd-hero__image {
    width: 100%;
    max-width: 100% !important;
  }
  .homepage-hero .csd-hero__gallery .csd-hero__image > img {
    height: 200px;
    object-fit: cover;
  }
  .homepage-hero .csd-hero__gallery .csd-hero__image .video-wrapper {
    padding-bottom: 200px;
  }
  .homepage-hero .csd-hero__gallery .csd-hero__image img {
    object-fit: initial;
    height: auto;
    border-radius: 4;
  }
  .homepage-hero:before, .homepage-hero:after {
    display: none;
  }
  .homepage-hero .video-wrapper .play-btn {
    width: 54px;
    height: 54px;
  }
  .homepage-hero .video-wrapper:hover .play-btn {
    width: 62px;
    height: 62px;
  }
  .homepage-hero .mobile-bg {
    position: relative;
    padding-bottom: 80px;
  }
  .homepage-hero .mobile-bg div {
    position: relative;
    z-index: 2;
  }
  .homepage-hero .mobile-bg:before {
    content: "";
    clip-path: polygon(0 64px, 100% 0, 100% 100%, 0 100%);
    position: absolute;
    left: -20px;
    right: -20px;
    bottom: 0;
    top: 64px;
    z-index: 0;
    pointer-events: none;
    background-image: url("../images/csa-hero@2x.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: 1;
  }
  .homepage-hero .stats__item {
    gap: 12px;
    padding: 0;
  }
  .homepage-hero .stats__num {
    font-size: 31px;
    line-height: 110%; /* 34.1px */
  }
}

@media (max-width: 1024px) {
  .single.page-blog .hero {
    padding-top: var(--hero-mobile-top-padding);
  }
}

.featured-resource-card {
  padding: 80px 0 120px;
}
@media (max-width: 1024px) {
  .featured-resource-card {
    padding: 40px 0 64px;
  }
}
.featured-resource-card__headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 20px;
}
@media (max-width: 1024px) {
  .featured-resource-card__headline {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }
}
.featured-resource-card__headline .button {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .featured-resource-card__headline .button {
    width: 100%;
    justify-content: center;
  }
  .featured-resource-card__headline .button span {
    width: 100%;
    text-align: center;
  }
}
.featured-resource-card__headline-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 740px;
}
@media (max-width: 1024px) {
  .featured-resource-card__headline-text {
    gap: 16px;
  }
}
.featured-resource-card__headline-text p {
  margin: 0;
}
.featured-resource-card__headline--text2 {
  flex-direction: row;
  max-width: none;
  justify-content: space-between;
  width: 100%;
  gap: 48px;
}
.featured-resource-card__headline--text2 p {
  max-width: 740px;
}
@media (max-width: 1024px) {
  .featured-resource-card__headline--text2 {
    flex-direction: column;
    gap: 24px;
  }
}
.featured-resource-card__wrapper {
  display: flex;
  overflow: hidden;
  background-image: url("../images/related-resource-highlighted-texture.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 60px 48px 40px;
  width: 100%;
  border-radius: 8px;
  gap: 64px;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .featured-resource-card__wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
}
.featured-resource-card__wrapper:hover .featured-resource-card__img img, .featured-resource-card__wrapper:focus-visible .featured-resource-card__img img {
  transform: scale(1.05);
}
.featured-resource-card__wrapper:hover .button-link--blue, .featured-resource-card__wrapper:focus-visible .button-link--blue {
  color: #FFF;
  text-decoration: underline;
}
.featured-resource-card__wrapper:hover .button-link--blue svg rect, .featured-resource-card__wrapper:focus-visible .button-link--blue svg rect {
  fill: var(--color-blue-300);
}
.featured-resource-card__wrapper:hover .button-link--blue svg path, .featured-resource-card__wrapper:focus-visible .button-link--blue svg path {
  fill: var(--color-blue-600);
}
.featured-resource-card__img {
  max-width: 700px;
  width: 64.22%;
  aspect-ratio: 700/458;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 1;
}
@media (max-width: 1024px) {
  .featured-resource-card__img {
    width: 100%;
    aspect-ratio: 302/197;
    max-width: none;
  }
}
.featured-resource-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}
.featured-resource-card__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 36.78%;
  min-height: 458px;
  gap: 48px;
  padding-top: 8px;
}
@media (max-width: 1024px) {
  .featured-resource-card__text {
    width: 100%;
    min-height: 0;
    gap: 24px;
    padding-top: 0;
  }
}
.featured-resource-card__inner-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.featured-resource-card__text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF;
  padding-right: 20px;
}
.featured-resource-card__title {
  margin: 0 0 12px;
}
.featured-resource-card__body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
}
.featured-resource-card__body[data-clamp="3"] {
  -webkit-line-clamp: 3;
}
.featured-resource-card__author-block {
  display: flex;
  gap: 13px;
  align-items: center;
}
.featured-resource-card__author-block img {
  width: 44px;
  border-radius: 999px;
  overflow: hidden;
}
.featured-resource-card__author {
  color: #FFF;
  font-size: 12px;
  font-weight: 715;
  line-height: 140%;
  letter-spacing: 0.36px;
  display: flex;
  flex-direction: column;
}
.featured-resource-card__author span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 550;
}
.featured-resource-card__info {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.featured-resource-card__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 550;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.48px;
}

.hbspt {
  border-radius: 8px;
  background: url("../images/subscribe-bg-texture.jpg") no-repeat 0 0;
  background-size: cover;
  padding: 48px 40px 0;
  height: 562px;
  color: #FFF;
}
@media (max-width: 1024px) {
  .hbspt {
    height: auto;
    padding: 48px 32px 64px;
  }
}
.hbspt__subscribe-title {
  color: #FFF;
  margin-bottom: 16px;
}
.hbspt__subscribe-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
}
.hbspt #hubspot-subscribe {
  width: 100%;
}
.hbspt #hubspot-subscribe .hs_email label,
.hbspt #hubspot-subscribe .hs_error_rollup {
  display: none;
}
.hbspt #hubspot-subscribe input[type=email] {
  display: flex;
  height: 52px;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 8px;
  border: none;
  width: 100%;
  color: #373737;
  font-size: 14px;
  font-weight: 550;
  line-height: 10.4px; /* 74.286% */
  letter-spacing: 0.28px;
  font-family: "Season VF", sans-serif;
}
.hbspt #hubspot-subscribe input[type=submit] {
  display: flex;
  height: 48px;
  padding: 0 24px 0 8px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  cursor: pointer;
  margin-top: 32px;
  width: 100%;
  border: 1px solid var(--color-blue-300);
  font-size: 15px;
  font-weight: 650;
  line-height: 152%; /* 22.8px */
  letter-spacing: 0.3px;
  font-family: "Season VF", sans-serif;
  background-color: transparent;
  color: #FFF;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='39' height='39' viewBox='0 0 39 39' fill='%2303D5FF' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.75' y='0.75' width='37.5' height='37.5' rx='18.75' stroke='%2303D5FF' stroke-width='1.5'/%3E%3Cpath d='M20.0975 23.84L19.1375 22.88L22.6175 19.415L19.1525 15.935L20.1125 14.99L24.5225 19.415L20.0975 23.84ZM23.3825 18.65V20.165H14.5025V18.65H23.3825Z' fill='%230A0F1E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 8px center;
  background-size: 39px 39px;
  transition: all 0.2s;
}
.hbspt #hubspot-subscribe input[type=submit]:hover {
  border-color: var(--color-blue-300);
  background-color: var(--color-blue-300);
  color: var(--color-blue-950);
  background-image: url("data:image/svg+xml,%3Csvg width='39' height='39' viewBox='0 0 39 39' fill='%23076EE5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.75' y='0.75' width='37.5' height='37.5' rx='18.75' stroke='%23076EE5' stroke-width='1.5'/%3E%3Cpath d='M20.0975 23.84L19.1375 22.88L22.6175 19.415L19.1525 15.935L20.1125 14.99L24.5225 19.415L20.0975 23.84ZM23.3825 18.65V20.165H14.5025V18.65H23.3825Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
.hbspt #hubspot-subscribe ul.hs-error-msgs {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
.hbspt #hubspot-subscribe .hs-error-msgs label,
.hbspt #hubspot-subscribe .hs-error-msg {
  font-size: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}
.hbspt #hubspot-subscribe .submitted-message p {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.36px;
  color: #FFF;
  margin: 0;
}

.filter__nav-wrap {
  border-top: 1px solid #CDDAE0;
  border-bottom: 1px solid #CDDAE0;
}
@media screen and (max-width: 1024px) {
  .filter__nav-wrap {
    order: -1;
    border-top: none;
  }
}
.filter__nav-row {
  display: flex;
  gap: 50px;
  padding: 24px 0;
}
@media screen and (max-width: 1024px) {
  .filter__nav-row {
    flex-direction: column;
    gap: 24px;
  }
}
.filter__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.filter__nav-btn {
  display: block;
  white-space: nowrap;
  font-size: 15px;
  color: var(--color-blue-600);
  text-decoration: none;
  border: 1px solid var(--color-blue-600);
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: bold;
  line-height: 1;
  transition: 0.2s;
}
.filter__nav-btn:hover, .filter__nav-btn.active {
  background-color: var(--color-blue-600);
  color: var(--color-white);
}
.filter__search {
  flex: 0 0 300px;
  max-width: 350px;
  position: relative;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .filter__search {
    flex: auto;
    margin: 0;
    order: -1;
  }
}
@media screen and (max-width: 767px) {
  .filter__search {
    max-width: 100%;
  }
}
.filter__search-field {
  display: block;
  width: 100%;
  padding: 0 24px;
  height: 40px;
  background: rgba(205, 218, 224, 0.25);
  border-radius: 120px;
  border: 1px solid rgba(205, 218, 224, 0.25);
  outline: none;
}
.filter__search-field:focus {
  border-color: #000;
}
.filter__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  padding-left: 3px;
  background: transparent;
  border-radius: 0 120px 120px 0;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  opacity: 0.3;
  transition: 0.2s;
}
@media (max-width: 1024px) {
  .filter__search-btn {
    top: 6px;
  }
}
.filter__search-btn svg {
  transition: 0.2s;
}
.filter__search-btn:hover {
  color: var(--color-blue-600);
  opacity: 1;
}
@media (max-width: 1024px) {
  .filter__dropdown {
    width: 100%;
  }
}
.filter-menu {
  position: relative;
  width: max-content;
  display: flex;
  align-items: center;
  padding: 0 8px;
}
@media (max-width: 1024px) {
  .filter-menu {
    padding: 0;
  }
}
.filter-menu.open .filter-menu__trigger svg {
  transform: rotate(180deg);
}
.filter-menu__trigger {
  appearance: none;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .filter-menu__trigger {
    border: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.filter-menu__trigger:hover {
  background: transparent;
  color: var(--color-blue-600);
}
.filter-menu__trigger--has-border {
  border: 1px solid var(--color-blue-600);
  padding: 12px 16px 12px 20px;
}
.filter-menu__panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  min-width: 281px;
  max-height: 371px;
  overflow: auto;
  background: #fff;
  box-shadow: 0px 40px 56px -24px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding-top: 16px;
}
.filter-menu__panel[hidden] {
  display: none;
}
.filter-menu__panel ul {
  margin: 0;
  padding: 24px 32px 24px 24px;
  list-style: none;
}
.filter-menu__panel li {
  margin-bottom: 28px;
}
.filter-menu__panel li:last-child {
  margin-bottom: 0;
}
.filter-menu__panel li a:hover {
  text-decoration: underline;
}

.filter-category {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 28px;
  cursor: pointer;
  color: var(--color-blue-600);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  line-height: 152%;
}

@media (max-width: 1023px) {
  .autocomplete-post-filters {
    width: 100%;
    margin-bottom: 16px;
  }
}
@media (max-width: 1024px) {
  .autocomplete-post-filters {
    order: -2;
  }
}

.autoComplete-search-form {
  position: relative;
  min-width: 307px;
  max-width: 307px;
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .autoComplete-search-form {
    min-width: 100%;
    max-width: 100%;
  }
}
.autoComplete-search-form input[type=search]::-webkit-search-cancel-button, .autoComplete-search-form input[type=search]::-webkit-search-decoration {
  appearance: none;
}
.autoComplete-search-form .magnifier {
  position: absolute;
  top: 12px;
  right: 24px;
  width: 14px;
  height: 14px;
}
.autoComplete-search-form .autoComplete_wrapper {
  overflow: hidden;
  border-radius: 120px;
}
.autoComplete-search-form .autoComplete_wrapper input {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 12px 48px 12px 24px;
  border: 0;
  outline: 0;
  color: var(--color-text);
  background: rgba(205, 218, 224, 0.25);
  font-size: 13px;
  font-weight: 550;
  line-height: 10.4px;
  letter-spacing: 0.26px;
  font-family: "Season VF", sans-serif;
}
.autoComplete-search-form .autoComplete_wrapper input::placeholder {
  color: var(--color-text);
  opacity: 0.3;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 1024px) {
  .autoComplete-search-form .autoComplete_wrapper input {
    height: 52px;
  }
}
.autoComplete-search-form .results_list {
  right: 0;
  margin: 0;
  padding: 20px;
  background: #fff;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 99;
  min-width: 281px;
  max-height: 371px;
  overflow: auto;
  background: #fff;
  box-shadow: 0px 40px 56px -24px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 24px 32px 24px 24px;
}
.autoComplete-search-form .results_list p {
  margin: 0;
  font-size: 14px;
}
.autoComplete-search-form .results_list li {
  display: block;
  padding-bottom: 24px;
}
.autoComplete-search-form .results_list li:last-child {
  padding-bottom: 0;
}
.autoComplete-search-form .results_list .categ {
  display: inline-block;
  padding: 4px;
  border-radius: 2px;
  background: var(--color-blue-300);
  font-size: 12px;
  font-weight: 600;
  line-height: 115%;
  letter-spacing: 0.15px;
}
.autoComplete-search-form .results_list .post-name {
  position: relative;
  padding-right: 15px;
  color: rgba(0, 23, 8, 0.8);
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: -0.1px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.autoComplete-search-form .results_list .post-name:hover {
  color: var(--color-blue-600);
  text-decoration: underline;
}
.autoComplete-search-form .results_list .post-name mark {
  background: var(--color-blue-300);
}

@keyframes ring-fly {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links_w .social-links__item {
  background-color: var(--color-white);
  border-radius: var(--radius);
  border: none;
}
.social-links_w .social-links__item::after {
  border-radius: var(--radius);
}
.social-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-blue-600);
  border: 1px solid currentColor;
  border-radius: 9999px;
  position: relative;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.social-links__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--color-blue-600);
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}
.social-links__item:hover::after {
  animation: ring-fly 0.5s ease-out forwards;
}
.social-links__item svg {
  transition: color 0.2s ease;
}
.social-links__item .fill-bg {
  transition: fill 0.2s ease;
  fill: #fff;
}
.social-links__item:hover {
  color: var(--color-white);
  background-color: var(--color-blue-600);
  border-color: var(--color-blue-600);
}
.social-links__item:hover .fill-bg {
  fill: var(--color-blue-600);
}

.authors {
  color: var(--color-text);
}
.authors__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.author {
  display: flex;
  background-color: var(--color-white);
  padding: 8px;
  gap: 16px;
  align-items: center;
  line-height: 1.5;
  border-radius: var(--radius);
}
.author__photo {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  background-color: var(--color-grey);
  overflow: hidden;
  position: relative;
  align-self: flex-start;
}
.author__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--color-blue-600);
  color: var(--color-white);
  font-weight: 580;
  font-size: 12px;
  line-height: 150%;
  padding: 2px 8px;
  border-top-left-radius: var(--radius);
  font-variation-settings: "wght" 588, "slnt" 0, "SERF" 44;
}
.author__badge_light, .author__badge[data-badge=Guest] {
  background-color: var(--color-blue-300);
  color: var(--color-blue-950);
}
.author__info {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 8px;
}
.author__name {
  font-size: 16px;
  font-weight: bold;
}
.author__pos {
  font-size: 14px;
}
.author .social-links {
  margin-top: 8px;
}
.author .social-links__item {
  width: 40px;
  height: 40px;
}

.latest {
  position: relative;
}
.latest__wrapper {
  gap: 64px;
}
@media screen and (max-width: 1200px) {
  .latest__wrapper {
    gap: 40px;
  }
}
.latest__heading {
  align-items: center;
}
.latest__heading .button {
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .latest__title {
    font-size: 44px;
  }
}
@media screen and (max-width: 1024px) {
  .latest__title {
    font-size: 38px;
  }
}
.latest__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  .latest__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
  }
}
.latest__list_border {
  border-top: 1px solid #CDDAE0;
  padding-top: 32px;
}
@media screen and (max-width: 1024px) {
  .latest__list_border {
    border: none;
    padding-top: 0;
  }
}
.latest__item {
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .latest__item {
    gap: 24px;
    border-bottom: 1px solid #CDDAE0;
    padding-bottom: 32px;
  }
}
.latest__item-wrap {
  gap: 12px;
}
.latest__item-wrap_full {
  flex-basis: 100%;
}
.latest__item-category {
  color: var(--color-blue-600);
}
@media screen and (max-width: 1024px) {
  .latest__item-category {
    font-size: 15px;
  }
}
.latest__item-name {
  color: var(--color-blue-950);
  text-decoration: none;
  line-height: 1.2;
  margin-bottom: 4px;
  transition: 0.2s;
}
.latest__item-name[href]:hover {
  color: var(--color-blue-600);
}
@media screen and (max-width: 1200px) {
  .latest__item-name {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.latest__item-date {
  margin-top: auto;
  color: #373737;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .latest__item-date {
    font-size: 15px;
  }
}
.latest__item-btn {
  margin-top: auto;
}
.latest__bottom {
  display: none;
}
@media screen and (max-width: 767px) {
  .latest__bottom {
    display: block;
  }
}
.latest__bottom .button {
  width: 100%;
}
.latest__bottom .button span {
  margin: 0 auto;
}

.stats__wrap {
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .stats__wrap {
    gap: 48px;
  }
}
.stats__wrap_p {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .stats__wrap_p {
    padding: 48px 0;
  }
}
.stats__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .stats__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
  }
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 72px;
}
@media screen and (max-width: 1200px) {
  .stats__item {
    padding-right: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .stats__item {
    padding-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .stats__item {
    padding-right: 0;
  }
}
.stats__num {
  font-size: 96px;
  line-height: 0.95;
  color: var(--color-blue-950);
  font-weight: 363;
  font-variation-settings: "SERF" 24;
}
@media screen and (max-width: 1200px) {
  .stats__num {
    font-size: 76px;
    font-weight: 435;
  }
}
@media screen and (max-width: 1024px) {
  .stats__num {
    font-size: 64px;
  }
}
.stats__text {
  line-height: 1.6;
  color: #333333;
}
@media screen and (max-width: 1024px) {
  .stats__text {
    font-size: 15px;
  }
}
.stats__source {
  font-size: 12px;
  color: #8498A5;
  margin-top: auto;
}
.stats__clients {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 48px;
  justify-content: space-between;
  border-top: 1px solid #CDDAE0;
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .stats__clients {
    padding-top: 48px;
    justify-content: flex-start;
  }
}
.stats__clients img {
  display: block;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media screen and (max-width: 1024px) {
  .stats__clients img {
    max-height: 36px;
  }
}

.stats-and-logos .stats__clients img {
  flex: 1 1 0;
  min-width: 0;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .stats-and-logos .stats__clients {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
  }
  .stats-and-logos .stats__clients img {
    width: 100%;
    height: 48px;
    object-fit: contain;
  }
}

.stats-with-section-intro__description p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .stats-with-section-intro .stats__text br {
    display: none;
  }
}

.img-row {
  position: relative;
  z-index: 2;
}
.img-row__img-row {
  display: grid;
  grid-template-columns: 414px minmax(0, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .img-row__img-row {
    grid-template-columns: 35% minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .img-row__img-row {
    gap: 8px;
  }
}
@media screen and (max-width: 480px) {
  .img-row__img-row {
    gap: 4px;
  }
}
.img-row__img-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 414px;
}
@media screen and (max-width: 1200px) {
  .img-row__img-item {
    min-height: 320px;
  }
}
@media screen and (max-width: 1023px) {
  .img-row__img-item {
    min-height: auto;
  }
  .img-row__img-item .img-fill {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .img-row__img-item {
    border-radius: 3px;
  }
}
.img-row__img-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.img-row__img-icon svg {
  width: 25%;
  height: 25%;
}
@media screen and (max-width: 1200px) {
  .img-row__img-icon svg {
    width: 40%;
    height: 40%;
  }
}
@media screen and (max-width: 767px) {
  .img-row__img-icon svg {
    width: 60%;
    height: 60%;
  }
}
.img-row--mt {
  margin-top: 64px;
}
@media screen and (max-width: 1200px) {
  .img-row--mt {
    margin-top: 40px;
  }
}
@media (min-width: 1201px) {
  .img-row--reverse .img-row__img-row {
    grid-template-columns: minmax(0, 1fr) 414px;
  }
}
@media screen and (max-width: 1200px) {
  .img-row--reverse .img-row__img-row {
    grid-template-columns: minmax(0, 1fr) 35%;
  }
}

.text-cta {
  background-color: #F2F8FC;
  border-radius: 8px;
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  margin-top: 80px;
}
.text-cta__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-cta h3 {
  margin: 0 0 4px;
}
.text-cta p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .text-cta {
    padding: 40px 24px;
  }
}

.icon-text-list__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .icon-text-list__items {
    gap: 32px;
  }
}
.icon-text-list__item {
  display: flex;
  gap: 16px;
}
.icon-text-list__icon {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .icon-text-list__icon {
    width: 32px;
    height: 32px;
  }
}
.icon-text-list h3 {
  color: var(--color-blue-600);
  font-size: 32px;
  font-style: normal;
  font-weight: 432;
  line-height: 110%; /* 35.2px */
  letter-spacing: 0.32px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .icon-text-list h3 {
    font-size: 31px;
    font-weight: 420;
    letter-spacing: 1;
  }
}
.icon-text-list h4 {
  margin-top: 0;
  color: var(--color-blue-950);
  font-size: 26px;
  font-weight: 510;
  line-height: 120%; /* 31.2px */
  letter-spacing: 0.26px;
}
@media (max-width: 767px) {
  .icon-text-list h4 {
    font-size: 24px;
    letter-spacing: 0.24px;
  }
}
.icon-text-list__text p:first-child {
  margin-top: 12px;
}

.registration-form__field {
  margin-bottom: 20px;
  position: relative;
}
.registration-form__label {
  display: block;
  margin-bottom: 12px;
  color: var(--color-blue-950);
  font-size: 13px;
  font-weight: 550;
  line-height: 18px;
  letter-spacing: 0.26px;
}
.registration-form__control {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border: 1px solid var(--Divider, #cddae0);
  border-radius: 8px;
  background: #fff;
  color: var(--color-blue-950);
  font-size: 14px;
  font-weight: 520;
  line-height: 150%;
  letter-spacing: 0.28px;
  appearance: none;
}
.registration-form__control:focus {
  border-color: rgb(0, 122, 255);
  outline: none;
}
.registration-form__control::placeholder {
  color: var(--color-blue-950);
  opacity: 0.3;
}
.registration-form__control:disabled {
  color: var(--color-blue-950);
  background: #eaeaea;
  border-color: rgba(0, 0, 0, 0.1);
  opacity: 0.3;
  pointer-events: none;
}
.registration-form select.registration-form__control {
  padding-right: 2rem;
}
.registration-form select.registration-form__control:invalid {
  color: rgba(10, 15, 30, 0.3);
}
.registration-form__select-arrow {
  position: absolute;
  right: 20px;
  top: calc(50% + 15px);
  width: 10px;
  height: 7px;
  pointer-events: none;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath opacity='0.3' d='M1.19403 0L4.99171 3.81426L8.80597 0.016584L10 1.2272L4.99171 6.20232L0 1.21061L1.19403 0Z' fill='%230A0F1E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.registration-form__honeypot {
  display: none;
}
.registration-form__submit {
  width: 100%;
  margin-top: 28px;
}
.registration-form__message {
  color: var(--color-blue-950);
}
.registration-form__message p {
  max-width: 600px;
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.075px;
}
.registration-form__message a {
  color: var(--color-blue-600);
  text-decoration: underline;
}
.registration-form__message-title {
  margin-bottom: 32px;
  color: var(--color-blue-950);
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.48px;
  text-align: center;
}
.registration-form__container--has-message {
  justify-content: center;
}

.text-column-grid__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}
.text-column-grid__intro-content {
  max-width: 828px;
}
.text-column-grid__cta {
  flex: 0 0 auto;
  gap: 16px;
  display: flex;
}
.text-column-grid__heading {
  color: var(--color-blue-950);
}
.text-column-grid .eyebrow {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .text-column-grid .eyebrow {
    margin-bottom: 16px;
  }
}
.text-column-grid__body {
  color: var(--color-text);
  margin-bottom: 0;
  position: relative;
}
.text-column-grid__source {
  position: absolute;
  left: 0;
  bottom: -35px;
  color: #8498A5;
  font-size: 12px;
  font-weight: 520;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.48px;
}
@media (max-width: 767px) {
  .text-column-grid__source {
    position: relative;
    bottom: 0;
    left: 0;
    display: block;
    margin-top: 16px;
    margin-bottom: 24px;
  }
}
.text-column-grid__column-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 56px;
}
.text-column-grid__column-wrapper .text-column-grid__column-body {
  font-family: "Season VF", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .text-column-grid__column-wrapper .text-column-grid__column-body {
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 767px) {
  .text-column-grid__column-wrapper {
    gap: 0;
    margin-top: 40px;
  }
}
.text-column-grid__column-row {
  display: flex;
  gap: 48px;
  border-top: var(--border);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .text-column-grid__column-row {
    flex-direction: column;
    border-top: none;
  }
}
.text-column-grid__column {
  padding: 40px 32px 16px 0;
  flex: 1;
}
@media (max-width: 767px) {
  .text-column-grid__column {
    border-top: var(--border);
    padding: 24px 0 24px;
  }
}
.text-column-grid__column-heading {
  font-size: 25px;
  color: var(--color-blue-950);
  line-height: 120%; /* 25.2px */
  letter-spacing: 0.25px;
  margin-bottom: 12px;
  font-variation-settings: "wght" 510, "slnt" 0, "SERF" 44;
}
@media (max-width: 767px) {
  .text-column-grid__column-heading {
    margin-bottom: 8px;
  }
}
.text-column-grid__column-body {
  color: var(--color-text);
  margin-bottom: 0;
}
.text-column-grid__3col {
  gap: 64px;
}
@media (max-width: 767px) {
  .text-column-grid__3col {
    gap: 0;
  }
}
.text-column-grid__3col .text-column-grid__column {
  flex: 0 0 calc((100% - 128px) / 3);
}
.text-column-grid__4col {
  gap: 16px;
}
@media (max-width: 767px) {
  .text-column-grid__4col {
    gap: 0;
  }
}
.text-column-grid__4col .text-column-grid__column {
  flex: 0 0 calc((100% - 48px) / 4);
}
.text-column-grid__logo-kicker {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .text-column-grid__logo-kicker {
    margin-bottom: 40px;
    height: 34px;
    max-width: 100%;
  }
}
.text-column-grid--compact .text-column-grid__heading {
  font-size: 52px;
  font-weight: 420;
  line-height: 100%; /* 52px */
  letter-spacing: -0.52px;
}
@media (max-width: 767px) {
  .text-column-grid--compact .text-column-grid__heading {
    font-size: 38px;
    font-weight: 460;
    line-height: 100%; /* 38px */
    letter-spacing: -0.38px;
  }
}
.text-column-grid--compact .text-column-grid__column-wrapper {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .text-column-grid--compact .text-column-grid__column-wrapper {
    border-top: var(--border);
    padding-top: 16px;
  }
}
.text-column-grid--compact .text-column-grid__column-row {
  gap: 32px;
}
@media (max-width: 767px) {
  .text-column-grid--compact .text-column-grid__column-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 32px;
    grid-column-gap: 20px;
  }
}
.text-column-grid--compact .text-column-grid__column {
  padding: 32px 0;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .text-column-grid--compact .text-column-grid__column {
    padding: 0;
    border-top: none;
  }
}
.text-column-grid--compact .text-column-grid__column svg {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .text-column-grid--compact .g-24 {
    gap: 16px;
  }
}

.blue-feature-panel {
  background-image: url(../images/blue-feature-panel-bg@2x.jpg);
  color: var(--color-text);
}
.blue-feature-panel::after {
  --angle-color: #FFF;
}
.blue-feature-panel.section_corner-top {
  padding-top: calc(90px + var(--angle-height));
}
@media (max-width: 767px) {
  .blue-feature-panel.section_corner-top {
    --angle-height: 42px;
    padding-top: calc(56px + var(--angle-height));
  }
}
.blue-feature-panel.section_corner-bottom {
  padding-bottom: calc(90px + var(--angle-height));
}
@media (max-width: 767px) {
  .blue-feature-panel.section_corner-bottom {
    --angle-height: 42px;
    padding-bottom: calc(56px + var(--angle-height));
  }
}
.blue-feature-panel .custom-container {
  max-width: 1478px;
}
.blue-feature-panel__surface {
  border-radius: var(--radius);
  background-color: #FFF;
  padding: 96px 104px 136px;
}
@media (max-width: 767px) {
  .blue-feature-panel__surface {
    padding: 40px 24px 32px;
  }
}
.blue-feature-panel__eyebrow {
  margin-bottom: 12px;
}
.blue-feature-panel__title {
  color: var(--color-blue-950);
  font-size: 60px;
  font-weight: 420;
  line-height: 100%; /* 60px */
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .blue-feature-panel__title {
    font-size: 38px;
    font-weight: 460;
    line-height: 100%; /* 38px */
    letter-spacing: -0.38px;
  }
}
.blue-feature-panel__body {
  max-width: 767px;
  color: var(--color-text);
}
.blue-feature-panel__body p {
  margin-bottom: 0;
}
.blue-feature-panel__img {
  border-radius: var(--radius);
  margin: 40px 0;
}
@media (max-width: 767px) {
  .blue-feature-panel__img {
    margin: 24px 0 32px;
    aspect-ratio: 302/181;
    object-fit: cover;
  }
}
.blue-feature-panel__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 24px;
}
@media (max-width: 767px) {
  .blue-feature-panel__items {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}
.blue-feature-panel__item {
  display: flex;
  gap: 16px;
  padding: 16px 48px 16px 0;
}
.blue-feature-panel__item svg {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .blue-feature-panel__item {
    border-bottom: var(--border);
    flex-direction: column;
  }
  .blue-feature-panel__item:first-child {
    padding-top: 0;
  }
  .blue-feature-panel__item:last-child {
    border-bottom: none;
  }
}
.blue-feature-panel__divider {
  grid-column: 1/-1;
  border-top: 0.5px solid var(--Divider, #CDDAE0);
}
.blue-feature-panel__item-title {
  color: var(--color-blue-950);
  font-size: 21px;
  line-height: 120%; /* 25.2px */
  letter-spacing: 0.21px;
  margin-bottom: 8px;
  font-variation-settings: "wght" 550, "slnt" 0, "SERF" 44;
}
.blue-feature-panel__item-body {
  font-family: "Season VF", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .blue-feature-panel__item-body {
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.3px;
  }
}
.blue-feature-panel__item-body {
  margin: 0;
}

.purchase-paths {
  padding: 80px 0 120px;
}
@media (max-width: 1200px) {
  .purchase-paths {
    padding: 48px 0 64px;
  }
}
.purchase-paths__eyebrow {
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 767px) {
  .purchase-paths__eyebrow {
    margin-bottom: 16px;
  }
}
.purchase-paths__text {
  margin-bottom: 0;
}
.purchase-paths__text-wrapper {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .purchase-paths__text-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.purchase-paths__cards {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .purchase-paths__cards {
    flex-direction: column;
    gap: 12px;
  }
}
.purchase-paths__card {
  background-color: #fff;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .purchase-paths__card {
    gap: 12px;
  }
}
.purchase-paths__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.purchase-paths__card ul li {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 520;
  line-height: 152%; /* 22.8px */
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: var(--border);
}
.purchase-paths__card ul li:last-child {
  border-bottom: none;
}
.purchase-paths--grouped .purchase-paths__card {
  padding: 32px 32px 48px 32px;
  flex: 1;
}
@media (max-width: 767px) {
  .purchase-paths--grouped .purchase-paths__card {
    padding: 32px 20px;
  }
}
.purchase-paths--grouped .purchase-paths__heading {
  width: 50%;
}
@media (max-width: 767px) {
  .purchase-paths--grouped .purchase-paths__heading {
    width: 100%;
  }
}
.purchase-paths--grouped .purchase-paths__text {
  width: 50%;
}
@media (max-width: 767px) {
  .purchase-paths--grouped .purchase-paths__text {
    width: 100%;
  }
}
.purchase-paths--grouped .purchase-paths__intro {
  margin-bottom: 56px;
}
@media (max-width: 1200px) {
  .purchase-paths--grouped .purchase-paths__intro {
    margin-bottom: 24px;
  }
}
.purchase-paths--simple .custom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .purchase-paths--simple .custom-container {
    flex-direction: column;
    gap: 24px;
  }
}
.purchase-paths--simple .purchase-paths__heading {
  margin-bottom: 24px;
}
.purchase-paths--simple .purchase-paths__cards {
  flex-direction: column;
  max-width: 522px;
  width: 100%;
}
.purchase-paths--simple .purchase-paths__intro {
  max-width: 522px;
}
.purchase-paths--simple .purchase-paths__card {
  padding: 16px 32px;
}
.purchase-paths:not(.section-bg-light) {
  background-color: #FFF;
}
.purchase-paths:not(.section-bg-light) .purchase-paths__card {
  background-color: #F2F8FC;
}

.blue-advantage-panel {
  background-image: url("../images/blue-advantage-bg.jpg");
  background-size: cover;
  background-position: center top;
  color: #FFF;
}
@media (max-width: 767px) {
  .blue-advantage-panel {
    --angle-height: 41px;
  }
}
.blue-advantage-panel.section_corner-top {
  padding-top: calc(90px + var(--angle-height));
}
@media (max-width: 767px) {
  .blue-advantage-panel.section_corner-top {
    padding-top: calc(36px + var(--angle-height));
  }
}
.blue-advantage-panel.section_corner-bottom {
  padding-bottom: calc(90px + var(--angle-height));
}
@media (max-width: 767px) {
  .blue-advantage-panel.section_corner-bottom {
    padding-bottom: calc(96px + var(--angle-height));
  }
}
.blue-advantage-panel__wrapper {
  display: flex;
  flex-direction: column;
}
.blue-advantage-panel__item {
  display: flex;
  align-items: center;
  gap: 164px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .blue-advantage-panel__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .blue-advantage-panel__item {
    padding-top: 60px;
  }
}
.blue-advantage-panel__item:nth-child(odd) .feature-block__media-wrapper {
  order: 1;
}
.blue-advantage-panel__item:nth-child(odd) .feature-block__text-wrapper {
  width: 100%;
  max-width: 523px;
}
@media (max-width: 1024px) {
  .blue-advantage-panel__item:nth-child(even) .feature-block__media-wrapper {
    order: 1;
  }
}
.blue-advantage-panel__media-wrapper {
  display: flex;
  max-width: 591px;
  position: relative;
}
.blue-advantage-panel__media-wrapper img {
  max-width: 100%;
  height: auto;
}
.blue-advantage-panel__testimonial {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.8);
  padding: 32px 32px 32px 27px;
  margin: 0 32px 49px;
  font-size: 18px;
  color: #FFF;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.36px;
}
@media (max-width: 1024px) {
  .blue-advantage-panel__testimonial {
    margin-left: 16px;
    margin-right: 23px;
    margin-bottom: 46px;
  }
}
.blue-advantage-panel__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 523px;
}
@media (max-width: 1024px) {
  .blue-advantage-panel__text-wrapper {
    gap: 32px;
  }
}
.blue-advantage-panel__title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .blue-advantage-panel__title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blue-advantage-panel__headline {
  color: var(--color-blue-300);
  font-size: 18px;
  font-weight: 620;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
}
.blue-advantage-panel__description {
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 457px;
  color: #FFF;
}
.blue-advantage-panel__title {
  color: #FFF;
  font-size: 52px;
  font-weight: 420;
  line-height: 100%; /* 52px */
  letter-spacing: -0.52px;
  font-variation-settings: var(--fvs-h3);
}
@media (max-width: 1024px) {
  .blue-advantage-panel__title {
    font-size: 24px;
    letter-spacing: 0.24px;
    margin-bottom: 12px;
  }
}
.blue-advantage-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blue-advantage-panel__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(3, 213, 255, 0.5);
  font-size: 16px;
  font-weight: 670;
  line-height: 152%; /* 24.32px */
  letter-spacing: 0.32px;
}
.blue-advantage-panel__list li svg {
  flex-shrink: 0;
}
.blue-advantage-panel__list li:last-child {
  border-bottom: none;
}

.blue-card-grid-panel {
  background-image: url("../images/blue-advantage-bg.jpg");
  background-size: cover;
  background-position: center top;
  color: #FFF;
}
@media (max-width: 1024px) {
  .blue-card-grid-panel {
    --angle-height: 41px;
  }
}
.blue-card-grid-panel.section_corner-top {
  padding-top: calc(30px + var(--angle-height));
}
.blue-card-grid-panel.section_corner-bottom {
  padding-bottom: calc(85px + var(--angle-height));
}
@media (max-width: 1024px) {
  .blue-card-grid-panel.section_corner-bottom {
    padding-bottom: calc(56px + var(--angle-height));
  }
}
.blue-card-grid-panel__content {
  display: flex;
  flex-direction: column;
}
.blue-card-grid-panel__intro {
  max-width: 760px;
  margin-bottom: 56px;
}
.blue-card-grid-panel__eyebrow {
  color: var(--color-blue-300);
  margin-bottom: 16px;
}
.blue-card-grid-panel__title {
  color: #FFF;
  font-size: 60px;
  font-weight: 420;
  line-height: 100%;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}
.blue-card-grid-panel__body {
  max-width: 740px;
}
.blue-card-grid-panel__body p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}
.blue-card-grid-panel__media {
  margin-bottom: 56px;
}
.blue-card-grid-panel__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.blue-card-grid-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.blue-card-grid-panel__card {
  display: flex;
  flex-direction: column;
  min-height: 372px;
  border-radius: var(--radius);
  background-color: #FFF;
  color: var(--color-text);
  padding: 48px 32px;
}
.blue-card-grid-panel__icon {
  display: flex;
  margin-bottom: 48px;
}
.blue-card-grid-panel__icon svg {
  flex-shrink: 0;
}
.blue-card-grid-panel__card-title {
  color: var(--color-blue-950);
  margin-bottom: 24px;
  font-size: 25px;
  font-weight: 510;
  line-height: 120%; /* 30px */
  letter-spacing: 0.25px;
  font-variation-settings: "wght" 510, "slnt" 0, "SERF" 44;
}
.blue-card-grid-panel__card-body {
  font-family: "Season VF", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .blue-card-grid-panel__card-body {
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.3px;
  }
}
.blue-card-grid-panel__card-body {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .blue-card-grid-panel__intro {
    margin-bottom: 40px;
  }
  .blue-card-grid-panel__title {
    font-size: 42px;
  }
  .blue-card-grid-panel__media {
    margin-bottom: 40px;
  }
  .blue-card-grid-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blue-card-grid-panel__card {
    min-height: auto;
    padding: 40px 32px;
  }
  .blue-card-grid-panel__icon {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .blue-card-grid-panel__title {
    font-size: 32px;
    letter-spacing: -0.32px;
  }
  .blue-card-grid-panel__title br {
    display: none;
  }
  .blue-card-grid-panel__grid {
    grid-template-columns: 1fr;
  }
  .blue-card-grid-panel__card {
    padding: 24px 39px 24px 20px;
  }
  .blue-card-grid-panel__icon {
    margin-bottom: 24px;
  }
  .blue-card-grid-panel__icon img {
    width: 40px;
  }
  .blue-card-grid-panel__card-title {
    font-size: 24px;
    font-weight: 510;
    line-height: 120%; /* 28.8px */
    letter-spacing: 0.24px;
    margin-bottom: 16px;
  }
  .blue-card-grid-panel__card-title br {
    display: none;
  }
}
.blue-card-grid-panel .two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 767px) {
  .blue-card-grid-panel .two-up {
    grid-template-columns: 1fr;
  }
}
.blue-card-grid-panel .two-up .blue-card-grid-panel__card {
  padding: 40px 48px 48px;
}

.faq {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 48px 0;
  }
}
.faq__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq .imgdevider {
  margin: 56px 0;
}
@media (max-width: 767px) {
  .faq .imgdevider {
    margin: 32px 0 0;
    height: 3px;
  }
}
.faq .custom-container {
  max-width: 1062px;
}
.faq__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.faq__item {
  width: 100%;
  border-top: 1px solid #CDDAE0;
}
.faq__item:first-child {
  border-top: none;
}
.faq__item:first-child .faq-item-wrapper {
  padding-top: 0;
}
.faq__item-wrapper {
  background: #FFF;
  padding: 32px 0;
  position: relative;
}
@media (max-width: 767px) {
  .faq__item-wrapper {
    padding: 24px 0;
  }
}
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}
@media (max-width: 767px) {
  .faq__trigger {
    align-items: flex-start;
  }
}
.faq__trigger:focus-visible {
  outline: 3px solid var(--liquid-sky-300);
  outline-offset: 4px;
  border-radius: 12px;
}
.faq__trigger[aria-expanded=true] h4,
.faq__trigger[aria-expanded=true] h4 span {
  color: var(--color-blue-600);
  opacity: 1;
}
.faq__question {
  display: flex;
  align-items: center;
  max-width: none;
}
@media (max-width: 767px) {
  .faq__question {
    min-height: 20px;
  }
}
.faq__question span {
  width: 28px;
  opacity: 0.5;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .faq__question span {
    align-self: flex-start;
    font-size: 16px;
    font-weight: 470;
    line-height: 130%; /* 20.8px */
    letter-spacing: 0.16px;
  }
}
.faq__question h4 {
  margin: 0;
  color: var(--color-blue-950);
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .faq__question h4 {
    font-size: 20px;
    font-weight: 550;
    line-height: 120%; /* 24px */
    letter-spacing: 0.2px;
    gap: 8px;
  }
}
.faq__answer {
  max-width: 739px;
  text-align: left;
}
.faq__answer p {
  color: var(--color-text);
  margin-bottom: 0;
}
.faq__answer-wrapper {
  padding-top: 12px;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .faq__answer-wrapper {
    padding-left: 31px;
  }
}
.faq__answer[hidden] {
  display: none;
}
.faq .plus-box {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  line-height: 1;
  text-align: center;
  padding: 8px 0;
  border-radius: 50%;
  border: 1.5px solid var(--color-blue-600);
  position: relative;
  top: 0;
  right: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .faq .plus-box {
    width: 32px;
    height: 32px;
  }
}
.faq .plus-minus-toggle {
  width: 12px;
  height: 12px;
  display: block;
  position: relative;
}
.faq .plus-minus-toggle:after, .faq .plus-minus-toggle:before {
  background-color: var(--color-blue-600);
  content: "";
  height: 1.5px;
  left: 0px;
  position: absolute;
  top: 5px;
  width: 12px;
  transition: all 0.25s ease;
  border-radius: 1.5px;
}
.faq .plus-minus-toggle.collapsed:before {
  transform: rotate(0deg);
  opacity: 1;
}
.faq .plus-minus-toggle.collapsed:after {
  transform: rotate(90deg);
  opacity: 1;
}
.faq .plus-minus-toggle:not(.collapsed):after {
  transform: rotate(0deg);
  opacity: 1;
}
.faq .plus-minus-toggle:not(.collapsed):before {
  opacity: 0;
}

.info-grid {
  position: relative;
}
.info-grid_p {
  padding: 120px 0;
}
@media screen and (max-width: 1200px) {
  .info-grid_p {
    padding: 90px 0;
  }
}
.info-grid_blue {
  --angle-height: 270px;
  background: #0095EF url("../images/blue-bg-wave2@2x.jpg") no-repeat center center;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
  padding-top: calc(var(--angle-height) + 80px);
}
@media screen and (max-width: 1600px) {
  .info-grid_blue {
    --angle-height: 170px;
  }
}
@media screen and (max-width: 1200px) {
  .info-grid_blue {
    --angle-height: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .info-grid_blue {
    --angle-height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .info-grid_blue {
    --angle-height: 64px;
  }
}
.info-grid_blue:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: calc(var(--angle-height) + 2px);
  pointer-events: none;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.info-grid__subhead {
  color: var(--color-blue-300);
}
.info-grid__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 16px;
}
@media screen and (max-width: 1024px) {
  .info-grid__list {
    gap: 64px 32px;
  }
}
@media screen and (max-width: 767px) {
  .info-grid__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
  }
}
.info-grid__list_top {
  border-top: 1px solid rgba(3, 213, 255, 0.5);
  margin-top: 56px;
  padding-top: 48px;
}
.info-grid__item {
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .info-grid__item {
    gap: 16px;
  }
}
.info-grid__item_pr {
  padding-right: 56px;
}
@media screen and (max-width: 1200px) {
  .info-grid__item_pr {
    padding-right: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .info-grid__item_pr {
    padding-right: 0;
  }
}
.team {
  padding: 120px 0 104px;
}
@media screen and (max-width: 1024px) {
  .team {
    padding: 90px 0 24px;
  }
}
.team__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 16px;
}
@media screen and (max-width: 1024px) {
  .team__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 800px) {
  .team__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 540px) {
  .team__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.team__list_mt {
  margin-top: 40px;
}
.team__item {
  background-color: #D2DEE6;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.team__item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/company/team-bg-hover@2x.jpg") no-repeat center center;
  transition: 0.2s;
  opacity: 0;
}
.team__item:hover:before {
  opacity: 1;
}
.team__item:hover .team__item-btn {
  background-color: currentColor;
}
.team__item:hover .team__item-btn svg {
  fill: var(--color-blue-600);
}
.team__item:hover .team__item-photo {
  position: relative;
}
.team__item:hover .team__item-photo img {
  transform: scale(1.05);
}
.team__item-photo {
  position: relative;
}
.team__item-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3.08/4;
  object-fit: cover;
  transition: 1s;
}
.team__item-content {
  gap: 6px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(10, 15, 30, 0) 0%, rgba(10, 15, 30, 0.8) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 170px;
  color: var(--color-white);
  justify-content: flex-end;
}
.team__item-pos {
  font-size: 14px;
  line-height: 1.5;
}
.team__item-btn {
  color: var(--color-white);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 16px;
  right: 16px;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s;
}
.team__item-btn svg {
  fill: var(--color-white);
  transition: 0.2s;
}

.team-modal {
  --f-html-bg: #fff;
  --f-html-padding: 16px;
  border-radius: var(--radius);
  max-width: 1300px;
  width: 100%;
  display: none;
}
@media screen and (max-width: 767px) {
  .team-modal {
    max-width: 420px;
  }
}
.team-modal__row {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .team-modal__row {
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .team-modal__row {
    flex-direction: column;
  }
}
.team-modal__content {
  flex: 1 1 100%;
}
.team-modal__content p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .team-modal__content p {
    font-size: 14px;
  }
}
.team-modal__content p:last-child {
  margin-bottom: 0;
}
.team-modal__content-wrap {
  max-width: 690px;
  padding: 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .team-modal__content-wrap {
    padding-left: 16px;
    gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .team-modal__content-wrap {
    padding-right: 32px;
  }
}
.team-modal__image {
  flex: 0 0 510px;
}
@media screen and (max-width: 1200px) {
  .team-modal__image {
    flex: 0 0 460px;
  }
}
@media screen and (max-width: 1024px) {
  .team-modal__image {
    flex: 0 0 40%;
  }
}
@media screen and (max-width: 767px) {
  .team-modal__image {
    flex: auto;
    order: -1;
  }
}
.team-modal__image .team__item:before {
  opacity: 1;
}
.team-modal__image .team__item:hover .team__item-btn {
  background-color: transparent;
}
.team-modal__image .team__item:hover .team__item-btn svg {
  fill: #fff;
}
.team-modal__image .team__item-photo img {
  transform: none !important;
}
.team-modal__image .team__item-btn {
  transform: rotate(45deg);
}
.team-modal__image .team__item-btn:hover {
  background-color: #fff !important;
}
.team-modal__image .team__item-btn:hover svg {
  fill: var(--color-blue-600) !important;
}
.team-modal .f-button {
  display: none;
}

.callout {
  background-color: #F2F8FC;
  border-radius: 8px;
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  margin-top: 40px;
  max-width: 812px;
}
.callout__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.callout__logo {
  margin-bottom: 28px;
}
.callout__title {
  font-size: 32px;
  font-weight: 432;
  line-height: 110%; /* 35.2px */
  letter-spacing: 0.32px;
}
.callout h3 {
  margin: 0 0 4px;
}
.callout p {
  opacity: 0.8;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout a {
  color: var(--color-blue-600);
}

.services-intro {
  padding: 88px 0;
  position: relative;
}
.services-intro .container-bottom-border {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
}
.services-intro .container-bottom-border .bottom-border {
  background: url("../images/mega-menu-divider.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 100%;
  height: 3px;
}
.services-intro__header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 8px;
  margin-bottom: 48px;
}
.services-intro__header-left {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
}
.services-intro__header-left .eyebrow {
  margin: 0;
  font-weight: 620;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
}
.services-intro__header-right {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}
.services-intro__title {
  font-family: "Season VF", sans-serif;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.64px;
  color: var(--color-dark, #0a0f1e);
  margin: 0;
}
.services-intro__title br {
  display: block;
}
.services-intro__desc {
  font-family: "Season VF", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.36px;
  color: #373737;
  margin: 0;
  max-width: 560px;
}
.services-intro__image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.services-intro__image .img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-intro__cards {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 0.5px solid #d3d3d3;
  min-height: 325px;
}
.services-intro__card {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 24px 40px;
  position: relative;
  border-top: 2px solid transparent;
  overflow: hidden;
  text-decoration: none;
}
.services-intro__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/services-intro-hover.jpg");
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s ease;
  opacity: 0;
  background-size: cover;
}
.services-intro__card .button-link {
  margin-top: 24px;
  position: relative;
  z-index: 999;
}
.services-intro__card .button-link svg rect {
  transition: stroke 0s;
}
@media (min-width: 1025px) {
  .services-intro__card:hover {
    background: var(--color-blue-600, #076ee5);
    border-top-color: #03d5ff;
  }
  .services-intro__card:hover::before {
    opacity: 1;
  }
  .services-intro__card:hover .services-intro__card-label {
    color: #03D5FF;
  }
  .services-intro__card:hover .services-intro__card-title {
    color: #ffffff;
  }
  .services-intro__card:hover .services-intro__card-description {
    color: #ffffff;
  }
  .services-intro__card:hover .services-intro__card-icon svg path {
    fill: #03D5FF;
  }
  .services-intro__card:hover .button-link {
    background: transparent;
  }
  .services-intro__card:hover .button-link svg rect {
    fill: #03D5FF;
    stroke: #03D5FF;
  }
  .services-intro__card:hover .button-link svg path {
    fill: #076EE5;
  }
  .services-intro__card:hover .button-link span {
    color: #fff;
    text-decoration: underline;
  }
}
@media (max-width: 1024px) {
  .services-intro__card:hover .button-link svg rect {
    stroke: var(--color-blue-600);
  }
}
.services-intro__card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 0 0;
  position: relative;
  z-index: 1;
}
.services-intro__card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.services-intro__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.services-intro__card-icon svg path {
  transition: all 0.3s ease;
}
.services-intro__card-label {
  font-family: "Season VF", sans-serif;
  font-size: 18px;
  font-weight: 620;
  line-height: 1.5;
  letter-spacing: 0.36px;
  color: var(--color-blue-600, #076ee5);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .services-intro__card-label {
    font-size: 15px;
  }
}
.services-intro__card-title {
  font-family: "Season VF", sans-serif;
  font-size: 25px;
  line-height: 120%;
  letter-spacing: 0.25px;
  color: #fff;
  margin: 0;
  padding-right: 24px;
  transition: all 0.3s ease;
}
.services-intro__card-title--dark {
  color: var(--color-dark, #0a0f1e);
}
.services-intro__card-description {
  color: var(--text, #373737);
  font-size: 16px;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  margin: 20px 0 0 0;
  max-width: 350px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .services-intro {
    padding: 64px 0;
  }
  .services-intro__title {
    font-size: 46px;
    letter-spacing: -0.38px;
  }
  .services-intro__desc {
    font-size: 16px;
  }
  .services-intro__image {
    aspect-ratio: 16/9;
  }
  .services-intro__cards {
    flex-wrap: wrap;
    min-height: unset;
  }
  .services-intro__card {
    flex: 1 1 calc(50% - 0px);
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .services-intro .container-bottom-border {
    padding: 0;
  }
  .services-intro {
    padding: 48px 0;
  }
  .services-intro__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 0;
  }
  .services-intro__header .button {
    width: 100%;
  }
  .services-intro__header .button span {
    width: 100%;
    text-align: center;
  }
  .services-intro__desc {
    font-size: 15px;
  }
  .services-intro__header-left, .services-intro__header-right {
    flex: unset;
    width: 100%;
  }
  .services-intro__title {
    max-width: 300px;
    font-size: 38px;
  }
  .services-intro__title br {
    display: none;
  }
  .services-intro__image {
    aspect-ratio: 348/240;
    margin-bottom: 24px;
  }
  .services-intro__cards {
    flex-direction: column;
    border: 0;
  }
  .services-intro__card {
    flex: unset;
    width: 100%;
    padding: 24px 72px 24px 0;
    border-bottom: 0.5px solid var(--Divider, #CDDAE0);
    position: relative;
  }
  .services-intro__card:last-child {
    border: 0;
  }
  .services-intro__card .button-link {
    position: absolute;
    margin: 0;
    top: 50%;
    right: 24px;
    margin-top: -18px;
  }
  .services-intro__card .button-link svg {
    width: 36px;
    height: auto;
  }
  .services-intro__card .button-link svg rect {
    fill: transparent;
  }
  .services-intro__card .button-link svg path {
    fill: var(--color-blue-600);
  }
  .services-intro__card .button-link span {
    display: none;
  }
}
.services-intro.services-intro-no-image .container-bottom-border {
  display: none;
}
.services-intro.services-intro-no-image .services-intro__header-left {
  flex: initial;
  width: 100%;
}
.services-intro.services-intro-no-image .services-intro__header-right {
  flex: initial;
  width: 420px;
  min-width: 420px;
}
.services-intro.services-intro-no-image .services-intro__cards {
  flex-wrap: wrap;
  border: 0;
}
.services-intro.services-intro-no-image .services-intro__cards .services-intro__card {
  border-top: 0.5px solid #d3d3d3;
  flex: initial;
  width: 33.33333%;
  padding: 40px 20px 48px 20px;
}
.services-intro.services-intro-no-image .services-intro__cards .services-intro__card .button-link {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .services-intro.services-intro-no-image .services-intro__header {
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
  }
  .services-intro.services-intro-no-image .services-intro__header > div {
    width: 100% !important;
    min-width: 100%;
  }
  .services-intro.services-intro-no-image .services-intro__cards .services-intro__card {
    width: 100%;
    padding: 24px 72px 24px 0;
  }
  .services-intro.services-intro-no-image .services-intro__cards .services-intro__card .services-intro__card-description {
    display: none;
  }
  .services-intro.services-intro-no-image .services-intro__cards .services-intro__card .button-link {
    margin-top: -18px;
    right: 0;
  }
}

.technology-partners {
  padding: 64px 0;
}
.technology-partners .services-intro__desc {
  max-width: 700px;
}
.technology-partners .services-intro__header-right {
  text-align: right;
  min-width: 320px !important;
  width: 320px !important;
}
@media (max-width: 767px) {
  .technology-partners {
    padding: 32px 0;
  }
  .technology-partners .services-intro__header-right {
    text-align: left;
  }
}

.logo-garden-section {
  position: relative;
  z-index: 2;
  gap: 0px;
  display: flex;
  align-items: center;
  opacity: 0;
  padding: 40px 0;
  transition: opacity 0.5s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.2' height='13.2'%3E%3Crect width='2' height='2' fill='%23D9D9D9'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 13.2px 13.2px;
}
.logo-garden-section.loaded {
  opacity: 1;
}
.logo-garden-section .marquee-slider-wrapper {
  display: flex;
  position: relative;
  z-index: 2;
}
.logo-garden-section .marquee-slider-wrapper .slider-logos {
  display: flex;
  align-items: center;
  gap: 0px !important;
  margin: 0 !important;
}
.logo-garden-section .marquee-slider-wrapper .slider-logos .slider-logo {
  background: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-top: 0.5px solid var(--Divider, #CDDAE0);
  border-right: 0.5px solid var(--Divider, #CDDAE0);
  border-bottom: 0.5px solid var(--Divider, #CDDAE0);
  width: 328px;
  min-width: 328px;
  height: 332px;
}
.logo-garden-section .marquee-slider-wrapper .slider-logos .slider-logo img {
  display: block;
  width: auto;
  height: 200px;
  margin: auto;
}
@media (max-width: 767px) {
  .logo-garden-section {
    padding: 32px 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.2' height='13.2'%3E%3Crect width='2' height='2' fill='%23D9D9D9'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 6px 6px;
  }
  .logo-garden-section .slider-logos {
    min-width: initial !important;
    flex-wrap: wrap !important;
    border-top: 0.5px solid var(--Divider, #CDDAE0);
  }
  .logo-garden-section .slider-logos .slider-logo {
    width: 50% !important;
    min-width: 1px !important;
    height: auto !important;
    border-top: 0;
  }
  .logo-garden-section .slider-logos .slider-logo img {
    height: auto !important;
    width: 80% !important;
  }
}

.industry-tabs {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f2f8fc, rgba(242, 248, 252, 0));
}
.industry-tabs .eyebrow {
  margin: 0;
  font-weight: 620;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
}
.industry-tabs__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 868px;
  margin: 0 auto 48px;
}
.industry-tabs__title {
  font-size: 64px;
  font-weight: 420;
  line-height: 100%;
  letter-spacing: -0.64px;
  color: #0a0f1e;
  margin: 0;
}
.industry-tabs__desc {
  font-size: 18px;
  font-weight: 520;
  line-height: 160%;
  letter-spacing: 0.36px;
  color: #373737;
  max-width: 681px;
  margin: 0;
  padding-top: 16px;
}
.industry-tabs__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.industry-tabs__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border-radius: 105px;
  border: none;
  background: #fff;
  box-shadow: 0px 6px 8px rgba(16, 48, 64, 0.05);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.52;
  letter-spacing: 0.3px;
  color: #373737;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  font-family: "Season VF", sans-serif;
}
.industry-tabs__tab:hover:not(.is-active) {
  box-shadow: 0px 6px 16px rgba(16, 48, 64, 0.12);
  color: #0a0f1e;
}
.industry-tabs__tab.is-active {
  background: #076ee5;
  color: #fff;
  box-shadow: none;
}
.industry-tabs__panels {
  position: relative;
}
.industry-tabs__panel {
  display: none;
}
.industry-tabs__panel.is-active {
  display: block;
}
.industry-tabs__panel-inner {
  display: flex;
  min-height: 645px;
  border-radius: 8px;
  overflow: hidden;
  background: #717c8d;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.industry-tabs__panel-inner::before {
  content: "";
  position: absolute;
  border-radius: 1205px;
  left: 0;
  width: 70%;
  bottom: 0;
  height: 50%;
  background: rgba(50, 59, 68, 0.4);
  mix-blend-mode: multiply;
  filter: blur(75px);
  pointer-events: none;
  z-index: 0;
}
.industry-tabs__panel-inner > * {
  position: relative;
  z-index: 1;
}
.industry-tabs__panel-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
  padding: 58px 40px 64px 61px;
  width: 44%;
}
.industry-tabs__panel-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0 14px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-weight: 650;
  line-height: 27px;
  letter-spacing: 0.36px;
  color: #fff;
  margin-bottom: auto;
}
.industry-tabs__panel-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.industry-tabs__panel-title {
  font-size: 32px;
  font-weight: 420;
  line-height: 120%;
  letter-spacing: 0.32px;
  color: #fff;
  margin: 0;
  max-width: 382px;
}
.industry-tabs__panel-title br {
  display: none;
}
.industry-tabs__panel-desc {
  font-size: 16px;
  font-weight: 520;
  line-height: 150%;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 394px;
  margin: 0;
}
.industry-tabs__panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.52;
  letter-spacing: 0.32px;
  transition: opacity 0.2s ease;
}
.industry-tabs__panel-cta svg {
  width: 36px;
  min-width: 36px;
  height: auto;
}
.industry-tabs__panel-cta svg rect {
  stroke: #fff;
  opacity: 0.4;
}
.industry-tabs__panel-cta:hover svg rect {
  stroke: rgba(255, 255, 255, 0.4);
  fill: #03D5FF;
  opacity: 1;
}
.industry-tabs__panel-cta:hover svg path {
  fill: #076EE5;
}
.industry-tabs__panel-media {
  position: relative;
  overflow: hidden;
  margin: 16px 16px 16px 0;
  width: 56%;
}
.industry-tabs__panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.industry-tabs__panel-testimonial {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  padding: 32px 64px 32px 40px;
  z-index: 2;
}
.industry-tabs__panel-testimonial p {
  font-size: 19px;
  font-weight: 432;
  line-height: 180%;
  letter-spacing: 0.19px;
  color: #fff;
  margin: 0;
  font-variation-settings: "wght" 432, "slnt" 0, "SERF" 44;
}
.industry-tabs__panel.is-entering {
  animation: verticals-fade-in 0.35s ease forwards;
}
@media (max-width: 1024px) {
  .industry-tabs {
    padding: 80px 0;
  }
  .industry-tabs__title {
    font-size: 46px;
  }
  .industry-tabs__tab {
    padding: 14px 24px;
    font-size: 14px;
    width: calc(50% - 4px);
  }
  .industry-tabs__panel-inner {
    aspect-ratio: unset;
    grid-template-columns: 1fr;
    min-height: 600px;
  }
  .industry-tabs__panel-info {
    min-height: 320px;
    padding-left: 32px;
  }
  .industry-tabs__panel-media {
    min-height: 320px;
  }
}
@media (max-width: 767px) {
  .industry-tabs {
    padding: 64px 0 32px;
  }
  .industry-tabs__header {
    gap: 16px;
    margin-bottom: 40px;
  }
  .industry-tabs__title {
    font-size: 38px;
  }
  .industry-tabs__title br {
    display: none;
  }
  .industry-tabs__desc {
    font-size: 16px;
    padding: 0;
  }
  .industry-tabs__tabs {
    margin-bottom: 48px;
  }
  .industry-tabs__tab {
    padding: 14px 20px;
    font-size: 15px;
    flex-shrink: 0;
    width: 100%;
    font-weight: 650;
    line-height: 152%;
    letter-spacing: 0.3px;
  }
  .industry-tabs__panel-info {
    padding: 100px 24px 40px;
  }
  .industry-tabs__panel-tag {
    left: 24px;
    top: 24px;
  }
  .industry-tabs__panel-title {
    font-size: 31px;
  }
  .industry-tabs__panel-title br {
    display: block;
  }
  .industry-tabs__panel-desc {
    max-width: 100%;
  }
  .industry-tabs__panel-testimonial {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 24px;
  }
  .industry-tabs__panel-testimonial p {
    font-size: 16px;
  }
  .industry-tabs__panel-inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .industry-tabs__panel-inner > div {
    width: 100%;
  }
  .industry-tabs__panel-media {
    margin: 0;
    padding: 20px;
  }
  .industry-tabs__panel-media img {
    left: 20px;
    top: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }
  .industry-tabs__panel-testimonial {
    display: none;
  }
  .industry-tabs__panel-info {
    padding: 40px 20px 40px;
  }
  .industry-tabs__panel-testimonial-mobile {
    display: block !important;
    position: relative;
    margin-top: 24px;
    padding: 32px 24px;
    left: 0;
    top: 0;
    background: #000;
  }
  .industry-tabs__panel-testimonial-mobile p {
    font-size: 17px;
    line-height: 180%; /* 30.6px */
    letter-spacing: 0.17px;
  }
}

@keyframes verticals-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* AOS */
.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line__inner {
  display: block;
}

.homepage-hero__title[data-aos=hero-lines] .hero-line__inner {
  transform: translateY(110%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.homepage-hero__title[data-aos=hero-lines].aos-animate .hero-line__inner {
  transform: translateY(0);
}

.homepage-hero__title[data-aos=hero-lines] .hero-line:nth-child(1) .hero-line__inner {
  transition-delay: 0s;
}

.homepage-hero__title[data-aos=hero-lines] .hero-line:nth-child(2) .hero-line__inner {
  transition-delay: 0.12s;
}

/* Hero Image Reveal */
.csd-hero__image[data-aos=hero-img-reveal] img {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.06);
  transform-origin: center;
  transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, transform;
}

.csd-hero__image[data-aos=hero-img-reveal][data-edge=right] img {
  clip-path: inset(0 0 0 100%);
}

.csd-hero__image[data-aos=hero-img-reveal][data-edge=top] img {
  clip-path: inset(0 0 100% 0);
}

.csd-hero__image[data-aos=hero-img-reveal][data-edge=bottom] img {
  clip-path: inset(100% 0 0 0);
}

.csd-hero__image[data-aos=hero-img-reveal].aos-animate img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

/* Stats */
.stats__list[data-aos=stats-reveal] .stats__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.stats__list[data-aos=stats-reveal].aos-animate .stats__item {
  opacity: 1;
  transform: translateY(0);
}

.stats__list[data-aos=stats-reveal] .stats__item:nth-child(1) {
  transition-delay: 0ms;
}

.stats__list[data-aos=stats-reveal] .stats__item:nth-child(2) {
  transition-delay: 80ms;
}

.stats__list[data-aos=stats-reveal] .stats__item:nth-child(3) {
  transition-delay: 160ms;
}

/* 
Without JS, this does not apply, so the blue background shows normally.
Only hide the blue shape once JS confirms animations are active.
*/
.js-anim-ready .homepage-hero.csd-hero[data-aos=hero-blue-wipe]::before {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}

/* 
AOS adds .aos-animate when the hero is triggered.
This reveals the blue shape left to right.
*/
.js-anim-ready .homepage-hero.csd-hero[data-aos=hero-blue-wipe].aos-animate::before {
  clip-path: inset(0 0 0 0);
}

[data-aos=hero-img-reveal] img {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.06);
  transform-origin: center;
  transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, transform;
}

[data-aos=hero-img-reveal][data-edge=right] img {
  clip-path: inset(0 0 0 100%);
}

[data-aos=hero-img-reveal][data-edge=top] img {
  clip-path: inset(0 0 100% 0);
}

[data-aos=hero-img-reveal][data-edge=bottom] img {
  clip-path: inset(100% 0 0 0);
}

[data-aos=hero-img-reveal].aos-animate img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

[data-aos=hero-img-reveal] {
  --shadow-opacity: 0;
}

[data-aos=hero-img-reveal]::before {
  opacity: var(--shadow-opacity) !important;
  transition: opacity 0.5s ease-out;
  transition-delay: 0.9s;
}

[data-aos=hero-img-reveal].aos-animate {
  --shadow-opacity: 0.6;
}

.homepage-hero .csd-hero__image[data-aos=hero-img-reveal] iframe {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  transition-delay: 0.9s;
}
.homepage-hero .csd-hero__image[data-aos=hero-img-reveal].aos-animate iframe {
  opacity: 1;
}

/* Featured Blocks */
.feature-block .feature-block__media-wrapper .media-reveal {
  border-radius: 8px;
  overflow: hidden;
}

.media-reveal[data-aos=feature-media-reveal] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: clip-path;
}

.media-reveal[data-aos=feature-media-reveal] img {
  transform: scale(1.035);
  transform-origin: center;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.media-reveal[data-aos=feature-media-reveal].aos-animate {
  clip-path: inset(0 0 0 0);
}

.media-reveal[data-aos=feature-media-reveal].aos-animate img {
  transform: scale(1);
}

.hero-clear__image {
  background-color: transparent;
}

.page-404__bg {
  background: url("../images/bg-404@2x.jpg") no-repeat top center;
  background-size: cover;
  width: 100%;
  min-height: 1075px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .page-404__bg {
    min-height: 100vh;
    background-image: url("../images/bg-404-mobile@2x.jpg");
    align-items: flex-start;
    padding-top: 138px;
    background-position-y: 40px;
  }
}
.page-404__wrapper {
  width: 100%;
}
.page-404__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  color: var(--color-white);
  width: 60%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-404__content {
    width: 100%;
    align-items: center;
    gap: 16px;
  }
}
.page-404__title {
  font-size: 300px;
  line-height: 92%;
  font-variation-settings: var(--fvs-title);
  letter-spacing: -3px;
}
@media screen and (max-width: 767px) {
  .page-404__title {
    font-size: 93px;
    line-height: 92%; /* 85.56px */
    letter-spacing: -0.93px;
  }
}
.page-404__text {
  margin: 0;
  color: #FFF;
}
.page-404__text br {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-404__text br {
    display: inline-block;
  }
}
.page-404__btn .button span {
  padding: 0 45px 0 35px;
}
.page-404 .footer-cta-wrapper {
  display: none;
}
.page-404 .site-footer {
  margin-top: -135px;
}

.page-service-overview .why-nuharbor,
.page-services .why-nuharbor,
.page-id-84 .why-nuharbor {
  background-position: center bottom;
  background-size: 1874px 820px;
  background-repeat: no-repeat;
  min-height: 1151px;
}
@media (max-width: 767px) {
  .page-service-overview .why-nuharbor,
  .page-services .why-nuharbor,
  .page-id-84 .why-nuharbor {
    background-image: none !important;
    min-height: 0;
    padding-bottom: 236px;
  }
  .page-service-overview .why-nuharbor .h2,
  .page-services .why-nuharbor .h2,
  .page-id-84 .why-nuharbor .h2 {
    max-width: 340px;
  }
  .page-service-overview .why-nuharbor img,
  .page-services .why-nuharbor img,
  .page-id-84 .why-nuharbor img {
    margin-top: 40px;
  }
}
.page-service-overview .eyebrow,
.page-services .eyebrow,
.page-id-84 .eyebrow {
  text-align: center;
}
.page-service-overview .feature-block__headline,
.page-services .feature-block__headline,
.page-id-84 .feature-block__headline {
  color: var(--color-blue-950);
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.48px;
  font-variation-settings: "wght" 400, "slnt" 0, "SERF" 44;
}
@media (max-width: 1024px) {
  .page-service-overview .feature-block__headline,
  .page-services .feature-block__headline,
  .page-id-84 .feature-block__headline {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.4px;
  }
}
.page-service-overview .feature-block__title-wrapper,
.page-services .feature-block__title-wrapper,
.page-id-84 .feature-block__title-wrapper {
  gap: 20px;
}
@media (max-width: 1024px) {
  .page-service-overview .feature-block__title-wrapper,
  .page-services .feature-block__title-wrapper,
  .page-id-84 .feature-block__title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-service-overview .feature-block__title-wrapper img,
.page-services .feature-block__title-wrapper img,
.page-id-84 .feature-block__title-wrapper img {
  height: auto;
}
@media (max-width: 767px) {
  .page-service-overview .entry-content p + p,
  .page-services .entry-content p + p,
  .page-id-84 .entry-content p + p {
    margin-top: 24px;
  }
}

@media (min-width: 1025px) {
  .page-podcast #podcast-list .card__feature-img {
    max-width: 204px;
    aspect-ratio: 1;
  }
}
.page-podcast #podcast-list .card__bottom p {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .page-podcast .headline--action {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .page-podcast .autocomplete-post-filters {
    order: 1;
    margin-bottom: 0;
  }
  .page-podcast .latest-episodes {
    margin-top: 0;
    padding-top: 0 !important;
  }
}
.page-podcast .featured-resource-card__wrapper {
  background-image: url(../images/featured-bg-resource@2x.jpg);
}

.podcast__hero {
  padding-bottom: 350px;
  margin-bottom: -286px;
  background-image: url("../images/gated-webinar-bg.jpg");
}
@media screen and (max-width: 1024px) {
  .podcast__hero {
    padding-bottom: 250px;
    margin-bottom: -210px;
  }
}
@media screen and (max-width: 767px) {
  .podcast__hero {
    padding-bottom: 180px;
    margin-bottom: -140px;
  }
}
.podcast__header {
  --podcast-h-img: 140px;
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .podcast__header {
    --podcast-h-img: 120px;
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .podcast__header {
    --podcast-h-img: 90px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .podcast__header {
    --podcast-h-img: 72px;
  }
}
.podcast__header-image {
  width: var(--podcast-h-img);
  height: var(--podcast-h-img);
  flex: 0 0 var(--podcast-h-img);
  background-color: var(--color-white);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.podcast__header-info {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1200px) {
  .podcast__header-info {
    gap: 10px;
  }
}
.podcast__header-date {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .podcast__header-date {
    font-size: 15px;
  }
}
.podcast__header-date span {
  width: 0;
  height: 1.44em;
  display: block;
  opacity: 0.5;
  border: 1px solid #03D5FF;
}
.podcast__header-title {
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .podcast__header-title {
    font-size: 44px;
  }
}
@media screen and (max-width: 1024px) {
  .podcast__header-title {
    font-size: 38px;
  }
}
.podcast__video {
  position: relative;
  z-index: 2;
}
.podcast__video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 560/315;
  background-color: var(--color-grey);
}
.podcast__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.podcast__content {
  padding: 80px 0 120px;
  position: relative;
  z-index: 1;
  background-color: #FFF;
}
@media screen and (max-width: 1200px) {
  .podcast__content {
    padding: 64px 0 90px;
  }
}
@media screen and (max-width: 1024px) {
  .podcast__content {
    padding: 48px 0 64px;
  }
}
.podcast__content_bg {
  padding-top: 0;
}
.podcast__content_bg .podcast__content-row {
  background-color: var(--color-white);
  padding: 48px;
  border-radius: var(--radius);
}
@media screen and (max-width: 1024px) {
  .podcast__content_bg .podcast__content-row {
    padding: 0;
  }
}
.podcast__content-row {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .podcast__content-row {
    flex-direction: column;
    gap: 48px;
  }
}
.podcast__article {
  display: flex;
  flex-direction: column;
}
.podcast__article_pr {
  padding-right: 64px;
}
@media screen and (max-width: 1024px) {
  .podcast__article_pr {
    padding-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .podcast__article_pr {
    padding-right: 0;
  }
}
.podcast__article .entry-content {
  min-width: initial;
}
.podcast__article .entry-content p:last-child {
  margin-bottom: 0;
}
.podcast__article_gap {
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .podcast__article_gap {
    gap: 40px;
  }
}
.podcast__timecodes-heading {
  border-bottom: 1px solid #000000;
  padding-bottom: 12px;
}
.podcast__timecode {
  display: flex;
  gap: 16px;
  font-size: 16px;
  line-height: 1.5;
  padding: 8px 0;
}
@media screen and (max-width: 767px) {
  .podcast__timecode {
    font-size: 15px;
  }
}
.podcast__timecode:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
.podcast__timecode a {
  color: var(--color-blue-600);
  text-decoration: none;
  transition: 0.2s;
  border-bottom: 1px solid transparent;
}
.podcast__timecode a:hover {
  border-color: currentColor;
}
.podcast__timecode-time {
  flex: 0 0 76px;
  width: 76px;
}
@media screen and (max-width: 1024px) {
  .podcast__timecode-time {
    flex: 0 0 56px;
    width: 56px;
  }
}
.podcast__sidebar {
  flex: 0 0 524px;
}
@media screen and (max-width: 1200px) {
  .podcast__sidebar {
    flex: 0 0 400px;
  }
}
@media screen and (max-width: 1024px) {
  .podcast__sidebar {
    flex: auto;
    order: -1;
  }
}
.podcast__sidebar-wrap {
  background: var(--color-grey);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.podcast__sidebar-wrap_gap {
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .podcast__sidebar-wrap_gap {
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .podcast__sidebar-wrap {
    padding: 24px;
  }
}
.podcast__widget iframe {
  min-height: 165px;
}
.podcast:last-child {
  margin-bottom: 0;
}

.cases {
  padding: 80px 0 350px;
}
@media screen and (max-width: 767px) {
  .cases {
    padding: 0 0 253px;
  }
}
.cases__wrap {
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .cases__wrap {
    gap: 40px;
  }
}
.cases__top {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .cases__top {
    gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .cases__title {
    font-size: 44px;
  }
}
@media screen and (max-width: 1024px) {
  .cases__title {
    font-size: 38px;
  }
}
.cases__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  .cases__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .cases__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.cases__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: #393939;
}
.cases__item:hover .cases__item-img img {
  transform: scale(1.04);
}
.cases__item:hover .cases__item-img:after {
  opacity: 1;
  height: 100%;
}
.cases__item:hover .button-link {
  color: var(--color-white);
  text-decoration: underline;
}
.cases__item:hover .button-link svg rect {
  fill: var(--color-white);
}
.cases__item:hover .button-link svg path {
  fill: var(--color-blue-600);
}
.cases__item-img {
  position: relative;
  height: 100%;
}
.cases__item-img:before, .cases__item-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s;
}
.cases__item-img:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 72.01%);
  height: 100%;
  backdrop-filter: blur(2px);
  transition: all 0.4s ease-out;
}
.cases__item-img:after {
  background: linear-gradient(167.38deg, #076EE5 7.41%, rgba(8, 71, 153, 0) 76.37%);
  opacity: 0;
  height: 50%;
  transition: all 0.4s ease-out;
}
.cases__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 415/578;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}
@media screen and (max-width: 767px) {
  .cases__item-img img {
    aspect-ratio: 350/400;
  }
}
.cases__item-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(170.14deg, rgba(0, 0, 0, 0.7) 11.78%, rgba(0, 0, 0, 0) 41.13%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}
@media screen and (max-width: 1024px) {
  .cases__item-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .cases__item-title {
    font-size: 32px;
  }
}
.cases__item-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 32px;
  color: var(--color-white);
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .cases__item-content {
    padding: 32px 24px;
  }
}
.cases__item-content .pill span {
  height: 26px;
}
.cases__item-btn {
  margin-top: auto;
}

@media (max-width: 767px) {
  .page-case-studies .hero-clear {
    padding-top: 48px;
  }
}
@media (min-width: 1025px) {
  .page-case-studies .hero-clear__title {
    font-size: 84px;
    font-weight: 420;
    line-height: 92%; /* 77.28px */
    letter-spacing: -0.84px;
    font-variation-settings: var(--fvs-h1-5);
  }
}
@media (max-width: 1200px) {
  .page-case-studies .hero-clear__image {
    height: 147px !important;
  }
}
@media (max-width: 1024px) {
  .page-case-studies .filters {
    order: -1;
  }
}

@media screen and (max-width: 1200px) {
  .service-page .section {
    --angle-height: 122px;
  }
}
@media screen and (max-width: 767px) {
  .service-page .section {
    --angle-height: 70px;
  }
}
.service-page .stats__wrap {
  padding-top: 44px;
}
.service-page .img-row {
  margin-top: 64px;
}
@media screen and (max-width: 1200px) {
  .service-page .img-row {
    margin-top: 40px;
  }
}

.service-subtitle {
  font-weight: bold;
  color: var(--color-blue-300);
}

@media screen and (max-width: 1200px) {
  .service-text p br {
    display: none;
  }
}
.service-text p:last-child {
  margin-bottom: 0;
}

.service-text:not(.service-card__text) p {
  color: rgba(255, 255, 255, 0.9);
}

.service-checkboxes {
  --service-icons-cols: 5;
  display: grid;
  grid-template-columns: repeat(var(--service-icons-cols), minmax(0, 1fr));
  gap: 0;
}
@media screen and (max-width: 767px) {
  .service-checkboxes {
    gap: 32px 20px;
  }
}
.service-checkboxes_m {
  margin: 56px 0;
}
@media screen and (max-width: 1023px) {
  .service-checkboxes_m {
    margin: 40px 0;
  }
}
.service-checkboxes_border-top {
  border-top: 1px solid #03A2EA;
}
.service-checkboxes.col-5 {
  --service-icons-cols: 5;
}
@media screen and (max-width: 767px) {
  .service-checkboxes.col-5 {
    --service-icons-cols: 3;
  }
}
@media screen and (max-width: 480px) {
  .service-checkboxes.col-5 {
    --service-icons-cols: 2;
  }
}
.service-checkboxes.col-6 {
  --service-icons-cols: 6;
}
@media screen and (max-width: 1200px) {
  .service-checkboxes.col-6 {
    --service-icons-cols: 4;
  }
}
@media screen and (max-width: 767px) {
  .service-checkboxes.col-6 {
    --service-icons-cols: 3;
  }
}
@media screen and (max-width: 480px) {
  .service-checkboxes.col-6 {
    --service-icons-cols: 2;
  }
}
.service-checkboxes.col-7 {
  --service-icons-cols: 7;
}
@media screen and (max-width: 1200px) {
  .service-checkboxes.col-7 {
    --service-icons-cols: 4;
  }
}
@media screen and (max-width: 767px) {
  .service-checkboxes.col-7 {
    --service-icons-cols: 3;
  }
}
@media screen and (max-width: 480px) {
  .service-checkboxes.col-7 {
    --service-icons-cols: 2;
  }
}
.service-checkboxes__item {
  gap: 16px;
  color: var(--color-white);
  line-height: 1.3;
  padding: 32px 32px 32px 0;
}
@media screen and (max-width: 1023px) {
  .service-checkboxes__item {
    padding: 16px 16px 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .service-checkboxes__item {
    padding: 16px 16px 0 0;
  }
}
.service-checkboxes__text {
  font-size: 20px;
  letter-spacing: 0.01em;
  font-variation-settings: "wght" 470, "slnt" 0, "SERF" 44;
}
@media screen and (max-width: 1023px) {
  .service-checkboxes__text {
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
  }
}
@media screen and (max-width: 767px) {
  .service-checkboxes__text br {
    display: none;
  }
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 56px;
  height: 384px;
}
@media screen and (max-width: 1200px) {
  .service-card {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .service-card {
    flex-direction: column;
    gap: 32px;
    height: auto;
  }
}
.service-card_white {
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--color-blue-950);
  text-decoration: none;
}
.service-card__image {
  flex: 0 0 45.5%;
  min-height: 336px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .service-card__image {
    min-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .service-card__image {
    min-height: 240px;
  }
}
@media screen and (max-width: 530px) {
  .service-card__image {
    min-height: 180px;
  }
}
.service-card__image img {
  transition: all 0.4s ease-in-out;
}
.service-card__content {
  padding: 24px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .service-card__content {
    padding: 24px 0;
  }
}
@media screen and (max-width: 767px) {
  .service-card__content {
    padding: 0;
  }
  .service-card__content .g-24 {
    gap: 12px;
  }
}
.service-card__text {
  color: var(--color-text);
}
.service-card__button {
  margin-top: 16px;
}
.service-card:hover .service-card__image img, .service-card:focus-visible .service-card__image img {
  transform: scale(1.04);
}
.service-card:hover .button-link, .service-card:focus-visible .button-link {
  color: var(--color-blue-600);
  text-decoration: underline;
}
.service-card:hover .button-link rect, .service-card:focus-visible .button-link rect {
  fill: var(--color-blue-600);
}
.service-card:hover .button-link path, .service-card:focus-visible .button-link path {
  fill: #FFF;
}

.page-webinar-event-detail .hero,
.page-webinar-gated .hero {
  padding-top: 260px;
  padding-bottom: 393px;
  margin-bottom: -359px;
  background-image: url("../images/gated-webinar-bg.jpg");
  background-position: center top;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .hero,
  .page-webinar-gated .hero {
    padding: 40px 0 66px;
    margin-bottom: -140px;
    --angle-height: 64px;
    padding-bottom: 472px;
    margin-bottom: -500px;
  }
}
.page-webinar-event-detail .hero__content,
.page-webinar-gated .hero__content {
  max-width: 740px;
  min-width: none;
}
.page-webinar-event-detail .hero__inner,
.page-webinar-gated .hero__inner {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .hero__inner,
  .page-webinar-gated .hero__inner {
    margin: 48px 0 30px;
  }
}
.page-webinar-event-detail .featured-event-card,
.page-webinar-gated .featured-event-card {
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card,
  .page-webinar-gated .featured-event-card {
    padding: 40px 0 64px;
  }
}
.page-webinar-event-detail .featured-event-card__headline,
.page-webinar-gated .featured-event-card__headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 20px;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__headline,
  .page-webinar-gated .featured-event-card__headline {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.page-webinar-event-detail .featured-event-card__headline .button,
.page-webinar-gated .featured-event-card__headline .button {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__headline .button,
  .page-webinar-gated .featured-event-card__headline .button {
    width: 100%;
    justify-content: center;
  }
  .page-webinar-event-detail .featured-event-card__headline .button span,
  .page-webinar-gated .featured-event-card__headline .button span {
    width: 100%;
    text-align: center;
  }
}
.page-webinar-event-detail .featured-event-card__headline-text,
.page-webinar-gated .featured-event-card__headline-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 740px;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__headline-text,
  .page-webinar-gated .featured-event-card__headline-text {
    gap: 16px;
  }
}
.page-webinar-event-detail .featured-event-card__headline-text p,
.page-webinar-gated .featured-event-card__headline-text p {
  margin: 0;
}
.page-webinar-event-detail .featured-event-card__headline--text2,
.page-webinar-gated .featured-event-card__headline--text2 {
  flex-direction: row;
  max-width: none;
  justify-content: space-between;
  width: 100%;
  gap: 48px;
}
.page-webinar-event-detail .featured-event-card__headline--text2 p,
.page-webinar-gated .featured-event-card__headline--text2 p {
  max-width: 740px;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__headline--text2,
  .page-webinar-gated .featured-event-card__headline--text2 {
    flex-direction: column;
    gap: 24px;
  }
}
.page-webinar-event-detail .featured-event-card__wrapper,
.page-webinar-gated .featured-event-card__wrapper {
  display: flex;
  width: 100%;
  border-radius: 8px;
  gap: 16px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__wrapper,
  .page-webinar-gated .featured-event-card__wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.page-webinar-event-detail .featured-event-card__img,
.page-webinar-gated .featured-event-card__img {
  max-width: 847px;
  width: 100%;
  aspect-ratio: 847/480;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  flex-shrink: 1;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__img,
  .page-webinar-gated .featured-event-card__img {
    width: 100%;
    aspect-ratio: 350/198;
    max-width: none;
  }
}
.page-webinar-event-detail .featured-event-card__img img,
.page-webinar-gated .featured-event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-webinar-event-detail .featured-event-card__img svg,
.page-webinar-gated .featured-event-card__img svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 999;
  width: 128px;
  height: 128px;
  border-radius: 128px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px -2px rgba(10, 15, 30, 0.6);
  backdrop-filter: blur(3px);
}
@media (max-width: 767px) {
  .page-webinar-event-detail .featured-event-card__img svg,
  .page-webinar-gated .featured-event-card__img svg {
    border-radius: 48px;
    width: 48px;
    height: 48px;
  }
}
.page-webinar-event-detail .featured-event-card__text,
.page-webinar-gated .featured-event-card__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 36.78%;
  min-height: 458px;
  gap: 48px;
  padding: 40px 40px 48px;
  border-radius: 8px;
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  background: #FFF;
  box-shadow: 0 52px 64px -40px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__text,
  .page-webinar-gated .featured-event-card__text {
    width: 100%;
    min-height: 0;
  }
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__text,
  .page-webinar-gated .featured-event-card__text {
    padding: 32px 24px;
  }
}
.page-webinar-event-detail .featured-event-card__inner-top,
.page-webinar-gated .featured-event-card__inner-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-webinar-event-detail .featured-event-card__text-content,
.page-webinar-gated .featured-event-card__text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-blue-950);
  padding-right: 20px;
}
.page-webinar-event-detail .featured-event-card__title,
.page-webinar-gated .featured-event-card__title {
  margin: 0 0 32px;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__title,
  .page-webinar-gated .featured-event-card__title {
    margin-bottom: 24px;
  }
}
.page-webinar-event-detail .featured-event-card__author-block,
.page-webinar-gated .featured-event-card__author-block {
  display: flex;
  gap: 13px;
  align-items: center;
}
.page-webinar-event-detail .featured-event-card__author-block img,
.page-webinar-gated .featured-event-card__author-block img {
  width: 44px;
  border-radius: 999px;
  overflow: hidden;
}
.page-webinar-event-detail .featured-event-card__author,
.page-webinar-gated .featured-event-card__author {
  color: #FFF;
  font-size: 12px;
  font-weight: 715;
  line-height: 140%;
  letter-spacing: 0.36px;
  display: flex;
  flex-direction: column;
}
.page-webinar-event-detail .featured-event-card__author span,
.page-webinar-gated .featured-event-card__author span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 550;
}
.page-webinar-event-detail .featured-event-card__info,
.page-webinar-gated .featured-event-card__info {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.page-webinar-event-detail .featured-event-card__info-item,
.page-webinar-gated .featured-event-card__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 550;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.48px;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card__info-item,
  .page-webinar-gated .featured-event-card__info-item {
    font-size: 15px;
  }
}
.page-webinar-event-detail .featured-event-card .button,
.page-webinar-gated .featured-event-card .button {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .featured-event-card .button,
  .page-webinar-gated .featured-event-card .button {
    width: 100%;
    justify-content: center;
  }
  .page-webinar-event-detail .featured-event-card .button span,
  .page-webinar-gated .featured-event-card .button span {
    width: 100%;
    text-align: center;
  }
}
.page-webinar-event-detail .article-content,
.page-webinar-gated .article-content {
  padding: 120px 0 160px;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .article-content,
  .page-webinar-gated .article-content {
    padding-top: 0;
    padding-bottom: 64px;
  }
}
.page-webinar-event-detail .entry-content,
.page-webinar-gated .entry-content {
  max-width: 847px;
}
.page-webinar-event-detail .entry-content h1, .page-webinar-event-detail .entry-content h2,
.page-webinar-gated .entry-content h1,
.page-webinar-gated .entry-content h2 {
  margin: 0;
  font-size: 52px;
  font-style: normal;
  letter-spacing: -0.52px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .entry-content h1, .page-webinar-event-detail .entry-content h2,
  .page-webinar-gated .entry-content h1,
  .page-webinar-gated .entry-content h2 {
    font-size: 38px;
    font-weight: 460;
    line-height: 100%; /* 38px */
    letter-spacing: -0.38px;
    margin-bottom: 40px;
  }
}
.page-webinar-event-detail .entry-content h3,
.page-webinar-gated .entry-content h3 {
  margin: 48px 0 24px;
  color: var(--color-blue-950);
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .entry-content h3,
  .page-webinar-gated .entry-content h3 {
    margin-top: 40px;
  }
}
.page-webinar-event-detail .entry-content .eyebrow,
.page-webinar-gated .entry-content .eyebrow {
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .page-webinar-event-detail .entry-content .eyebrow,
  .page-webinar-gated .entry-content .eyebrow {
    font-size: 15px;
  }
}
.page-webinar-event-detail .entry-content ul,
.page-webinar-gated .entry-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-webinar-event-detail .entry-content ul li,
.page-webinar-gated .entry-content ul li {
  position: relative;
  padding-left: 36px;
}
.page-webinar-event-detail .entry-content ul li::before,
.page-webinar-gated .entry-content ul li::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 9.5L10.5 15L8.5 13M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z' stroke='%23076EE5' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.page-webinar-event-detail .footer-cta-wrapper,
.page-webinar-gated .footer-cta-wrapper {
  display: none;
}

@media (max-width: 1024px) {
  .page-webinar-event-detail .hero {
    padding-top: var(--hero-mobile-top-padding);
  }
}

@media (max-width: 767px) {
  .page-webinars .card__inline-meta {
    flex-direction: column;
    gap: 12px;
  }
}
.page-webinars .card__inline-meta svg path {
  stroke: #076EE5;
}
@media (max-width: 767px) {
  .page-webinars .listing-posts--type2 .pill span {
    height: 28px;
  }
}
.page-webinars .card__media--asset-preview {
  min-width: 351px;
}
@media (max-width: 767px) {
  .page-webinars .card__media--asset-preview {
    min-width: none;
    aspect-ratio: 351/230;
  }
}
@media (max-width: 767px) {
  .page-webinars .card__feature-img {
    aspect-ratio: 351/230;
  }
}
.page-webinars .card__media--video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 999;
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px -2px rgba(10, 15, 30, 0.6);
  backdrop-filter: blur(3px);
  border-radius: 48px;
  transition: transform 0.3s ease-out;
}
.page-webinars .card__media--video .card__media-asset {
  transition: transform 0.4s ease-out;
}
@media (min-width: 1024px) {
  .page-webinars .card__media--video .card__media-asset {
    max-width: 251px;
  }
}
.page-webinars .featured-resource-card__wrapper {
  background-image: url(../images/featured-bg-resource@2x.jpg);
}
.page-webinars .featured-resource-card__img {
  position: relative;
}
.page-webinars .featured-resource-card__img svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 999;
  width: 128px;
  height: 128px;
  border-radius: 128px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px -2px rgba(10, 15, 30, 0.6);
  backdrop-filter: blur(3px);
}
@media (max-width: 767px) {
  .page-webinars .featured-resource-card__img svg {
    border-radius: 48px;
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 1200px) {
  .page-webinar-gated .featured-event-card__text {
    position: absolute;
    right: 0;
  }
}

.page-resources .content-section .content-section__item {
  background-color: #F2F8FC;
}
.page-resources .content-section .content-section__item:not(.content-section__item--highlighted) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card__img {
  align-items: flex-end;
  overflow: visible;
  width: 170px;
  height: 220px;
  aspect-ratio: 170/220;
  position: relative;
}
.page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card__img::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 158px;
  height: 220px;
  transform: translateX(-50%);
  background: #0A0F1E;
  opacity: 0.4;
  filter: blur(20px);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
.page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card__img img {
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}
.page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card__info-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .page-resources .content-section .content-section__item:not(.content-section__item--highlighted) {
    gap: 24px;
    background-color: transparent;
  }
  .page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card {
    border-radius: 8px;
    background-color: #F2F8FC;
    padding: 24px;
    align-items: flex-start;
    gap: 32px;
  }
  .page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card .card__info:first-child .card__title,
  .page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card .card__info:first-child .button-link {
    display: none;
  }
  .page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card .card__info-mobile {
    display: flex;
    gap: 24px;
  }
  .page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card .card__info-mobile .pill {
    display: none;
  }
  .page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card:hover .card__img img {
    transform: scale(1);
  }
  .page-resources .content-section .content-section__item:not(.content-section__item--highlighted) .card__img {
    order: initial;
    align-items: flex-start;
    margin: 0 auto;
  }
}
.page-resources .content-section .card {
  overflow: hidden;
}
.page-resources .filters {
  margin-bottom: 64px;
  z-index: 10;
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(32px);
  transition: background-color 0.2s;
}
.page-resources .filters:hover {
  background-color: #fff;
}
.page-resources {
  /* Resource Cards */
}
.page-resources .listing-posts {
  margin-bottom: 0;
}
.page-resources .listing-posts .card__top {
  gap: 16px;
}
.page-resources .listing-posts__load-more {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .page-resources .listing-posts__load-more {
    margin-top: 24px;
  }
}
@media (max-width: 1024px) {
  .page-resources .listing-posts {
    row-gap: 16px;
  }
}
.page-resources .footer-cta-wrapper {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .page-resources .footer-cta-wrapper {
    margin-top: 40px;
  }
}

.csd-hero {
  --blue-height: 765px;
  --angle-height: 268px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  padding: 86px 0 96px;
}
@media (max-width: 1024px) {
  .csd-hero {
    padding: 40px 0 72px;
    --angle-height: 55px;
    --blue-height: 500px;
  }
}
@media (max-width: 767px) {
  .csd-hero {
    padding: 40px 0 72px;
    --angle-height: 55px;
    --blue-height: 740px;
  }
}
.csd-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--blue-height);
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/csa-hero@2x.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.csd-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--blue-height) - var(--angle-height) - 1px);
  height: calc(var(--angle-height) + 2px);
  z-index: 1;
  pointer-events: none;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.csd-hero__text {
  max-width: 1062px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .csd-hero__text {
    gap: 16px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .csd-hero__text p {
    gap: 16px;
    margin-bottom: 40px;
  }
  .csd-hero__text p br {
    display: none;
  }
}
.csd-hero__eyebrow {
  color: var(--color-blue-600);
  font-size: 18px;
  font-weight: 620;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
}
@media (max-width: 1024px) {
  .csd-hero__eyebrow {
    font-size: 15px;
  }
}
.csd-hero h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 92%; /* 66.24px */
  letter-spacing: -0.72px;
  color: var(--color-blue-950);
  margin: 0;
}
@media (max-width: 1024px) {
  .csd-hero h1 {
    font-size: 46px;
    font-weight: 443;
    line-height: 98%; /* 45.08px */
    letter-spacing: -0.46px;
  }
}
.csd-hero h1 span {
  color: var(--color-blue-600);
}
.csd-hero p {
  color: var(--color-text);
  margin: 0;
}
.csd-hero__gallery {
  display: flex;
  width: 100%;
  border-radius: 8px;
  gap: 16px;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}
@media (max-width: 1024px) {
  .csd-hero__gallery {
    gap: 4px;
  }
}
.csd-hero__image {
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.csd-hero__image:nth-child(1) {
  max-width: 847px;
  width: 100%;
  aspect-ratio: 847/415;
  flex-shrink: 1;
}
.csd-hero__image:nth-child(2) {
  max-width: 415px;
  width: 36.78%;
  aspect-ratio: 1;
}
.csd-hero .stats__wrap_p {
  padding: 64px 0 0;
}
@media (max-width: 1024px) {
  .csd-hero .stats__wrap_p {
    padding-top: 48px;
  }
}
.csd-hero .stats__num {
  color: #FFF;
}
.csd-hero .stats__text {
  color: rgba(255, 255, 255, 0.9);
  min-height: 87px;
}
@media (max-width: 1024px) {
  .csd-hero .stats__text {
    min-height: 0;
  }
}
.csd-hero .stats__source {
  color: var(--color-blue-300);
  font-size: 18px;
  font-weight: 520;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.36px;
}
@media (max-width: 1024px) {
  .csd-hero .stats__source {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

.case-study-detail-page .csd-sidebar-info {
  display: flex;
  padding: 40px 40px 48px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  border-radius: 8px;
  background: #F2F8FC;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .case-study-detail-page .csd-sidebar-info {
    gap: 32px;
    padding: 40px 24px;
  }
}
.case-study-detail-page .csd-sidebar-info p {
  margin: 0;
}
.case-study-detail-page .csd-sidebar-info__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.case-study-detail-page .csd-sidebar-info__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1024px) {
  .case-study-detail-page .csd-sidebar-info__label {
    font-size: 15px;
    font-weight: 620;
    line-height: 152%; /* 22.8px */
    letter-spacing: 0.3px;
  }
}
.case-study-detail-page .two-col-content {
  padding-bottom: 350px;
}
@media (max-width: 1024px) {
  .case-study-detail-page .two-col-content {
    padding-bottom: 212px;
  }
}
.case-study-detail-page .entry-content h1, .case-study-detail-page .entry-content h2 {
  color: var(--color-blue-950);
  font-size: 40px;
  font-style: normal;
  font-weight: 420;
  line-height: 100%; /* 40px */
}
@media (max-width: 1024px) {
  .case-study-detail-page .entry-content h1, .case-study-detail-page .entry-content h2 {
    font-size: 38px;
    font-weight: 460;
    letter-spacing: -0.38px;
  }
}
@media (max-width: 1024px) {
  .case-study-detail-page .two-col-layout .two-col-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1024px) {
  .case-study-detail-page .two-col-layout .col-content {
    padding-top: 56px;
  }
}
@media (max-width: 1024px) {
  .case-study-detail-page .article-sidebar {
    order: -1;
    margin-top: 48px;
  }
}
.case-study-detail-page .related-studies {
  background: url("../images/csd-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: calc((var(--footer-shape-height) + 5px) * -1);
  margin-top: calc((var(--footer-cta-shape-height) + 5px) * -1);
  padding: 282px 0 250px 0;
  clip-path: polygon(0 0, 100% 185px, 100% 100%, 0 100%);
}
@media (max-width: 767px) {
  .case-study-detail-page .related-studies {
    padding: 96px 0 130px 0;
    clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%);
    background-position: center right 45%;
  }
}
.case-study-detail-page .related-studies__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 66px;
}
@media (max-width: 767px) {
  .case-study-detail-page .related-studies__top {
    margin-bottom: 40px;
  }
  .case-study-detail-page .related-studies__top .button {
    display: none;
  }
}
.case-study-detail-page .related-studies__title {
  color: #FFF;
}
.case-study-detail-page .related-studies__bottom {
  display: none;
}
@media (max-width: 767px) {
  .case-study-detail-page .related-studies__bottom {
    margin-top: 40px;
    display: block;
  }
}
.case-study-detail-page .footer-cta-wrapper {
  display: none;
}

.gated-asset__top {
  position: relative;
}
.gated-asset__hero {
  --angle-height: 168px;
  margin-bottom: -44px;
  color: #fff;
  position: relative;
  padding: 64px 0 168px;
  background-color: #009fe3;
  background-image: url("../images/gated-webinar-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media (max-width: 1024px) {
  .gated-asset__hero {
    margin-bottom: -124px;
    padding: 40px 0 calc(var(--angle-height) + 84px);
    --angle-height: 40px;
  }
}
.gated-asset__hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--angle-height);
  background: #fff;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}
.gated-asset__logo {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .gated-asset__logo {
    max-width: 113px;
    margin-bottom: 20px;
  }
}
.gated-asset__hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  margin: 0 0 60px;
  position: relative;
}
@media (max-width: 1024px) {
  .gated-asset__hero-inner {
    gap: 40px;
    margin: 40px 0 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.gated-asset__hero-content {
  max-width: 631px;
  min-width: 0;
  gap: 16px;
  flex: 0 0 auto;
  width: 50.7%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .gated-asset__hero-content {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
}
.gated-asset__kicker {
  opacity: 0.8;
  font-size: 18px;
  font-weight: 620;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1024px) {
  .gated-asset__kicker {
    font-size: 15px;
    line-height: 152%; /* 22.8px */
    letter-spacing: 0.3px;
  }
}
.gated-asset__title {
  max-width: 567px;
}
@media (max-width: 1024px) {
  .gated-asset__title {
    max-width: 100%;
  }
}
.gated-asset__meta {
  display: flex;
  gap: 32px;
}
@media (max-width: 1024px) {
  .gated-asset__meta {
    flex-direction: column;
    gap: 16px;
  }
}
.gated-asset__meta-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 550;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.48px;
  gap: 8px;
}
.gated-asset__form-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40.86%;
  gap: 40px;
  padding: 48px 40px 56px;
  border-radius: 8px;
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  background: #fff;
  box-shadow: 0 52px 64px -40px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}
@media (max-width: 1024px) {
  .gated-asset__form-card {
    width: 100%;
  }
}
.gated-asset__form-card--desktop {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .gated-asset__form-card--desktop {
    display: none;
  }
}
.gated-asset__form-area {
  margin-bottom: 72px;
}
.gated-asset__form-area--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .gated-asset__form-area--mobile {
    display: block;
  }
}
.gated-asset__form-title {
  margin-bottom: 40px;
  color: var(--color-blue-950);
  font-size: 25px;
  font-weight: 510;
  line-height: 120%;
  letter-spacing: 0.25px;
  font-variation-settings: var(--fvs-h6);
}
.gated-asset__content {
  padding: 0 0 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .gated-asset__content {
    padding-bottom: 64px;
  }
}
@media (min-width: 1025px) {
  .gated-asset__content-inner {
    padding-right: 33px;
    max-width: 598px !important;
  }
}
@media (min-width: 1600px) {
  .gated-asset__content-inner {
    min-width: 0;
  }
}
.gated-asset__content-inner h3,
.gated-asset__content-inner h4,
.gated-asset__content-inner h5,
.gated-asset__content-inner h6 {
  color: var(--color-blue-950);
  font-size: 25px;
  font-weight: 510;
  line-height: 120%;
  letter-spacing: 0.25px;
}
.gated-asset__content-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gated-asset__content-inner li {
  position: relative;
  padding-left: 36px;
}
.gated-asset__content-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg...");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.gated-asset__speaker-card {
  margin-top: 48px;
  padding: 40px;
  border-radius: 8px;
  background-color: #f2f8fc;
}
@media (min-width: 1025px) {
  .gated-asset__speaker-card {
    max-width: 523px !important;
  }
}
.gated-asset__speaker-card .authors__title {
  margin: 0 !important;
}
.gated-asset__speaker-card .author__photo {
  border-radius: 5px;
  background-color: transparent;
}
.gated-asset__speaker-card .author__photo img {
  border-radius: 0;
}

.gated-resource-page #site-container {
  padding-top: 0;
}
.gated-resource-page .site-header {
  display: none;
}

.page-industry .services-overview {
  padding-bottom: 180px;
}
.page-industry .services-overview .feature-block__text-wrapper {
  gap: 32px;
}
.page-industry .services-overview .feature-block__title-wrapper {
  gap: 16px;
}
.page-industry .feature-block__headline {
  font-size: 18px;
  font-weight: 620;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
  color: var(--color-blue-600);
}
.page-industry .feature-block__subhead {
  font-size: 40px;
  font-weight: 420;
  line-height: 100%; /* 40px */
}
.page-industry .feature-block__description {
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
.page-industry .stats__clients {
  margin-bottom: 40px;
}
.page-industry .hero--type4.hero--bg-blue {
  background-color: #009fe3;
  background-image: url(../images/hero-blue@2x.jpg);
}
.page-industry .hero--type4.hero--bg-brown {
  background-color: #9b6347;
  background-image: url(../images/hero-brown@2x.jpg);
}
.page-industry .hero--type4.hero--bg-green {
  background-color: #527a33;
  background-image: url(../images/hero-green@2x.jpg);
}
.page-industry .hero--type4.hero--bg-grey {
  background-color: #84909f;
  background-image: url(../images/hero-grey@2x.jpg);
}
.page-industry .text-column-grid__column-heading {
  font-size: 21px;
  letter-spacing: 0.21px;
  font-variation-settings: "wght" 550, "slnt" 0, "SERF" 44;
}
.page-industry .stats__wrap_p {
  padding-top: 64px;
}
@media (max-width: 1024px) {
  .page-industry .stats__wrap_p {
    padding-top: 48px;
  }
}
.page-industry.page-id-917 .blue-feature-panel__item {
  padding-right: 24px;
}
.page-industry.page-id-843 .blue-feature-panel::after {
  --angle-color: #F2F8FC;
}

.page-use-cases .hero {
  background-image: url("../images/use-case-bg@2x.jpg");
}
.page-use-cases .services-overview .feature-block__text-wrapper {
  gap: 32px;
}
.page-use-cases .feature-block__subhead {
  font-size: 40px;
  font-weight: 420;
  line-height: 100%; /* 40px */
}
.page-use-cases .feature-block__description {
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
.page-use-cases .stats__clients {
  margin-bottom: 40px;
}
.page-use-cases .partners .partners__heading {
  grid-template-columns: 54.6% 1fr;
}
@media (max-width: 767px) {
  .page-use-cases .partners .partners__heading {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
  }
}
.page-use-cases .partners .partners__heading .eyebrow {
  margin-bottom: 12px;
}
.page-use-cases .partners .partners__heading p {
  margin-top: 28px;
  margin-bottom: 0;
}
.page-use-cases .partners .partners__action {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .page-use-cases .partners .partners__action {
    justify-content: flex-start;
  }
}
.page-use-cases .partners .partners__cards_white .partners__card-logo {
  background-color: transparent;
}
.page-use-cases .partners .partners__card {
  justify-content: center;
  height: 332px;
}
.page-use-cases .related_resources-section {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .page-use-cases .related_resources-section {
    margin-top: 48px;
  }
}

.single-services .hero {
  background-image: url("../images/service-hero@2x.jpg");
}
@media (max-width: 1024px) {
  .single-services .hero {
    --angle-height: 48px;
  }
}
.single-services .hero__title {
  font-size: 72px;
  font-weight: 420;
  line-height: 100%;
  letter-spacing: -0.72px;
}
@media (max-width: 767px) {
  .single-services .hero__title {
    font-size: 38px;
    font-weight: 460;
    line-height: 100%; /* 38px */
    letter-spacing: -0.38px;
  }
}
@media (max-width: 767px) {
  .single-services .hero__media-wrap img {
    height: auto;
  }
}
.single-services .services-overview .feature-block__text-wrapper {
  gap: 32px;
}
.single-services .services-overview .feature-block__title-wrapper {
  gap: 16px;
}
.single-services .feature-block__headline {
  font-size: 18px;
  font-weight: 620;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
  color: var(--color-blue-600);
}
.single-services .feature-block__subhead {
  font-size: 40px;
  font-weight: 420;
  line-height: 100%; /* 40px */
}
.single-services .feature-block__description {
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
.single-services .stats__clients {
  margin-bottom: 40px;
}
.single-services .purchase-paths {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .single-services .purchase-paths {
    padding: 48px 0;
  }
}
.single-services .purchase-paths--simple .purchase-paths__card {
  padding: 8px 20px 8px 16px;
}
@media (max-width: 767px) {
  .single-services .purchase-paths--simple .purchase-paths__card {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 12px;
  }
}
.single-services .purchase-paths--simple .custom-container {
  align-items: flex-start;
}
.single-services .purchase-paths__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 630px;
  gap: 8px 16px;
}
@media (max-width: 767px) {
  .single-services .purchase-paths__cards {
    grid-template-columns: 100%;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .single-services .text-column-grid__intro {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .single-services .text-column-grid__cta {
    flex-direction: column;
    width: 100%;
  }
  .single-services .text-column-grid__cta .button span {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .single-services .text-column-grid__column-wrapper {
    margin-top: 48px;
  }
}
.single-services .blue-card-grid-panel::after {
  background-color: #F2F8FC;
}
.single-services .two-up .blue-card-grid-panel__card {
  min-height: 0;
}
@media (min-width: 1601px) {
  .single-services .text-column-grid:not(.text-column-grid--compact) .text-column-grid__column-wrapper {
    margin-top: 96px;
  }
}
.single-services .hero--type5 + .text-column-grid {
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .single-services .hero--type5 + .text-column-grid {
    padding-bottom: 48px;
  }
}

.page-id-1181 .blue-card-grid-panel__intro,
.page-id-1181 .blue-card-grid-panel__body {
  max-width: 775px;
}

.page-id-1173 .blue-card-grid-panel::after,
.page-id-1177 .blue-card-grid-panel::after,
.page-id-1181 .blue-card-grid-panel::after {
  background-color: #FFF;
}

.section_blue .service-text {
  max-width: 705px;
}

.page-id-1222 .blue-card-grid-panel__body {
  max-width: 750px;
}
@media (max-width: 767px) {
  .page-id-1222 .footer-cta-wrapper h2 br {
    display: none;
  }
}

@media (min-width: 768px) {
  .page-id-1224 .text-column-grid__intro {
    gap: 50px;
  }
}

.page-id-915 .blue-feature-panel::after {
  --angle-color: #F2F8FC;
}

@media screen and (max-width: 767px) {
  .page-partners .info-grid_blue {
    padding-top: calc(var(--angle-height) + 88px);
  }
}
.page-partners .partners_p {
  padding: 120px 0 80px;
}
@media screen and (max-width: 767px) {
  .page-partners .partners_p {
    padding: 48px 0 45px;
  }
}
.page-partners .partners_grey {
  padding-bottom: 260px;
}
@media screen and (max-width: 767px) {
  .page-partners .partners_grey {
    padding-bottom: 238px;
  }
}
@media (max-width: 767px) {
  .page-partners .partners__title br {
    display: inline;
  }
}

.partners-hero {
  padding-top: 70px;
}
@media screen and (max-width: 1200px) {
  .partners-hero {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .partners-hero {
    padding-top: 40px;
  }
}
.partners-hero_mb {
  margin-bottom: -260px;
}
@media screen and (max-width: 1600px) {
  .partners-hero_mb {
    margin-bottom: -180px;
  }
}
@media screen and (max-width: 1200px) {
  .partners-hero_mb {
    margin-bottom: -120px;
  }
}
.partners-hero__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .partners-hero__row {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .partners-hero__row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.partners-hero__content {
  padding-top: 70px;
  gap: 56px;
  color: var(--color-text);
}
@media screen and (max-width: 1200px) {
  .partners-hero__content {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .partners-hero__content {
    padding-top: 20px;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .partners-hero__content {
    padding-top: 0;
  }
}
.partners-hero__wrap {
  max-width: 520px;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .partners-hero__wrap {
    gap: 16px;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .partners-hero__title {
    max-width: 304px;
  }
}
.partners-hero__button .button span {
  padding: 0 10px;
}
.partners-hero__image {
  position: relative;
  z-index: 1;
}
.partners-hero__image:before {
  content: "";
  position: absolute;
  width: calc(100% - 72px);
  aspect-ratio: 5/4;
  left: 36px;
  bottom: -25px;
  background: #010101;
  mix-blend-mode: plus-darker;
  opacity: 0.6;
  filter: blur(43.6px);
  z-index: 1;
  pointer-events: none;
}
.partners-hero__image img {
  border-radius: 16px;
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .partners-hero__image img {
    border-radius: var(--radius);
  }
}
@media screen and (max-width: 1023px) {
  .partners-hero__image img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .partners-hero__image img {
    aspect-ratio: 350/431;
  }
}

.partners_p {
  padding: 120px 0;
}
@media screen and (max-width: 1200px) {
  .partners_p {
    padding: 90px 0;
  }
}
.partners_grey {
  background-color: #F3F9FD;
}
.partners__heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  margin-bottom: 40px;
}
.partners__heading_full {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .partners__heading {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .partners__subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 1024px) {
  .partners__subtitle br {
    display: none;
  }
}
.partners__dots {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Crect width='2' height='2' fill='%23D9D9D9'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-position: 0 0;
}
@media screen and (max-width: 767px) {
  .partners__dots {
    background-size: 16px 16px;
  }
}
.partners__cards {
  --cols: 3;
  padding: 44px 0 52px;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 40px 0;
}
.partners__cards_3 {
  --cols: 3;
}
.partners__cards_3 .partners__card {
  border-radius: 0;
}
.partners__cards_3 .partners__card:not(:nth-child(3n+1)) {
  border-left: 0;
}
.partners__cards_3 .partners__card:nth-child(3n+1) {
  border-radius: var(--radius) 0 0 var(--radius);
}
.partners__cards_3 .partners__card:nth-child(3n) {
  border-radius: 0 var(--radius) var(--radius) 0;
}
.partners__cards_3 .partners__card:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.partners__cards_3 .partners__card .partners__card-logo {
  aspect-ratio: 394/276;
}
@media (max-width: 767px) {
  .partners__cards_3 .partners__card .partners__card-logo {
    aspect-ratio: 318/200;
  }
}
.partners__cards_4 {
  --cols: 4;
}
.partners__cards_4 .partners__card {
  border-radius: 0;
}
.partners__cards_4 .partners__card:not(:nth-child(4n+1)) {
  border-left: 0;
}
.partners__cards_4 .partners__card:nth-child(4n+1) {
  border-radius: var(--radius) 0 0 var(--radius);
}
.partners__cards_4 .partners__card:nth-child(4n) {
  border-radius: 0 var(--radius) var(--radius) 0;
}
.partners__cards_4 .partners__card:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.partners__cards_grey .partners__card {
  background: #F3F9FD;
}
.partners__cards_white .partners__card {
  background: #fff;
}
.partners__cards_white .partners__card-logo {
  background-color: #F3F9FD;
}
@media screen and (max-width: 1023px) {
  .partners__cards {
    --cols: 2;
    gap: 24px 0;
  }
  .partners__cards .partners__card {
    border-radius: 0;
    border-left: 1px solid #CDDAE0;
  }
  .partners__cards .partners__card:nth-child(2n+1) {
    border-left: 1px solid #CDDAE0;
  }
  .partners__cards .partners__card:not(:nth-child(2n+1)) {
    border-left: 0;
  }
  .partners__cards .partners__card:nth-child(2n+1) {
    border-radius: var(--radius) 0 0 var(--radius);
  }
  .partners__cards .partners__card:nth-child(2n) {
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  .partners__cards .partners__card:last-child {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
  }
}
@media screen and (max-width: 620px) {
  .partners__cards {
    --cols: 1;
  }
  .partners__cards .partners__card {
    border: 1px solid #CDDAE0 !important;
    border-radius: var(--radius) !important;
  }
}
.partners__card {
  border: 1px solid #CDDAE0;
  border-radius: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.partners__card:nth-child(1) .partners__card-title {
  max-width: 185px;
}
.partners__card:nth-child(2) .partners__card-title {
  max-width: 240px;
}
.partners__card:nth-child(3) .partners__card-title {
  max-width: 270px;
}
.partners__card:nth-child(4) .partners__card-title {
  max-width: 240px;
}
.partners__card-logo {
  aspect-ratio: 288/276;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
}
@media (max-width: 767px) {
  .partners__card-logo {
    aspect-ratio: 318/200;
  }
}
.partners__card-info {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
}
@media screen and (max-width: 1200px) {
  .partners__card-info {
    padding: 24px 16px;
  }
}
.partners__card-title {
  color: var(--color-blue-950);
}
@media (max-width: 767px) {
  .partners__card-title {
    max-width: 318/200;
  }
}
.partners__card-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}

.page-company__team {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .page-company__team {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-company__team {
    margin-bottom: 40px;
  }
}
.page-company__team-img {
  position: relative;
}
.page-company__team-img:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 287px;
  left: 5%;
  bottom: -50px;
  background: #010101;
  mix-blend-mode: plus-darker;
  opacity: 0.4;
  filter: blur(43.6px);
}
@media screen and (max-width: 767px) {
  .page-company__team-img:before {
    display: none;
  }
}
.page-company__team-img img {
  width: 100%;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-company__team-img img {
    border-radius: var(--radius);
  }
}
.page-company__info-grid {
  --angle-top-left-height: 220px;
  --angle-top-right-height: 320px;
  --angle-bottom-height: 170px;
  background: #0095EF url("../images/blue-bg-big@2x.jpg") no-repeat center center;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
  padding-bottom: calc(var(--angle-bottom-height) + 127px);
  padding-top: 28px;
}
@media screen and (max-width: 1200px) {
  .page-company__info-grid {
    --angle-top-left-height: 120px;
    --angle-top-right-height: 220px;
    --angle-bottom-height: 90px;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .page-company__info-grid {
    --angle-top-left-height: 82px;
    --angle-top-right-height: 135px;
    --angle-bottom-height: 60px;
    padding-top: 16px;
    background: url("../images/blue-bg-big-mobile@3x.jpg") no-repeat center top;
    background-size: cover;
  }
}
.page-company__info-grid:before, .page-company__info-grid:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  background: #fff;
}
.page-company__info-grid:before {
  top: -2px;
  height: calc(max(var(--angle-top-left-height), var(--angle-top-right-height)) + 2px);
  clip-path: polygon(0 0, 100% 0, 100% var(--angle-top-right-height), 0 var(--angle-top-left-height));
}
.page-company__info-grid:after {
  bottom: -2px;
  height: calc(var(--angle-bottom-height) + 2px);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media screen and (max-width: 1024px) {
  .page-company__info-grid:after {
    display: none;
  }
}
.page-company__info-grid .info-grid__item {
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .page-company__info-grid .info-grid__title {
    font-size: 31px;
    font-weight: 420;
    line-height: 110%;
  }
}
@media screen and (max-width: 767px) {
  .page-company__info-grid .info-grid__text {
    font-size: 15px;
    font-style: normal;
    font-weight: 520;
    line-height: 160%; /* 24px */
    letter-spacing: 0.3px;
  }
}
.page-company__resource-card {
  padding-top: 0;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .page-company__resource-card {
    margin-bottom: 0;
  }
}
.page-company__resource-card .featured-resource-card {
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .page-company__resource-card .featured-resource-card {
    padding: 0;
  }
}
.page-company__resource-card .featured-resource-card__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 16px;
  padding: 16px;
  align-items: end;
  background-image: url(../images/join-our-crew-bg@2x.jpg);
}
@media screen and (max-width: 767px) {
  .page-company__resource-card .featured-resource-card__wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    background-image: url(../images/join-our-crew-bg-mobile@3x.jpg);
    background-size: cover;
  }
}
.page-company__resource-card .featured-resource-card__text {
  justify-content: center;
  gap: 40px;
  width: initial;
  min-height: initial;
  padding: 24px 40px 40px;
}
@media screen and (max-width: 1024px) {
  .page-company__resource-card .featured-resource-card__text {
    padding: 24px 0;
  }
}
@media screen and (max-width: 767px) {
  .page-company__resource-card .featured-resource-card__text {
    gap: 24px;
  }
}
.page-company__resource-card .featured-resource-card__img {
  width: initial;
}
@media screen and (max-width: 767px) {
  .page-company__resource-card .featured-resource-card__img {
    order: -1;
  }
}
.page-company__resource-card .featured-resource-card__text-content {
  gap: 10px;
  max-width: 460px;
}
.page-company__resource-card .featured-resource-card__body {
  display: block;
  margin: 0;
  color: #FFF;
  opacity: 0.8;
}
.page-company__resource-card .featured-resource-card__img {
  aspect-ratio: initial;
}
.page-company .partners {
  padding: 96px 0 256px;
}
@media screen and (max-width: 767px) {
  .page-company .partners {
    padding: 48px 0 233px;
  }
}
.page-company #bio .team-modal__row {
  align-items: flex-start;
}
.page-company #bio .team-modal__content-wrap {
  max-width: 928px;
}
.page-company #bio .team__item-btn {
  border-color: rgba(7, 110, 229, 0.2);
  transform: rotate(45deg);
  top: 24px;
  right: 24px;
}
@media screen and (max-width: 767px) {
  .page-company #bio .team__item-btn {
    top: 16px;
    right: 16px;
  }
}
.page-company #bio .team__item-btn svg {
  fill: var(--color-blue-600);
}
@media screen and (max-width: 767px) {
  .page-company .info-grid__list {
    padding-right: 52px;
  }
}

.company-hero {
  position: relative;
}
.company-hero__bg {
  --angle-height: 220px;
  position: relative;
  background-color: #44b3fa;
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: 1357px;
}
@media screen and (max-width: 1200px) {
  .company-hero__bg {
    --angle-height: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .company-hero__bg {
    --angle-height: 120px;
    min-height: 920px;
  }
}
@media screen and (max-width: 767px) {
  .company-hero__bg {
    --angle-height: 46px;
  }
}
.company-hero__bg video {
  width: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  min-height: 510px;
}
.company-hero__bg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: calc(var(--angle-height) + 2px);
  pointer-events: none;
  background: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media (max-width: 1024px) {
  .company-hero__bg:before {
    bottom: 79px;
  }
}
.company-hero__wrap {
  position: absolute;
  width: 100%;
  top: 289px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .company-hero__wrap {
    top: 146px;
  }
}
.company-hero__content {
  color: var(--color-white);
  align-items: center;
  text-align: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .company-hero__title br {
    display: block;
  }
}
.company-hero__subtitle {
  opacity: 0.8;
  margin-top: 16px;
}

.company-about {
  padding-bottom: 120px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .company-about {
    padding-bottom: 48px;
    margin-top: -80px;
  }
}
.company-about__row {
  display: grid;
  grid-template-columns: minmax(49.6%, 1fr) minmax(0, 1fr);
  gap: 0 16px;
}
@media screen and (max-width: 1023px) {
  .company-about__row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.company-about__content-wrap {
  gap: 72px;
  padding: 94px 0 80px;
}
@media screen and (min-width: 769px) {
  .company-about__content-wrap {
    max-width: 636px;
  }
}
@media screen and (max-width: 1400px) {
  .company-about__content-wrap {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .company-about__content-wrap {
    padding: 48px 0;
    gap: 24px;
  }
}
.company-about__heading {
  gap: 56px;
}
@media screen and (max-width: 1400px) {
  .company-about__heading {
    gap: 32px;
  }
}
@media screen and (min-width: 769px) {
  .company-about__text {
    max-width: 560px;
  }
}
.company-about__letter {
  background-color: #F3F9FD;
  border-radius: 16px;
  height: 146px;
  max-width: 600px;
  display: flex;
  align-items: center;
  padding: 24px 220px 24px 42px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .company-about__letter {
    padding-right: 160px;
  }
}
@media screen and (max-width: 1200px) {
  .company-about__letter {
    padding: 16px 140px 16px 24px;
    height: 96px;
    max-width: 440px;
  }
}
@media screen and (max-width: 767px) {
  .company-about__letter {
    padding: 16px 88px 16px 16px;
  }
}
@media screen and (min-width: 768px) {
  .company-about__letter .button-link:hover ~ .company-about__letter-img {
    bottom: -8px;
  }
}
.company-about__letter-img {
  width: 180px;
  position: absolute;
  bottom: -18px;
  right: 45px;
  pointer-events: none;
  transition: 0.2s;
}
@media screen and (max-width: 1400px) {
  .company-about__letter-img {
    right: 5px;
  }
}
@media screen and (max-width: 1200px) {
  .company-about__letter-img {
    width: 130px;
    right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .company-about__letter-img {
    right: -20px;
  }
}
.company-about__img {
  position: relative;
}
.company-about__img img {
  max-width: initial;
  width: 130%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  pointer-events: none;
}
@media screen and (max-width: 1600px) {
  .company-about__img img {
    width: 120%;
    left: 50px;
  }
}
@media screen and (max-width: 1400px) {
  .company-about__img img {
    width: 110%;
    left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .company-about__img img {
    width: 130%;
    left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .company-about__img img {
    position: static;
    width: 100%;
    transform: none;
  }
}

.page-careers__info-grid {
  --angle-top-left-height: 370px;
  --angle-top-right-height: 100px;
  --angle-bottom-height: 190px;
  background: #0095EF url("../images/blue-bg-big@2x.jpg") no-repeat center center;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
  padding-bottom: calc(var(--angle-bottom-height) + 80px);
  padding-top: 0;
}
@media screen and (max-width: 1200px) {
  .page-careers__info-grid {
    --angle-top-left-height: 220px;
    --angle-top-right-height: 120px;
    --angle-bottom-height: 90px;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-careers__info-grid {
    --angle-top-left-height: 90px;
    --angle-top-right-height: 20px;
    --angle-bottom-height: 60px;
    background: #0095EF url("../images/career-info-grid@3x.jpg") no-repeat center bottom;
    background-size: cover;
  }
}
.page-careers__info-grid:before, .page-careers__info-grid:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  background: #fff;
}
.page-careers__info-grid:before {
  top: -2px;
  height: calc(max(var(--angle-top-left-height), var(--angle-top-right-height)) + 2px);
  clip-path: polygon(0 0, 100% 0, 100% var(--angle-top-right-height), 0 var(--angle-top-left-height));
}
.page-careers__info-grid:after {
  bottom: -2px;
  height: calc(var(--angle-bottom-height) + 2px);
  clip-path: polygon(100% 100%, 0 0, 0 100%);
}
.page-careers__info-grid .info-grid__item {
  gap: 16px;
}
@media (max-width: 767px) {
  .page-careers__info-grid .info-grid__head {
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-careers__info-grid .info-grid__list_top {
    padding-right: 52px;
  }
}
.page-careers .page-company__team-img img {
  border-radius: var(--radius);
}
.page-careers .stats__list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  .page-careers .stats__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-careers .stats__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px 16px;
  }
}
.page-careers .stats__item {
  padding-right: 24px;
}
.page-careers .page-career__resource-card .featured-resource-card {
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .page-careers .page-career__resource-card .featured-resource-card {
    padding: 0;
  }
}
.page-careers .page-career__resource-card .featured-resource-card__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 16px;
  padding: 16px;
  align-items: center;
  background-image: url(../images/join-our-crew-bg@2x.jpg);
}
@media screen and (max-width: 767px) {
  .page-careers .page-career__resource-card .featured-resource-card__wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    background-image: url(../images/join-our-crew-bg-mobile@3x.jpg);
    background-size: cover;
  }
}
.page-careers .page-career__resource-card .featured-resource-card__text {
  justify-content: center;
  gap: 40px;
  width: initial;
  min-height: initial;
  padding: 24px 40px 40px;
}
@media screen and (max-width: 1024px) {
  .page-careers .page-career__resource-card .featured-resource-card__text {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-careers .page-career__resource-card .featured-resource-card__text {
    gap: 24px;
  }
}
.page-careers .page-career__resource-card .featured-resource-card__img {
  width: initial;
}
@media screen and (max-width: 767px) {
  .page-careers .page-career__resource-card .featured-resource-card__img {
    order: -1;
  }
}
.page-careers .page-career__resource-card .featured-resource-card__text-content {
  gap: 10px;
}
@media screen and (min-width: 767px) {
  .page-careers .page-career__resource-card .featured-resource-card__text-content {
    max-width: 460px;
  }
}
.page-careers .page-career__resource-card .featured-resource-card__icon {
  margin-bottom: 54px;
  height: 52px;
}
@media screen and (max-width: 1024px) {
  .page-careers .page-career__resource-card .featured-resource-card__icon {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .page-careers .page-career__resource-card .featured-resource-card__icon {
    margin-bottom: 0;
    height: 41px;
  }
}
@media screen and (max-width: 767px) {
  .page-careers .page-career__resource-card .featured-resource-card__icon svg {
    width: 48px;
  }
}
.page-careers .page-career__resource-card .featured-resource-card__body {
  display: block;
  margin: 0;
}
.page-careers .page-career__resource-card .featured-resource-card__img {
  aspect-ratio: 318/240;
  aspect-ratio: initial;
}
.page-careers .page-career__resource-card .featured-resource-card__author {
  font-size: 16px;
  line-height: 1.5;
  gap: 4px;
  letter-spacing: 2.5%;
  color: rgba(255, 255, 255, 0.9);
  font-variation-settings: "wght" 520, "slnt" 0, "SERF" 44;
}
.page-careers .page-career__resource-card .featured-resource-card__quote {
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-variation-settings: "wght" 440, "slnt" 0, "SERF" 44;
}
@media screen and (max-width: 1024px) {
  .page-careers .page-career__resource-card .featured-resource-card__quote {
    font-size: 18px;
    line-height: 1.5;
  }
}
.page-careers .single-text {
  padding-top: 88px;
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .page-careers .single-text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-careers .single-text .h2 {
    margin-bottom: 16px;
  }
}
.page-careers .single-text .button {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .page-careers .single-text .button {
    margin-top: 40px;
  }
}
.page-careers .partners__heading {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .page-careers .partners__heading {
    margin-top: 48px;
  }
}

.career-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .career-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .career-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.career-cards_mt {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .career-cards_mt {
    margin-top: 48px;
  }
}

.career-card {
  display: flex;
  flex-direction: column;
  padding: 48px 32px;
  background: #F2F8FC;
  border-radius: 8px;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .career-card {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .career-card {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 32px 24px;
  }
}
.career-card__text {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 767px) {
  .career-card__text {
    max-width: 330px;
  }
}
@media screen and (max-width: 767px) {
  .career-card__text {
    gap: 16px;
  }
}
.career-list__head {
  margin-bottom: 56px;
}
.career-list__subtitle {
  max-width: 630px;
}
.career-list__subtitle a {
  text-decoration: none;
  color: var(--color-blue-600);
  border-bottom: 1px solid currentColor;
  transition: 0.2s;
}
.career-list__subtitle a:hover {
  border-color: transparent;
}
.career-list__items {
  margin: 56px 0 64px;
}
.career-list__item {
  --space: 32px;
  padding-bottom: var(--space);
  display: flex;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .career-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.career-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: var(--space);
}
.career-list__wrap {
  max-width: 740px;
}
.career-list__name {
  text-decoration: none;
  color: var(--color-blue-950);
  transition: 0.2s;
}
.career-list__name:hover {
  color: var(--color-blue-600);
}
.career-list__info {
  margin-top: 4px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
}
.career-list__location {
  color: var(--color-text);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.career-list__btn {
  white-space: nowrap;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .career-list__btn {
    margin-left: 0;
  }
}

.career-tabs {
  background-color: #F3F9FD;
  padding: 120px 0 260px;
}
@media screen and (max-width: 1200px) {
  .career-tabs {
    padding: 90px 0;
  }
}
@media screen and (max-width: 767px) {
  .career-tabs {
    padding: 64px 0 228px;
  }
}
.career-tabs__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 124px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .career-tabs__row {
    gap: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .career-tabs__row {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .career-tabs__row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .career-tabs__content {
    padding-right: 16px;
  }
}
.career-tabs__nav {
  margin: 32px 0 40px;
}
@media screen and (max-width: 1200px) {
  .career-tabs__nav {
    margin: 32px 0;
  }
}
@media screen and (max-width: 1024px) {
  .career-tabs__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
  }
}
.career-tabs__nav-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 7px 40px;
  border-radius: 105px;
  height: 51px;
  color: var(--color-blue-600);
  border: 2px solid var(--color-blue-600);
  font-size: 15px;
  line-height: 1.2;
  font-weight: bold;
  vertical-align: top;
  margin-right: 4px;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .career-tabs__nav-btn {
    padding: 7px 15px;
    height: 42px;
    width: 100%;
  }
}
.career-tabs__nav-btn:hover, .career-tabs__nav-btn.active {
  background-color: var(--color-blue-600);
  color: var(--color-white);
}
.career-tabs__tab:not(.active) {
  display: none;
}
.career-tabs__text {
  color: var(--color-blue-950);
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .career-tabs__text {
    font-size: 16px;
  }
}
.career-tabs__images img {
  width: 100%;
  border-radius: var(--radius);
}
@media screen and (max-width: 1024px) {
  .career-tabs__images img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .career-tabs__images img {
    aspect-ratio: 4/3;
  }
}
.career-tabs__images img:not(.active) {
  display: none;
}
.career-tabs__ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.career-tabs__ul li {
  border-top: 1px solid var(--color-divider);
  display: flex;
  gap: 16px;
  padding: 20px 0;
}
@media screen and (max-width: 1200px) {
  .career-tabs__ul li {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 1024px) {
  .career-tabs__ul li {
    font-size: 14px;
    gap: 10px;
  }
}
.career-tabs__ul li svg {
  margin-top: 1px;
  flex: 0 0 18px;
}
.career-tabs__apply {
  margin-top: 48px;
}
@media screen and (max-width: 1200px) {
  .career-tabs__apply {
    margin-top: 32px;
  }
}

#grnhse_app {
  display: none;
}
#grnhse_app.open {
  --f-html-bg: #EEF6FA;
  --f-html-padding: 16px;
  border-radius: var(--radius);
  max-width: 1300px;
  width: 100%;
  display: block;
}
#grnhse_app .career__item-btn {
  color: var(--color-blue-950);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 16px;
  right: 16px;
  border: 2px solid var(--color-blue-950);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s;
  background-color: transparent;
  transform: rotate(45deg);
  cursor: pointer;
}
#grnhse_app .career__item-btn svg {
  fill: var(--color-blue-950);
  transition: 0.2s;
}

.all_jobs .job {
  --space: 32px;
  padding-bottom: var(--space);
  display: flex;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .all_jobs .job {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.all_jobs .job:not(:last-child) {
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: var(--space);
}

.page-search__wrapper {
  padding-top: 80px;
}
.page-search__form {
  width: 100%;
  max-width: 1162px;
  margin: 0 auto;
  position: relative;
}
.page-search__form-field {
  width: 100%;
  height: 76px;
  padding: 0 100px 0 24px;
  background: #FFFFFF;
  border: 1px solid var(--color-divider);
  box-shadow: 0px 24px 32px -24px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 18px;
  color: var(--color-blue-950);
  outline: none;
  transition: 0.2s;
}
.page-search__form-field:focus {
  border: 1px solid var(--color-blue-600);
}
.page-search__form-field[type=search] {
  -webkit-appearance: none;
  appearance: none;
}
.page-search__form-field[type=search]::-webkit-search-decoration, .page-search__form-field[type=search]::-webkit-search-cancel-button, .page-search__form-field[type=search]::-webkit-search-results-button, .page-search__form-field[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.page-search__form-btns {
  display: flex;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  gap: 5px;
}
.page-search__form-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.page-search__form-btn_submit {
  border: 2px solid var(--color-blue-600);
}
.page-search__form-btn_submit svg {
  fill: #076ee5;
}
.page-search__form-btn_submit:hover {
  background-color: var(--color-blue-600);
}
.page-search__form-btn_submit:hover svg {
  fill: #fff;
}
.page-search__form-btn_reset:hover {
  background-color: var(--color-grey);
}
.page-search__form-btn_reset:hover svg {
  fill: var(--color-blue-600);
}
.page-search__form-btn_reset svg {
  fill: #0a0f1e;
}
.page-search__head {
  padding: 64px 0;
}
@media screen and (max-width: 1024px) {
  .page-search__head {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .page-search__head {
    padding: 40px 0 24px;
  }
}
.page-search__small-container {
  max-width: 900px;
}
@media screen and (max-width: 1024px) {
  .page-search .filter__nav-wrap {
    border-top: 1px solid #CDDAE0;
  }
}
.page-search .highlighted {
  color: var(--color-blue-600);
}
.page-search .footer-cta-wrapper {
  margin-top: 0;
}

.page-search-list__items {
  margin: 56px 0 0;
  padding-bottom: 96px;
}
.page-search-list__item {
  --space: 32px;
  padding-bottom: var(--space);
  display: flex;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .page-search-list__item {
    gap: 24px;
  }
}
.page-search-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: var(--space);
}
.page-search-list__wrap {
  max-width: 740px;
}
.page-search-list__type {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-blue-950);
  opacity: 0.4;
}
.page-search-list__name {
  text-decoration: none;
  color: var(--color-blue-950);
  transition: 0.2s;
}
.page-search-list__name:hover {
  color: var(--color-blue-600);
}
.page-search-list__info {
  margin-top: 4px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-search-list__info {
    font-size: 14px;
  }
}
.page-search-list__btn {
  white-space: nowrap;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .page-search-list__btn {
    margin-left: 0;
  }
}

.page-news .featured-resource-card__body {
  -webkit-line-clamp: 3;
}
.page-news .featured-resource-card__body,
.page-news .featured-resource-card__body a {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1024px) {
  .page-news .featured-resource-card {
    padding-bottom: 48px;
  }
}
@media (max-width: 1024px) {
  .page-news .filter__nav-wrap {
    border-top: 1px solid #CDDAE0;
  }
}
.page-news .filters {
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .page-news .filters {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .page-news .filters .custom-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-news {
  /* Resource Cards */
}
.page-news .listing-posts .card__top {
  gap: 20px;
}
.page-news .listing-posts__load-more {
  padding-top: 64px;
  margin-top: 0;
  border-top: 1px solid #CDDAE0;
}
@media (max-width: 1024px) {
  .page-news .listing-posts__load-more {
    margin-top: 40px;
    border-top: none;
    padding-top: 0;
  }
}
.page-news .listing-posts--type2 {
  margin-bottom: 120px;
}
.page-news .listing-posts--type2 .card__bottom {
  justify-content: center;
}
.page-news .listing-posts--type2 .card__description {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .page-news .listing-posts--type2 {
    margin-bottom: 64px;
  }
  .page-news .listing-posts--type2 .listing-posts__wrapper:first-child .card {
    padding-top: 0;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .page-news .listing-posts--type2 .listing-posts__load-more {
    margin-bottom: 64px;
  }
}
.page-news .listing-posts--type3 .card {
  position: relative;
  overflow: hidden;
}
.page-news .listing-posts--type3 .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/services-intro-hover.jpg");
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s ease;
  opacity: 0;
  background-size: cover;
}
@media (min-width: 1025px) {
  .page-news .listing-posts--type3 .card:hover::before {
    opacity: 1;
  }
  .page-news .listing-posts--type3 .card:hover .button-link {
    color: #FFF;
  }
  .page-news .listing-posts--type3 .card:hover .button-link rect {
    fill: transparent;
    stroke: var(--color-blue-300);
  }
  .page-news .listing-posts--type3 .card:hover .button-link path {
    fill: #FFF;
  }
}
.page-news .listing-posts--type3 .card .card__top,
.page-news .listing-posts--type3 .card .card__bottom {
  z-index: 1;
  position: relative;
}
.page-news .headline {
  display: flex;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .page-news .headline {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
  .page-news .headline .filter__search {
    order: 0;
  }
}
.page-news .headline__title {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .page-news .press-release-section {
    padding-bottom: 0 !important;
  }
}
.page-news .footer-cta-wrapper {
  margin-top: 0;
}

.single-news .hero__content {
  min-width: none;
  max-width: 1062px;
  flex: auto;
}
.single-news .hero__inner {
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .single-news .hero__inner {
    padding-top: 88px;
  }
}
.single-news .entry-content {
  margin-bottom: 40px;
}
.single-news .content-section .card {
  max-height: none;
  padding: 32px 20px 48px;
  background-color: transparent;
  gap: 45px;
}
@media (max-width: 1024px) {
  .single-news .content-section .card {
    padding-left: 0;
    padding-right: 0;
  }
}
.single-news .content-section .card:hover {
  background-color: inherit;
}
.single-news .content-section .card:hover .pill span {
  border-color: var(--color-blue-600);
  color: var(--color-blue-600);
}
.single-news .content-section .card:hover .card__title {
  color: var(--color-text);
}
.single-news .content-section .card:hover .card__date {
  color: var(--color-text);
  opacity: 0.8;
}
.single-news .hbspt {
  display: none;
}
.single-news .listing-posts--type3 {
  margin-bottom: 112px;
}

.static-page__pagetitle {
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .static-page__pagetitle {
    margin-bottom: 32px;
  }
}
.static-page__row {
  display: flex;
  gap: 80px;
  margin-top: 96px;
  margin-bottom: 320px;
}
@media screen and (max-width: 1200px) {
  .static-page__row {
    gap: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .static-page__row {
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 270px;
  }
}
.static-page__col {
  min-width: 0;
}
.static-page__sidebar {
  flex: 0 0 350px;
}
@media screen and (max-width: 1200px) {
  .static-page__sidebar {
    flex-basis: 320px;
  }
}
@media screen and (max-width: 1024px) {
  .static-page__sidebar {
    flex: auto;
    display: block;
  }
}
.static-page__mobile-sidebar-target {
  position: relative;
  z-index: 10;
  margin-top: 32px;
}
.static-page__sidebar-wrap {
  background-color: var(--color-grey);
  border-radius: var(--radius);
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .static-page__sidebar-wrap {
    padding: 32px 20px;
    border-radius: 8px;
    z-index: 10;
  }
}
.static-page__sidebar-wrap.is-open .static-page__sidebar-icon {
  transform: rotate(0deg);
}
@media screen and (max-width: 1024px) {
  .static-page__sidebar-wrap.is-open .static-page__sidebar-nav {
    margin-top: 20px;
    padding: 20px 20px 0 0;
    border-top: 1px solid var(--color-divider);
  }
}
.static-page__sidebar-title {
  margin: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-blue-950);
  text-align: left;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .static-page__sidebar-title {
    cursor: pointer;
  }
}
.static-page__sidebar-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: none;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}
.static-page__sidebar-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 1024px) {
  .static-page__sidebar-icon {
    display: flex;
  }
}
.static-page__sidebar-nav {
  list-style: none;
  padding: 20px 20px 0 0;
  border-top: 1px solid var(--color-divider);
  color: #373737;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .static-page__sidebar-nav {
    max-height: 60vh;
    overflow: auto;
  }
}
@media screen and (max-width: 1024px) {
  .static-page__sidebar-nav {
    height: 0;
    margin: 0;
    padding: 0;
    border-top: 0;
    overflow: hidden;
    transition: height 0.3s ease, padding-top 0.3s ease, margin-top 0.3s ease;
  }
}
.static-page__sidebar-nav {
  /* Custom Scrollbar Styling */
  scrollbar-width: thin;
  scrollbar-color: var(--color-blue-800) var(--color-grey);
}
.static-page__sidebar-nav::-webkit-scrollbar {
  width: 8px;
}
.static-page__sidebar-nav::-webkit-scrollbar-track {
  background: var(--color-grey);
  border-radius: 4px;
}
.static-page__sidebar-nav::-webkit-scrollbar-thumb {
  background: var(--color-blue-300);
  border-radius: 4px;
  transition: background 0.3s ease;
}
.static-page__sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: var(--color-blue-500);
}
.static-page__sidebar-nav li a {
  color: var(--color-text);
  border-bottom: 1px solid transparent;
  text-decoration: none;
  transition: 0.2s;
}
.static-page__sidebar-nav li a:hover {
  color: var(--color-blue-600);
  border-color: currentColor;
}
.static-page__sidebar-btn {
  margin-top: 40px;
}
.static-page .entry-content {
  margin-top: 80px;
  min-width: initial !important;
}
@media screen and (max-width: 1200px) {
  .static-page .entry-content {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .static-page .entry-content {
    margin-top: 32px;
  }
}
.static-page .entry-content > *:not(img, .wp-block-image) {
  max-width: 100%;
}
.static-page .entry-content ul.dots-triangle li,
.static-page .entry-content ol.dots-triangle li {
  padding-left: 21px;
}
.static-page .entry-content ul.dots-triangle li:before,
.static-page .entry-content ol.dots-triangle li:before {
  border-radius: 6px;
  background: var(--color-blue-600);
  width: 6px;
  height: 6px;
}

.page-homepage .related_resources-section {
  padding-top: 64px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .page-homepage .technology-partners .services-intro__title {
    max-width: 340px;
  }
  .page-homepage .logo-garden-section {
    padding: 32px 20px;
  }
  .page-homepage .logo-garden-section .slider-logos {
    min-width: initial !important;
    flex-wrap: wrap !important;
    border-left: 0.5px solid var(--Divider, #CDDAE0);
    border-top: none;
  }
  .page-homepage .related_resources-section {
    padding-top: 0;
  }
}

.page-blog.single-post .article-sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .page-blog.single-post .article-sidebar__inner {
    gap: 32px;
  }
}

.page-blog.page-template-blog .featured-resource-card__wrapper {
  background-image: url(../images/featured-bg-resource@2x.jpg);
}
.page-blog.page-template-blog .featured-resource-card__headline .button svg {
  transform: rotate(90deg);
}
.page-blog.page-template-blog #list-blogs {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .page-blog.page-template-blog #list-blogs {
    margin-bottom: 64px;
  }
}
.page-blog.page-template-blog .footer-cta-wrapper {
  margin-top: 0;
}

.page-template-service-detail .hero {
  background-image: url("../images/hero-services-main@2x.jpg");
  background-color: #008FED;
}
@media (max-width: 767px) {
  .page-template-service-detail .hero {
    background-image: url("../images/hero-services-main-mobile@3x.jpg");
  }
}
@media (max-width: 767px) {
  .page-template-service-detail .section_corner-bottom-reverse.related_resources-section {
    padding-bottom: calc(188px + var(--angle-height));
  }
}

@media screen and (max-width: 1024px) {
  .page-client-support .info-grid_blue {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .page-client-support .info-grid_blue {
    padding-top: calc(var(--angle-height) + 46px);
    margin-top: 0;
  }
}
.page-client-support .client-support_p {
  padding: 120px 0 80px;
}
@media screen and (max-width: 767px) {
  .page-client-support .client-support_p {
    padding: 48px 0 45px;
  }
}
.page-client-support .client-support_grey {
  padding-bottom: 260px;
}
@media screen and (max-width: 767px) {
  .page-client-support .client-support_grey {
    padding-bottom: 238px;
  }
}
@media (max-width: 767px) {
  .page-client-support .client-support__title br {
    display: inline;
  }
}
.page-client-support .footer__top-shape {
  height: 0px;
  clip-path: none;
  bottom: 0;
}

.client-support-hero {
  padding-top: 70px;
}
@media screen and (max-width: 1200px) {
  .client-support-hero {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .client-support-hero {
    padding-top: 40px;
  }
}
.client-support-hero_mb {
  margin-bottom: -260px;
}
@media screen and (max-width: 1600px) {
  .client-support-hero_mb {
    margin-bottom: -154px;
  }
}
@media screen and (max-width: 1200px) {
  .client-support-hero_mb {
    margin-bottom: -120px;
  }
}
.client-support-hero__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .client-support-hero__row {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .client-support-hero__row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.client-support-hero__content {
  padding-top: 70px;
  gap: 56px;
  color: var(--color-text);
  max-width: 556px;
}
@media screen and (max-width: 1200px) {
  .client-support-hero__content {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .client-support-hero__content {
    padding-top: 20px;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .client-support-hero__content {
    padding-top: 0;
  }
}
.client-support-hero__wrap {
  max-width: 520px;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .client-support-hero__wrap {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .client-support-hero__title {
    max-width: 304px;
  }
}
.client-support-hero__button .button span {
  padding: 0 10px;
}
.client-support-hero__image {
  position: relative;
  z-index: 1;
}
.client-support-hero__image:before {
  content: "";
  position: absolute;
  width: calc(100% - 72px);
  aspect-ratio: 5/4;
  left: 36px;
  bottom: -25px;
  background: #010101;
  mix-blend-mode: plus-darker;
  opacity: 0.6;
  filter: blur(43.6px);
  z-index: 1;
  pointer-events: none;
}
.client-support-hero__image img {
  border-radius: 16px;
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .client-support-hero__image img {
    border-radius: var(--radius);
  }
}
@media screen and (max-width: 1023px) {
  .client-support-hero__image img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .client-support-hero__image img {
    aspect-ratio: 350/431;
  }
}

.client-support_p {
  padding: 120px 0;
}
@media screen and (max-width: 1200px) {
  .client-support_p {
    padding: 90px 0;
  }
}
.client-support_grey {
  background-color: #F3F9FD;
}
.client-support__heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  margin-bottom: 40px;
}
.client-support__heading_full {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .client-support__heading {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 32px;
  }
}
.client-support__contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.client-support__contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.client-support__contact-block p {
  font-family: "Season VF", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 520;
  line-height: 150%; /* 24px */
  letter-spacing: 0.4px;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .client-support__contact-block p {
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.3px;
  }
}
.client-support__contact-block p {
  margin: 0;
}
.client-support__contact-block p br {
  display: none;
}
.client-support__contact-block .button {
  display: none;
}
@media (max-width: 767px) {
  .client-support__contact-block .button {
    display: flex;
  }
}
.client-support__contact-block .button-link {
  display: flex;
}
@media (max-width: 767px) {
  .client-support__contact-block .button-link {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .client-support__subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 1024px) {
  .client-support__subtitle br {
    display: none;
  }
}
.client-support__dots {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Crect width='2' height='2' fill='%23D9D9D9'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-position: 0 0;
}
@media screen and (max-width: 767px) {
  .client-support__dots {
    background-size: 16px 16px;
  }
}
.client-support__cards {
  --cols: 3;
  padding: 44px 0 52px;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 40px 0;
}
.client-support__cards_3 {
  --cols: 3;
}
.client-support__cards_3 .client-support__card {
  border-radius: 0;
}
.client-support__cards_3 .client-support__card:not(:nth-child(3n+1)) {
  border-left: 0;
}
.client-support__cards_3 .client-support__card:nth-child(3n+1) {
  border-radius: var(--radius) 0 0 var(--radius);
}
.client-support__cards_3 .client-support__card:nth-child(3n) {
  border-radius: 0 var(--radius) var(--radius) 0;
}
.client-support__cards_3 .client-support__card:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.client-support__cards_3 .client-support__card .client-support__card-logo {
  aspect-ratio: 394/276;
}
@media (max-width: 767px) {
  .client-support__cards_3 .client-support__card .client-support__card-logo {
    aspect-ratio: 318/200;
  }
}
.client-support__cards_4 {
  --cols: 4;
}
.client-support__cards_4 .client-support__card {
  border-radius: 0;
}
.client-support__cards_4 .client-support__card:not(:nth-child(4n+1)) {
  border-left: 0;
}
.client-support__cards_4 .client-support__card:nth-child(4n+1) {
  border-radius: var(--radius) 0 0 var(--radius);
}
.client-support__cards_4 .client-support__card:nth-child(4n) {
  border-radius: 0 var(--radius) var(--radius) 0;
}
.client-support__cards_4 .client-support__card:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.client-support__cards_grey .client-support__card {
  background: #F3F9FD;
}
.client-support__cards_white .client-support__card {
  background: #fff;
}
.client-support__cards_white .client-support__card-logo {
  background-color: #F3F9FD;
}
@media screen and (max-width: 1023px) {
  .client-support__cards {
    --cols: 2;
    gap: 24px 0;
  }
  .client-support__cards .client-support__card {
    border-radius: 0;
    border-left: 1px solid #CDDAE0;
  }
  .client-support__cards .client-support__card:nth-child(2n+1) {
    border-left: 1px solid #CDDAE0;
  }
  .client-support__cards .client-support__card:not(:nth-child(2n+1)) {
    border-left: 0;
  }
  .client-support__cards .client-support__card:nth-child(2n+1) {
    border-radius: var(--radius) 0 0 var(--radius);
  }
  .client-support__cards .client-support__card:nth-child(2n) {
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  .client-support__cards .client-support__card:last-child {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
  }
}
@media screen and (max-width: 620px) {
  .client-support__cards {
    --cols: 1;
  }
  .client-support__cards .client-support__card {
    border: 1px solid #CDDAE0 !important;
    border-radius: var(--radius) !important;
  }
}
.client-support__card {
  border: 1px solid #CDDAE0;
  border-radius: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.client-support__card:nth-child(1) .client-support__card-title {
  max-width: 185px;
}
.client-support__card:nth-child(2) .client-support__card-title {
  max-width: 240px;
}
.client-support__card:nth-child(3) .client-support__card-title {
  max-width: 270px;
}
.client-support__card:nth-child(4) .client-support__card-title {
  max-width: 240px;
}
.client-support__card-logo {
  aspect-ratio: 288/276;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
}
@media (max-width: 767px) {
  .client-support__card-logo {
    aspect-ratio: 318/200;
  }
}
.client-support__card-info {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
}
@media screen and (max-width: 1200px) {
  .client-support__card-info {
    padding: 24px 16px;
  }
}
.client-support__card-title {
  color: var(--color-blue-950);
}
@media (max-width: 767px) {
  .client-support__card-title {
    max-width: 318/200;
  }
}
.client-support__card-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}
/*# sourceMappingURL=style.css.map */
