@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap);@charset "UTF-8";
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-BlackItalic.woff2") format("woff2"), url("../fonts/Satoshi-BlackItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Black.woff2") format("woff2"), url("../fonts/Satoshi-Black.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-MediumItalic.woff2") format("woff2"), url("../fonts/Satoshi-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-LightItalic.woff2") format("woff2"), url("../fonts/Satoshi-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-BoldItalic.woff2") format("woff2"), url("../fonts/Satoshi-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Italic.woff2") format("woff2"), url("../fonts/Satoshi-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2"), url("../fonts/Satoshi-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Light.woff2") format("woff2"), url("../fonts/Satoshi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Variable";
  src: url("../fonts/SatoshiVariable-BoldItalic.woff2") format("woff2"), url("../fonts/SatoshiVariable-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Variable";
  src: url("../fonts/SatoshiVariable-Bold.woff2") format("woff2"), url("../fonts/SatoshiVariable-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2"), url("../fonts/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.appear {
  animation: 1.5s appear;
}

.disappear {
  animation: 1.5s disappear;
}

@keyframes appear {
  0% {
    opacity: 0;
    bottom: -3rem;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
    bottom: -3rem;
  }
  100% {
    opacity: 0;
    bottom: 0;
  }
}
.loader {
  position: relative;
  width: 44px;
  height: 8px;
  margin: 12px auto;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #ccc;
  position: absolute;
}

.dot_1 {
  animation: animateDot1 1.5s linear infinite;
  left: 12px;
  background: #1055D7;
}

.dot_2 {
  animation: animateDot2 1.5s linear infinite;
  animation-delay: 0.5s;
  left: 24px;
}

.dot_3 {
  animation: animateDot3 1.5s linear infinite;
  left: 12px;
}

.dot_4 {
  animation: animateDot4 1.5s linear infinite;
  animation-delay: 0.5s;
  left: 24px;
}

@keyframes animateDot1 {
  0% {
    transform: rotate(0deg) translateX(-12px);
  }
  25% {
    transform: rotate(180deg) translateX(-12px);
  }
  75% {
    transform: rotate(180deg) translateX(-12px);
  }
  100% {
    transform: rotate(360deg) translateX(-12px);
  }
}
@keyframes animateDot2 {
  0% {
    transform: rotate(0deg) translateX(-12px);
  }
  25% {
    transform: rotate(-180deg) translateX(-12px);
  }
  75% {
    transform: rotate(-180deg) translateX(-12px);
  }
  100% {
    transform: rotate(-360deg) translateX(-12px);
  }
}
@keyframes animateDot3 {
  0% {
    transform: rotate(0deg) translateX(12px);
  }
  25% {
    transform: rotate(180deg) translateX(12px);
  }
  75% {
    transform: rotate(180deg) translateX(12px);
  }
  100% {
    transform: rotate(360deg) translateX(12px);
  }
}
@keyframes animateDot4 {
  0% {
    transform: rotate(0deg) translateX(12px);
  }
  25% {
    transform: rotate(-180deg) translateX(12px);
  }
  75% {
    transform: rotate(-180deg) translateX(12px);
  }
  100% {
    transform: rotate(-360deg) translateX(12px);
  }
}
.scroll-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #1055D7;
  height: 3.75rem;
  overflow: hidden;
}

.slide-text {
  width: 100%;
  overflow-x: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.slide-text p, .slide-text .btn, .slide-text .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .slide-text .wpcf7-list-item-label, .slide-text .module-intro-hero__btn, .slide-text .post .text-wrapper .categories .category, .post .text-wrapper .categories .slide-text .category, .slide-text .post .wp-block-button a, .post .wp-block-button .slide-text a, .slide-text .blog-secondary-item__date, .slide-text .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .slide-text span, .slide-text .map-link {
  font-family: "Outfit", sans-serif;
  color: white;
  font-size: 1rem;
  text-wrap: nowrap;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem; /* 187.5% */
  letter-spacing: -0.03rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

.scrollable-section {
  height: 100vh;
  padding: 0;
}

.scrollable-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.scrollable-content {
  height: 100%;
  overflow-y: auto;
  padding: 2rem;
}

.dummy-content {
  height: 200vh;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.scrollable-cards-container {
  position: absolute;
  top: 0;
}

h1, .hero-wrapper h1 span, .hero-wrapper .is-h1 span, .is-h1 {
  font-family: "Outfit", sans-serif;
  font-size: 3.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: normal;
}
@media only screen and (max-width: 768px) {
  h1, .hero-wrapper h1 span, .hero-wrapper .is-h1 span, .is-h1 {
    font-size: 2.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 104%; /* 2.99rem */
  }
}

h2, .is-h2, .custom-map .left h2 span, .custom-map .left .is-h2 span, .map-section h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span span, .map-section h2 span, .map-section .is-h2 span {
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.5rem; /* 100% */
  letter-spacing: -0.25rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  h2, .is-h2, .custom-map .left h2 span, .custom-map .left .is-h2 span, .map-section h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span span, .map-section h2 span, .map-section .is-h2 span {
    font-size: 2.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 104%; /* 2.47rem */
    letter-spacing: -0.125rem;
  }
}

h3 {
  font-size: 2.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5rem;
  letter-spacing: -0.07125rem;
  font-family: "Outfit", sans-serif;
}

h4 {
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem;
  font-family: "Outfit", sans-serif;
}

h5, .module-selector-card__name, .accordion-button {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem;
}

h6, .module-tab-success-stories__case-title a, .module-tab-split-checklist-featured__box-title, .modules-selection-bar__count span, .module-intro-features__tagline {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 120% */
}

.p-lead, .module-tab-success-stories__quote-text, .module-tab-overview__description p, .module-tab-overview__description .map-link, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span, .module-tab-overview__description .blog-secondary-item__date, .module-tab-overview__description .btn, .module-tab-overview__description .module-intro-hero__btn, .module-tab-overview__description .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-tab-overview__description .category, .module-tab-overview__description .post .wp-block-button a, .post .wp-block-button .module-tab-overview__description a, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label, .post blockquote p, .post blockquote .btn, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label, .post blockquote .module-intro-hero__btn, .post blockquote .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .category, .post blockquote .wp-block-button a, .post .wp-block-button blockquote a, .post blockquote .blog-secondary-item__date, .post blockquote .map-link, .post blockquote .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .post blockquote span, .module-intro-features__title, .module-intro-hero__text, .module-intro-hero__title, .platform-section .left h2, .platform-section .left .is-h2, .platform-section .custom-map .left h2 span, .custom-map .platform-section .left h2 span, .platform-section .custom-map .left .is-h2 span, .custom-map .platform-section .left .is-h2 span, .platform-section .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .platform-section .left span span, .platform-section .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .platform-section .left span span, .platform-section .left h3, .platform-section .left span {
  font-family: var(--font-Body, "DM Sans");
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem; /* 125% */
}
.p-lead p, .module-tab-success-stories__quote-text p, .module-tab-overview__description p p, .module-tab-overview__description .map-link p, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span p, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span p, .module-tab-overview__description .blog-secondary-item__date p, .module-tab-overview__description .btn p, .module-tab-overview__description .module-intro-hero__btn p, .module-tab-overview__description .post .text-wrapper .categories .category p, .post .text-wrapper .categories .module-tab-overview__description .category p, .module-tab-overview__description .post .wp-block-button a p, .post .wp-block-button .module-tab-overview__description a p, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label p, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label p, .p-lead .btn, .module-tab-success-stories__quote-text .btn, .module-tab-overview__description p .btn, .module-tab-overview__description .map-link .btn, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .btn, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .btn, .module-tab-overview__description .blog-secondary-item__date .btn, .module-tab-overview__description .btn .btn, .module-tab-overview__description .module-intro-hero__btn .btn, .module-tab-overview__description .post .text-wrapper .categories .category .btn, .post .text-wrapper .categories .module-tab-overview__description .category .btn, .module-tab-overview__description .post .wp-block-button a .btn, .post .wp-block-button .module-tab-overview__description a .btn, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .btn, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .btn, .p-lead .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-success-stories__quote-text .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description p .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .map-link .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .blog-secondary-item__date .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .btn .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .module-intro-hero__btn .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .post .text-wrapper .categories .category .form-radio .wpcf7-list-item .wpcf7-list-item-label, .post .text-wrapper .categories .module-tab-overview__description .category .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .post .wp-block-button a .form-radio .wpcf7-list-item .wpcf7-list-item-label, .post .wp-block-button .module-tab-overview__description a .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .p-lead .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-success-stories__quote-text .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description p .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item p .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .map-link .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .map-link .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .wpcf7-list-item-label, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .form-radio .wpcf7-list-item span .wpcf7-list-item-label, .form-radio .wpcf7-list-item .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .wpcf7-list-item-label, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .form-radio .wpcf7-list-item span .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .blog-secondary-item__date .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .blog-secondary-item__date .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .btn .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .btn .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .module-intro-hero__btn .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .module-intro-hero__btn .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .post .text-wrapper .categories .category .wpcf7-list-item-label, .module-tab-overview__description .post .text-wrapper .categories .form-radio .wpcf7-list-item .category .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post .text-wrapper .categories .module-tab-overview__description .category .wpcf7-list-item-label, .post .text-wrapper .categories .module-tab-overview__description .form-radio .wpcf7-list-item .category .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .post .wp-block-button a .wpcf7-list-item-label, .module-tab-overview__description .post .wp-block-button .form-radio .wpcf7-list-item a .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post .wp-block-button .module-tab-overview__description a .wpcf7-list-item-label, .post .wp-block-button .module-tab-overview__description .form-radio .wpcf7-list-item a .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .wpcf7-list-item-label, .p-lead .module-intro-hero__btn, .module-tab-success-stories__quote-text .module-intro-hero__btn, .module-tab-overview__description p .module-intro-hero__btn, .module-tab-overview__description .map-link .module-intro-hero__btn, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .module-intro-hero__btn, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .module-intro-hero__btn, .module-tab-overview__description .blog-secondary-item__date .module-intro-hero__btn, .module-tab-overview__description .btn .module-intro-hero__btn, .module-tab-overview__description .module-intro-hero__btn .module-intro-hero__btn, .module-tab-overview__description .post .text-wrapper .categories .category .module-intro-hero__btn, .post .text-wrapper .categories .module-tab-overview__description .category .module-intro-hero__btn, .module-tab-overview__description .post .wp-block-button a .module-intro-hero__btn, .post .wp-block-button .module-tab-overview__description a .module-intro-hero__btn, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .module-intro-hero__btn, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .module-intro-hero__btn, .p-lead .post .text-wrapper .categories .category, .module-tab-success-stories__quote-text .post .text-wrapper .categories .category, .module-tab-overview__description p .post .text-wrapper .categories .category, .module-tab-overview__description .map-link .post .text-wrapper .categories .category, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .post .text-wrapper .categories .category, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .post .text-wrapper .categories .category, .module-tab-overview__description .blog-secondary-item__date .post .text-wrapper .categories .category, .module-tab-overview__description .btn .post .text-wrapper .categories .category, .module-tab-overview__description .module-intro-hero__btn .post .text-wrapper .categories .category, .module-tab-overview__description .post .text-wrapper .categories .category .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-tab-overview__description .category .post .text-wrapper .categories .category, .module-tab-overview__description .post .wp-block-button a .post .text-wrapper .categories .category, .post .wp-block-button .module-tab-overview__description a .post .text-wrapper .categories .category, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .post .text-wrapper .categories .category, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .post .text-wrapper .categories .category, .post .text-wrapper .categories .p-lead .category, .post .text-wrapper .categories .module-tab-success-stories__quote-text .category, .post .text-wrapper .categories .module-tab-overview__description p .category, .module-tab-overview__description .post .text-wrapper .categories p .category, .post .text-wrapper .categories .module-tab-overview__description .map-link .category, .module-tab-overview__description .post .text-wrapper .categories .map-link .category, .post .text-wrapper .categories .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .category, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .post .text-wrapper .categories span .category, .post .text-wrapper .categories .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .category, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .post .text-wrapper .categories span .category, .post .text-wrapper .categories .module-tab-overview__description .blog-secondary-item__date .category, .module-tab-overview__description .post .text-wrapper .categories .blog-secondary-item__date .category, .post .text-wrapper .categories .module-tab-overview__description .btn .category, .module-tab-overview__description .post .text-wrapper .categories .btn .category, .post .text-wrapper .categories .module-tab-overview__description .module-intro-hero__btn .category, .module-tab-overview__description .post .text-wrapper .categories .module-intro-hero__btn .category, .module-tab-overview__description .post .text-wrapper .categories .category .category, .post .text-wrapper .categories .module-tab-overview__description .category .category, .module-tab-overview__description .post .text-wrapper .categories .wp-block-button a .category, .module-tab-overview__description .post .wp-block-button .text-wrapper .categories a .category, .post .text-wrapper .categories .wp-block-button .module-tab-overview__description a .category, .post .wp-block-button .module-tab-overview__description .text-wrapper .categories a .category, .post .text-wrapper .categories .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .category, .module-tab-overview__description .form-radio .wpcf7-list-item .post .text-wrapper .categories .wpcf7-list-item-label .category, .post .text-wrapper .categories .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .category, .form-radio .wpcf7-list-item .module-tab-overview__description .post .text-wrapper .categories .wpcf7-list-item-label .category, .p-lead .post .wp-block-button a, .module-tab-success-stories__quote-text .post .wp-block-button a, .module-tab-overview__description p .post .wp-block-button a, .module-tab-overview__description .map-link .post .wp-block-button a, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .post .wp-block-button a, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .post .wp-block-button a, .module-tab-overview__description .blog-secondary-item__date .post .wp-block-button a, .module-tab-overview__description .btn .post .wp-block-button a, .module-tab-overview__description .module-intro-hero__btn .post .wp-block-button a, .module-tab-overview__description .post .text-wrapper .categories .category .post .wp-block-button a, .post .text-wrapper .categories .module-tab-overview__description .category .post .wp-block-button a, .module-tab-overview__description .post .wp-block-button a .post .wp-block-button a, .post .wp-block-button .module-tab-overview__description a .post .wp-block-button a, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .post .wp-block-button a, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .post .wp-block-button a, .post .wp-block-button .p-lead a, .post .wp-block-button .module-tab-success-stories__quote-text a, .post .wp-block-button .module-tab-overview__description p a, .module-tab-overview__description .post .wp-block-button p a, .post .wp-block-button .module-tab-overview__description .map-link a, .module-tab-overview__description .post .wp-block-button .map-link a, .post .wp-block-button .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span a, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .post .wp-block-button span a, .post .wp-block-button .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span a, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .post .wp-block-button span a, .post .wp-block-button .module-tab-overview__description .blog-secondary-item__date a, .module-tab-overview__description .post .wp-block-button .blog-secondary-item__date a, .post .wp-block-button .module-tab-overview__description .btn a, .module-tab-overview__description .post .wp-block-button .btn a, .post .wp-block-button .module-tab-overview__description .module-intro-hero__btn a, .module-tab-overview__description .post .wp-block-button .module-intro-hero__btn a, .module-tab-overview__description .post .wp-block-button .text-wrapper .categories .category a, .module-tab-overview__description .post .text-wrapper .categories .wp-block-button .category a, .post .wp-block-button .text-wrapper .categories .module-tab-overview__description .category a, .post .text-wrapper .categories .module-tab-overview__description .wp-block-button .category a, .module-tab-overview__description .post .wp-block-button a a, .post .wp-block-button .module-tab-overview__description a a, .post .wp-block-button .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label a, .module-tab-overview__description .form-radio .wpcf7-list-item .post .wp-block-button .wpcf7-list-item-label a, .post .wp-block-button .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label a, .form-radio .wpcf7-list-item .module-tab-overview__description .post .wp-block-button .wpcf7-list-item-label a, .p-lead .blog-secondary-item__date, .module-tab-success-stories__quote-text .blog-secondary-item__date, .module-tab-overview__description p .blog-secondary-item__date, .module-tab-overview__description .map-link .blog-secondary-item__date, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .blog-secondary-item__date, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .blog-secondary-item__date, .module-tab-overview__description .blog-secondary-item__date .blog-secondary-item__date, .module-tab-overview__description .btn .blog-secondary-item__date, .module-tab-overview__description .module-intro-hero__btn .blog-secondary-item__date, .module-tab-overview__description .post .text-wrapper .categories .category .blog-secondary-item__date, .post .text-wrapper .categories .module-tab-overview__description .category .blog-secondary-item__date, .module-tab-overview__description .post .wp-block-button a .blog-secondary-item__date, .post .wp-block-button .module-tab-overview__description a .blog-secondary-item__date, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .blog-secondary-item__date, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .blog-secondary-item__date, .post blockquote p p, .post blockquote .btn p, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label p, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label p, .post blockquote .module-intro-hero__btn p, .post blockquote .text-wrapper .categories .category p, .post .text-wrapper .categories blockquote .category p, .post blockquote .wp-block-button a p, .post .wp-block-button blockquote a p, .post blockquote p .btn, .post blockquote p .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote p .wpcf7-list-item-label, .post blockquote .btn .btn, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label .btn, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label .btn, .post blockquote .btn .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .btn .wpcf7-list-item-label, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label .wpcf7-list-item-label, .post blockquote .module-intro-hero__btn .btn, .post blockquote .module-intro-hero__btn .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .module-intro-hero__btn .wpcf7-list-item-label, .post blockquote .text-wrapper .categories .category .btn, .post blockquote .text-wrapper .categories .category .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .text-wrapper .categories .category .wpcf7-list-item-label, .post .text-wrapper .categories blockquote .category .btn, .post .text-wrapper .categories blockquote .category .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post .text-wrapper .categories blockquote .category .wpcf7-list-item-label, .post blockquote .wp-block-button a .btn, .post blockquote .wp-block-button a .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .wp-block-button a .wpcf7-list-item-label, .post .wp-block-button blockquote a .btn, .post .wp-block-button blockquote a .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post .wp-block-button blockquote a .wpcf7-list-item-label, .post blockquote p .module-intro-hero__btn, .post blockquote .btn .module-intro-hero__btn, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label .module-intro-hero__btn, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label .module-intro-hero__btn, .post blockquote .module-intro-hero__btn .module-intro-hero__btn, .post blockquote .text-wrapper .categories .category .module-intro-hero__btn, .post .text-wrapper .categories blockquote .category .module-intro-hero__btn, .post blockquote .wp-block-button a .module-intro-hero__btn, .post .wp-block-button blockquote a .module-intro-hero__btn, .post blockquote p .text-wrapper .categories .category, .post .text-wrapper .categories blockquote p .category, .post blockquote .btn .text-wrapper .categories .category, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label .text-wrapper .categories .category, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .btn .category, .post .text-wrapper .categories blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label .category, .form-radio .wpcf7-list-item .post .text-wrapper .categories blockquote .wpcf7-list-item-label .category, .post blockquote .module-intro-hero__btn .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .module-intro-hero__btn .category, .post blockquote .text-wrapper .categories .category .category, .post .text-wrapper .categories blockquote .category .category, .post blockquote .wp-block-button a .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .wp-block-button a .category, .post .wp-block-button blockquote a .text-wrapper .categories .category, .post .text-wrapper .categories .wp-block-button blockquote a .category, .post blockquote p .wp-block-button a, .post .wp-block-button blockquote p a, .post blockquote .btn .wp-block-button a, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label .wp-block-button a, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label .wp-block-button a, .post .wp-block-button blockquote .btn a, .post .wp-block-button blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label a, .form-radio .wpcf7-list-item .post .wp-block-button blockquote .wpcf7-list-item-label a, .post blockquote .module-intro-hero__btn .wp-block-button a, .post .wp-block-button blockquote .module-intro-hero__btn a, .post blockquote .text-wrapper .categories .category .wp-block-button a, .post .wp-block-button blockquote .text-wrapper .categories .category a, .post .text-wrapper .categories blockquote .category .wp-block-button a, .post .wp-block-button .text-wrapper .categories blockquote .category a, .post blockquote .wp-block-button a a, .post .wp-block-button blockquote a a, .post blockquote .blog-secondary-item__date p, .post blockquote .blog-secondary-item__date .btn, .post blockquote .blog-secondary-item__date .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .blog-secondary-item__date .wpcf7-list-item-label, .post blockquote .blog-secondary-item__date .module-intro-hero__btn, .post blockquote .blog-secondary-item__date .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .blog-secondary-item__date .category, .post blockquote .blog-secondary-item__date .wp-block-button a, .post .wp-block-button blockquote .blog-secondary-item__date a, .post blockquote p .blog-secondary-item__date, .post blockquote .btn .blog-secondary-item__date, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label .blog-secondary-item__date, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label .blog-secondary-item__date, .post blockquote .module-intro-hero__btn .blog-secondary-item__date, .post blockquote .text-wrapper .categories .category .blog-secondary-item__date, .post .text-wrapper .categories blockquote .category .blog-secondary-item__date, .post blockquote .wp-block-button a .blog-secondary-item__date, .post .wp-block-button blockquote a .blog-secondary-item__date, .post blockquote .blog-secondary-item__date .blog-secondary-item__date, .post blockquote .map-link p, .post blockquote .map-link .btn, .post blockquote .map-link .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .map-link .wpcf7-list-item-label, .post blockquote .map-link .module-intro-hero__btn, .post blockquote .map-link .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .map-link .category, .post blockquote .map-link .wp-block-button a, .post .wp-block-button blockquote .map-link a, .post blockquote .map-link .blog-secondary-item__date, .post blockquote .modules-listing-section .module-card__bullets ul li span p, .post blockquote .modules-listing-section .module-card__bullets ul li span .btn, .post blockquote .modules-listing-section .module-card__bullets ul li span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .modules-listing-section .module-card__bullets ul li span .wpcf7-list-item-label, .post blockquote .modules-listing-section .module-card__bullets ul li span .module-intro-hero__btn, .post blockquote .modules-listing-section .module-card__bullets ul li span .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .modules-listing-section .module-card__bullets ul li span .category, .post blockquote .modules-listing-section .module-card__bullets ul li span .wp-block-button a, .post .wp-block-button blockquote .modules-listing-section .module-card__bullets ul li span a, .post blockquote .modules-listing-section .module-card__bullets ul li span .blog-secondary-item__date, .modules-listing-section .module-card__bullets ul li .post blockquote span p, .modules-listing-section .module-card__bullets ul li .post blockquote span .btn, .modules-listing-section .module-card__bullets ul li .post blockquote span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .modules-listing-section .module-card__bullets ul li .post blockquote span .wpcf7-list-item-label, .modules-listing-section .module-card__bullets ul li .post blockquote span .module-intro-hero__btn, .modules-listing-section .module-card__bullets ul li .post blockquote span .text-wrapper .categories .category, .modules-listing-section .module-card__bullets ul li .post .text-wrapper .categories blockquote span .category, .modules-listing-section .module-card__bullets ul li .post blockquote span .wp-block-button a, .modules-listing-section .module-card__bullets ul li .post .wp-block-button blockquote span a, .modules-listing-section .module-card__bullets ul li .post blockquote span .blog-secondary-item__date, .p-lead .modules-listing-section .module-card__bullets ul li span, .module-tab-success-stories__quote-text .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description p .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .map-link .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .blog-secondary-item__date .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .btn .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .module-intro-hero__btn .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .post .text-wrapper .categories .category .modules-listing-section .module-card__bullets ul li span, .post .text-wrapper .categories .module-tab-overview__description .category .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .post .wp-block-button a .modules-listing-section .module-card__bullets ul li span, .post .wp-block-button .module-tab-overview__description a .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .modules-listing-section .module-card__bullets ul li span, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .modules-listing-section .module-card__bullets ul li span, .post blockquote p .modules-listing-section .module-card__bullets ul li span, .post blockquote .btn .modules-listing-section .module-card__bullets ul li span, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label .modules-listing-section .module-card__bullets ul li span, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label .modules-listing-section .module-card__bullets ul li span, .post blockquote .module-intro-hero__btn .modules-listing-section .module-card__bullets ul li span, .post blockquote .text-wrapper .categories .category .modules-listing-section .module-card__bullets ul li span, .post .text-wrapper .categories blockquote .category .modules-listing-section .module-card__bullets ul li span, .post blockquote .wp-block-button a .modules-listing-section .module-card__bullets ul li span, .post .wp-block-button blockquote a .modules-listing-section .module-card__bullets ul li span, .post blockquote .blog-secondary-item__date .modules-listing-section .module-card__bullets ul li span, .post blockquote .map-link .modules-listing-section .module-card__bullets ul li span, .post blockquote .modules-listing-section .module-card__bullets ul li span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .post blockquote span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .p-lead span, .modules-listing-section .module-card__bullets ul li .module-tab-success-stories__quote-text span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description p span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li p span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .map-link span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .map-link span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .blog-secondary-item__date span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .blog-secondary-item__date span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .btn span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .btn span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .module-intro-hero__btn span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .module-intro-hero__btn span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .post .text-wrapper .categories .category span, .module-tab-overview__description .post .text-wrapper .categories .modules-listing-section .module-card__bullets ul li .category span, .modules-listing-section .module-card__bullets ul li .post .text-wrapper .categories .module-tab-overview__description .category span, .post .text-wrapper .categories .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .category span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .post .wp-block-button a span, .module-tab-overview__description .post .wp-block-button .modules-listing-section .module-card__bullets ul li a span, .modules-listing-section .module-card__bullets ul li .post .wp-block-button .module-tab-overview__description a span, .post .wp-block-button .module-tab-overview__description .modules-listing-section .module-card__bullets ul li a span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label span, .module-tab-overview__description .form-radio .wpcf7-list-item .modules-listing-section .module-card__bullets ul li .wpcf7-list-item-label span, .modules-listing-section .module-card__bullets ul li .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label span, .form-radio .wpcf7-list-item .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .wpcf7-list-item-label span, .modules-listing-section .module-card__bullets ul li .post blockquote p span, .modules-listing-section .module-card__bullets ul li .post blockquote .btn span, .modules-listing-section .module-card__bullets ul li .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label span, .form-radio .wpcf7-list-item .modules-listing-section .module-card__bullets ul li .post blockquote .wpcf7-list-item-label span, .modules-listing-section .module-card__bullets ul li .post blockquote .module-intro-hero__btn span, .modules-listing-section .module-card__bullets ul li .post blockquote .text-wrapper .categories .category span, .modules-listing-section .module-card__bullets ul li .post .text-wrapper .categories blockquote .category span, .modules-listing-section .module-card__bullets ul li .post blockquote .wp-block-button a span, .modules-listing-section .module-card__bullets ul li .post .wp-block-button blockquote a span, .modules-listing-section .module-card__bullets ul li .post blockquote .blog-secondary-item__date span, .post blockquote .modules-listing-section .module-card__bullets ul li p span, .post blockquote .modules-listing-section .module-card__bullets ul li .btn span, .post blockquote .modules-listing-section .module-card__bullets ul li .form-radio .wpcf7-list-item .wpcf7-list-item-label span, .form-radio .wpcf7-list-item .post blockquote .modules-listing-section .module-card__bullets ul li .wpcf7-list-item-label span, .post blockquote .modules-listing-section .module-card__bullets ul li .module-intro-hero__btn span, .post blockquote .modules-listing-section .module-card__bullets ul li .text-wrapper .categories .category span, .post .text-wrapper .categories blockquote .modules-listing-section .module-card__bullets ul li .category span, .post blockquote .modules-listing-section .module-card__bullets ul li .wp-block-button a span, .post .wp-block-button blockquote .modules-listing-section .module-card__bullets ul li a span, .post blockquote .modules-listing-section .module-card__bullets ul li .blog-secondary-item__date span, .modules-listing-section .module-card__bullets ul li .post blockquote .map-link span, .post blockquote .modules-listing-section .module-card__bullets ul li .map-link span, .post blockquote .modules-listing-section .module-card__bullets ul li span span, .modules-listing-section .module-card__bullets ul li .post blockquote span span, .module-intro-features__title p, .module-intro-features__title .btn, .module-intro-features__title .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-intro-features__title .wpcf7-list-item-label, .module-intro-features__title .module-intro-hero__btn, .module-intro-features__title .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-intro-features__title .category, .module-intro-features__title .post .wp-block-button a, .post .wp-block-button .module-intro-features__title a, .module-intro-features__title .blog-secondary-item__date, .module-intro-features__title .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-intro-features__title span, .module-intro-hero__text p, .module-intro-hero__text .btn, .module-intro-hero__text .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-intro-hero__text .wpcf7-list-item-label, .module-intro-hero__text .module-intro-hero__btn, .module-intro-hero__text .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-intro-hero__text .category, .module-intro-hero__text .post .wp-block-button a, .post .wp-block-button .module-intro-hero__text a, .module-intro-hero__text .blog-secondary-item__date, .module-intro-hero__text .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-intro-hero__text span, .module-intro-hero__title p, .module-intro-hero__title .btn, .module-intro-hero__title .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-intro-hero__title .wpcf7-list-item-label, .module-intro-hero__title .module-intro-hero__btn, .module-intro-hero__title .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-intro-hero__title .category, .module-intro-hero__title .post .wp-block-button a, .post .wp-block-button .module-intro-hero__title a, .module-intro-hero__title .blog-secondary-item__date, .module-intro-hero__title .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-intro-hero__title span, .p-lead .map-link, .module-tab-success-stories__quote-text .map-link, .module-tab-overview__description p .map-link, .module-tab-overview__description .map-link .map-link, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span .map-link, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span .map-link, .module-tab-overview__description .blog-secondary-item__date .map-link, .module-tab-overview__description .btn .map-link, .module-tab-overview__description .module-intro-hero__btn .map-link, .module-tab-overview__description .post .text-wrapper .categories .category .map-link, .post .text-wrapper .categories .module-tab-overview__description .category .map-link, .module-tab-overview__description .post .wp-block-button a .map-link, .post .wp-block-button .module-tab-overview__description a .map-link, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label .map-link, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label .map-link, .post blockquote p .map-link, .post blockquote .btn .map-link, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label .map-link, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label .map-link, .post blockquote .module-intro-hero__btn .map-link, .post blockquote .text-wrapper .categories .category .map-link, .post .text-wrapper .categories blockquote .category .map-link, .post blockquote .wp-block-button a .map-link, .post .wp-block-button blockquote a .map-link, .post blockquote .blog-secondary-item__date .map-link, .post blockquote .map-link .map-link, .post blockquote .modules-listing-section .module-card__bullets ul li span .map-link, .modules-listing-section .module-card__bullets ul li .post blockquote span .map-link, .module-intro-features__title .map-link, .module-intro-hero__text .map-link, .module-intro-hero__title .map-link, .platform-section .left h2 p, .platform-section .left h2 .btn, .platform-section .left h2 .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .left h2 .wpcf7-list-item-label, .platform-section .left h2 .module-intro-hero__btn, .platform-section .left h2 .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .left h2 .category, .platform-section .left h2 .post .wp-block-button a, .post .wp-block-button .platform-section .left h2 a, .platform-section .left h2 .blog-secondary-item__date, .platform-section .left h2 .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .left h2 span, .platform-section .left h2 .map-link, .platform-section .left .is-h2 p, .platform-section .left .is-h2 .btn, .platform-section .left .is-h2 .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .left .is-h2 .wpcf7-list-item-label, .platform-section .left .is-h2 .module-intro-hero__btn, .platform-section .left .is-h2 .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .left .is-h2 .category, .platform-section .left .is-h2 .post .wp-block-button a, .post .wp-block-button .platform-section .left .is-h2 a, .platform-section .left .is-h2 .blog-secondary-item__date, .platform-section .left .is-h2 .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .left .is-h2 span, .platform-section .custom-map .left h2 span p, .platform-section .custom-map .left h2 span .btn, .platform-section .custom-map .left h2 span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left h2 span .wpcf7-list-item-label, .platform-section .custom-map .left h2 span .module-intro-hero__btn, .platform-section .custom-map .left h2 span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left h2 span .category, .platform-section .custom-map .left h2 span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left h2 span a, .platform-section .custom-map .left h2 span .blog-secondary-item__date, .platform-section .custom-map .left h2 span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left h2 span span, .custom-map .platform-section .left h2 span p, .custom-map .platform-section .left h2 span .btn, .custom-map .platform-section .left h2 span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left h2 span .wpcf7-list-item-label, .custom-map .platform-section .left h2 span .module-intro-hero__btn, .custom-map .platform-section .left h2 span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left h2 span .category, .custom-map .platform-section .left h2 span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left h2 span a, .custom-map .platform-section .left h2 span .blog-secondary-item__date, .custom-map .platform-section .left h2 span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left h2 span span, .platform-section .custom-map .left .is-h2 span p, .platform-section .custom-map .left .is-h2 span .btn, .platform-section .custom-map .left .is-h2 span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left .is-h2 span .wpcf7-list-item-label, .platform-section .custom-map .left .is-h2 span .module-intro-hero__btn, .platform-section .custom-map .left .is-h2 span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left .is-h2 span .category, .platform-section .custom-map .left .is-h2 span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left .is-h2 span a, .platform-section .custom-map .left .is-h2 span .blog-secondary-item__date, .platform-section .custom-map .left .is-h2 span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left .is-h2 span span, .custom-map .platform-section .left .is-h2 span p, .custom-map .platform-section .left .is-h2 span .btn, .custom-map .platform-section .left .is-h2 span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left .is-h2 span .wpcf7-list-item-label, .custom-map .platform-section .left .is-h2 span .module-intro-hero__btn, .custom-map .platform-section .left .is-h2 span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left .is-h2 span .category, .custom-map .platform-section .left .is-h2 span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left .is-h2 span a, .custom-map .platform-section .left .is-h2 span .blog-secondary-item__date, .custom-map .platform-section .left .is-h2 span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left .is-h2 span span, .platform-section .map-section h2 .custom-map .left span span p, .platform-section .map-section h2 .custom-map .left span span .btn, .platform-section .map-section h2 .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section h2 .custom-map .left span span .wpcf7-list-item-label, .platform-section .map-section h2 .custom-map .left span span .module-intro-hero__btn, .platform-section .map-section h2 .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section h2 .custom-map .left span span .category, .platform-section .map-section h2 .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section h2 .custom-map .left span span a, .platform-section .map-section h2 .custom-map .left span span .blog-secondary-item__date, .platform-section .map-section h2 .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .platform-section .left span span p, .map-section h2 .custom-map .platform-section .left span span .btn, .map-section h2 .custom-map .platform-section .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section h2 .custom-map .platform-section .left span span .wpcf7-list-item-label, .map-section h2 .custom-map .platform-section .left span span .module-intro-hero__btn, .map-section h2 .custom-map .platform-section .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section h2 .custom-map .platform-section .left span span .category, .map-section h2 .custom-map .platform-section .left span span .post .wp-block-button a, .post .wp-block-button .map-section h2 .custom-map .platform-section .left span span a, .map-section h2 .custom-map .platform-section .left span span .blog-secondary-item__date, .map-section h2 .custom-map .platform-section .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section h2 .custom-map .platform-section .left span span span, .platform-section .map-section .is-h2 .custom-map .left span span p, .platform-section .map-section .is-h2 .custom-map .left span span .btn, .platform-section .map-section .is-h2 .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .is-h2 .custom-map .left span span .wpcf7-list-item-label, .platform-section .map-section .is-h2 .custom-map .left span span .module-intro-hero__btn, .platform-section .map-section .is-h2 .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .is-h2 .custom-map .left span span .category, .platform-section .map-section .is-h2 .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .is-h2 .custom-map .left span span a, .platform-section .map-section .is-h2 .custom-map .left span span .blog-secondary-item__date, .platform-section .map-section .is-h2 .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .platform-section .left span span p, .map-section .is-h2 .custom-map .platform-section .left span span .btn, .map-section .is-h2 .custom-map .platform-section .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .is-h2 .custom-map .platform-section .left span span .wpcf7-list-item-label, .map-section .is-h2 .custom-map .platform-section .left span span .module-intro-hero__btn, .map-section .is-h2 .custom-map .platform-section .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .is-h2 .custom-map .platform-section .left span span .category, .map-section .is-h2 .custom-map .platform-section .left span span .post .wp-block-button a, .post .wp-block-button .map-section .is-h2 .custom-map .platform-section .left span span a, .map-section .is-h2 .custom-map .platform-section .left span span .blog-secondary-item__date, .map-section .is-h2 .custom-map .platform-section .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .is-h2 .custom-map .platform-section .left span span span, .platform-section .map-section .custom-map .left h2 span span p, .platform-section .map-section .custom-map .left h2 span span .btn, .platform-section .map-section .custom-map .left h2 span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .custom-map .left h2 span span .wpcf7-list-item-label, .platform-section .map-section .custom-map .left h2 span span .module-intro-hero__btn, .platform-section .map-section .custom-map .left h2 span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .custom-map .left h2 span span .category, .platform-section .map-section .custom-map .left h2 span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .custom-map .left h2 span span a, .platform-section .map-section .custom-map .left h2 span span .blog-secondary-item__date, .platform-section .map-section .custom-map .left h2 span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .custom-map .left h2 span span span, .map-section .custom-map .platform-section .left h2 span span p, .map-section .custom-map .platform-section .left h2 span span .btn, .map-section .custom-map .platform-section .left h2 span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .custom-map .platform-section .left h2 span span .wpcf7-list-item-label, .map-section .custom-map .platform-section .left h2 span span .module-intro-hero__btn, .map-section .custom-map .platform-section .left h2 span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .custom-map .platform-section .left h2 span span .category, .map-section .custom-map .platform-section .left h2 span span .post .wp-block-button a, .post .wp-block-button .map-section .custom-map .platform-section .left h2 span span a, .map-section .custom-map .platform-section .left h2 span span .blog-secondary-item__date, .map-section .custom-map .platform-section .left h2 span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .custom-map .platform-section .left h2 span span span, .platform-section .custom-map .left h2 .map-section span span p, .platform-section .custom-map .left h2 .map-section span span .btn, .platform-section .custom-map .left h2 .map-section span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left h2 .map-section span span .wpcf7-list-item-label, .platform-section .custom-map .left h2 .map-section span span .module-intro-hero__btn, .platform-section .custom-map .left h2 .map-section span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left h2 .map-section span span .category, .platform-section .custom-map .left h2 .map-section span span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left h2 .map-section span span a, .platform-section .custom-map .left h2 .map-section span span .blog-secondary-item__date, .platform-section .custom-map .left h2 .map-section span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left h2 .map-section span span span, .custom-map .platform-section .left h2 .map-section span span p, .custom-map .platform-section .left h2 .map-section span span .btn, .custom-map .platform-section .left h2 .map-section span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left h2 .map-section span span .wpcf7-list-item-label, .custom-map .platform-section .left h2 .map-section span span .module-intro-hero__btn, .custom-map .platform-section .left h2 .map-section span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left h2 .map-section span span .category, .custom-map .platform-section .left h2 .map-section span span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left h2 .map-section span span a, .custom-map .platform-section .left h2 .map-section span span .blog-secondary-item__date, .custom-map .platform-section .left h2 .map-section span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left h2 .map-section span span span, .platform-section .map-section .custom-map .left .is-h2 span span p, .platform-section .map-section .custom-map .left .is-h2 span span .btn, .platform-section .map-section .custom-map .left .is-h2 span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .custom-map .left .is-h2 span span .wpcf7-list-item-label, .platform-section .map-section .custom-map .left .is-h2 span span .module-intro-hero__btn, .platform-section .map-section .custom-map .left .is-h2 span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .custom-map .left .is-h2 span span .category, .platform-section .map-section .custom-map .left .is-h2 span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .custom-map .left .is-h2 span span a, .platform-section .map-section .custom-map .left .is-h2 span span .blog-secondary-item__date, .platform-section .map-section .custom-map .left .is-h2 span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .platform-section .left .is-h2 span span p, .map-section .custom-map .platform-section .left .is-h2 span span .btn, .map-section .custom-map .platform-section .left .is-h2 span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .custom-map .platform-section .left .is-h2 span span .wpcf7-list-item-label, .map-section .custom-map .platform-section .left .is-h2 span span .module-intro-hero__btn, .map-section .custom-map .platform-section .left .is-h2 span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .custom-map .platform-section .left .is-h2 span span .category, .map-section .custom-map .platform-section .left .is-h2 span span .post .wp-block-button a, .post .wp-block-button .map-section .custom-map .platform-section .left .is-h2 span span a, .map-section .custom-map .platform-section .left .is-h2 span span .blog-secondary-item__date, .map-section .custom-map .platform-section .left .is-h2 span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .custom-map .platform-section .left .is-h2 span span span, .platform-section .custom-map .left .is-h2 .map-section span span p, .platform-section .custom-map .left .is-h2 .map-section span span .btn, .platform-section .custom-map .left .is-h2 .map-section span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left .is-h2 .map-section span span .wpcf7-list-item-label, .platform-section .custom-map .left .is-h2 .map-section span span .module-intro-hero__btn, .platform-section .custom-map .left .is-h2 .map-section span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left .is-h2 .map-section span span .category, .platform-section .custom-map .left .is-h2 .map-section span span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left .is-h2 .map-section span span a, .platform-section .custom-map .left .is-h2 .map-section span span .blog-secondary-item__date, .platform-section .custom-map .left .is-h2 .map-section span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left .is-h2 .map-section span span span, .custom-map .platform-section .left .is-h2 .map-section span span p, .custom-map .platform-section .left .is-h2 .map-section span span .btn, .custom-map .platform-section .left .is-h2 .map-section span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left .is-h2 .map-section span span .wpcf7-list-item-label, .custom-map .platform-section .left .is-h2 .map-section span span .module-intro-hero__btn, .custom-map .platform-section .left .is-h2 .map-section span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left .is-h2 .map-section span span .category, .custom-map .platform-section .left .is-h2 .map-section span span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left .is-h2 .map-section span span a, .custom-map .platform-section .left .is-h2 .map-section span span .blog-secondary-item__date, .custom-map .platform-section .left .is-h2 .map-section span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left .is-h2 .map-section span span span, .platform-section .map-section h2 .custom-map .left span span span p, .platform-section .map-section h2 .custom-map .left span span span .btn, .platform-section .map-section h2 .custom-map .left span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section h2 .custom-map .left span span span .wpcf7-list-item-label, .platform-section .map-section h2 .custom-map .left span span span .module-intro-hero__btn, .platform-section .map-section h2 .custom-map .left span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section h2 .custom-map .left span span span .category, .platform-section .map-section h2 .custom-map .left span span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section h2 .custom-map .left span span span a, .platform-section .map-section h2 .custom-map .left span span span .blog-secondary-item__date, .platform-section .map-section h2 .custom-map .left span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .platform-section .left span span span p, .map-section h2 .custom-map .platform-section .left span span span .btn, .map-section h2 .custom-map .platform-section .left span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section h2 .custom-map .platform-section .left span span span .wpcf7-list-item-label, .map-section h2 .custom-map .platform-section .left span span span .module-intro-hero__btn, .map-section h2 .custom-map .platform-section .left span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section h2 .custom-map .platform-section .left span span span .category, .map-section h2 .custom-map .platform-section .left span span span .post .wp-block-button a, .post .wp-block-button .map-section h2 .custom-map .platform-section .left span span span a, .map-section h2 .custom-map .platform-section .left span span span .blog-secondary-item__date, .map-section h2 .custom-map .platform-section .left span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section h2 .custom-map .platform-section .left span span span span, .platform-section .map-section .is-h2 .custom-map .left span span span p, .platform-section .map-section .is-h2 .custom-map .left span span span .btn, .platform-section .map-section .is-h2 .custom-map .left span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .is-h2 .custom-map .left span span span .wpcf7-list-item-label, .platform-section .map-section .is-h2 .custom-map .left span span span .module-intro-hero__btn, .platform-section .map-section .is-h2 .custom-map .left span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .is-h2 .custom-map .left span span span .category, .platform-section .map-section .is-h2 .custom-map .left span span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .is-h2 .custom-map .left span span span a, .platform-section .map-section .is-h2 .custom-map .left span span span .blog-secondary-item__date, .platform-section .map-section .is-h2 .custom-map .left span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .platform-section .left span span span p, .map-section .is-h2 .custom-map .platform-section .left span span span .btn, .map-section .is-h2 .custom-map .platform-section .left span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .is-h2 .custom-map .platform-section .left span span span .wpcf7-list-item-label, .map-section .is-h2 .custom-map .platform-section .left span span span .module-intro-hero__btn, .map-section .is-h2 .custom-map .platform-section .left span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .is-h2 .custom-map .platform-section .left span span span .category, .map-section .is-h2 .custom-map .platform-section .left span span span .post .wp-block-button a, .post .wp-block-button .map-section .is-h2 .custom-map .platform-section .left span span span a, .map-section .is-h2 .custom-map .platform-section .left span span span .blog-secondary-item__date, .map-section .is-h2 .custom-map .platform-section .left span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .is-h2 .custom-map .platform-section .left span span span span, .platform-section .map-section .custom-map .left h2 span span span p, .platform-section .map-section .custom-map .left h2 span span span .btn, .platform-section .map-section .custom-map .left h2 span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .custom-map .left h2 span span span .wpcf7-list-item-label, .platform-section .map-section .custom-map .left h2 span span span .module-intro-hero__btn, .platform-section .map-section .custom-map .left h2 span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .custom-map .left h2 span span span .category, .platform-section .map-section .custom-map .left h2 span span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .custom-map .left h2 span span span a, .platform-section .map-section .custom-map .left h2 span span span .blog-secondary-item__date, .platform-section .map-section .custom-map .left h2 span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .custom-map .left h2 span span span span, .map-section .custom-map .platform-section .left h2 span span span p, .map-section .custom-map .platform-section .left h2 span span span .btn, .map-section .custom-map .platform-section .left h2 span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .custom-map .platform-section .left h2 span span span .wpcf7-list-item-label, .map-section .custom-map .platform-section .left h2 span span span .module-intro-hero__btn, .map-section .custom-map .platform-section .left h2 span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .custom-map .platform-section .left h2 span span span .category, .map-section .custom-map .platform-section .left h2 span span span .post .wp-block-button a, .post .wp-block-button .map-section .custom-map .platform-section .left h2 span span span a, .map-section .custom-map .platform-section .left h2 span span span .blog-secondary-item__date, .map-section .custom-map .platform-section .left h2 span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .custom-map .platform-section .left h2 span span span span, .platform-section .custom-map .left h2 .map-section span span span p, .platform-section .custom-map .left h2 .map-section span span span .btn, .platform-section .custom-map .left h2 .map-section span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left h2 .map-section span span span .wpcf7-list-item-label, .platform-section .custom-map .left h2 .map-section span span span .module-intro-hero__btn, .platform-section .custom-map .left h2 .map-section span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left h2 .map-section span span span .category, .platform-section .custom-map .left h2 .map-section span span span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left h2 .map-section span span span a, .platform-section .custom-map .left h2 .map-section span span span .blog-secondary-item__date, .platform-section .custom-map .left h2 .map-section span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left h2 .map-section span span span span, .custom-map .platform-section .left h2 .map-section span span span p, .custom-map .platform-section .left h2 .map-section span span span .btn, .custom-map .platform-section .left h2 .map-section span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left h2 .map-section span span span .wpcf7-list-item-label, .custom-map .platform-section .left h2 .map-section span span span .module-intro-hero__btn, .custom-map .platform-section .left h2 .map-section span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left h2 .map-section span span span .category, .custom-map .platform-section .left h2 .map-section span span span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left h2 .map-section span span span a, .custom-map .platform-section .left h2 .map-section span span span .blog-secondary-item__date, .custom-map .platform-section .left h2 .map-section span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left h2 .map-section span span span span, .platform-section .map-section .custom-map .left .is-h2 span span span p, .platform-section .map-section .custom-map .left .is-h2 span span span .btn, .platform-section .map-section .custom-map .left .is-h2 span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .custom-map .left .is-h2 span span span .wpcf7-list-item-label, .platform-section .map-section .custom-map .left .is-h2 span span span .module-intro-hero__btn, .platform-section .map-section .custom-map .left .is-h2 span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .custom-map .left .is-h2 span span span .category, .platform-section .map-section .custom-map .left .is-h2 span span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .custom-map .left .is-h2 span span span a, .platform-section .map-section .custom-map .left .is-h2 span span span .blog-secondary-item__date, .platform-section .map-section .custom-map .left .is-h2 span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .custom-map .left .is-h2 span span span span, .map-section .custom-map .platform-section .left .is-h2 span span span p, .map-section .custom-map .platform-section .left .is-h2 span span span .btn, .map-section .custom-map .platform-section .left .is-h2 span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .custom-map .platform-section .left .is-h2 span span span .wpcf7-list-item-label, .map-section .custom-map .platform-section .left .is-h2 span span span .module-intro-hero__btn, .map-section .custom-map .platform-section .left .is-h2 span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .custom-map .platform-section .left .is-h2 span span span .category, .map-section .custom-map .platform-section .left .is-h2 span span span .post .wp-block-button a, .post .wp-block-button .map-section .custom-map .platform-section .left .is-h2 span span span a, .map-section .custom-map .platform-section .left .is-h2 span span span .blog-secondary-item__date, .map-section .custom-map .platform-section .left .is-h2 span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .custom-map .platform-section .left .is-h2 span span span span, .platform-section .custom-map .left .is-h2 .map-section span span span p, .platform-section .custom-map .left .is-h2 .map-section span span span .btn, .platform-section .custom-map .left .is-h2 .map-section span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left .is-h2 .map-section span span span .wpcf7-list-item-label, .platform-section .custom-map .left .is-h2 .map-section span span span .module-intro-hero__btn, .platform-section .custom-map .left .is-h2 .map-section span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left .is-h2 .map-section span span span .category, .platform-section .custom-map .left .is-h2 .map-section span span span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left .is-h2 .map-section span span span a, .platform-section .custom-map .left .is-h2 .map-section span span span .blog-secondary-item__date, .platform-section .custom-map .left .is-h2 .map-section span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left .is-h2 .map-section span span span span, .custom-map .platform-section .left .is-h2 .map-section span span span p, .custom-map .platform-section .left .is-h2 .map-section span span span .btn, .custom-map .platform-section .left .is-h2 .map-section span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left .is-h2 .map-section span span span .wpcf7-list-item-label, .custom-map .platform-section .left .is-h2 .map-section span span span .module-intro-hero__btn, .custom-map .platform-section .left .is-h2 .map-section span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left .is-h2 .map-section span span span .category, .custom-map .platform-section .left .is-h2 .map-section span span span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left .is-h2 .map-section span span span a, .custom-map .platform-section .left .is-h2 .map-section span span span .blog-secondary-item__date, .custom-map .platform-section .left .is-h2 .map-section span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left .is-h2 .map-section span span span span, .platform-section .map-section h2 .custom-map .left span span span span p, .platform-section .map-section h2 .custom-map .left span span span span .btn, .platform-section .map-section h2 .custom-map .left span span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section h2 .custom-map .left span span span span .wpcf7-list-item-label, .platform-section .map-section h2 .custom-map .left span span span span .module-intro-hero__btn, .platform-section .map-section h2 .custom-map .left span span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section h2 .custom-map .left span span span span .category, .platform-section .map-section h2 .custom-map .left span span span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section h2 .custom-map .left span span span span a, .platform-section .map-section h2 .custom-map .left span span span span .blog-secondary-item__date, .platform-section .map-section h2 .custom-map .left span span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section h2 .custom-map .left span span span span span, .map-section h2 .custom-map .platform-section .left span span span span p, .map-section h2 .custom-map .platform-section .left span span span span .btn, .map-section h2 .custom-map .platform-section .left span span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section h2 .custom-map .platform-section .left span span span span .wpcf7-list-item-label, .map-section h2 .custom-map .platform-section .left span span span span .module-intro-hero__btn, .map-section h2 .custom-map .platform-section .left span span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section h2 .custom-map .platform-section .left span span span span .category, .map-section h2 .custom-map .platform-section .left span span span span .post .wp-block-button a, .post .wp-block-button .map-section h2 .custom-map .platform-section .left span span span span a, .map-section h2 .custom-map .platform-section .left span span span span .blog-secondary-item__date, .map-section h2 .custom-map .platform-section .left span span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section h2 .custom-map .platform-section .left span span span span span, .platform-section .map-section .is-h2 .custom-map .left span span span span p, .platform-section .map-section .is-h2 .custom-map .left span span span span .btn, .platform-section .map-section .is-h2 .custom-map .left span span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .is-h2 .custom-map .left span span span span .wpcf7-list-item-label, .platform-section .map-section .is-h2 .custom-map .left span span span span .module-intro-hero__btn, .platform-section .map-section .is-h2 .custom-map .left span span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .is-h2 .custom-map .left span span span span .category, .platform-section .map-section .is-h2 .custom-map .left span span span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .is-h2 .custom-map .left span span span span a, .platform-section .map-section .is-h2 .custom-map .left span span span span .blog-secondary-item__date, .platform-section .map-section .is-h2 .custom-map .left span span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .is-h2 .custom-map .left span span span span span, .map-section .is-h2 .custom-map .platform-section .left span span span span p, .map-section .is-h2 .custom-map .platform-section .left span span span span .btn, .map-section .is-h2 .custom-map .platform-section .left span span span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .is-h2 .custom-map .platform-section .left span span span span .wpcf7-list-item-label, .map-section .is-h2 .custom-map .platform-section .left span span span span .module-intro-hero__btn, .map-section .is-h2 .custom-map .platform-section .left span span span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .is-h2 .custom-map .platform-section .left span span span span .category, .map-section .is-h2 .custom-map .platform-section .left span span span span .post .wp-block-button a, .post .wp-block-button .map-section .is-h2 .custom-map .platform-section .left span span span span a, .map-section .is-h2 .custom-map .platform-section .left span span span span .blog-secondary-item__date, .map-section .is-h2 .custom-map .platform-section .left span span span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .is-h2 .custom-map .platform-section .left span span span span span, .platform-section .custom-map .left h2 span span p, .platform-section .custom-map .left h2 span span .btn, .platform-section .custom-map .left h2 span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left h2 span span .wpcf7-list-item-label, .platform-section .custom-map .left h2 span span .module-intro-hero__btn, .platform-section .custom-map .left h2 span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left h2 span span .category, .platform-section .custom-map .left h2 span span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left h2 span span a, .platform-section .custom-map .left h2 span span .blog-secondary-item__date, .platform-section .custom-map .left h2 span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left h2 span span span, .custom-map .platform-section .left h2 span span p, .custom-map .platform-section .left h2 span span .btn, .custom-map .platform-section .left h2 span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left h2 span span .wpcf7-list-item-label, .custom-map .platform-section .left h2 span span .module-intro-hero__btn, .custom-map .platform-section .left h2 span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left h2 span span .category, .custom-map .platform-section .left h2 span span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left h2 span span a, .custom-map .platform-section .left h2 span span .blog-secondary-item__date, .custom-map .platform-section .left h2 span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left h2 span span span, .platform-section .custom-map .left .is-h2 span span p, .platform-section .custom-map .left .is-h2 span span .btn, .platform-section .custom-map .left .is-h2 span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left .is-h2 span span .wpcf7-list-item-label, .platform-section .custom-map .left .is-h2 span span .module-intro-hero__btn, .platform-section .custom-map .left .is-h2 span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left .is-h2 span span .category, .platform-section .custom-map .left .is-h2 span span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left .is-h2 span span a, .platform-section .custom-map .left .is-h2 span span .blog-secondary-item__date, .platform-section .custom-map .left .is-h2 span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left .is-h2 span span span, .custom-map .platform-section .left .is-h2 span span p, .custom-map .platform-section .left .is-h2 span span .btn, .custom-map .platform-section .left .is-h2 span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left .is-h2 span span .wpcf7-list-item-label, .custom-map .platform-section .left .is-h2 span span .module-intro-hero__btn, .custom-map .platform-section .left .is-h2 span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left .is-h2 span span .category, .custom-map .platform-section .left .is-h2 span span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left .is-h2 span span a, .custom-map .platform-section .left .is-h2 span span .blog-secondary-item__date, .custom-map .platform-section .left .is-h2 span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left .is-h2 span span span, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span p, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .btn, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .wpcf7-list-item-label, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .module-intro-hero__btn, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .category, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .custom-map .left h2 span .custom-map .left span span a, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .blog-secondary-item__date, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .custom-map .left h2 span .custom-map .left span span span, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span p, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .btn, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .wpcf7-list-item-label, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .module-intro-hero__btn, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .category, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .map-section .custom-map .platform-section .left h2 span .custom-map .left span span a, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .blog-secondary-item__date, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .custom-map .platform-section .left h2 span .custom-map .left span span span, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span p, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .btn, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .wpcf7-list-item-label, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .module-intro-hero__btn, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .category, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left h2 .map-section span .custom-map .left span span a, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .blog-secondary-item__date, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span p, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .btn, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .wpcf7-list-item-label, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .module-intro-hero__btn, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .category, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left h2 .map-section span .custom-map .left span span a, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .blog-secondary-item__date, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left h2 .map-section span .custom-map .left span span span, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span p, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .btn, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .wpcf7-list-item-label, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .module-intro-hero__btn, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .category, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span a, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .blog-secondary-item__date, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span p, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .btn, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .wpcf7-list-item-label, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .module-intro-hero__btn, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .category, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span a, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .blog-secondary-item__date, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span span, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span p, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .btn, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .wpcf7-list-item-label, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .module-intro-hero__btn, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .category, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span a, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .blog-secondary-item__date, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span p, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .btn, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .wpcf7-list-item-label, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .module-intro-hero__btn, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .category, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span a, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .blog-secondary-item__date, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span span, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span p, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .btn, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .wpcf7-list-item-label, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .module-intro-hero__btn, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .category, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span a, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .blog-secondary-item__date, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span span, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span p, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .btn, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .wpcf7-list-item-label, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .module-intro-hero__btn, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .category, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span a, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .blog-secondary-item__date, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span span, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span p, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .btn, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .wpcf7-list-item-label, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .module-intro-hero__btn, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .category, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span a, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .blog-secondary-item__date, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span p, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .btn, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .wpcf7-list-item-label, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .module-intro-hero__btn, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .post .text-wrapper .categories .category, .post .text-wrapper .categories .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .category, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .post .wp-block-button a, .post .wp-block-button .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span a, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .blog-secondary-item__date, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span span, .platform-section .left .is-h2 .map-link, .platform-section .custom-map .left h2 span .map-link, .custom-map .platform-section .left h2 span .map-link, .platform-section .custom-map .left .is-h2 span .map-link, .custom-map .platform-section .left .is-h2 span .map-link, .platform-section .map-section h2 .custom-map .left span span .map-link, .map-section h2 .custom-map .platform-section .left span span .map-link, .platform-section .map-section .is-h2 .custom-map .left span span .map-link, .map-section .is-h2 .custom-map .platform-section .left span span .map-link, .platform-section .map-section .custom-map .left h2 span span .map-link, .map-section .custom-map .platform-section .left h2 span span .map-link, .platform-section .custom-map .left h2 .map-section span span .map-link, .custom-map .platform-section .left h2 .map-section span span .map-link, .platform-section .map-section .custom-map .left .is-h2 span span .map-link, .map-section .custom-map .platform-section .left .is-h2 span span .map-link, .platform-section .custom-map .left .is-h2 .map-section span span .map-link, .custom-map .platform-section .left .is-h2 .map-section span span .map-link, .platform-section .map-section h2 .custom-map .left span span span .map-link, .map-section h2 .custom-map .platform-section .left span span span .map-link, .platform-section .map-section .is-h2 .custom-map .left span span span .map-link, .map-section .is-h2 .custom-map .platform-section .left span span span .map-link, .platform-section .map-section .custom-map .left h2 span span span .map-link, .map-section .custom-map .platform-section .left h2 span span span .map-link, .platform-section .custom-map .left h2 .map-section span span span .map-link, .custom-map .platform-section .left h2 .map-section span span span .map-link, .platform-section .map-section .custom-map .left .is-h2 span span span .map-link, .map-section .custom-map .platform-section .left .is-h2 span span span .map-link, .platform-section .custom-map .left .is-h2 .map-section span span span .map-link, .custom-map .platform-section .left .is-h2 .map-section span span span .map-link, .platform-section .map-section h2 .custom-map .left span span span span .map-link, .map-section h2 .custom-map .platform-section .left span span span span .map-link, .platform-section .map-section .is-h2 .custom-map .left span span span span .map-link, .map-section .is-h2 .custom-map .platform-section .left span span span span .map-link, .platform-section .custom-map .left h2 span span .map-link, .custom-map .platform-section .left h2 span span .map-link, .platform-section .custom-map .left .is-h2 span span .map-link, .custom-map .platform-section .left .is-h2 span span .map-link, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span .map-link, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span .map-link, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span .map-link, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span .map-link, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span .map-link, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span .map-link, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span .map-link, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span .map-link, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span .map-link, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span .map-link, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span .map-link, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span .map-link, .platform-section .left h3 p, .platform-section .left h3 .btn, .platform-section .left h3 .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .left h3 .wpcf7-list-item-label, .platform-section .left h3 .module-intro-hero__btn, .platform-section .left h3 .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .left h3 .category, .platform-section .left h3 .post .wp-block-button a, .post .wp-block-button .platform-section .left h3 a, .platform-section .left h3 .blog-secondary-item__date, .platform-section .left h3 .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .left h3 span, .platform-section .left h3 .map-link, .platform-section .left span p, .platform-section .left span .btn, .platform-section .left span .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .left span .wpcf7-list-item-label, .platform-section .left span .module-intro-hero__btn, .platform-section .left span .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .left span .category, .platform-section .left span .post .wp-block-button a, .post .wp-block-button .platform-section .left span a, .platform-section .left span .blog-secondary-item__date, .platform-section .left span .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .left span span, .platform-section .left span .map-link {
  font-family: var(--font-Body, "DM Sans");
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem; /* 125% */
}

.subheading, .modal-body h4, .platform-card h2, .platform-card .is-h2, .platform-card .map-section h2 span, .map-section h2 .platform-card span, .platform-card .map-section .is-h2 span, .map-section .is-h2 .platform-card span, .platform-card .custom-map .left h2 span, .custom-map .left h2 .platform-card span, .platform-card .custom-map .left .is-h2 span, .custom-map .left .is-h2 .platform-card span, .platform-card h3, .platform-card h4, .platform-card h5, .platform-card .accordion-button, .platform-card .module-selector-card__name, .platform-card h6, .platform-card .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .platform-card a, .platform-card .module-tab-split-checklist-featured__box-title, .platform-card .modules-selection-bar__count span, .modules-selection-bar__count .platform-card span, .platform-card .module-intro-features__tagline, .post .post-toc__title, .timeline-section .timeline-label {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4375rem; /* 164.286% */
  text-transform: uppercase;
}

p, .btn, .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-intro-hero__btn, .post .text-wrapper .categories .category, .post .wp-block-button a, .blog-secondary-item__date, .modules-listing-section .module-card__bullets ul li span, .map-link {
  font-family: "DM Sans", sans-serif;
}

@media only screen and (max-width: 576px) {
  .is-h1 br {
    display: none;
  }
}

.is-h1-section-title {
  text-align: center;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

li {
  font-family: "DM Sans", sans-serif;
}

p, .btn, .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-intro-hero__btn, .post .text-wrapper .categories .category, .post .wp-block-button a, .blog-secondary-item__date, .modules-listing-section .module-card__bullets ul li span, .map-link {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.p-small, .module-tab-success-stories__case-bullets ul li, .wpcf7-list-item-label, .blurred-bg, .module-selector-card__badge, .modules-listing-section .module-card__icon .blurred-bg, .modules-listing-section .module-card__icon .module-selector-card__badge {
  font-size: 0.8125rem;
}

.is-bigger-p {
  font-size: 1.2rem;
}

span {
  font-size: 1rem;
  font-family: "DM Sans", sans-serif;
}

a {
  word-break: break-word;
}

address {
  font-family: "DM Sans", sans-serif;
}

.btn, .form-radio .wpcf7-list-item .wpcf7-list-item-label, .post .wp-block-button a, .post .text-wrapper .categories .category, .module-intro-hero__btn {
  font-weight: 600;
}

.decorative-text {
  background: linear-gradient(to left, #DCD7D2, #7F736C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  text-transform: none;
  margin-bottom: 3rem;
}

.text-muted, .module-intro-features__tagline {
  color: #8D9096 !important;
}

.text-muted-light {
  color: var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5));
}

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

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

.text-underline {
  text-decoration: underline !important;
}
.text-underline a {
  text-decoration: underline !important;
}

.features .features-items-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 90px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .features .features-items-wrapper {
    justify-content: space-around;
  }
}
@media only screen and (max-width: 992px) {
  .features .features-items-wrapper {
    gap: 5rem;
  }
}
.features .features-items-wrapper .features-item {
  display: flex;
  width: 260px;
  position: relative;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  flex-shrink: 0;
}
@media only screen and (max-width: 576px) {
  .features .features-items-wrapper .features-item {
    width: 105px;
  }
}
.features .features-items-wrapper .features-item .features-bg {
  z-index: -1;
  position: absolute;
}
@media only screen and (max-width: 576px) {
  .features .features-items-wrapper .features-item .features-bg {
    left: -12% !important;
  }
}
.features .features-items-wrapper .features-item h3 {
  margin-bottom: 0;
}
.features .features-items-wrapper .features-item p, .features .features-items-wrapper .features-item .btn, .features .features-items-wrapper .features-item .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .features .features-items-wrapper .features-item .wpcf7-list-item-label, .features .features-items-wrapper .features-item .module-intro-hero__btn, .features .features-items-wrapper .features-item .post .text-wrapper .categories .category, .post .text-wrapper .categories .features .features-items-wrapper .features-item .category, .features .features-items-wrapper .features-item .post .wp-block-button a, .post .wp-block-button .features .features-items-wrapper .features-item a, .features .features-items-wrapper .features-item .blog-secondary-item__date, .features .features-items-wrapper .features-item .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .features .features-items-wrapper .features-item span, .features .features-items-wrapper .features-item .map-link {
  width: 211px;
}
@media only screen and (max-width: 992px) {
  .features .features-items-wrapper .features-item p, .features .features-items-wrapper .features-item .btn, .features .features-items-wrapper .features-item .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .features .features-items-wrapper .features-item .wpcf7-list-item-label, .features .features-items-wrapper .features-item .module-intro-hero__btn, .features .features-items-wrapper .features-item .post .text-wrapper .categories .category, .post .text-wrapper .categories .features .features-items-wrapper .features-item .category, .features .features-items-wrapper .features-item .post .wp-block-button a, .post .wp-block-button .features .features-items-wrapper .features-item a, .features .features-items-wrapper .features-item .blog-secondary-item__date, .features .features-items-wrapper .features-item .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .features .features-items-wrapper .features-item span, .features .features-items-wrapper .features-item .map-link {
    width: unset;
  }
}
.features .features-items-wrapper .features-decoration {
  width: 100%;
  margin-top: 4rem;
  text-align: center;
  transform: rotate(-5.742deg);
  font-family: Caveat, sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 87.5% */
  letter-spacing: -1.28px;
}
.features .features-items-wrapper .features-decoration .underline {
  position: relative;
}
.features .features-items-wrapper .features-decoration .underline:before {
  position: absolute;
  content: "";
  bottom: -2rem;
  height: 5rem;
  z-index: -1;
  width: 100%;
  background: url(../img/underline.svg) center no-repeat;
  transform: scale(1);
  transition: 0.3s;
}
.features .features-items-wrapper .features-decoration span {
  font-size: 2rem;
}

.services {
  position: relative;
  padding: 5.5rem 0 6.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .services {
    padding: 3.5rem 0 4rem;
  }
}
.services .section-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background: linear-gradient(0deg, #1055D7 67.13%, #FFF 100%);
  background-size: cover;
  top: 2rem;
}
.services .container-fluid h2, .services .container-fluid .is-h2, .services .container-fluid .custom-map .left h2 span, .custom-map .left h2 .services .container-fluid span, .services .container-fluid .custom-map .left .is-h2 span, .custom-map .left .is-h2 .services .container-fluid span, .services .container-fluid .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .services .container-fluid span, .services .container-fluid .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .services .container-fluid span, .services .container-fluid .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .services .container-fluid span, .services .container-fluid .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .services .container-fluid span, .services .container-fluid .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .services .container-fluid span, .services .container-fluid .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .services .container-fluid span, .services .container-fluid .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .services .container-fluid span, .services .container-fluid .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .services .container-fluid span, .services .container-fluid .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .services .container-fluid span, .services .container-fluid .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .services .container-fluid span, .services .container-fluid .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .services .container-fluid span, .services .container-fluid .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .services .container-fluid span, .services .container-fluid .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .services .container-fluid span, .services .container-fluid .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .services .container-fluid span, .services .container-fluid .custom-map .left h2 span span, .custom-map .left h2 span .services .container-fluid span, .services .container-fluid .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .services .container-fluid span, .services .container-fluid .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .services .container-fluid span, .services .container-fluid .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .services .container-fluid span, .services .container-fluid .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .services .container-fluid span, .services .container-fluid .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .services .container-fluid span, .services .container-fluid .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .services .container-fluid span, .services .container-fluid .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .services .container-fluid span, .services .container-fluid .map-section h2 span, .map-section h2 .services .container-fluid span, .services .container-fluid .map-section .is-h2 span, .services .container-fluid .map-section .custom-map .left h2 span span, .custom-map .left h2 .services .container-fluid .map-section span span, .services .container-fluid .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .services .container-fluid .map-section span span, .services .container-fluid .map-section h2 .custom-map .left span span span, .services .container-fluid .map-section .is-h2 .custom-map .left span span span, .services .container-fluid .map-section .custom-map .left h2 span span span, .services .container-fluid .custom-map .left h2 .map-section span span span, .custom-map .left h2 .services .container-fluid .map-section span span span, .services .container-fluid .map-section .custom-map .left .is-h2 span span span, .services .container-fluid .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .services .container-fluid .map-section span span span, .services .container-fluid .map-section h2 .custom-map .left span span span span, .services .container-fluid .map-section .is-h2 .custom-map .left span span span span, .services .container-fluid .map-section .custom-map .left h2 span span span span, .services .container-fluid .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .services .container-fluid .map-section span span span span, .services .container-fluid .map-section .custom-map .left .is-h2 span span span span, .services .container-fluid .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .services .container-fluid .map-section span span span span, .services .container-fluid .map-section h2 .custom-map .left span span span span span, .services .container-fluid .map-section .is-h2 .custom-map .left span span span span span, .services .container-fluid .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .services .container-fluid .map-section span span, .services .container-fluid .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .services .container-fluid .map-section span span, .services .container-fluid .map-section .custom-map .left h2 span .custom-map .left span span span, .services .container-fluid .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .services .container-fluid .map-section span .custom-map .left span span span, .services .container-fluid .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .services .container-fluid .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .services .container-fluid .map-section span .custom-map .left span span span, .services .container-fluid .map-section h2 .custom-map .left span span .custom-map .left span span span, .services .container-fluid .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .services .container-fluid span, .map-section .custom-map .left h2 span .services .container-fluid span, .custom-map .left h2 .map-section span .services .container-fluid span, .map-section .custom-map .left .is-h2 span .services .container-fluid span, .custom-map .left .is-h2 .map-section span .services .container-fluid span, .map-section h2 .custom-map .left span span .services .container-fluid span, .map-section .is-h2 .custom-map .left span span .services .container-fluid span, .map-section .custom-map .left h2 span span .services .container-fluid span, .custom-map .left h2 .map-section span span .services .container-fluid span, .map-section .custom-map .left .is-h2 span span .services .container-fluid span, .custom-map .left .is-h2 .map-section span span .services .container-fluid span, .map-section h2 .custom-map .left span span span .services .container-fluid span, .map-section .is-h2 .custom-map .left span span span .services .container-fluid span, .map-section .custom-map .left h2 span span span .services .container-fluid span, .custom-map .left h2 .map-section span span span .services .container-fluid span, .map-section .custom-map .left .is-h2 span span span .services .container-fluid span, .custom-map .left .is-h2 .map-section span span span .services .container-fluid span, .map-section h2 .custom-map .left span span span span .services .container-fluid span, .map-section .is-h2 .custom-map .left span span span span .services .container-fluid span, .map-section .custom-map .left h2 span span .services .container-fluid span, .custom-map .left h2 span .map-section span .services .container-fluid span, .map-section .custom-map .left .is-h2 span span .services .container-fluid span, .custom-map .left .is-h2 span .map-section span .services .container-fluid span, .map-section .custom-map .left h2 span .custom-map .left span span .services .container-fluid span, .custom-map .left h2 .map-section span .custom-map .left span span .services .container-fluid span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .services .container-fluid span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .services .container-fluid span, .map-section h2 .custom-map .left span span .custom-map .left span span .services .container-fluid span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .services .container-fluid span {
  margin-bottom: 6.75rem;
}
.services .swiper-slide {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.services .services-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.75rem;
}
@media only screen and (max-width: 992px) {
  .services .services-top {
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 992px) {
  .services .services-top .services-top-content {
    max-width: 100%;
  }
}
.services .services-top .services-top-cards {
  position: relative;
  height: 10rem;
  min-width: 43%;
  margin-left: auto;
}
@media only screen and (max-width: 992px) {
  .services .services-top .services-top-cards {
    min-width: 100%;
    margin-left: 0;
    height: 8rem;
  }
}
.services .services-top .services-top-cards .cards-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.services .services-top .services-top-cards .top-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 20rem;
  height: 10rem;
  padding: 3rem 1.4rem;
  display: flex;
  border-radius: var(--radius-md, 0.625rem);
  border: 1px solid rgba(141, 144, 150, 0.2);
  background: var(--colors-neutrals-White, #FFF);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateX(0) scale(1);
}
@media only screen and (max-width: 992px) {
  .services .services-top .services-top-cards .top-card {
    max-width: 100%;
    height: 8rem;
    padding: 2rem 1.4rem;
  }
}
.services .services-top .services-top-cards .top-card p, .services .services-top .services-top-cards .top-card .btn, .services .services-top .services-top-cards .top-card .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .services .services-top .services-top-cards .top-card .wpcf7-list-item-label, .services .services-top .services-top-cards .top-card .module-intro-hero__btn, .services .services-top .services-top-cards .top-card .post .text-wrapper .categories .category, .post .text-wrapper .categories .services .services-top .services-top-cards .top-card .category, .services .services-top .services-top-cards .top-card .post .wp-block-button a, .post .wp-block-button .services .services-top .services-top-cards .top-card a, .services .services-top .services-top-cards .top-card .blog-secondary-item__date, .services .services-top .services-top-cards .top-card .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .services .services-top .services-top-cards .top-card span, .services .services-top .services-top-cards .top-card .map-link {
  margin-bottom: 0;
  line-height: 1.313rem;
}
.services .services-top .services-top-cards .top-card.active {
  opacity: 1;
}
.services .services-bottom-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
@media only screen and (max-width: 992px) {
  .services .services-bottom-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .services .services-bottom-header .swiper-nav {
    align-self: flex-end;
  }
}
.services .services-item {
  width: 20rem;
  height: 24rem;
  perspective: 1000px;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 992px) {
  .services .services-item {
    width: 17rem;
    height: 21rem;
  }
}
@media only screen and (max-width: 576px) {
  .services .services-item {
    width: 15rem;
    height: 19rem;
  }
}
.services .services-item .card-front,
.services .services-item .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  color: #1B1917;
  border-radius: var(--radius-xl, 1.25rem);
  backface-visibility: hidden;
  transition: transform 0.8s ease;
}
@media only screen and (max-width: 992px) {
  .services .services-item .card-front,
  .services .services-item .card-back {
    padding: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .services .services-item .card-front,
  .services .services-item .card-back {
    padding: 1.5rem;
  }
}
.services .services-item .card-front p, .services .services-item .card-front .btn, .services .services-item .card-front .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .services .services-item .card-front .wpcf7-list-item-label, .services .services-item .card-front .module-intro-hero__btn, .services .services-item .card-front .post .text-wrapper .categories .category, .post .text-wrapper .categories .services .services-item .card-front .category, .services .services-item .card-front .post .wp-block-button a, .post .wp-block-button .services .services-item .card-front a, .services .services-item .card-front .blog-secondary-item__date, .services .services-item .card-front .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .services .services-item .card-front span, .services .services-item .card-front .map-link,
.services .services-item .card-back p,
.services .services-item .card-back .btn,
.services .services-item .card-back .form-radio .wpcf7-list-item .wpcf7-list-item-label,
.form-radio .wpcf7-list-item .services .services-item .card-back .wpcf7-list-item-label,
.services .services-item .card-back .module-intro-hero__btn,
.services .services-item .card-back .post .text-wrapper .categories .category,
.post .text-wrapper .categories .services .services-item .card-back .category,
.services .services-item .card-back .post .wp-block-button a,
.post .wp-block-button .services .services-item .card-back a,
.services .services-item .card-back .blog-secondary-item__date,
.services .services-item .card-back .modules-listing-section .module-card__bullets ul li span,
.modules-listing-section .module-card__bullets ul li .services .services-item .card-back span,
.services .services-item .card-back .map-link {
  margin-bottom: 0;
}
.services .services-item .card-front .services-card-icon,
.services .services-item .card-back .services-card-icon {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 992px) {
  .services .services-item .card-front .services-card-icon,
  .services .services-item .card-back .services-card-icon {
    margin-bottom: 1.5rem;
  }
}
.services .services-item .card-front {
  transform: rotateY(0deg);
}
.services .services-item .card-back {
  transform: rotateY(180deg);
}
.services .services-item.flipped .card-front {
  transform: rotateY(-180deg);
}
.services .services-item.flipped .card-back {
  transform: rotateY(0deg);
}
@media only screen and (max-width: 992px) {
  .services .services-title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .services .services-title {
    font-size: 1.5rem;
  }
}

.services-secondary .card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .services-secondary .card-grid {
    grid-template-columns: 1fr;
  }
}
.services-secondary .card-grid .service-card {
  display: flex;
  flex-direction: column;
}
.services-secondary .card-grid .service-card .img img {
  width: 100%;
  height: 100%;
  max-height: 16rem;
  min-height: 16rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-secondary .card-grid .service-card .bottom {
  border: thin solid #1055D7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1.2rem;
}
@media only screen and (max-width: 992px) {
  .services-secondary .card-grid .service-card .bottom {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .services-secondary .card-grid .service-card .bottom {
    padding: 0.8rem 1rem;
  }
}
.services-secondary .card-grid .service-card .bottom h4 {
  font-size: 1rem;
  margin-bottom: 0;
}
.services-secondary .card-grid .service-card .bottom button {
  width: -moz-fit-content;
  width: fit-content;
}

.scrolling-cards-section {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.scrolling-cards-section .container-fluid {
  background: transparent;
}
.scrolling-cards-section .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .scrolling-cards-section .wrapper {
    flex-direction: column;
  }
}
.scrolling-cards-section .wrapper .left {
  max-width: 50%;
  color: #ffffff;
  position: sticky;
  top: 1rem;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-start;
  width: 40%;
  padding-right: 1rem;
}
@media only screen and (max-width: 992px) {
  .scrolling-cards-section .wrapper .left {
    max-width: unset;
    padding-bottom: 2rem;
    padding-right: 0;
    position: static;
    width: 100%;
  }
  .scrolling-cards-section .wrapper .left br {
    display: none;
  }
}
.scrolling-cards-section .wrapper h2, .scrolling-cards-section .wrapper .is-h2, .scrolling-cards-section .wrapper .custom-map .left h2 span, .custom-map .left h2 .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .custom-map .left .is-h2 span, .custom-map .left .is-h2 .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .custom-map .left h2 span span, .custom-map .left h2 span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section h2 span, .map-section h2 .scrolling-cards-section .wrapper span, .scrolling-cards-section .wrapper .map-section .is-h2 span, .scrolling-cards-section .wrapper .map-section .custom-map .left h2 span span, .custom-map .left h2 .scrolling-cards-section .wrapper .map-section span span, .scrolling-cards-section .wrapper .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .scrolling-cards-section .wrapper .map-section span span, .scrolling-cards-section .wrapper .map-section h2 .custom-map .left span span span, .scrolling-cards-section .wrapper .map-section .is-h2 .custom-map .left span span span, .scrolling-cards-section .wrapper .map-section .custom-map .left h2 span span span, .scrolling-cards-section .wrapper .custom-map .left h2 .map-section span span span, .custom-map .left h2 .scrolling-cards-section .wrapper .map-section span span span, .scrolling-cards-section .wrapper .map-section .custom-map .left .is-h2 span span span, .scrolling-cards-section .wrapper .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .scrolling-cards-section .wrapper .map-section span span span, .scrolling-cards-section .wrapper .map-section h2 .custom-map .left span span span span, .scrolling-cards-section .wrapper .map-section .is-h2 .custom-map .left span span span span, .scrolling-cards-section .wrapper .map-section .custom-map .left h2 span span span span, .scrolling-cards-section .wrapper .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .scrolling-cards-section .wrapper .map-section span span span span, .scrolling-cards-section .wrapper .map-section .custom-map .left .is-h2 span span span span, .scrolling-cards-section .wrapper .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .scrolling-cards-section .wrapper .map-section span span span span, .scrolling-cards-section .wrapper .map-section h2 .custom-map .left span span span span span, .scrolling-cards-section .wrapper .map-section .is-h2 .custom-map .left span span span span span, .scrolling-cards-section .wrapper .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .scrolling-cards-section .wrapper .map-section span span, .scrolling-cards-section .wrapper .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .scrolling-cards-section .wrapper .map-section span span, .scrolling-cards-section .wrapper .map-section .custom-map .left h2 span .custom-map .left span span span, .scrolling-cards-section .wrapper .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .scrolling-cards-section .wrapper .map-section span .custom-map .left span span span, .scrolling-cards-section .wrapper .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .scrolling-cards-section .wrapper .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .scrolling-cards-section .wrapper .map-section span .custom-map .left span span span, .scrolling-cards-section .wrapper .map-section h2 .custom-map .left span span .custom-map .left span span span, .scrolling-cards-section .wrapper .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .scrolling-cards-section .wrapper span, .map-section .custom-map .left h2 span .scrolling-cards-section .wrapper span, .custom-map .left h2 .map-section span .scrolling-cards-section .wrapper span, .map-section .custom-map .left .is-h2 span .scrolling-cards-section .wrapper span, .custom-map .left .is-h2 .map-section span .scrolling-cards-section .wrapper span, .map-section h2 .custom-map .left span span .scrolling-cards-section .wrapper span, .map-section .is-h2 .custom-map .left span span .scrolling-cards-section .wrapper span, .map-section .custom-map .left h2 span span .scrolling-cards-section .wrapper span, .custom-map .left h2 .map-section span span .scrolling-cards-section .wrapper span, .map-section .custom-map .left .is-h2 span span .scrolling-cards-section .wrapper span, .custom-map .left .is-h2 .map-section span span .scrolling-cards-section .wrapper span, .map-section h2 .custom-map .left span span span .scrolling-cards-section .wrapper span, .map-section .is-h2 .custom-map .left span span span .scrolling-cards-section .wrapper span, .map-section .custom-map .left h2 span span span .scrolling-cards-section .wrapper span, .custom-map .left h2 .map-section span span span .scrolling-cards-section .wrapper span, .map-section .custom-map .left .is-h2 span span span .scrolling-cards-section .wrapper span, .custom-map .left .is-h2 .map-section span span span .scrolling-cards-section .wrapper span, .map-section h2 .custom-map .left span span span span .scrolling-cards-section .wrapper span, .map-section .is-h2 .custom-map .left span span span span .scrolling-cards-section .wrapper span, .map-section .custom-map .left h2 span span .scrolling-cards-section .wrapper span, .custom-map .left h2 span .map-section span .scrolling-cards-section .wrapper span, .map-section .custom-map .left .is-h2 span span .scrolling-cards-section .wrapper span, .custom-map .left .is-h2 span .map-section span .scrolling-cards-section .wrapper span, .map-section .custom-map .left h2 span .custom-map .left span span .scrolling-cards-section .wrapper span, .custom-map .left h2 .map-section span .custom-map .left span span .scrolling-cards-section .wrapper span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .scrolling-cards-section .wrapper span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .scrolling-cards-section .wrapper span, .map-section h2 .custom-map .left span span .custom-map .left span span .scrolling-cards-section .wrapper span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .scrolling-cards-section .wrapper span {
  margin-bottom: 4.5rem;
}
.scrolling-cards-section .right {
  width: 35.9375rem;
}
@media only screen and (max-width: 992px) {
  .scrolling-cards-section .right {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.scrolling-cards-section .right .team-card:nth-child(even), .scrolling-cards-section .right .service-card:nth-child(even) {
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .scrolling-cards-section .right .team-card:nth-child(even), .scrolling-cards-section .right .service-card:nth-child(even) {
    margin-left: unset;
  }
}

@media only screen and (max-width: 768px) {
  .mobile-one-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}

.content-page {
  margin-bottom: 6.35rem;
}
.content-page .container {
  max-width: 49.5rem;
}
.content-page h2, .content-page .is-h2, .content-page .custom-map .left h2 span, .custom-map .left h2 .content-page span, .content-page .custom-map .left .is-h2 span, .custom-map .left .is-h2 .content-page span, .content-page .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .content-page span, .content-page .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .content-page span, .content-page .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .content-page span, .content-page .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .content-page span, .content-page .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .content-page span, .content-page .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .content-page span, .content-page .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .content-page span, .content-page .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .content-page span, .content-page .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .content-page span, .content-page .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .content-page span, .content-page .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .content-page span, .content-page .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .content-page span, .content-page .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .content-page span, .content-page .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .content-page span, .content-page .custom-map .left h2 span span, .custom-map .left h2 span .content-page span, .content-page .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .content-page span, .content-page .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .content-page span, .content-page .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .content-page span, .content-page .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .content-page span, .content-page .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .content-page span, .content-page .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .content-page span, .content-page .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .content-page span, .content-page .map-section h2 span, .map-section h2 .content-page span, .content-page .map-section .is-h2 span, .content-page .map-section .custom-map .left h2 span span, .custom-map .left h2 .content-page .map-section span span, .content-page .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .content-page .map-section span span, .content-page .map-section h2 .custom-map .left span span span, .content-page .map-section .is-h2 .custom-map .left span span span, .content-page .map-section .custom-map .left h2 span span span, .content-page .custom-map .left h2 .map-section span span span, .custom-map .left h2 .content-page .map-section span span span, .content-page .map-section .custom-map .left .is-h2 span span span, .content-page .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .content-page .map-section span span span, .content-page .map-section h2 .custom-map .left span span span span, .content-page .map-section .is-h2 .custom-map .left span span span span, .content-page .map-section .custom-map .left h2 span span span span, .content-page .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .content-page .map-section span span span span, .content-page .map-section .custom-map .left .is-h2 span span span span, .content-page .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .content-page .map-section span span span span, .content-page .map-section h2 .custom-map .left span span span span span, .content-page .map-section .is-h2 .custom-map .left span span span span span, .content-page .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .content-page .map-section span span, .content-page .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .content-page .map-section span span, .content-page .map-section .custom-map .left h2 span .custom-map .left span span span, .content-page .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .content-page .map-section span .custom-map .left span span span, .content-page .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .content-page .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .content-page .map-section span .custom-map .left span span span, .content-page .map-section h2 .custom-map .left span span .custom-map .left span span span, .content-page .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .content-page span, .map-section .custom-map .left h2 span .content-page span, .custom-map .left h2 .map-section span .content-page span, .map-section .custom-map .left .is-h2 span .content-page span, .custom-map .left .is-h2 .map-section span .content-page span, .map-section h2 .custom-map .left span span .content-page span, .map-section .is-h2 .custom-map .left span span .content-page span, .map-section .custom-map .left h2 span span .content-page span, .custom-map .left h2 .map-section span span .content-page span, .map-section .custom-map .left .is-h2 span span .content-page span, .custom-map .left .is-h2 .map-section span span .content-page span, .map-section h2 .custom-map .left span span span .content-page span, .map-section .is-h2 .custom-map .left span span span .content-page span, .map-section .custom-map .left h2 span span span .content-page span, .custom-map .left h2 .map-section span span span .content-page span, .map-section .custom-map .left .is-h2 span span span .content-page span, .custom-map .left .is-h2 .map-section span span span .content-page span, .map-section h2 .custom-map .left span span span span .content-page span, .map-section .is-h2 .custom-map .left span span span span .content-page span, .map-section .custom-map .left h2 span span .content-page span, .custom-map .left h2 span .map-section span .content-page span, .map-section .custom-map .left .is-h2 span span .content-page span, .custom-map .left .is-h2 span .map-section span .content-page span, .map-section .custom-map .left h2 span .custom-map .left span span .content-page span, .custom-map .left h2 .map-section span .custom-map .left span span .content-page span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .content-page span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .content-page span, .map-section h2 .custom-map .left span span .custom-map .left span span .content-page span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .content-page span {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.content-page .margin-auto {
  margin: auto;
}
.content-page .text-wrapper {
  max-width: 49.5rem;
}
.content-page .text-wrapper h2, .content-page .text-wrapper .is-h2, .content-page .text-wrapper .custom-map .left h2 span, .custom-map .left h2 .content-page .text-wrapper span, .content-page .text-wrapper .custom-map .left .is-h2 span, .custom-map .left .is-h2 .content-page .text-wrapper span, .content-page .text-wrapper .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .content-page .text-wrapper span, .content-page .text-wrapper .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .content-page .text-wrapper span, .content-page .text-wrapper .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .content-page .text-wrapper span, .content-page .text-wrapper .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .content-page .text-wrapper span, .content-page .text-wrapper .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .content-page .text-wrapper span, .content-page .text-wrapper .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .content-page .text-wrapper span, .content-page .text-wrapper .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .content-page .text-wrapper span, .content-page .text-wrapper .custom-map .left h2 span span, .custom-map .left h2 span .content-page .text-wrapper span, .content-page .text-wrapper .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .content-page .text-wrapper span, .content-page .text-wrapper .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .content-page .text-wrapper span, .content-page .text-wrapper .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .content-page .text-wrapper span, .content-page .text-wrapper .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .content-page .text-wrapper span, .content-page .text-wrapper .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .content-page .text-wrapper span, .content-page .text-wrapper .map-section h2 span, .map-section h2 .content-page .text-wrapper span, .content-page .text-wrapper .map-section .is-h2 span, .content-page .text-wrapper .map-section .custom-map .left h2 span span, .custom-map .left h2 .content-page .text-wrapper .map-section span span, .content-page .text-wrapper .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .content-page .text-wrapper .map-section span span, .content-page .text-wrapper .map-section h2 .custom-map .left span span span, .content-page .text-wrapper .map-section .is-h2 .custom-map .left span span span, .content-page .text-wrapper .map-section .custom-map .left h2 span span span, .content-page .text-wrapper .custom-map .left h2 .map-section span span span, .custom-map .left h2 .content-page .text-wrapper .map-section span span span, .content-page .text-wrapper .map-section .custom-map .left .is-h2 span span span, .content-page .text-wrapper .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .content-page .text-wrapper .map-section span span span, .content-page .text-wrapper .map-section h2 .custom-map .left span span span span, .content-page .text-wrapper .map-section .is-h2 .custom-map .left span span span span, .content-page .text-wrapper .map-section .custom-map .left h2 span span span span, .content-page .text-wrapper .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .content-page .text-wrapper .map-section span span span span, .content-page .text-wrapper .map-section .custom-map .left .is-h2 span span span span, .content-page .text-wrapper .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .content-page .text-wrapper .map-section span span span span, .content-page .text-wrapper .map-section h2 .custom-map .left span span span span span, .content-page .text-wrapper .map-section .is-h2 .custom-map .left span span span span span, .content-page .text-wrapper .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .content-page .text-wrapper .map-section span span, .content-page .text-wrapper .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .content-page .text-wrapper .map-section span span, .content-page .text-wrapper .map-section .custom-map .left h2 span .custom-map .left span span span, .content-page .text-wrapper .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .content-page .text-wrapper .map-section span .custom-map .left span span span, .content-page .text-wrapper .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .content-page .text-wrapper .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .content-page .text-wrapper .map-section span .custom-map .left span span span, .content-page .text-wrapper .map-section h2 .custom-map .left span span .custom-map .left span span span, .content-page .text-wrapper .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .content-page .text-wrapper span, .map-section .custom-map .left h2 span .content-page .text-wrapper span, .custom-map .left h2 .map-section span .content-page .text-wrapper span, .map-section .custom-map .left .is-h2 span .content-page .text-wrapper span, .custom-map .left .is-h2 .map-section span .content-page .text-wrapper span, .map-section h2 .custom-map .left span span .content-page .text-wrapper span, .map-section .is-h2 .custom-map .left span span .content-page .text-wrapper span, .map-section .custom-map .left h2 span span .content-page .text-wrapper span, .custom-map .left h2 .map-section span span .content-page .text-wrapper span, .map-section .custom-map .left .is-h2 span span .content-page .text-wrapper span, .custom-map .left .is-h2 .map-section span span .content-page .text-wrapper span, .map-section h2 .custom-map .left span span span .content-page .text-wrapper span, .map-section .is-h2 .custom-map .left span span span .content-page .text-wrapper span, .map-section .custom-map .left h2 span span span .content-page .text-wrapper span, .custom-map .left h2 .map-section span span span .content-page .text-wrapper span, .map-section .custom-map .left .is-h2 span span span .content-page .text-wrapper span, .custom-map .left .is-h2 .map-section span span span .content-page .text-wrapper span, .map-section h2 .custom-map .left span span span span .content-page .text-wrapper span, .map-section .is-h2 .custom-map .left span span span span .content-page .text-wrapper span, .map-section .custom-map .left h2 span span .content-page .text-wrapper span, .custom-map .left h2 span .map-section span .content-page .text-wrapper span, .map-section .custom-map .left .is-h2 span span .content-page .text-wrapper span, .custom-map .left .is-h2 span .map-section span .content-page .text-wrapper span, .map-section .custom-map .left h2 span .custom-map .left span span .content-page .text-wrapper span, .custom-map .left h2 .map-section span .custom-map .left span span .content-page .text-wrapper span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .content-page .text-wrapper span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .content-page .text-wrapper span, .map-section h2 .custom-map .left span span .custom-map .left span span .content-page .text-wrapper span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .content-page .text-wrapper span {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.content-page .text-wrapper li {
  font-size: clamp(0.7rem, 1.7vw - 0.2rem, 1rem);
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 576px) {
  .content-page .text-wrapper li {
    line-height: 1rem;
  }
}
.content-page .text-wrapper h4 {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}
.content-page .text-wrapper h4:first-child {
  margin-top: 0 !important;
}
.content-page .text-wrapper h3:first-child {
  margin-top: 0 !important;
}

.imprint-page {
  margin-bottom: 0;
}
.imprint-page article {
  position: relative;
  padding-bottom: 7rem;
  top: -8rem;
}
@media only screen and (max-width: 768px) {
  .imprint-page article {
    top: -5rem;
    padding-bottom: 1rem;
    margin-bottom: -3rem;
  }
}
.imprint-page .container {
  max-width: 33rem;
}
.imprint-page h5, .imprint-page .module-selector-card__name, .imprint-page .accordion-button {
  margin-bottom: 1.2rem;
}
.imprint-page p, .imprint-page .btn, .imprint-page .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .imprint-page .wpcf7-list-item-label, .imprint-page .module-intro-hero__btn, .imprint-page .post .text-wrapper .categories .category, .post .text-wrapper .categories .imprint-page .category, .imprint-page .post .wp-block-button a, .post .wp-block-button .imprint-page a, .imprint-page .blog-secondary-item__date, .imprint-page .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .imprint-page span, .imprint-page .map-link {
  margin-bottom: 1.2rem;
}
.imprint-page img {
  margin-top: 0.2rem;
  margin-right: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
}

.contact-page h2, .contact-page .is-h2, .contact-page .custom-map .left h2 span, .custom-map .left h2 .contact-page span, .contact-page .custom-map .left .is-h2 span, .custom-map .left .is-h2 .contact-page span, .contact-page .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .contact-page span, .contact-page .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .contact-page span, .contact-page .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .contact-page span, .contact-page .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .contact-page span, .contact-page .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .contact-page span, .contact-page .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .contact-page span, .contact-page .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .contact-page span, .contact-page .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .contact-page span, .contact-page .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .contact-page span, .contact-page .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .contact-page span, .contact-page .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .contact-page span, .contact-page .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .contact-page span, .contact-page .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .contact-page span, .contact-page .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .contact-page span, .contact-page .custom-map .left h2 span span, .custom-map .left h2 span .contact-page span, .contact-page .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .contact-page span, .contact-page .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .contact-page span, .contact-page .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .contact-page span, .contact-page .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .contact-page span, .contact-page .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .contact-page span, .contact-page .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .contact-page span, .contact-page .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .contact-page span, .contact-page .map-section h2 span, .map-section h2 .contact-page span, .contact-page .map-section .is-h2 span, .contact-page .map-section .custom-map .left h2 span span, .custom-map .left h2 .contact-page .map-section span span, .contact-page .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .contact-page .map-section span span, .contact-page .map-section h2 .custom-map .left span span span, .contact-page .map-section .is-h2 .custom-map .left span span span, .contact-page .map-section .custom-map .left h2 span span span, .contact-page .custom-map .left h2 .map-section span span span, .custom-map .left h2 .contact-page .map-section span span span, .contact-page .map-section .custom-map .left .is-h2 span span span, .contact-page .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .contact-page .map-section span span span, .contact-page .map-section h2 .custom-map .left span span span span, .contact-page .map-section .is-h2 .custom-map .left span span span span, .contact-page .map-section .custom-map .left h2 span span span span, .contact-page .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .contact-page .map-section span span span span, .contact-page .map-section .custom-map .left .is-h2 span span span span, .contact-page .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .contact-page .map-section span span span span, .contact-page .map-section h2 .custom-map .left span span span span span, .contact-page .map-section .is-h2 .custom-map .left span span span span span, .contact-page .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .contact-page .map-section span span, .contact-page .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .contact-page .map-section span span, .contact-page .map-section .custom-map .left h2 span .custom-map .left span span span, .contact-page .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .contact-page .map-section span .custom-map .left span span span, .contact-page .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .contact-page .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .contact-page .map-section span .custom-map .left span span span, .contact-page .map-section h2 .custom-map .left span span .custom-map .left span span span, .contact-page .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .contact-page span, .map-section .custom-map .left h2 span .contact-page span, .custom-map .left h2 .map-section span .contact-page span, .map-section .custom-map .left .is-h2 span .contact-page span, .custom-map .left .is-h2 .map-section span .contact-page span, .map-section h2 .custom-map .left span span .contact-page span, .map-section .is-h2 .custom-map .left span span .contact-page span, .map-section .custom-map .left h2 span span .contact-page span, .custom-map .left h2 .map-section span span .contact-page span, .map-section .custom-map .left .is-h2 span span .contact-page span, .custom-map .left .is-h2 .map-section span span .contact-page span, .map-section h2 .custom-map .left span span span .contact-page span, .map-section .is-h2 .custom-map .left span span span .contact-page span, .map-section .custom-map .left h2 span span span .contact-page span, .custom-map .left h2 .map-section span span span .contact-page span, .map-section .custom-map .left .is-h2 span span span .contact-page span, .custom-map .left .is-h2 .map-section span span span .contact-page span, .map-section h2 .custom-map .left span span span span .contact-page span, .map-section .is-h2 .custom-map .left span span span span .contact-page span, .map-section .custom-map .left h2 span span .contact-page span, .custom-map .left h2 span .map-section span .contact-page span, .map-section .custom-map .left .is-h2 span span .contact-page span, .custom-map .left .is-h2 span .map-section span .contact-page span, .map-section .custom-map .left h2 span .custom-map .left span span .contact-page span, .custom-map .left h2 .map-section span .custom-map .left span span .contact-page span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .contact-page span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .contact-page span, .map-section h2 .custom-map .left span span .custom-map .left span span .contact-page span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .contact-page span {
  margin-bottom: 2rem;
}
.contact-page input[type=submit] {
  height: 2.8rem;
}
@media only screen and (max-width: 992px) {
  .contact-page .btn, .contact-page .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .contact-page .wpcf7-list-item-label, .contact-page .post .wp-block-button a, .post .wp-block-button .contact-page a, .contact-page .post .text-wrapper .categories .category, .post .text-wrapper .categories .contact-page .category, .contact-page .module-intro-hero__btn {
    margin-right: 0;
    width: 100%;
    font-size: 0.8rem;
    height: 2.2rem;
    margin-bottom: 1rem;
  }
}
.contact-page .button-wrapper {
  display: flex;
  margin-top: 1rem;
  margin-bottom: 2.4rem;
  flex-direction: row;
}
@media only screen and (max-width: 992px) {
  .contact-page .button-wrapper {
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .contact-page .button-wrapper {
    margin-bottom: 1rem;
    flex-wrap: nowrap;
  }
}
@media only screen and (max-width: 576px) {
  .contact-page .button-wrapper {
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
}
.contact-page .button-wrapper button:first-child {
  margin-right: 0.5rem;
}
@media only screen and (max-width: 576px) {
  .contact-page .button-wrapper button:first-child {
    margin-right: 0;
  }
}
.contact-page i {
  padding-top: 0.3rem;
  margin-right: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
}
.contact-page .contact-info {
  background-color: #1055D7;
  padding: 2.25rem 2.65rem 3.2rem;
}
@media only screen and (max-width: 768px) {
  .contact-page .contact-info {
    padding: 2rem 1rem;
  }
}
.contact-page .contact-info .contact-info-details {
  margin-bottom: 4rem;
}
.contact-page .contact-info .contact-info-details .d-flex img {
  margin-top: 0.25rem;
  height: 1.2rem;
  width: 1.2rem;
  margin-right: 0.25rem;
}
.contact-page .contact-info a {
  margin-right: 1.2rem;
  text-decoration: none;
}
.contact-page .contact-info h5, .contact-page .contact-info .module-selector-card__name, .contact-page .contact-info .accordion-button {
  margin-bottom: 1.7rem;
}

.team {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70rem;
}
@media only screen and (max-width: 1200px) {
  .team {
    height: unset;
  }
}
.team h2, .team .is-h2, .team .custom-map .left h2 span, .custom-map .left h2 .team span, .team .custom-map .left .is-h2 span, .custom-map .left .is-h2 .team span, .team .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .team span, .team .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .team span, .team .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .team span, .team .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .team span, .team .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .team span, .team .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .team span, .team .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .team span, .team .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .team span, .team .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .team span, .team .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .team span, .team .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .team span, .team .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .team span, .team .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .team span, .team .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .team span, .team .custom-map .left h2 span span, .custom-map .left h2 span .team span, .team .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .team span, .team .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .team span, .team .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .team span, .team .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .team span, .team .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .team span, .team .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .team span, .team .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .team span, .team .map-section h2 span, .map-section h2 .team span, .team .map-section .is-h2 span, .team .map-section .custom-map .left h2 span span, .custom-map .left h2 .team .map-section span span, .team .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .team .map-section span span, .team .map-section h2 .custom-map .left span span span, .team .map-section .is-h2 .custom-map .left span span span, .team .map-section .custom-map .left h2 span span span, .team .custom-map .left h2 .map-section span span span, .custom-map .left h2 .team .map-section span span span, .team .map-section .custom-map .left .is-h2 span span span, .team .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .team .map-section span span span, .team .map-section h2 .custom-map .left span span span span, .team .map-section .is-h2 .custom-map .left span span span span, .team .map-section .custom-map .left h2 span span span span, .team .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .team .map-section span span span span, .team .map-section .custom-map .left .is-h2 span span span span, .team .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .team .map-section span span span span, .team .map-section h2 .custom-map .left span span span span span, .team .map-section .is-h2 .custom-map .left span span span span span, .team .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .team .map-section span span, .team .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .team .map-section span span, .team .map-section .custom-map .left h2 span .custom-map .left span span span, .team .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .team .map-section span .custom-map .left span span span, .team .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .team .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .team .map-section span .custom-map .left span span span, .team .map-section h2 .custom-map .left span span .custom-map .left span span span, .team .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .team span, .map-section .custom-map .left h2 span .team span, .custom-map .left h2 .map-section span .team span, .map-section .custom-map .left .is-h2 span .team span, .custom-map .left .is-h2 .map-section span .team span, .map-section h2 .custom-map .left span span .team span, .map-section .is-h2 .custom-map .left span span .team span, .map-section .custom-map .left h2 span span .team span, .custom-map .left h2 .map-section span span .team span, .map-section .custom-map .left .is-h2 span span .team span, .custom-map .left .is-h2 .map-section span span .team span, .map-section h2 .custom-map .left span span span .team span, .map-section .is-h2 .custom-map .left span span span .team span, .map-section .custom-map .left h2 span span span .team span, .custom-map .left h2 .map-section span span span .team span, .map-section .custom-map .left .is-h2 span span span .team span, .custom-map .left .is-h2 .map-section span span span .team span, .map-section h2 .custom-map .left span span span span .team span, .map-section .is-h2 .custom-map .left span span span span .team span, .map-section .custom-map .left h2 span span .team span, .custom-map .left h2 span .map-section span .team span, .map-section .custom-map .left .is-h2 span span .team span, .custom-map .left .is-h2 span .map-section span .team span, .map-section .custom-map .left h2 span .custom-map .left span span .team span, .custom-map .left h2 .map-section span .custom-map .left span span .team span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .team span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .team span, .map-section h2 .custom-map .left span span .custom-map .left span span .team span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .team span {
  position: relative;
  text-align: center;
  z-index: 2;
  font-size: clamp(3rem, 6.5vw - 1.9rem, 5rem);
}
@media only screen and (max-width: 1200px) {
  .team h2, .team .is-h2, .team .custom-map .left h2 span, .custom-map .left h2 .team span, .team .custom-map .left .is-h2 span, .custom-map .left .is-h2 .team span, .team .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .team span, .team .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .team span, .team .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .team span, .team .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .team span, .team .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .team span, .team .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .team span, .team .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .team span, .team .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .team span, .team .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .team span, .team .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .team span, .team .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .team span, .team .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .team span, .team .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .team span, .team .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .team span, .team .custom-map .left h2 span span, .custom-map .left h2 span .team span, .team .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .team span, .team .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .team span, .team .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .team span, .team .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .team span, .team .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .team span, .team .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .team span, .team .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .team span, .team .map-section h2 span, .map-section h2 .team span, .team .map-section .is-h2 span, .team .map-section .custom-map .left h2 span span, .custom-map .left h2 .team .map-section span span, .team .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .team .map-section span span, .team .map-section h2 .custom-map .left span span span, .team .map-section .is-h2 .custom-map .left span span span, .team .map-section .custom-map .left h2 span span span, .team .custom-map .left h2 .map-section span span span, .custom-map .left h2 .team .map-section span span span, .team .map-section .custom-map .left .is-h2 span span span, .team .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .team .map-section span span span, .team .map-section h2 .custom-map .left span span span span, .team .map-section .is-h2 .custom-map .left span span span span, .team .map-section .custom-map .left h2 span span span span, .team .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .team .map-section span span span span, .team .map-section .custom-map .left .is-h2 span span span span, .team .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .team .map-section span span span span, .team .map-section h2 .custom-map .left span span span span span, .team .map-section .is-h2 .custom-map .left span span span span span, .team .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .team .map-section span span, .team .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .team .map-section span span, .team .map-section .custom-map .left h2 span .custom-map .left span span span, .team .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .team .map-section span .custom-map .left span span span, .team .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .team .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .team .map-section span .custom-map .left span span span, .team .map-section h2 .custom-map .left span span .custom-map .left span span span, .team .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .team span, .map-section .custom-map .left h2 span .team span, .custom-map .left h2 .map-section span .team span, .map-section .custom-map .left .is-h2 span .team span, .custom-map .left .is-h2 .map-section span .team span, .map-section h2 .custom-map .left span span .team span, .map-section .is-h2 .custom-map .left span span .team span, .map-section .custom-map .left h2 span span .team span, .custom-map .left h2 .map-section span span .team span, .map-section .custom-map .left .is-h2 span span .team span, .custom-map .left .is-h2 .map-section span span .team span, .map-section h2 .custom-map .left span span span .team span, .map-section .is-h2 .custom-map .left span span span .team span, .map-section .custom-map .left h2 span span span .team span, .custom-map .left h2 .map-section span span span .team span, .map-section .custom-map .left .is-h2 span span span .team span, .custom-map .left .is-h2 .map-section span span span .team span, .map-section h2 .custom-map .left span span span span .team span, .map-section .is-h2 .custom-map .left span span span span .team span, .map-section .custom-map .left h2 span span .team span, .custom-map .left h2 span .map-section span .team span, .map-section .custom-map .left .is-h2 span span .team span, .custom-map .left .is-h2 span .map-section span .team span, .map-section .custom-map .left h2 span .custom-map .left span span .team span, .custom-map .left h2 .map-section span .custom-map .left span span .team span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .team span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .team span, .map-section h2 .custom-map .left span span .custom-map .left span span .team span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .team span {
    margin-bottom: 3rem;
  }
}
.team .position-1 {
  transform: translateY(-200%) translateX(30%);
}
.team .position-2 {
  transform: translateY(-150%) translateX(250%);
}
.team .position-3 {
  transform: translateY(-30%);
}
.team .position-4 {
  transform: translateY(10%) translateX(300%);
}
.team .position-5 {
  transform: translateY(60%) translateX(135%);
}
@media only screen and (max-width: 1200px) {
  .team .team-members-wrapper {
    display: none;
  }
}
.team .team-members-wrapper .team-members {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 15.188rem;
  max-height: 17.75rem;
}
.team .swiper-wrapper {
  gap: 1rem;
}
.team .swiper-wrapper .member-info {
  width: 11rem !important;
}
.team .team-members {
  z-index: 1;
  max-width: 15.188rem;
  max-height: 17.75rem;
  gap: 1rem;
}
.team .team-members img {
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.team .team-members .member-info {
  background-image: linear-gradient(to bottom, transparent, black);
  color: white;
  position: absolute;
  display: flex;
  padding: 1.5rem;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  flex-direction: column;
  z-index: 0;
  left: 0;
  bottom: 0;
}

.section-testimonials {
  overflow: hidden;
}
.section-testimonials h4 {
  margin-bottom: 2rem;
}
.section-testimonials .swiper-wrapper .testimonial {
  background-color: #1055D7;
  text-align: center;
  padding: 1.6rem;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}
.section-testimonials .swiper-wrapper .testimonial img {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .section-testimonials .swiper-wrapper .testimonial img {
    max-height: 1.1rem;
  }
}
.section-testimonials .swiper-wrapper .testimonial .testimonial-text {
  padding: 0 3rem;
  margin: 0 auto 0 auto;
}
@media only screen and (max-width: 992px) {
  .section-testimonials .swiper-wrapper .testimonial .testimonial-text {
    padding: 0 1rem;
  }
}
.section-testimonials .swiper-wrapper .testimonial .testimonial-author {
  color: #8D9096;
  margin-bottom: 0;
}
.section-testimonials .swiper-wrapper .testimonial .quotes-icon-navy {
  margin: 0 auto 1rem auto;
  height: 1.6rem;
  width: 1.6rem;
  background-color: #6E7C89;
  -webkit-mask-image: url("../img//quotes_navy.svg");
          mask-image: url("../img//quotes_navy.svg");
  background-size: cover;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.section-testimonials .swiper-wrapper .testimonial .quotes-icon {
  margin: 0 auto 1rem auto;
  height: 1.6rem;
  width: 1.6rem;
  background-color: #8D9096;
  -webkit-mask-image: url("../img//quotes.svg");
          mask-image: url("../img//quotes.svg");
  background-size: cover;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.blog-section {
  border-radius: 1.25rem;
  background: #ffffff;
}
.blog-section .section-title {
  margin-bottom: 2rem;
}
.blog-section .blog-item {
  position: relative;
}

.blog-item {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .blog-item h5, .blog-item .module-selector-card__name, .blog-item .accordion-button {
    font-size: 1.2rem;
  }
}
.blog-item p, .blog-item .btn, .blog-item .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .blog-item .wpcf7-list-item-label, .blog-item .module-intro-hero__btn, .blog-item .post .text-wrapper .categories .category, .post .text-wrapper .categories .blog-item .category, .blog-item .post .wp-block-button a, .post .wp-block-button .blog-item a, .blog-item .blog-secondary-item__date, .blog-item .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .blog-item span, .blog-item .map-link {
  color: #8D9096;
  margin-bottom: 0.7rem;
}
@media only screen and (max-width: 768px) {
  .blog-item p, .blog-item .btn, .blog-item .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .blog-item .wpcf7-list-item-label, .blog-item .module-intro-hero__btn, .blog-item .post .text-wrapper .categories .category, .post .text-wrapper .categories .blog-item .category, .blog-item .post .wp-block-button a, .post .wp-block-button .blog-item a, .blog-item .blog-secondary-item__date, .blog-item .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .blog-item span, .blog-item .map-link {
    font-size: 1rem;
  }
}
.blog-item .caf-content-read-more {
  display: none;
}
.blog-item .manage-layout1 {
  box-shadow: none !important;
}
.blog-item .caf-content-read-more {
  display: none !important;
}
.blog-item img {
  margin-bottom: 1rem;
  width: 100%;
  height: 16.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
.blog-item h5, .blog-item .module-selector-card__name, .blog-item .accordion-button {
  line-height: 1.8rem;
}
.blog-item a {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.blog-page .hero-simple {
  padding-top: 5rem;
  margin-bottom: -5rem;
  height: 20rem;
}
@media only screen and (max-width: 768px) {
  .blog-page .hero-simple {
    padding-top: 0;
    height: 12.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .blog-page .form {
    width: 100%;
  }
}
.blog-page .form i {
  position: absolute;
  left: 0;
  height: 1rem;
  width: 1rem;
  top: 0.7rem;
}
@media only screen and (max-width: 768px) {
  .blog-page .form i {
    font-size: 0.6rem !important;
    top: 0.5rem;
  }
}
.blog-page .form .form-control {
  padding-left: 2rem;
  font-size: 0.8rem;
}
@media only screen and (max-width: 768px) {
  .blog-page .form .form-control {
    font-size: 0.6rem !important;
    padding: 0 0 0 1rem;
    min-height: 1.7rem;
    width: 100%;
  }
}
.blog-page .filter-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.1rem;
}
@media only screen and (max-width: 768px) {
  .blog-page .filter-section {
    flex-direction: column;
    align-items: start;
    gap: 0.35rem;
    margin-bottom: 1.7rem;
  }
}
@media only screen and (max-width: 768px) {
  .blog-page .filter-section .d-flex {
    flex-wrap: wrap;
  }
}
.blog-page .filter-section .d-flex button {
  margin-right: 0.6rem;
}
@media only screen and (max-width: 768px) {
  .blog-page .filter-section .d-flex button {
    min-width: 2rem;
    max-height: 1.7rem;
    min-height: 1.7rem;
    line-height: 1.7rem;
    font-size: 0.55rem;
    padding: 0 0.65rem;
    margin-right: 0.35rem;
    margin-bottom: 0.4rem;
  }
}
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
}
@media only screen and (max-width: 768px) {
  .blog-page .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* CSS styles */
.partners-section {
  background-color: #1055D7;
}
.partners-section .section-content {
  padding: 4.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .partners-section .section-content {
    margin-top: 5rem;
    padding: 2rem 0.75rem;
    flex-direction: column;
  }
}
.partners-section .section-text {
  width: 45%;
  padding-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .partners-section .section-text {
    width: 100%;
    padding-right: 0;
  }
}
.partners-section .section-text h4 {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .partners-section .section-text h4 {
    margin-bottom: 1.6rem;
  }
}
.partners-section .section-carousel {
  width: 50%;
  height: 13.3rem;
  border: 2px solid #DCD7D2;
}
@media only screen and (max-width: 768px) {
  .partners-section .section-carousel {
    width: 100%;
  }
}
.partners-section .swiper-container {
  width: 100%;
  height: 100%;
}

.image-text-block {
  background: #1055D7;
  color: #ffffff;
  border-radius: var(--radius-xl, 1.25rem);
}
.image-text-block .row {
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .image-text-block .row {
    justify-content: unset;
    flex-direction: column-reverse;
  }
}
.image-text-block h6, .image-text-block .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .image-text-block a, .image-text-block .module-tab-split-checklist-featured__box-title, .image-text-block .modules-selection-bar__count span, .modules-selection-bar__count .image-text-block span, .image-text-block .module-intro-features__tagline {
  margin-bottom: 4.75rem;
}
@media only screen and (max-width: 992px) {
  .image-text-block h6, .image-text-block .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .image-text-block a, .image-text-block .module-tab-split-checklist-featured__box-title, .image-text-block .modules-selection-bar__count span, .modules-selection-bar__count .image-text-block span, .image-text-block .module-intro-features__tagline {
    margin-bottom: 1rem;
  }
}
.image-text-block .col-lg-6 {
  display: flex;
  flex-direction: column;
}
.image-text-block .col-lg-6 h2, .image-text-block .col-lg-6 .is-h2, .image-text-block .col-lg-6 .custom-map .left h2 span, .custom-map .left h2 .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .custom-map .left .is-h2 span, .custom-map .left .is-h2 .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .custom-map .left h2 span span, .custom-map .left h2 span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section h2 span, .map-section h2 .image-text-block .col-lg-6 span, .image-text-block .col-lg-6 .map-section .is-h2 span, .image-text-block .col-lg-6 .map-section .custom-map .left h2 span span, .custom-map .left h2 .image-text-block .col-lg-6 .map-section span span, .image-text-block .col-lg-6 .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .image-text-block .col-lg-6 .map-section span span, .image-text-block .col-lg-6 .map-section h2 .custom-map .left span span span, .image-text-block .col-lg-6 .map-section .is-h2 .custom-map .left span span span, .image-text-block .col-lg-6 .map-section .custom-map .left h2 span span span, .image-text-block .col-lg-6 .custom-map .left h2 .map-section span span span, .custom-map .left h2 .image-text-block .col-lg-6 .map-section span span span, .image-text-block .col-lg-6 .map-section .custom-map .left .is-h2 span span span, .image-text-block .col-lg-6 .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .image-text-block .col-lg-6 .map-section span span span, .image-text-block .col-lg-6 .map-section h2 .custom-map .left span span span span, .image-text-block .col-lg-6 .map-section .is-h2 .custom-map .left span span span span, .image-text-block .col-lg-6 .map-section .custom-map .left h2 span span span span, .image-text-block .col-lg-6 .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .image-text-block .col-lg-6 .map-section span span span span, .image-text-block .col-lg-6 .map-section .custom-map .left .is-h2 span span span span, .image-text-block .col-lg-6 .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .image-text-block .col-lg-6 .map-section span span span span, .image-text-block .col-lg-6 .map-section h2 .custom-map .left span span span span span, .image-text-block .col-lg-6 .map-section .is-h2 .custom-map .left span span span span span, .image-text-block .col-lg-6 .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .image-text-block .col-lg-6 .map-section span span, .image-text-block .col-lg-6 .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .image-text-block .col-lg-6 .map-section span span, .image-text-block .col-lg-6 .map-section .custom-map .left h2 span .custom-map .left span span span, .image-text-block .col-lg-6 .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .image-text-block .col-lg-6 .map-section span .custom-map .left span span span, .image-text-block .col-lg-6 .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .image-text-block .col-lg-6 .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .image-text-block .col-lg-6 .map-section span .custom-map .left span span span, .image-text-block .col-lg-6 .map-section h2 .custom-map .left span span .custom-map .left span span span, .image-text-block .col-lg-6 .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .image-text-block .col-lg-6 span, .map-section .custom-map .left h2 span .image-text-block .col-lg-6 span, .custom-map .left h2 .map-section span .image-text-block .col-lg-6 span, .map-section .custom-map .left .is-h2 span .image-text-block .col-lg-6 span, .custom-map .left .is-h2 .map-section span .image-text-block .col-lg-6 span, .map-section h2 .custom-map .left span span .image-text-block .col-lg-6 span, .map-section .is-h2 .custom-map .left span span .image-text-block .col-lg-6 span, .map-section .custom-map .left h2 span span .image-text-block .col-lg-6 span, .custom-map .left h2 .map-section span span .image-text-block .col-lg-6 span, .map-section .custom-map .left .is-h2 span span .image-text-block .col-lg-6 span, .custom-map .left .is-h2 .map-section span span .image-text-block .col-lg-6 span, .map-section h2 .custom-map .left span span span .image-text-block .col-lg-6 span, .map-section .is-h2 .custom-map .left span span span .image-text-block .col-lg-6 span, .map-section .custom-map .left h2 span span span .image-text-block .col-lg-6 span, .custom-map .left h2 .map-section span span span .image-text-block .col-lg-6 span, .map-section .custom-map .left .is-h2 span span span .image-text-block .col-lg-6 span, .custom-map .left .is-h2 .map-section span span span .image-text-block .col-lg-6 span, .map-section h2 .custom-map .left span span span span .image-text-block .col-lg-6 span, .map-section .is-h2 .custom-map .left span span span span .image-text-block .col-lg-6 span, .map-section .custom-map .left h2 span span .image-text-block .col-lg-6 span, .custom-map .left h2 span .map-section span .image-text-block .col-lg-6 span, .map-section .custom-map .left .is-h2 span span .image-text-block .col-lg-6 span, .custom-map .left .is-h2 span .map-section span .image-text-block .col-lg-6 span, .map-section .custom-map .left h2 span .custom-map .left span span .image-text-block .col-lg-6 span, .custom-map .left h2 .map-section span .custom-map .left span span .image-text-block .col-lg-6 span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .image-text-block .col-lg-6 span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .image-text-block .col-lg-6 span, .map-section h2 .custom-map .left span span .custom-map .left span span .image-text-block .col-lg-6 span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .image-text-block .col-lg-6 span {
  margin-bottom: 3.25rem;
}
@media only screen and (max-width: 1200px) {
  .image-text-block .col-lg-6 h2 br, .image-text-block .col-lg-6 .is-h2 br, .custom-map .left h2 .image-text-block .col-lg-6 span br, .custom-map .left .is-h2 .image-text-block .col-lg-6 span br, .map-section h2 .image-text-block .col-lg-6 span br, .map-section .is-h2 .image-text-block .col-lg-6 span br {
    display: none;
  }
}
.image-text-block .col-lg-6 p:last-child, .image-text-block .col-lg-6 .btn:last-child, .image-text-block .col-lg-6 .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .image-text-block .col-lg-6 .wpcf7-list-item-label:last-child, .image-text-block .col-lg-6 .module-intro-hero__btn:last-child, .image-text-block .col-lg-6 .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .image-text-block .col-lg-6 .category:last-child, .image-text-block .col-lg-6 .post .wp-block-button a:last-child, .post .wp-block-button .image-text-block .col-lg-6 a:last-child, .image-text-block .col-lg-6 .blog-secondary-item__date:last-child, .image-text-block .col-lg-6 .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .image-text-block .col-lg-6 span:last-child, .image-text-block .col-lg-6 .map-link:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1200px) {
  .image-text-block .col-lg-6 {
    align-self: center !important;
  }
}
.image-text-block img {
  max-height: 18rem;
}
@media only screen and (max-width: 1200px) {
  .image-text-block img {
    max-width: 90%;
    max-height: 100%;
    align-self: center;
    margin-bottom: 3rem;
    -o-object-position: top;
       object-position: top;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-block img {
    margin-bottom: 2rem;
    width: 100%;
    max-width: unset;
  }
}
.image-text-block a {
  border-radius: 0.5rem;
  height: 2.6rem;
}
.image-text-block .video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: #1055D7;
}
@media only screen and (max-width: 992px) {
  .image-text-block .video-wrapper {
    margin-bottom: 3rem;
  }
}
.image-text-block .video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-text-block .statistics-row {
  display: flex;
  flex-direction: row;
  gap: 3.375rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 992px) {
  .image-text-block .statistics-row {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.image-text-block .statistics-row .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-text-modal, .title-text-modal {
  background: white;
}
@media only screen and (max-width: 768px) {
  .image-text-modal .content-wrapper .rounded-img, .title-text-modal .content-wrapper .rounded-img {
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
}
.image-text-modal .content, .title-text-modal .content {
  display: flex;
  flex-direction: column;
  gap: 4.75rem;
}
@media only screen and (max-width: 768px) {
  .image-text-modal .content, .title-text-modal .content {
    gap: 2.5rem;
  }
}
.image-text-modal .links .subheading, .image-text-modal .links .modal-body h4, .modal-body .image-text-modal .links h4, .image-text-modal .links .platform-card h2, .platform-card .image-text-modal .links h2, .image-text-modal .links .platform-card .is-h2, .platform-card .image-text-modal .links .is-h2, .image-text-modal .links .platform-card .map-section h2 span, .platform-card .map-section h2 .image-text-modal .links span, .image-text-modal .links .map-section h2 .platform-card span, .map-section h2 .platform-card .image-text-modal .links span, .image-text-modal .links .platform-card .map-section .is-h2 span, .platform-card .map-section .is-h2 .image-text-modal .links span, .image-text-modal .links .map-section .is-h2 .platform-card span, .map-section .is-h2 .platform-card .image-text-modal .links span, .image-text-modal .links .platform-card .custom-map .left h2 span, .platform-card .custom-map .left h2 .image-text-modal .links span, .image-text-modal .links .custom-map .left h2 .platform-card span, .custom-map .left h2 .platform-card .image-text-modal .links span, .image-text-modal .links .platform-card .custom-map .left .is-h2 span, .platform-card .custom-map .left .is-h2 .image-text-modal .links span, .image-text-modal .links .custom-map .left .is-h2 .platform-card span, .custom-map .left .is-h2 .platform-card .image-text-modal .links span, .image-text-modal .links .platform-card h3, .platform-card .image-text-modal .links h3, .image-text-modal .links .platform-card h4, .platform-card .image-text-modal .links h4, .image-text-modal .links .platform-card h5, .platform-card .image-text-modal .links h5, .image-text-modal .links .platform-card .accordion-button, .platform-card .image-text-modal .links .accordion-button, .image-text-modal .links .platform-card .module-selector-card__name, .platform-card .image-text-modal .links .module-selector-card__name, .image-text-modal .links .platform-card h6, .image-text-modal .links .platform-card .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .image-text-modal .links .platform-card a, .image-text-modal .links .platform-card .module-tab-split-checklist-featured__box-title, .image-text-modal .links .platform-card .modules-selection-bar__count span, .modules-selection-bar__count .image-text-modal .links .platform-card span, .platform-card .image-text-modal .links h6, .platform-card .image-text-modal .links .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .platform-card .image-text-modal .links a, .platform-card .image-text-modal .links .module-tab-split-checklist-featured__box-title, .platform-card .image-text-modal .links .modules-selection-bar__count span, .modules-selection-bar__count .platform-card .image-text-modal .links span, .image-text-modal .links .platform-card .module-intro-features__tagline, .platform-card .image-text-modal .links .module-intro-features__tagline, .image-text-modal .links .post .post-toc__title, .post .image-text-modal .links .post-toc__title, .image-text-modal .links .timeline-section .timeline-label, .timeline-section .image-text-modal .links .timeline-label, .title-text-modal .links .subheading, .title-text-modal .links .modal-body h4, .modal-body .title-text-modal .links h4, .title-text-modal .links .platform-card h2, .platform-card .title-text-modal .links h2, .title-text-modal .links .platform-card .is-h2, .platform-card .title-text-modal .links .is-h2, .title-text-modal .links .platform-card .map-section h2 span, .platform-card .map-section h2 .title-text-modal .links span, .title-text-modal .links .map-section h2 .platform-card span, .map-section h2 .platform-card .title-text-modal .links span, .title-text-modal .links .platform-card .map-section .is-h2 span, .platform-card .map-section .is-h2 .title-text-modal .links span, .title-text-modal .links .map-section .is-h2 .platform-card span, .map-section .is-h2 .platform-card .title-text-modal .links span, .title-text-modal .links .platform-card .custom-map .left h2 span, .platform-card .custom-map .left h2 .title-text-modal .links span, .title-text-modal .links .custom-map .left h2 .platform-card span, .custom-map .left h2 .platform-card .title-text-modal .links span, .title-text-modal .links .platform-card .custom-map .left .is-h2 span, .platform-card .custom-map .left .is-h2 .title-text-modal .links span, .title-text-modal .links .custom-map .left .is-h2 .platform-card span, .custom-map .left .is-h2 .platform-card .title-text-modal .links span, .title-text-modal .links .platform-card h3, .platform-card .title-text-modal .links h3, .title-text-modal .links .platform-card h4, .platform-card .title-text-modal .links h4, .title-text-modal .links .platform-card h5, .platform-card .title-text-modal .links h5, .title-text-modal .links .platform-card .accordion-button, .platform-card .title-text-modal .links .accordion-button, .title-text-modal .links .platform-card .module-selector-card__name, .platform-card .title-text-modal .links .module-selector-card__name, .title-text-modal .links .platform-card h6, .title-text-modal .links .platform-card .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .title-text-modal .links .platform-card a, .title-text-modal .links .platform-card .module-tab-split-checklist-featured__box-title, .title-text-modal .links .platform-card .modules-selection-bar__count span, .modules-selection-bar__count .title-text-modal .links .platform-card span, .platform-card .title-text-modal .links h6, .platform-card .title-text-modal .links .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .platform-card .title-text-modal .links a, .platform-card .title-text-modal .links .module-tab-split-checklist-featured__box-title, .platform-card .title-text-modal .links .modules-selection-bar__count span, .modules-selection-bar__count .platform-card .title-text-modal .links span, .title-text-modal .links .platform-card .module-intro-features__tagline, .platform-card .title-text-modal .links .module-intro-features__tagline, .title-text-modal .links .post .post-toc__title, .post .title-text-modal .links .post-toc__title, .title-text-modal .links .timeline-section .timeline-label, .timeline-section .title-text-modal .links .timeline-label {
  margin-bottom: 1.37rem;
}
.image-text-modal .links ul, .title-text-modal .links ul {
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.image-text-modal .links ul li, .title-text-modal .links ul li {
  list-style: none;
  padding: 0.5rem;
  border-bottom: 1px solid #111;
}
.image-text-modal .links ul li a, .title-text-modal .links ul li a {
  display: block;
  text-decoration: none;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25rem; /* 125% */
  letter-spacing: -0.03rem;
}
.image-text-modal .links ul li a img, .title-text-modal .links ul li a img {
  margin-left: 3rem;
}

@media only screen and (max-width: 768px) {
  .title-text-modal {
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .title-text-modal .reverse-order {
    flex-direction: column-reverse !important;
  }
}
.title-text-modal ul {
  width: 100% !important;
}
.title-text-modal ul li {
  width: 100%;
}

.image-to-fullscreen-section {
  position: relative;
}
.image-to-fullscreen-section .text {
  display: flex;
  max-width: 48.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.image-to-fullscreen-section .text p, .image-to-fullscreen-section .text .btn, .image-to-fullscreen-section .text .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .image-to-fullscreen-section .text .wpcf7-list-item-label, .image-to-fullscreen-section .text .module-intro-hero__btn, .image-to-fullscreen-section .text .post .text-wrapper .categories .category, .post .text-wrapper .categories .image-to-fullscreen-section .text .category, .image-to-fullscreen-section .text .post .wp-block-button a, .post .wp-block-button .image-to-fullscreen-section .text a, .image-to-fullscreen-section .text .blog-secondary-item__date, .image-to-fullscreen-section .text .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .image-to-fullscreen-section .text span, .image-to-fullscreen-section .text .map-link {
  margin-bottom: 0;
}
.image-to-fullscreen-section .image-wrapper {
  position: relative;
  max-width: 42.125rem;
  max-height: 16.625rem;
  border-radius: 31.25rem;
  overflow: hidden;
  margin: auto auto 8rem;
}
@media only screen and (max-width: 768px) {
  .image-to-fullscreen-section .image-wrapper {
    display: none;
  }
}

.image-to-fullscreen {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.fullscreen-content {
  position: relative;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media only screen and (max-width: 3840px) {
  .fullscreen-content {
    height: 90rem;
  }
}
@media only screen and (max-width: 1921px) {
  .fullscreen-content {
    height: 110rem;
  }
}
@media only screen and (max-width: 992px) {
  .fullscreen-content {
    height: 140rem;
  }
}
@media only screen and (max-width: 576px) {
  .fullscreen-content {
    height: 125rem;
  }
}
.fullscreen-content .content-box {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  padding-bottom: 7rem;
  padding-top: 7rem;
  background: transparent;
  color: white;
  margin-top: -100vh;
}
@media only screen and (max-width: 1921px) {
  .fullscreen-content .content-box {
    margin-top: -75vh;
    padding-bottom: 15rem;
  }
}
@media only screen and (max-width: 768px) {
  .fullscreen-content .content-box {
    padding-top: 5rem;
  }
}
@media only screen and (max-width: 376px) {
  .fullscreen-content .content-box {
    padding-bottom: 20rem;
    margin-top: -87vh;
  }
}
.fullscreen-content .left {
  position: sticky;
  top: 2rem;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-start;
  padding-right: 1rem;
}
@media only screen and (max-width: 1200px) {
  .fullscreen-content .left {
    position: static;
    margin-bottom: 2rem;
  }
}
.fullscreen-content .section-bg-sticky {
  z-index: -1;
  position: sticky;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  -webkit-mask-image: url("../../assets/img/circle_mask.svg");
          mask-image: url("../../assets/img/circle_mask.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.scrollable-cards-container {
  position: relative;
}

.card-with-changing-text {
  margin-bottom: 40px;
  opacity: 1;
  transition: all 0.3s ease;
}

.card-with-changing-text.animate {
  opacity: 1 !important;
}

.fullscreen-content.reveal {
  opacity: 1 !important;
}

.section-bg {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
}

.scrollable-cards-container {
  margin-left: auto;
  overflow-y: hidden; /* Start hidden */
  transition: overflow-y 0.3s ease;
}

.info-section .container h6, .info-section .container .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .info-section .container a, .info-section .container .module-tab-split-checklist-featured__box-title, .info-section .container .modules-selection-bar__count span, .modules-selection-bar__count .info-section .container span, .info-section .container .module-intro-features__tagline {
  text-transform: uppercase;
  margin-bottom: 4.25rem;
}
@media only screen and (max-width: 768px) {
  .info-section .container h6, .info-section .container .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .info-section .container a, .info-section .container .module-tab-split-checklist-featured__box-title, .info-section .container .modules-selection-bar__count span, .modules-selection-bar__count .info-section .container span, .info-section .container .module-intro-features__tagline {
    margin-bottom: 2rem;
  }
}
.info-section .container .info-content {
  min-height: 13.7rem;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .info-section .container .info-content {
    flex-direction: column;
  }
}
.info-section .container .info-content .info-triggers {
  display: grid;
  grid-template-columns: 5rem 5rem;
  place-items: center;
  justify-content: center;
  gap: 2rem;
  width: 40%;
  max-height: 11rem;
}
@media only screen and (max-width: 768px) {
  .info-section .container .info-content .info-triggers {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
  }
}
.info-section .container .info-content .info-text {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .info-section .container .info-content .info-text {
    width: 100%;
  }
}

.platform-section {
  background: #111;
  color: white;
}
@media only screen and (max-width: 768px) {
  .platform-section {
    display: none;
  }
}
.platform-section .container-fluid {
  background: transparent;
}
.platform-section .left {
  width: 60%;
}
.platform-section .left h2, .platform-section .left .is-h2, .platform-section .custom-map .left h2 span, .custom-map .platform-section .left h2 span, .platform-section .custom-map .left .is-h2 span, .custom-map .platform-section .left .is-h2 span, .platform-section .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .platform-section .left span span, .platform-section .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .platform-section .left span span, .platform-section .map-section .custom-map .left h2 span span, .map-section .custom-map .platform-section .left h2 span span, .platform-section .custom-map .left h2 .map-section span span, .custom-map .platform-section .left h2 .map-section span span, .platform-section .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .platform-section .left .is-h2 span span, .platform-section .custom-map .left .is-h2 .map-section span span, .custom-map .platform-section .left .is-h2 .map-section span span, .platform-section .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .platform-section .left span span span, .platform-section .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .platform-section .left span span span, .platform-section .map-section .custom-map .left h2 span span span, .map-section .custom-map .platform-section .left h2 span span span, .platform-section .custom-map .left h2 .map-section span span span, .custom-map .platform-section .left h2 .map-section span span span, .platform-section .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .platform-section .left .is-h2 span span span, .platform-section .custom-map .left .is-h2 .map-section span span span, .custom-map .platform-section .left .is-h2 .map-section span span span, .platform-section .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .platform-section .left span span span span, .platform-section .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .platform-section .left span span span span, .platform-section .custom-map .left h2 span span, .custom-map .platform-section .left h2 span span, .platform-section .custom-map .left .is-h2 span span, .custom-map .platform-section .left .is-h2 span span, .platform-section .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .platform-section .left h2 span .custom-map .left span span, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span, .platform-section .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .platform-section .left .is-h2 span .custom-map .left span span, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span, .platform-section .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .platform-section .left span span .custom-map .left span span, .platform-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .platform-section .left span span .custom-map .left span span, .platform-section .left .map-section h2 span, .map-section h2 .platform-section .left span, .platform-section .left .map-section .is-h2 span, .platform-section .custom-map .left .map-section h2 span span, .custom-map .platform-section .left .map-section h2 span span, .platform-section .custom-map .left h2 .map-section span span, .custom-map .platform-section .left h2 .map-section span span, .platform-section .custom-map .left .map-section .is-h2 span span, .custom-map .platform-section .left .map-section .is-h2 span span, .platform-section .custom-map .left .is-h2 .map-section span span, .custom-map .platform-section .left .is-h2 .map-section span span, .platform-section .left .map-section h2 .custom-map .left span span span, .platform-section .left .map-section .is-h2 .custom-map .left span span span, .platform-section .left .map-section .custom-map .left h2 span span span, .platform-section .custom-map .left h2 .map-section span span span, .custom-map .platform-section .left h2 .map-section span span span, .platform-section .left .map-section .custom-map .left .is-h2 span span span, .platform-section .custom-map .left .is-h2 .map-section span span span, .custom-map .platform-section .left .is-h2 .map-section span span span, .platform-section .left .map-section h2 .custom-map .left span span span span, .platform-section .left .map-section .is-h2 .custom-map .left span span span span, .platform-section .left .map-section .custom-map .left h2 span span span span, .platform-section .custom-map .left h2 .map-section span span span span, .custom-map .platform-section .left h2 .map-section span span span span, .platform-section .left .map-section .custom-map .left .is-h2 span span span span, .platform-section .custom-map .left .is-h2 .map-section span span span span, .custom-map .platform-section .left .is-h2 .map-section span span span span, .platform-section .left .map-section h2 .custom-map .left span span span span span, .platform-section .left .map-section .is-h2 .custom-map .left span span span span span, .platform-section .custom-map .left .map-section h2 span span span, .custom-map .platform-section .left .map-section h2 span span span, .platform-section .custom-map .left h2 span .map-section span span, .custom-map .platform-section .left h2 span .map-section span span, .platform-section .custom-map .left .map-section .is-h2 span span span, .custom-map .platform-section .left .map-section .is-h2 span span span, .platform-section .custom-map .left .is-h2 span .map-section span span, .custom-map .platform-section .left .is-h2 span .map-section span span, .platform-section .left .map-section .custom-map .left h2 span .custom-map .left span span span, .platform-section .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .platform-section .left h2 .map-section span .custom-map .left span span span, .platform-section .left .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .platform-section .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .platform-section .left .is-h2 .map-section span .custom-map .left span span span, .platform-section .left .map-section h2 .custom-map .left span span .custom-map .left span span span, .platform-section .left .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .platform-section .left span, .map-section .custom-map .left h2 span .platform-section .left span, .custom-map .left h2 .map-section span .platform-section .left span, .map-section .custom-map .left .is-h2 span .platform-section .left span, .custom-map .left .is-h2 .map-section span .platform-section .left span, .map-section h2 .custom-map .left span span .platform-section .left span, .map-section .is-h2 .custom-map .left span span .platform-section .left span, .map-section .custom-map .left h2 span span .platform-section .left span, .custom-map .left h2 .map-section span span .platform-section .left span, .map-section .custom-map .left .is-h2 span span .platform-section .left span, .custom-map .left .is-h2 .map-section span span .platform-section .left span, .map-section h2 .custom-map .left span span span .platform-section .left span, .map-section .is-h2 .custom-map .left span span span .platform-section .left span, .map-section .custom-map .left h2 span span span .platform-section .left span, .custom-map .left h2 .map-section span span span .platform-section .left span, .map-section .custom-map .left .is-h2 span span span .platform-section .left span, .custom-map .left .is-h2 .map-section span span span .platform-section .left span, .map-section h2 .custom-map .left span span span span .platform-section .left span, .map-section .is-h2 .custom-map .left span span span span .platform-section .left span, .map-section .custom-map .left h2 span span .platform-section .left span, .custom-map .left h2 span .map-section span .platform-section .left span, .map-section .custom-map .left .is-h2 span span .platform-section .left span, .custom-map .left .is-h2 span .map-section span .platform-section .left span, .map-section .custom-map .left h2 span .custom-map .left span span .platform-section .left span, .custom-map .left h2 .map-section span .custom-map .left span span .platform-section .left span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .platform-section .left span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .platform-section .left span, .map-section h2 .custom-map .left span span .custom-map .left span span .platform-section .left span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .platform-section .left span {
  margin-bottom: 2.5rem;
}
.platform-section .left span {
  opacity: 0.6;
}
.platform-section .right {
  width: 30%;
  margin-top: 10rem;
}
.platform-section .right .platform-card {
  opacity: 0; /* Start fully transparent */
  visibility: hidden; /* Hide from view */
  height: 0; /* Start with no height */
  overflow: hidden; /* Prevent content from overflowing */
  transition: opacity 0.3s ease, height 0.3s ease; /* Smooth transition */
  padding: 0;
}
.platform-section .right .platform-card.active {
  opacity: 1; /* Fully visible */
  visibility: visible; /* Show the element */
  height: auto; /* Expand to fit content */
  padding: 3rem;
}
.platform-section .right .platform-card.active br {
  display: none;
}
.platform-section .right .platform-card.active p, .platform-section .right .platform-card.active .btn, .platform-section .right .platform-card.active .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .right .platform-card.active .wpcf7-list-item-label, .platform-section .right .platform-card.active .module-intro-hero__btn, .platform-section .right .platform-card.active .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .right .platform-card.active .category, .platform-section .right .platform-card.active .post .wp-block-button a, .post .wp-block-button .platform-section .right .platform-card.active a, .platform-section .right .platform-card.active .blog-secondary-item__date, .platform-section .right .platform-card.active .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .right .platform-card.active span, .platform-section .right .platform-card.active .map-link {
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem; /* 115.385% */
  letter-spacing: -0.02438rem;
}
.platform-section .platform-content {
  height: 48rem;
  width: 100%;
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
  margin-left: 5rem;
}
.platform-section .legend {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}
.platform-section .legend div {
  min-width: 18rem;
}
.platform-section .legend div p, .platform-section .legend div .btn, .platform-section .legend div .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-section .legend div .wpcf7-list-item-label, .platform-section .legend div .module-intro-hero__btn, .platform-section .legend div .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-section .legend div .category, .platform-section .legend div .post .wp-block-button a, .post .wp-block-button .platform-section .legend div a, .platform-section .legend div .blog-secondary-item__date, .platform-section .legend div .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-section .legend div span, .platform-section .legend div .map-link, .platform-section .legend div span {
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem; /* 136.364% */
  letter-spacing: -0.02063rem;
  margin-bottom: 0;
}
.platform-section .legend div span {
  color: #9E78FF;
}

.accordion {
  border: none;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.accordion-button:not(.collapsed) {
  background-color: #3C3C3C !important;
  box-shadow: unset !important;
  border: none !important;
  color: white;
}
.accordion-button:not(.collapsed):before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(49%) saturate(21%) hue-rotate(43deg) brightness(110%) contrast(100%);
}
.accordion-button:not(.collapsed):after {
  background-image: url("../../assets/img/close.svg");
  width: 1.5rem;
  height: 1.5rem;
}

.accordion-item {
  background: transparent;
  border: none;
}

.accordion-body {
  background-color: #3C3C3C !important;
  color: white !important;
  display: flex;
  padding: 2rem 0 2rem 2.3125rem !important;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-top: thin solid #111;
}
.accordion-body ul {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  list-style: none;
  padding-left: 0;
}
.accordion-body li {
  text-decoration: none;
  text-transform: uppercase;
}

.accordion-button {
  color: white;
  padding: 1.5rem 1rem;
  line-height: 1.6rem;
  background: transparent;
  text-transform: uppercase;
}
.accordion-button:before {
  content: " ";
  margin-right: 0.5rem;
  width: 0.84rem;
  height: 0.84rem;
  background-image: url("../../assets/img/accordion_circle.svg");
  filter: brightness(0) saturate(100%) invert(49%) sepia(12%) saturate(3%) hue-rotate(352deg) brightness(94%) contrast(87%);
}
.accordion-button:after {
  background-image: url("../../assets/img/open.svg");
  width: 1.5rem;
  height: 1.5rem;
}

.accordion-button:focus {
  box-shadow: unset !important;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

.reservation-section .reservation-content {
  background-color: #1055D7;
  padding: 3.6rem 3.5rem 3rem 3.5rem;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .reservation-section .reservation-content {
    padding: 1.4rem;
  }
}
.reservation-section .reservation-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .reservation-section .reservation-content h3 {
    margin-bottom: 1rem;
  }
}
.reservation-section .reservation-content p:last-child, .reservation-section .reservation-content .btn:last-child, .reservation-section .reservation-content .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .reservation-section .reservation-content .wpcf7-list-item-label:last-child, .reservation-section .reservation-content .module-intro-hero__btn:last-child, .reservation-section .reservation-content .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .reservation-section .reservation-content .category:last-child, .reservation-section .reservation-content .post .wp-block-button a:last-child, .post .wp-block-button .reservation-section .reservation-content a:last-child, .reservation-section .reservation-content .blog-secondary-item__date:last-child, .reservation-section .reservation-content .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .reservation-section .reservation-content span:last-child, .reservation-section .reservation-content .map-link:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .reservation-section .reservation-content p:last-child, .reservation-section .reservation-content .btn:last-child, .reservation-section .reservation-content .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .reservation-section .reservation-content .wpcf7-list-item-label:last-child, .reservation-section .reservation-content .module-intro-hero__btn:last-child, .reservation-section .reservation-content .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .reservation-section .reservation-content .category:last-child, .reservation-section .reservation-content .post .wp-block-button a:last-child, .post .wp-block-button .reservation-section .reservation-content a:last-child, .reservation-section .reservation-content .blog-secondary-item__date:last-child, .reservation-section .reservation-content .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .reservation-section .reservation-content span:last-child, .reservation-section .reservation-content .map-link:last-child {
    margin-bottom: 1rem;
  }
}
.reservation-section .reservation-content button {
  position: relative;
  top: -1rem;
}
@media only screen and (max-width: 768px) {
  .reservation-section .reservation-content button {
    top: 0;
    width: 100%;
  }
}

.quote-section .quote {
  padding: 2.2rem 3rem;
  border: thin solid #DCD7D2;
  border-radius: 0.2rem;
}
@media only screen and (max-width: 768px) {
  .quote-section .quote {
    padding: 1.4rem 1.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .quote-section .quote .row {
    flex-direction: column-reverse;
  }
}
.quote-section .quote .quote-text {
  padding: 1rem 0;
}
.quote-section .quote .quote-text img {
  margin-right: 0.8rem;
}
@media only screen and (max-width: 768px) {
  .quote-section .quote .quote-text img {
    display: none;
  }
}
.quote-section .quote .quote-text h5, .quote-section .quote .quote-text .module-selector-card__name, .quote-section .quote .quote-text .accordion-button {
  padding-top: 0.1rem;
  line-height: 1.8rem;
  padding-right: 5rem;
}
@media only screen and (max-width: 768px) {
  .quote-section .quote .quote-text h5, .quote-section .quote .quote-text .module-selector-card__name, .quote-section .quote .quote-text .accordion-button {
    padding: 0;
    line-height: 1.15rem;
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.quote-section .quote .quote-author h4 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .quote-section .quote .quote-author h4 {
    padding: 0;
    line-height: 1.15rem;
    font-size: 1rem !important;
    margin-bottom: 0;
  }
}
.quote-section .quote .quote-author p, .quote-section .quote .quote-author .btn, .quote-section .quote .quote-author .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .quote-section .quote .quote-author .wpcf7-list-item-label, .quote-section .quote .quote-author .module-intro-hero__btn, .quote-section .quote .quote-author .post .text-wrapper .categories .category, .post .text-wrapper .categories .quote-section .quote .quote-author .category, .quote-section .quote .quote-author .post .wp-block-button a, .post .wp-block-button .quote-section .quote .quote-author a, .quote-section .quote .quote-author .blog-secondary-item__date, .quote-section .quote .quote-author .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .quote-section .quote .quote-author span, .quote-section .quote .quote-author .map-link {
  font-size: 0.8rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .quote-section .quote .quote-author p, .quote-section .quote .quote-author .btn, .quote-section .quote .quote-author .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .quote-section .quote .quote-author .wpcf7-list-item-label, .quote-section .quote .quote-author .module-intro-hero__btn, .quote-section .quote .quote-author .post .text-wrapper .categories .category, .post .text-wrapper .categories .quote-section .quote .quote-author .category, .quote-section .quote .quote-author .post .wp-block-button a, .post .wp-block-button .quote-section .quote .quote-author a, .quote-section .quote .quote-author .blog-secondary-item__date, .quote-section .quote .quote-author .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .quote-section .quote .quote-author span, .quote-section .quote .quote-author .map-link {
    font-size: 0.55rem;
    line-height: 1rem;
  }
}
.quote-section .quote .quote-author .social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #1055D7;
}
.quote-section .quote .img-fluid {
  max-height: 15rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-gallery-section {
  padding: 4rem 0;
  background-color: #1055D7;
}
@media only screen and (max-width: 768px) {
  .text-gallery-section {
    padding: 2.5rem 0;
  }
}
.text-gallery-section p, .text-gallery-section .btn, .text-gallery-section .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .text-gallery-section .wpcf7-list-item-label, .text-gallery-section .module-intro-hero__btn, .text-gallery-section .post .text-wrapper .categories .category, .post .text-wrapper .categories .text-gallery-section .category, .text-gallery-section .post .wp-block-button a, .post .wp-block-button .text-gallery-section a, .text-gallery-section .blog-secondary-item__date, .text-gallery-section .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .text-gallery-section span, .text-gallery-section .map-link {
  padding-right: 3rem;
}
@media only screen and (max-width: 768px) {
  .text-gallery-section p, .text-gallery-section .btn, .text-gallery-section .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .text-gallery-section .wpcf7-list-item-label, .text-gallery-section .module-intro-hero__btn, .text-gallery-section .post .text-wrapper .categories .category, .post .text-wrapper .categories .text-gallery-section .category, .text-gallery-section .post .wp-block-button a, .post .wp-block-button .text-gallery-section a, .text-gallery-section .blog-secondary-item__date, .text-gallery-section .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .text-gallery-section span, .text-gallery-section .map-link {
    padding: 0;
  }
}
.text-gallery-section p:last-child, .text-gallery-section .btn:last-child, .text-gallery-section .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .text-gallery-section .wpcf7-list-item-label:last-child, .text-gallery-section .module-intro-hero__btn:last-child, .text-gallery-section .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .text-gallery-section .category:last-child, .text-gallery-section .post .wp-block-button a:last-child, .post .wp-block-button .text-gallery-section a:last-child, .text-gallery-section .blog-secondary-item__date:last-child, .text-gallery-section .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .text-gallery-section span:last-child, .text-gallery-section .map-link:last-child {
  margin-bottom: 0;
}
.text-gallery-section .images {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .text-gallery-section .images {
    grid-template-columns: 1fr 1fr;
  }
}
.text-gallery-section .images div img {
  width: unset;
  height: unset;
}
.text-gallery-section .images div:first-child {
  grid-area: 1/1/2/2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.text-gallery-section .images div:nth-child(2) {
  grid-area: 2/1/3/2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.text-gallery-section .images div:last-child {
  grid-area: 1/2/3/3;
  display: flex;
  align-items: center;
}

.values-section h2, .values-section .is-h2, .values-section .custom-map .left h2 span, .custom-map .left h2 .values-section span, .values-section .custom-map .left .is-h2 span, .custom-map .left .is-h2 .values-section span, .values-section .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .values-section span, .values-section .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .values-section span, .values-section .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .values-section span, .values-section .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .values-section span, .values-section .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .values-section span, .values-section .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .values-section span, .values-section .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .values-section span, .values-section .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .values-section span, .values-section .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .values-section span, .values-section .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .values-section span, .values-section .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .values-section span, .values-section .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .values-section span, .values-section .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .values-section span, .values-section .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .values-section span, .values-section .custom-map .left h2 span span, .custom-map .left h2 span .values-section span, .values-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .values-section span, .values-section .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .values-section span, .values-section .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .values-section span, .values-section .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .values-section span, .values-section .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .values-section span, .values-section .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .values-section span, .values-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .values-section span, .values-section .map-section h2 span, .map-section h2 .values-section span, .values-section .map-section .is-h2 span, .values-section .map-section .custom-map .left h2 span span, .custom-map .left h2 .values-section .map-section span span, .values-section .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .values-section .map-section span span, .values-section .map-section h2 .custom-map .left span span span, .values-section .map-section .is-h2 .custom-map .left span span span, .values-section .map-section .custom-map .left h2 span span span, .values-section .custom-map .left h2 .map-section span span span, .custom-map .left h2 .values-section .map-section span span span, .values-section .map-section .custom-map .left .is-h2 span span span, .values-section .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .values-section .map-section span span span, .values-section .map-section h2 .custom-map .left span span span span, .values-section .map-section .is-h2 .custom-map .left span span span span, .values-section .map-section .custom-map .left h2 span span span span, .values-section .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .values-section .map-section span span span span, .values-section .map-section .custom-map .left .is-h2 span span span span, .values-section .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .values-section .map-section span span span span, .values-section .map-section h2 .custom-map .left span span span span span, .values-section .map-section .is-h2 .custom-map .left span span span span span, .values-section .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .values-section .map-section span span, .values-section .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .values-section .map-section span span, .values-section .map-section .custom-map .left h2 span .custom-map .left span span span, .values-section .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .values-section .map-section span .custom-map .left span span span, .values-section .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .values-section .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .values-section .map-section span .custom-map .left span span span, .values-section .map-section h2 .custom-map .left span span .custom-map .left span span span, .values-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .values-section span, .map-section .custom-map .left h2 span .values-section span, .custom-map .left h2 .map-section span .values-section span, .map-section .custom-map .left .is-h2 span .values-section span, .custom-map .left .is-h2 .map-section span .values-section span, .map-section h2 .custom-map .left span span .values-section span, .map-section .is-h2 .custom-map .left span span .values-section span, .map-section .custom-map .left h2 span span .values-section span, .custom-map .left h2 .map-section span span .values-section span, .map-section .custom-map .left .is-h2 span span .values-section span, .custom-map .left .is-h2 .map-section span span .values-section span, .map-section h2 .custom-map .left span span span .values-section span, .map-section .is-h2 .custom-map .left span span span .values-section span, .map-section .custom-map .left h2 span span span .values-section span, .custom-map .left h2 .map-section span span span .values-section span, .map-section .custom-map .left .is-h2 span span span .values-section span, .custom-map .left .is-h2 .map-section span span span .values-section span, .map-section h2 .custom-map .left span span span span .values-section span, .map-section .is-h2 .custom-map .left span span span span .values-section span, .map-section .custom-map .left h2 span span .values-section span, .custom-map .left h2 span .map-section span .values-section span, .map-section .custom-map .left .is-h2 span span .values-section span, .custom-map .left .is-h2 span .map-section span .values-section span, .map-section .custom-map .left h2 span .custom-map .left span span .values-section span, .custom-map .left h2 .map-section span .custom-map .left span span .values-section span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .values-section span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .values-section span, .map-section h2 .custom-map .left span span .custom-map .left span span .values-section span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .values-section span {
  margin-bottom: 1.1rem;
}
@media only screen and (max-width: 576px) {
  .values-section h2, .values-section .is-h2, .values-section .custom-map .left h2 span, .custom-map .left h2 .values-section span, .values-section .custom-map .left .is-h2 span, .custom-map .left .is-h2 .values-section span, .values-section .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .values-section span, .values-section .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .values-section span, .values-section .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .values-section span, .values-section .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .values-section span, .values-section .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .values-section span, .values-section .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .values-section span, .values-section .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .values-section span, .values-section .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .values-section span, .values-section .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .values-section span, .values-section .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .values-section span, .values-section .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .values-section span, .values-section .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .values-section span, .values-section .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .values-section span, .values-section .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .values-section span, .values-section .custom-map .left h2 span span, .custom-map .left h2 span .values-section span, .values-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .values-section span, .values-section .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .values-section span, .values-section .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .values-section span, .values-section .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .values-section span, .values-section .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .values-section span, .values-section .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .values-section span, .values-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .values-section span, .values-section .map-section h2 span, .map-section h2 .values-section span, .values-section .map-section .is-h2 span, .values-section .map-section .custom-map .left h2 span span, .custom-map .left h2 .values-section .map-section span span, .values-section .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .values-section .map-section span span, .values-section .map-section h2 .custom-map .left span span span, .values-section .map-section .is-h2 .custom-map .left span span span, .values-section .map-section .custom-map .left h2 span span span, .values-section .custom-map .left h2 .map-section span span span, .custom-map .left h2 .values-section .map-section span span span, .values-section .map-section .custom-map .left .is-h2 span span span, .values-section .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .values-section .map-section span span span, .values-section .map-section h2 .custom-map .left span span span span, .values-section .map-section .is-h2 .custom-map .left span span span span, .values-section .map-section .custom-map .left h2 span span span span, .values-section .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .values-section .map-section span span span span, .values-section .map-section .custom-map .left .is-h2 span span span span, .values-section .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .values-section .map-section span span span span, .values-section .map-section h2 .custom-map .left span span span span span, .values-section .map-section .is-h2 .custom-map .left span span span span span, .values-section .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .values-section .map-section span span, .values-section .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .values-section .map-section span span, .values-section .map-section .custom-map .left h2 span .custom-map .left span span span, .values-section .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .values-section .map-section span .custom-map .left span span span, .values-section .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .values-section .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .values-section .map-section span .custom-map .left span span span, .values-section .map-section h2 .custom-map .left span span .custom-map .left span span span, .values-section .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .values-section span, .map-section .custom-map .left h2 span .values-section span, .custom-map .left h2 .map-section span .values-section span, .map-section .custom-map .left .is-h2 span .values-section span, .custom-map .left .is-h2 .map-section span .values-section span, .map-section h2 .custom-map .left span span .values-section span, .map-section .is-h2 .custom-map .left span span .values-section span, .map-section .custom-map .left h2 span span .values-section span, .custom-map .left h2 .map-section span span .values-section span, .map-section .custom-map .left .is-h2 span span .values-section span, .custom-map .left .is-h2 .map-section span span .values-section span, .map-section h2 .custom-map .left span span span .values-section span, .map-section .is-h2 .custom-map .left span span span .values-section span, .map-section .custom-map .left h2 span span span .values-section span, .custom-map .left h2 .map-section span span span .values-section span, .map-section .custom-map .left .is-h2 span span span .values-section span, .custom-map .left .is-h2 .map-section span span span .values-section span, .map-section h2 .custom-map .left span span span span .values-section span, .map-section .is-h2 .custom-map .left span span span span .values-section span, .map-section .custom-map .left h2 span span .values-section span, .custom-map .left h2 span .map-section span .values-section span, .map-section .custom-map .left .is-h2 span span .values-section span, .custom-map .left .is-h2 span .map-section span .values-section span, .map-section .custom-map .left h2 span .custom-map .left span span .values-section span, .custom-map .left h2 .map-section span .custom-map .left span span .values-section span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .values-section span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .values-section span, .map-section h2 .custom-map .left span span .custom-map .left span span .values-section span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .values-section span {
    margin-bottom: 3rem;
  }
}
.values-section h6, .values-section .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .values-section a, .values-section .module-tab-split-checklist-featured__box-title, .values-section .modules-selection-bar__count span, .modules-selection-bar__count .values-section span, .values-section .module-intro-features__tagline {
  margin-bottom: 3.2rem;
}
.values-section .row:last-child .col-sm-6:first-child {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}
.values-section .row:last-child .col-sm-6:first-child .circle-item {
  left: 0;
  top: 0;
}
.values-section .row:last-child p:last-child, .values-section .row:last-child .btn:last-child, .values-section .row:last-child .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .values-section .row:last-child .wpcf7-list-item-label:last-child, .values-section .row:last-child .module-intro-hero__btn:last-child, .values-section .row:last-child .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .values-section .row:last-child .category:last-child, .values-section .row:last-child .post .wp-block-button a:last-child, .post .wp-block-button .values-section .row:last-child a:last-child, .values-section .row:last-child .blog-secondary-item__date:last-child, .values-section .row:last-child .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .values-section .row:last-child span:last-child, .values-section .row:last-child .map-link:last-child {
  margin-bottom: 0;
}
.values-section .circle-item {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
}
@media only screen and (max-width: 992px) {
  .values-section .circle-item {
    width: 6.25rem;
    height: 6.25rem;
  }
}
.values-section .circle-item h5, .values-section .circle-item .module-selector-card__name, .values-section .circle-item .accordion-button {
  margin-bottom: 0;
}
.values-section .circle-item:nth-child(1) {
  position: relative;
  top: -3.5rem;
  left: 2rem;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 576px) {
  .values-section .circle-item:nth-child(1) {
    top: -2rem;
    left: 3rem;
  }
}
.values-section .circle-item:nth-child(1) .value-1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  left: -3.5rem;
}
@media only screen and (max-width: 576px) {
  .values-section .circle-item:nth-child(1) .value-1 {
    left: -2.5rem;
  }
}
.values-section .circle-item:nth-child(1) .value-1 img {
  max-width: 4rem;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 992px) {
  .values-section .circle-item:nth-child(1) .value-1 img {
    max-height: 2rem;
    width: auto;
  }
}
.values-section .circle-item:nth-child(1) .value-3 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  left: -1.5rem;
  top: 1rem;
}
.values-section .circle-item:nth-child(1) .value-3 img {
  max-width: 3rem;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 992px) {
  .values-section .circle-item:nth-child(1) .value-3 img {
    max-height: 2rem;
    width: auto;
  }
}
.values-section .circle-item:nth-child(2) {
  position: relative;
  top: -2rem;
  left: 8rem;
}
@media only screen and (max-width: 768px) {
  .values-section .circle-item:nth-child(2) {
    left: unset;
    right: -20%;
  }
}
@media only screen and (max-width: 576px) {
  .values-section .circle-item:nth-child(2) {
    right: -50%;
  }
}
@media only screen and (max-width: 376px) {
  .values-section .circle-item:nth-child(2) {
    right: -40%;
  }
}
.values-section .circle-item:nth-child(2) .value-2 {
  position: relative;
  left: 4rem;
  top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .values-section .circle-item:nth-child(2) .value-2 {
    left: 3rem;
    top: 1.5rem;
  }
}
.values-section .circle-item:nth-child(2) .value-2 img {
  margin-right: 0.8rem;
}
@media only screen and (max-width: 992px) {
  .values-section .circle-item:nth-child(2) .value-2 img {
    max-height: 2rem;
    width: auto;
    margin-right: 0.4rem;
  }
}
.values-section .row:first-child {
  margin-bottom: 4.5rem;
}

.values-section-secondary {
  padding-top: 5.5rem;
}
@media only screen and (max-width: 992px) {
  .values-section-secondary {
    padding-top: 0;
  }
}
.values-section-secondary h2, .values-section-secondary .is-h2, .values-section-secondary .custom-map .left h2 span, .custom-map .left h2 .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 span, .custom-map .left .is-h2 .values-section-secondary span, .values-section-secondary .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .values-section-secondary span, .values-section-secondary .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .values-section-secondary span, .values-section-secondary .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .values-section-secondary span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .values-section-secondary span, .values-section-secondary .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .values-section-secondary span, .values-section-secondary .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .values-section-secondary span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .values-section-secondary span, .values-section-secondary .custom-map .left h2 span span, .custom-map .left h2 span .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .values-section-secondary span, .values-section-secondary .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section h2 span, .map-section h2 .values-section-secondary span, .values-section-secondary .map-section .is-h2 span, .values-section-secondary .map-section .custom-map .left h2 span span, .custom-map .left h2 .values-section-secondary .map-section span span, .values-section-secondary .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .values-section-secondary .map-section span span, .values-section-secondary .map-section h2 .custom-map .left span span span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span, .values-section-secondary .map-section .custom-map .left h2 span span span, .values-section-secondary .custom-map .left h2 .map-section span span span, .custom-map .left h2 .values-section-secondary .map-section span span span, .values-section-secondary .map-section .custom-map .left .is-h2 span span span, .values-section-secondary .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .values-section-secondary .map-section span span span, .values-section-secondary .map-section h2 .custom-map .left span span span span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span span, .values-section-secondary .map-section .custom-map .left h2 span span span span, .values-section-secondary .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .values-section-secondary .map-section span span span span, .values-section-secondary .map-section .custom-map .left .is-h2 span span span span, .values-section-secondary .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .values-section-secondary .map-section span span span span, .values-section-secondary .map-section h2 .custom-map .left span span span span span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span span span, .values-section-secondary .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .values-section-secondary .map-section span span, .values-section-secondary .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .values-section-secondary .map-section span span, .values-section-secondary .map-section .custom-map .left h2 span .custom-map .left span span span, .values-section-secondary .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .values-section-secondary .map-section span .custom-map .left span span span, .values-section-secondary .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .values-section-secondary .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .values-section-secondary .map-section span .custom-map .left span span span, .values-section-secondary .map-section h2 .custom-map .left span span .custom-map .left span span span, .values-section-secondary .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .values-section-secondary span, .map-section .custom-map .left h2 span .values-section-secondary span, .custom-map .left h2 .map-section span .values-section-secondary span, .map-section .custom-map .left .is-h2 span .values-section-secondary span, .custom-map .left .is-h2 .map-section span .values-section-secondary span, .map-section h2 .custom-map .left span span .values-section-secondary span, .map-section .is-h2 .custom-map .left span span .values-section-secondary span, .map-section .custom-map .left h2 span span .values-section-secondary span, .custom-map .left h2 .map-section span span .values-section-secondary span, .map-section .custom-map .left .is-h2 span span .values-section-secondary span, .custom-map .left .is-h2 .map-section span span .values-section-secondary span, .map-section h2 .custom-map .left span span span .values-section-secondary span, .map-section .is-h2 .custom-map .left span span span .values-section-secondary span, .map-section .custom-map .left h2 span span span .values-section-secondary span, .custom-map .left h2 .map-section span span span .values-section-secondary span, .map-section .custom-map .left .is-h2 span span span .values-section-secondary span, .custom-map .left .is-h2 .map-section span span span .values-section-secondary span, .map-section h2 .custom-map .left span span span span .values-section-secondary span, .map-section .is-h2 .custom-map .left span span span span .values-section-secondary span, .map-section .custom-map .left h2 span span .values-section-secondary span, .custom-map .left h2 span .map-section span .values-section-secondary span, .map-section .custom-map .left .is-h2 span span .values-section-secondary span, .custom-map .left .is-h2 span .map-section span .values-section-secondary span, .map-section .custom-map .left h2 span .custom-map .left span span .values-section-secondary span, .custom-map .left h2 .map-section span .custom-map .left span span .values-section-secondary span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .values-section-secondary span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .values-section-secondary span, .map-section h2 .custom-map .left span span .custom-map .left span span .values-section-secondary span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .values-section-secondary span {
  margin-bottom: 1.1rem;
}
@media only screen and (max-width: 576px) {
  .values-section-secondary h2, .values-section-secondary .is-h2, .values-section-secondary .custom-map .left h2 span, .custom-map .left h2 .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 span, .custom-map .left .is-h2 .values-section-secondary span, .values-section-secondary .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .values-section-secondary span, .values-section-secondary .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .values-section-secondary span, .values-section-secondary .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .values-section-secondary span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .values-section-secondary span, .values-section-secondary .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .values-section-secondary span, .values-section-secondary .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .values-section-secondary span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .values-section-secondary span, .values-section-secondary .custom-map .left h2 span span, .custom-map .left h2 span .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .values-section-secondary span, .values-section-secondary .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .values-section-secondary span, .values-section-secondary .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .values-section-secondary span, .values-section-secondary .map-section h2 span, .map-section h2 .values-section-secondary span, .values-section-secondary .map-section .is-h2 span, .values-section-secondary .map-section .custom-map .left h2 span span, .custom-map .left h2 .values-section-secondary .map-section span span, .values-section-secondary .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .values-section-secondary .map-section span span, .values-section-secondary .map-section h2 .custom-map .left span span span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span, .values-section-secondary .map-section .custom-map .left h2 span span span, .values-section-secondary .custom-map .left h2 .map-section span span span, .custom-map .left h2 .values-section-secondary .map-section span span span, .values-section-secondary .map-section .custom-map .left .is-h2 span span span, .values-section-secondary .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .values-section-secondary .map-section span span span, .values-section-secondary .map-section h2 .custom-map .left span span span span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span span, .values-section-secondary .map-section .custom-map .left h2 span span span span, .values-section-secondary .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .values-section-secondary .map-section span span span span, .values-section-secondary .map-section .custom-map .left .is-h2 span span span span, .values-section-secondary .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .values-section-secondary .map-section span span span span, .values-section-secondary .map-section h2 .custom-map .left span span span span span, .values-section-secondary .map-section .is-h2 .custom-map .left span span span span span, .values-section-secondary .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .values-section-secondary .map-section span span, .values-section-secondary .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .values-section-secondary .map-section span span, .values-section-secondary .map-section .custom-map .left h2 span .custom-map .left span span span, .values-section-secondary .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .values-section-secondary .map-section span .custom-map .left span span span, .values-section-secondary .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .values-section-secondary .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .values-section-secondary .map-section span .custom-map .left span span span, .values-section-secondary .map-section h2 .custom-map .left span span .custom-map .left span span span, .values-section-secondary .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .values-section-secondary span, .map-section .custom-map .left h2 span .values-section-secondary span, .custom-map .left h2 .map-section span .values-section-secondary span, .map-section .custom-map .left .is-h2 span .values-section-secondary span, .custom-map .left .is-h2 .map-section span .values-section-secondary span, .map-section h2 .custom-map .left span span .values-section-secondary span, .map-section .is-h2 .custom-map .left span span .values-section-secondary span, .map-section .custom-map .left h2 span span .values-section-secondary span, .custom-map .left h2 .map-section span span .values-section-secondary span, .map-section .custom-map .left .is-h2 span span .values-section-secondary span, .custom-map .left .is-h2 .map-section span span .values-section-secondary span, .map-section h2 .custom-map .left span span span .values-section-secondary span, .map-section .is-h2 .custom-map .left span span span .values-section-secondary span, .map-section .custom-map .left h2 span span span .values-section-secondary span, .custom-map .left h2 .map-section span span span .values-section-secondary span, .map-section .custom-map .left .is-h2 span span span .values-section-secondary span, .custom-map .left .is-h2 .map-section span span span .values-section-secondary span, .map-section h2 .custom-map .left span span span span .values-section-secondary span, .map-section .is-h2 .custom-map .left span span span span .values-section-secondary span, .map-section .custom-map .left h2 span span .values-section-secondary span, .custom-map .left h2 span .map-section span .values-section-secondary span, .map-section .custom-map .left .is-h2 span span .values-section-secondary span, .custom-map .left .is-h2 span .map-section span .values-section-secondary span, .map-section .custom-map .left h2 span .custom-map .left span span .values-section-secondary span, .custom-map .left h2 .map-section span .custom-map .left span span .values-section-secondary span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .values-section-secondary span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .values-section-secondary span, .map-section h2 .custom-map .left span span .custom-map .left span span .values-section-secondary span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .values-section-secondary span {
    margin-bottom: 1rem;
  }
}
.values-section-secondary h6, .values-section-secondary .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .values-section-secondary a, .values-section-secondary .module-tab-split-checklist-featured__box-title, .values-section-secondary .modules-selection-bar__count span, .modules-selection-bar__count .values-section-secondary span, .values-section-secondary .module-intro-features__tagline {
  margin-bottom: 3.2rem;
}
.values-section-secondary .circle-item {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
}
@media only screen and (max-width: 992px) {
  .values-section-secondary .circle-item {
    width: 6.25rem;
    height: 6.25rem;
  }
}
.values-section-secondary .circle-item h5, .values-section-secondary .circle-item .module-selector-card__name, .values-section-secondary .circle-item .accordion-button {
  margin-bottom: 0;
}
.values-section-secondary .circle-item:nth-child(1) {
  position: absolute;
  top: -8rem;
  left: 37.5%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .values-section-secondary .circle-item:nth-child(1) {
    top: 1rem;
    position: relative;
  }
}
.values-section-secondary .circle-item:nth-child(1) .value-1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  left: -3.5rem;
}
@media only screen and (max-width: 576px) {
  .values-section-secondary .circle-item:nth-child(1) .value-1 {
    left: -2.5rem;
  }
}
.values-section-secondary .circle-item:nth-child(1) .value-1 img {
  max-width: 4rem;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 992px) {
  .values-section-secondary .circle-item:nth-child(1) .value-1 img {
    max-height: 2rem;
    width: auto;
  }
}
.values-section-secondary .circle-item:nth-child(2) {
  position: absolute;
  top: 2.5rem;
  right: 0;
}
@media only screen and (max-width: 992px) {
  .values-section-secondary .circle-item:nth-child(2) {
    left: 1rem;
    position: relative;
  }
}
@media only screen and (max-width: 576px) {
  .values-section-secondary .circle-item:nth-child(2) {
    left: 0;
    top: 1rem;
  }
}
.values-section-secondary .circle-item:nth-child(2) .value-2 {
  position: relative;
  left: 4rem;
  top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .values-section-secondary .circle-item:nth-child(2) .value-2 {
    left: 3rem;
    top: 1.5rem;
  }
}
.values-section-secondary .circle-item:nth-child(2) .value-2 img {
  margin-right: 0.8rem;
}
@media only screen and (max-width: 992px) {
  .values-section-secondary .circle-item:nth-child(2) .value-2 img {
    max-height: 2rem;
    width: auto;
    margin-right: 0.4rem;
  }
}
.values-section-secondary .circle-item:nth-child(3) {
  position: absolute;
  left: 4rem;
  bottom: -2.5rem;
}
@media only screen and (max-width: 992px) {
  .values-section-secondary .circle-item:nth-child(3) {
    position: relative;
    left: 60%;
    right: 1rem;
    bottom: 2rem;
  }
}
.values-section-secondary .circle-item:nth-child(3) .value-3 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: -1.5rem;
  top: 3rem;
}
.values-section-secondary .circle-item:nth-child(3) .value-3 img {
  max-width: 3rem;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 992px) {
  .values-section-secondary .circle-item:nth-child(3) .value-3 img {
    max-height: 2rem;
    width: auto;
  }
}
.values-section-secondary .row:first-child {
  margin-bottom: 4.5rem;
}

.cta-section {
  border-radius: 0 0 var(--radius-xl, 1.25rem) var(--radius-xl, 1.25rem);
  background: #1055D7;
  color: white;
  z-index: 0;
  top: -2rem;
}
.cta-section .cta-header {
  margin-bottom: 1.88rem;
}
.cta-section .form .consent-text {
  color: var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5));
}

.video-section {
  padding-top: 0;
  padding-bottom: 0;
  background: #111;
  height: 50.4375rem;
}
@media only screen and (max-width: 768px) {
  .video-section {
    height: 30rem;
  }
}
.video-section .container-fluid {
  padding: 0;
}
.video-section .video-box {
  height: 50.4375rem;
}
@media only screen and (max-width: 768px) {
  .video-section .video-box {
    height: 30rem;
  }
}
.video-section .video-box {
  width: 100%;
  background: #111;
}
.video-section .video-box #playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 31.25rem;
  display: inline-flex;
  height: 3.75rem;
  padding: 0rem 1.5rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  outline: none;
  border: none;
}
.video-section .video-box #playButton svg {
  width: 1.26106rem;
  height: 1.26094rem;
  margin-right: 0.25rem;
}
.video-section .video-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .video-section .video-box video {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.transform-page {
  background: #111111;
  color: #ffffff;
}
.transform-page .container-fluid {
  padding-top: 10rem;
  background: #111111;
}
.transform-page h1, .transform-page .hero-wrapper h1 span, .hero-wrapper h1 .transform-page span, .transform-page .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 .transform-page span, .transform-page .is-h1 {
  margin-bottom: 13.58rem;
}
.transform-page .map-wrapper {
  max-height: 45rem;
  margin-top: 5rem;
}
.transform-page .contact-options {
  max-width: 60.375rem;
  margin: 0 auto 7rem;
}
@media only screen and (max-width: 1200px) {
  .transform-page .contact-options {
    max-width: 100%;
  }
}
.transform-page .contact-options h2, .transform-page .contact-options .is-h2, .transform-page .contact-options .custom-map .left h2 span, .custom-map .left h2 .transform-page .contact-options span, .transform-page .contact-options .custom-map .left .is-h2 span, .custom-map .left .is-h2 .transform-page .contact-options span, .transform-page .contact-options .map-section h2 .custom-map .left span span, .map-section h2 .custom-map .left span .transform-page .contact-options span, .transform-page .contact-options .map-section .is-h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span .transform-page .contact-options span, .transform-page .contact-options .map-section .custom-map .left h2 span span, .map-section .custom-map .left h2 span .transform-page .contact-options span, .transform-page .contact-options .custom-map .left h2 .map-section span span, .custom-map .left h2 .map-section span .transform-page .contact-options span, .transform-page .contact-options .map-section .custom-map .left .is-h2 span span, .map-section .custom-map .left .is-h2 span .transform-page .contact-options span, .transform-page .contact-options .custom-map .left .is-h2 .map-section span span, .custom-map .left .is-h2 .map-section span .transform-page .contact-options span, .transform-page .contact-options .map-section h2 .custom-map .left span span span, .map-section h2 .custom-map .left span span .transform-page .contact-options span, .transform-page .contact-options .map-section .is-h2 .custom-map .left span span span, .map-section .is-h2 .custom-map .left span span .transform-page .contact-options span, .transform-page .contact-options .map-section .custom-map .left h2 span span span, .map-section .custom-map .left h2 span span .transform-page .contact-options span, .transform-page .contact-options .custom-map .left h2 .map-section span span span, .custom-map .left h2 .map-section span span .transform-page .contact-options span, .transform-page .contact-options .map-section .custom-map .left .is-h2 span span span, .map-section .custom-map .left .is-h2 span span .transform-page .contact-options span, .transform-page .contact-options .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .map-section span span .transform-page .contact-options span, .transform-page .contact-options .map-section h2 .custom-map .left span span span span, .map-section h2 .custom-map .left span span span .transform-page .contact-options span, .transform-page .contact-options .map-section .is-h2 .custom-map .left span span span span, .map-section .is-h2 .custom-map .left span span span .transform-page .contact-options span, .transform-page .contact-options .custom-map .left h2 span span, .custom-map .left h2 span .transform-page .contact-options span, .transform-page .contact-options .custom-map .left .is-h2 span span, .custom-map .left .is-h2 span .transform-page .contact-options span, .transform-page .contact-options .map-section .custom-map .left h2 span .custom-map .left span span, .map-section .custom-map .left h2 span .custom-map .left span .transform-page .contact-options span, .transform-page .contact-options .custom-map .left h2 .map-section span .custom-map .left span span, .custom-map .left h2 .map-section span .custom-map .left span .transform-page .contact-options span, .transform-page .contact-options .map-section .custom-map .left .is-h2 span .custom-map .left span span, .map-section .custom-map .left .is-h2 span .custom-map .left span .transform-page .contact-options span, .transform-page .contact-options .custom-map .left .is-h2 .map-section span .custom-map .left span span, .custom-map .left .is-h2 .map-section span .custom-map .left span .transform-page .contact-options span, .transform-page .contact-options .map-section h2 .custom-map .left span span .custom-map .left span span, .map-section h2 .custom-map .left span span .custom-map .left span .transform-page .contact-options span, .transform-page .contact-options .map-section .is-h2 .custom-map .left span span .custom-map .left span span, .map-section .is-h2 .custom-map .left span span .custom-map .left span .transform-page .contact-options span, .transform-page .contact-options .map-section h2 span, .map-section h2 .transform-page .contact-options span, .transform-page .contact-options .map-section .is-h2 span, .transform-page .contact-options .map-section .custom-map .left h2 span span, .custom-map .left h2 .transform-page .contact-options .map-section span span, .transform-page .contact-options .map-section .custom-map .left .is-h2 span span, .custom-map .left .is-h2 .transform-page .contact-options .map-section span span, .transform-page .contact-options .map-section h2 .custom-map .left span span span, .transform-page .contact-options .map-section .is-h2 .custom-map .left span span span, .transform-page .contact-options .map-section .custom-map .left h2 span span span, .transform-page .contact-options .custom-map .left h2 .map-section span span span, .custom-map .left h2 .transform-page .contact-options .map-section span span span, .transform-page .contact-options .map-section .custom-map .left .is-h2 span span span, .transform-page .contact-options .custom-map .left .is-h2 .map-section span span span, .custom-map .left .is-h2 .transform-page .contact-options .map-section span span span, .transform-page .contact-options .map-section h2 .custom-map .left span span span span, .transform-page .contact-options .map-section .is-h2 .custom-map .left span span span span, .transform-page .contact-options .map-section .custom-map .left h2 span span span span, .transform-page .contact-options .custom-map .left h2 .map-section span span span span, .custom-map .left h2 .transform-page .contact-options .map-section span span span span, .transform-page .contact-options .map-section .custom-map .left .is-h2 span span span span, .transform-page .contact-options .custom-map .left .is-h2 .map-section span span span span, .custom-map .left .is-h2 .transform-page .contact-options .map-section span span span span, .transform-page .contact-options .map-section h2 .custom-map .left span span span span span, .transform-page .contact-options .map-section .is-h2 .custom-map .left span span span span span, .transform-page .contact-options .map-section .custom-map .left h2 span span span, .custom-map .left h2 span .transform-page .contact-options .map-section span span, .transform-page .contact-options .map-section .custom-map .left .is-h2 span span span, .custom-map .left .is-h2 span .transform-page .contact-options .map-section span span, .transform-page .contact-options .map-section .custom-map .left h2 span .custom-map .left span span span, .transform-page .contact-options .custom-map .left h2 .map-section span .custom-map .left span span span, .custom-map .left h2 .transform-page .contact-options .map-section span .custom-map .left span span span, .transform-page .contact-options .map-section .custom-map .left .is-h2 span .custom-map .left span span span, .transform-page .contact-options .custom-map .left .is-h2 .map-section span .custom-map .left span span span, .custom-map .left .is-h2 .transform-page .contact-options .map-section span .custom-map .left span span span, .transform-page .contact-options .map-section h2 .custom-map .left span span .custom-map .left span span span, .transform-page .contact-options .map-section .is-h2 .custom-map .left span span .custom-map .left span span span, .map-section .is-h2 .transform-page .contact-options span, .map-section .custom-map .left h2 span .transform-page .contact-options span, .custom-map .left h2 .map-section span .transform-page .contact-options span, .map-section .custom-map .left .is-h2 span .transform-page .contact-options span, .custom-map .left .is-h2 .map-section span .transform-page .contact-options span, .map-section h2 .custom-map .left span span .transform-page .contact-options span, .map-section .is-h2 .custom-map .left span span .transform-page .contact-options span, .map-section .custom-map .left h2 span span .transform-page .contact-options span, .custom-map .left h2 .map-section span span .transform-page .contact-options span, .map-section .custom-map .left .is-h2 span span .transform-page .contact-options span, .custom-map .left .is-h2 .map-section span span .transform-page .contact-options span, .map-section h2 .custom-map .left span span span .transform-page .contact-options span, .map-section .is-h2 .custom-map .left span span span .transform-page .contact-options span, .map-section .custom-map .left h2 span span span .transform-page .contact-options span, .custom-map .left h2 .map-section span span span .transform-page .contact-options span, .map-section .custom-map .left .is-h2 span span span .transform-page .contact-options span, .custom-map .left .is-h2 .map-section span span span .transform-page .contact-options span, .map-section h2 .custom-map .left span span span span .transform-page .contact-options span, .map-section .is-h2 .custom-map .left span span span span .transform-page .contact-options span, .map-section .custom-map .left h2 span span .transform-page .contact-options span, .custom-map .left h2 span .map-section span .transform-page .contact-options span, .map-section .custom-map .left .is-h2 span span .transform-page .contact-options span, .custom-map .left .is-h2 span .map-section span .transform-page .contact-options span, .map-section .custom-map .left h2 span .custom-map .left span span .transform-page .contact-options span, .custom-map .left h2 .map-section span .custom-map .left span span .transform-page .contact-options span, .map-section .custom-map .left .is-h2 span .custom-map .left span span .transform-page .contact-options span, .custom-map .left .is-h2 .map-section span .custom-map .left span span .transform-page .contact-options span, .map-section h2 .custom-map .left span span .custom-map .left span span .transform-page .contact-options span, .map-section .is-h2 .custom-map .left span span .custom-map .left span span .transform-page .contact-options span {
  margin-bottom: 2.8rem;
}
.transform-page .contact-options .cards-wrapper {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 7rem;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .transform-page .contact-options .cards-wrapper {
    flex-direction: column;
  }
}
.transform-page .contact-options .cards-wrapper .card-outer {
  position: relative;
  max-width: 61%;
}
@media only screen and (max-width: 992px) {
  .transform-page .contact-options .cards-wrapper .card-outer {
    width: 100%;
    max-width: unset;
  }
}
.transform-page .contact-options .cards-wrapper .card-outer:hover button {
  outline: none !important;
  border-radius: 0.375rem;
  cursor: pointer;
  height: 3.125rem !important;
  padding: 0 1rem;
  line-height: 3.125rem;
  opacity: 1 !important;
  transition: opacity 0.3s ease-in;
}
.transform-page .contact-options .cards-wrapper .card-outer .card {
  display: flex;
  height: 100%;
  padding: 3.75rem 4rem 3.25rem 2.25rem;
  align-items: flex-start;
  flex-direction: row;
  color: #ffffff;
  gap: 1.5625rem;
  border-radius: 2.5rem;
  border: 1px solid #FFF;
  background: transparent;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .transform-page .contact-options .cards-wrapper .card-outer .card {
    flex-direction: column;
    padding: 2rem;
  }
}
.transform-page .contact-options .cards-wrapper .card-outer .card .selection {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
}
.transform-page .contact-options .cards-wrapper .card-outer .card .selection .select {
  display: block;
  position: relative;
  content: " ";
  width: 1.375rem;
  height: 100%;
  top: 0.375rem;
  background: url(../../assets/img/select_off.svg) no-repeat center;
  background-size: cover;
  transition: 0.3s ease-out;
  border: 1px solid transparent;
  border-radius: 50%;
}
.transform-page .contact-options .cards-wrapper .card-outer .card .content {
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 768px) {
  .transform-page .contact-options .cards-wrapper .card-outer .card .content {
    width: 100%;
  }
}
.transform-page .contact-options .cards-wrapper .card-outer .card .content .select {
  background: url(../../assets/img/select_on.svg) no-repeat center;
  transition: 0.3s ease-in;
  border: 1px solid #FFF;
  border-radius: 50%;
}
.transform-page .contact-options .cards-wrapper .card-outer .card button {
  opacity: 0;
  height: 0;
  position: absolute;
  left: 5rem;
  bottom: -1.5rem;
}
.transform-page .contact-options .cards-wrapper .card-small {
  max-width: 21.25rem;
}
@media only screen and (max-width: 992px) {
  .transform-page .contact-options .cards-wrapper .card-small {
    width: 100%;
    max-width: unset;
  }
}

.mobile-map-links {
  display: none;
}
@media only screen and (max-width: 768px) {
  .mobile-map-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
}
.mobile-map-links .map-link {
  display: flex;
  position: relative;
}

.map-section {
  max-width: 50rem;
  margin: auto;
  padding-top: 3rem;
}
@media only screen and (max-width: 1921px) {
  .map-section {
    padding-top: 3rem;
  }
}
.map-section {
  min-height: 20rem;
}
.map-section h2, .map-section .is-h2, .map-section .custom-map .left h2 span, .custom-map .left h2 .map-section span, .map-section .custom-map .left .is-h2 span, .custom-map .left .is-h2 .map-section span, .map-section h2 .custom-map .left span span, .map-section .is-h2 .custom-map .left span span, .map-section h2 span, .map-section .is-h2 span {
  font-size: 3rem;
  line-height: normal;
  margin-bottom: 2.5rem;
}
.map-wrapper {
  position: relative;
  margin: 2rem auto 0 auto;
}
@media only screen and (max-width: 1921px) {
  .map-wrapper {
    margin: 1rem auto 0 auto;
  }
}
.map-wrapper {
  max-height: 41.0625rem;
  max-width: 50rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: #111;
  overflow: hidden;
  transition: 1s ease-out;
  z-index: 0;
}
.map-wrapper .map {
  width: 100%;
}
.map-wrapper .germany_link {
  top: 10rem;
  left: 8.47rem;
}
@media only screen and (max-width: 768px) {
  .map-wrapper .germany_link {
    display: none !important;
  }
}
.map-wrapper .hungary_link {
  top: 16.3rem;
  right: 4.72rem;
}
@media only screen and (max-width: 768px) {
  .map-wrapper .hungary_link {
    display: none !important;
  }
}
.map-wrapper .italy_link {
  left: 6.81rem;
  top: 20.88rem;
}
@media only screen and (max-width: 768px) {
  .map-wrapper .italy_link {
    display: none !important;
  }
}

.sticky-wrapper {
  position: sticky;
  top: 2rem;
}

.map-link {
  text-decoration: none;
  background: white;
  z-index: 1;
  display: flex;
  height: 3.75rem;
  padding: 0rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  position: absolute;
  border-radius: 31.25rem;
  color: #111111;
}

.custom-map {
  position: relative;
  height: 180vh;
}
.custom-map .sticky-wrapper {
  top: 10%;
}
@media only screen and (max-width: 1200px) {
  .custom-map .sticky-wrapper {
    top: 10%;
  }
}
@media only screen and (max-width: 576px) {
  .custom-map .sticky-wrapper {
    top: 2rem;
  }
}
@media only screen and (max-width: 376px) {
  .custom-map .sticky-wrapper {
    top: 0.5rem;
  }
}
.custom-map .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 30rem;
}
@media only screen and (max-width: 1200px) {
  .custom-map .wrapper {
    justify-content: center;
  }
}
.custom-map .left {
  width: 31.5%;
}
@media only screen and (max-width: 1200px) {
  .custom-map .left {
    width: 100%;
    margin-right: 0;
    min-height: 21rem;
  }
}
.custom-map .left p, .custom-map .left .btn, .custom-map .left .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .custom-map .left .wpcf7-list-item-label, .custom-map .left .module-intro-hero__btn, .custom-map .left .post .text-wrapper .categories .category, .post .text-wrapper .categories .custom-map .left .category, .custom-map .left .post .wp-block-button a, .post .wp-block-button .custom-map .left a, .custom-map .left .blog-secondary-item__date, .custom-map .left .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .custom-map .left span, .custom-map .left .map-link {
  margin-bottom: 0;
}
.custom-map .left h2, .custom-map .left .is-h2, .custom-map .left h2 span, .custom-map .left .is-h2 span, .map-section h2 .custom-map .left span, .map-section .is-h2 .custom-map .left span {
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.25rem;
  letter-spacing: -0.25rem;
  margin-bottom: 2.5rem;
  max-width: 26.125rem;
}
@media only screen and (max-width: 1200px) {
  .custom-map .left h2, .custom-map .left .is-h2, .custom-map .left h2 span, .custom-map .left .is-h2 span, .map-section h2 .custom-map .left span, .map-section .is-h2 .custom-map .left span {
    max-width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .custom-map .left h2, .custom-map .left .is-h2, .custom-map .left h2 span, .custom-map .left .is-h2 span, .map-section h2 .custom-map .left span, .map-section .is-h2 .custom-map .left span {
    font-size: 2rem;
    letter-spacing: normal;
    line-height: 2rem;
  }
  .custom-map .left h2 br, .custom-map .left .is-h2 br, .map-section h2 .custom-map .left span br, .map-section .is-h2 .custom-map .left span br {
    display: none;
  }
}
.custom-map .right {
  width: 57%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .custom-map .right {
    width: 100%;
  }
}
.custom-map .right .map {
  width: 100%;
  border-radius: 26.72794rem;
  background: #111;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .custom-map .right .map {
    margin-top: 3rem;
    width: 21.95031rem;
  }
}
@media only screen and (max-width: 576px) {
  .custom-map .right .map {
    margin-top: 1.5rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 376px) {
  .custom-map .right .map {
    height: 17.5rem;
  }
}
.custom-map .right .map svg {
  width: 100%;
  height: 100%;
  will-change: transform;
  transform-origin: 51% 19%;
  /* Initial scale matches your maximum scale in JS */
  transform: scale(6) translateZ(0);
  /* Safari-specific optimizations */
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-transform: translateZ(0) scale(6);
  -webkit-font-smoothing: subpixel-antialiased;
  image-rendering: -webkit-optimize-contrast; /* Safari-specific */
  image-rendering: high-quality;
}
@media only screen and (max-width: 1200px) {
  .custom-map .right .map svg {
    transform-origin: 51% 36%;
  }
}

/* SVG rendering optimizations for Safari */
svg {
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}

.two-column-info-section h2, .two-column-info-section .is-h2, .two-column-info-section .map-section h2 span, .map-section h2 .two-column-info-section span, .two-column-info-section .map-section .is-h2 span, .map-section .is-h2 .two-column-info-section span, .two-column-info-section .custom-map .left h2 span, .custom-map .left h2 .two-column-info-section span, .two-column-info-section .custom-map .left .is-h2 span, .custom-map .left .is-h2 .two-column-info-section span {
  margin-bottom: 2.5rem;
}
.two-column-info-section .cards-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .two-column-info-section .cards-column {
    padding: 2rem 0;
  }
}

.mobile-platform {
  display: none;
  color: white;
  background-color: #111;
  padding: 1rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .mobile-platform {
    display: block;
  }
}
.mobile-platform .container-fluid {
  background-color: #111;
  padding-top: 1rem;
  padding-bottom: 1.38rem;
}
.mobile-platform .container-fluid .mobile-title {
  margin-bottom: 3rem;
}
.mobile-platform .container-fluid .mobile-title h2, .mobile-platform .container-fluid .mobile-title .is-h2, .mobile-platform .container-fluid .mobile-title h3, .mobile-platform .container-fluid .mobile-title span {
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem; /* 107.692% */
  letter-spacing: -0.04875rem;
}
.mobile-platform .container-fluid .mobile-title span {
  opacity: 0.6;
}
.mobile-platform .link-icon {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.mobile-platform .interaction-header {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem; /* 93.75% */
  letter-spacing: -0.03rem;
  margin-bottom: 1.56rem;
}
.mobile-platform .interaction-header .dot-icon {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
.mobile-platform .interaction-header .arrow-icon {
  margin-left: 1rem;
  width: 6.17475rem;
  height: 1.25rem;
  position: relative;
  top: 0.5rem;
}
.mobile-platform .challenge-card {
  background-color: transparent;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--Grey-dark-main, #3C3C3C);
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.mobile-platform .challenge-card .challenge-header {
  display: flex;
  align-items: center;
  padding: 1rem 0.5rem;
  gap: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.mobile-platform .challenge-card .challenge-header .purple-dot {
  width: 0.84rem;
  height: 0.84rem;
  background-color: #9E78FF;
  border-radius: 50%;
  position: relative;
  top: -0.5rem;
}
.mobile-platform .challenge-card .challenge-header .challenge-title {
  color: #FFF;
  flex-grow: 1;
}
.mobile-platform .challenge-card .challenge-header .challenge-title .label {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem; /* 107.143% */
  text-transform: uppercase;
  opacity: 0.4;
}
.mobile-platform .challenge-card .challenge-header .challenge-title h3 {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem;
  letter-spacing: -0.0375rem;
  margin-bottom: 0;
}
.mobile-platform .challenge-card .solutions-container {
  font-family: "Outfit", sans-serif !important;
  transition: all 0.3s ease;
}
.mobile-platform .challenge-card .solutions-container.collapsed .solutions-list {
  /* List is hidden via JS for animation */
  display: none;
}
.mobile-platform .challenge-card .solutions-container.expanded .solutions-list {
  /* List visibility is handled by JS animation */
}
.mobile-platform .challenge-card .solutions-container .solutions-count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.625rem 1rem 2.125rem;
  cursor: pointer;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  transition: background-color 0.3s ease;
}
.mobile-platform .challenge-card .solutions-container .solutions-count:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-platform .challenge-card .solutions-container .solutions-count span {
  font-family: "Outfit", sans-serif !important;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem; /* 107.143% */
  text-transform: uppercase;
}
.mobile-platform .challenge-card .solutions-container .solutions-count .minimize-icon {
  width: 16px;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease;
}
.mobile-platform .challenge-card .solutions-container .solutions-count .plus-icon {
  position: relative;
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}
.mobile-platform .challenge-card .solutions-container .solutions-count .plus-icon:before, .mobile-platform .challenge-card .solutions-container .solutions-count .plus-icon:after {
  content: "";
  position: absolute;
  background-color: white;
  transition: transform 0.3s ease;
}
.mobile-platform .challenge-card .solutions-container .solutions-count .plus-icon:before {
  width: 16px;
  height: 2px;
  top: 6px;
  left: 0;
}
.mobile-platform .challenge-card .solutions-container .solutions-count .plus-icon:after {
  width: 2px;
  height: 16px;
  top: -1px;
  left: 7px;
}
.mobile-platform .challenge-card .solutions-container .solutions-list {
  list-style: none;
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding: 0;
  border-bottom: thin solid #3C3C3C;
  border-radius: 0.5rem;
  overflow: hidden;
}
.mobile-platform .challenge-card .solutions-container .solutions-list span {
  font-family: "Outfit", sans-serif !important;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem; /* 107.143% */
  text-transform: uppercase;
}
.mobile-platform .challenge-card .solutions-container .solutions-list .solution-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.625rem 1rem 2.125rem;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: thin solid #3C3C3C;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.mobile-platform .challenge-card .solutions-container .solutions-list .solution-item:last-child {
  border-bottom: none;
}
.mobile-platform .challenge-card .solutions-container .solutions-list .solution-item .link-icon {
  transition: transform 0.2s ease;
}
.mobile-platform .challenge-card .solutions-container .solutions-list .solution-item:hover .link-icon {
  transform: translateX(3px);
}

.solutions-container.expanded .solutions-count {
  background: #505050 !important;
}

.module-intro-hero {
  border-radius: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .module-intro-hero {
    padding: 3rem 0 2.5rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-hero {
    padding: 2rem 0 1.5rem;
  }
}
.module-intro-hero .section-bg {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background: linear-gradient(0deg, #1055D7 67.13%, #FFF 100%);
  background-size: cover;
  top: 3rem;
}
@media only screen and (max-width: 768px) {
  .module-intro-hero .section-bg {
    top: 2rem;
  }
}
.module-intro-hero__grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media only screen and (max-width: 992px) {
  .module-intro-hero__grid {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-intro-hero__grid {
    flex-direction: column;
    gap: 2rem;
  }
}
.module-intro-hero__column {
  display: flex;
  flex-direction: column;
  max-width: 31.25rem;
}
@media only screen and (max-width: 768px) {
  .module-intro-hero__column {
    max-width: 100%;
  }
}
.module-intro-hero__btn {
  color: #334155;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.5rem;
}
.module-intro-hero__btn:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
  color: #1E293B;
}

.module-intro-features {
  padding: 7.5rem 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-intro-features {
    padding: 6rem 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .module-intro-features {
    padding: 5rem 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-intro-features {
    padding: 4rem 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-features {
    padding: 3rem 1rem;
  }
}
.module-intro-features__grid {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-intro-features__grid {
    grid-template-columns: 18rem 1fr;
    gap: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .module-intro-features__grid {
    grid-template-columns: 16rem 1fr;
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-intro-features__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.module-intro-features__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 42.5rem;
  padding: var(--padding-xxl, 2.25rem);
  background: #ffffff;
}
@media only screen and (max-width: 992px) {
  .module-intro-features__intro {
    min-height: 36rem;
    padding: 1.75rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-intro-features__intro {
    min-height: auto;
    padding: 2rem;
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-features__intro {
    padding: 1.5rem;
  }
}
.module-intro-features__description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 576px) {
  .module-intro-features__description {
    gap: 0.75rem;
  }
}
.module-intro-features__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-intro-features__cards {
    gap: 1.75rem;
  }
}
@media only screen and (max-width: 992px) {
  .module-intro-features__cards {
    gap: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-features__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.module-intro-features__card {
  position: relative;
  border-radius: var(--Radius-md, 1.25rem);
  border: 1px solid var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
  background: var(--colors-neutrals-Light, #F9F9F9);
  backdrop-filter: blur(15px);
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 21rem;
}
@media only screen and (max-width: 992px) {
  .module-intro-features__card {
    min-height: 16rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-intro-features__card {
    min-height: 14rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-features__card {
    min-height: 12rem;
  }
}
.module-intro-features__card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.module-intro-features__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  z-index: 2;
}
.module-intro-features__card-content {
  position: relative;
  z-index: 3;
  padding: 1.5rem;
  color: #FFFFFF;
}
@media only screen and (max-width: 992px) {
  .module-intro-features__card-content {
    padding: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-features__card-content {
    padding: 1rem;
  }
}
.module-intro-features__card-title {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .module-intro-features__card-title {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-features__card-title {
    font-size: 0.9375rem;
  }
}
.module-intro-features__card-text {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
}
@media only screen and (max-width: 768px) {
  .module-intro-features__card-text {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-features__card-text {
    font-size: 0.75rem;
  }
}
.module-intro-features__card--automation::before, .module-intro-features__card--integration::before, .module-intro-features__card--data::before, .module-intro-features__card--future::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.module-intro-features__card--automation::before {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.3) 0%, rgba(2, 132, 199, 0.4) 100%);
}
.module-intro-features__card--integration::before {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(2, 132, 199, 0.3) 100%);
}
.module-intro-features__card--data::before {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.3) 0%, rgba(2, 132, 199, 0.5) 100%);
}
.module-intro-features__card--future::before {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(2, 132, 199, 0.4) 100%);
}

@media only screen and (max-width: 576px) {
  .module-intro-modules {
    margin-bottom: 3rem;
  }
}
.module-intro-modules__heading {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 992px) {
  .module-intro-modules__heading {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-intro-modules__heading {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__heading {
    margin-bottom: 2rem;
  }
}
.module-intro-modules__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #F8FAFC;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__list {
    border-radius: 0.75rem;
  }
}
.module-intro-modules__item {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}
.module-intro-modules__item:last-child {
  border-bottom: none;
}
.module-intro-modules__item--active .module-intro-modules__content {
  max-height: 12.5rem;
  padding: 0 1.5rem 1.5rem 3rem;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .module-intro-modules__item--active .module-intro-modules__content {
    padding: 0 1rem 1.25rem 2.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__item--active .module-intro-modules__content {
    padding: 0 1rem 1rem 1rem;
    max-height: 15rem;
  }
}
.module-intro-modules__item--active .module-intro-modules__arrow {
  transform: rotate(180deg);
}
.module-intro-modules__item--active .module-intro-modules__indicator {
  background: #0EA5E9;
}
.module-intro-modules__item--active .module-intro-modules__icon {
  background: #0EA5E9;
  color: #FFFFFF;
}
.module-intro-modules__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.module-intro-modules__header:hover {
  background: #F8FAFC;
}
@media only screen and (max-width: 768px) {
  .module-intro-modules__header {
    padding: 1.25rem 1rem;
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__header {
    padding: 1rem;
    gap: 0.625rem;
  }
}
.module-intro-modules__indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #CBD5E1;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__indicator {
    display: none;
  }
}
.module-intro-modules__title-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__title-wrap {
    gap: 0.5rem;
  }
}
.module-intro-modules__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1E293B;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .module-intro-modules__title {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__title {
    font-size: 0.875rem;
  }
}
.module-intro-modules__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.module-intro-modules__arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__arrow svg {
    width: 1rem;
    height: 1rem;
  }
}
.module-intro-modules__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E0F2FE;
  color: #0EA5E9;
  border-radius: 0.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .module-intro-modules__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .module-intro-modules__icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__icon {
    width: 2.25rem;
    height: 2.25rem;
  }
  .module-intro-modules__icon svg {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.module-intro-modules__content {
  max-height: 0;
  padding: 0 1.5rem 0 3rem;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .module-intro-modules__content {
    padding: 0 1rem 0 2.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__content {
    padding: 0 1rem 0 1rem;
  }
}
.module-intro-modules__content p, .module-intro-modules__content .btn, .module-intro-modules__content .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-intro-modules__content .wpcf7-list-item-label, .module-intro-modules__content .module-intro-hero__btn, .module-intro-modules__content .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-intro-modules__content .category, .module-intro-modules__content .post .wp-block-button a, .post .wp-block-button .module-intro-modules__content a, .module-intro-modules__content .blog-secondary-item__date, .module-intro-modules__content .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-intro-modules__content span, .module-intro-modules__content .map-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}
@media only screen and (max-width: 576px) {
  .module-intro-modules__content p, .module-intro-modules__content .btn, .module-intro-modules__content .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-intro-modules__content .wpcf7-list-item-label, .module-intro-modules__content .module-intro-hero__btn, .module-intro-modules__content .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-intro-modules__content .category, .module-intro-modules__content .post .wp-block-button a, .post .wp-block-button .module-intro-modules__content a, .module-intro-modules__content .blog-secondary-item__date, .module-intro-modules__content .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-intro-modules__content span, .module-intro-modules__content .map-link {
    font-size: 0.8125rem;
  }
}

.team-section {
  padding: 5rem 0;
}
@media only screen and (max-width: 992px) {
  .team-section {
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .team-section {
    padding: 3.5rem 0;
  }
}
@media only screen and (max-width: 576px) {
  .team-section {
    padding: 3rem 0;
  }
}
.team-section__header {
  margin-bottom: 4rem;
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .team-section__header {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .team-section__header {
    margin-bottom: 2.5rem;
    row-gap: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-section__header {
    margin-bottom: 2rem;
  }
}
.team-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1B1917;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .team-section__title {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-section__title {
    font-size: 1.25rem;
  }
}
.team-section__text {
  font-size: 0.95rem;
  color: #1B1917;
  line-height: 1.6;
}
@media only screen and (max-width: 576px) {
  .team-section__text {
    font-size: 0.875rem;
  }
}
.team-section__text p:last-child, .team-section__text .btn:last-child, .team-section__text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .team-section__text .wpcf7-list-item-label:last-child, .team-section__text .module-intro-hero__btn:last-child, .team-section__text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .team-section__text .category:last-child, .team-section__text .post .wp-block-button a:last-child, .post .wp-block-button .team-section__text a:last-child, .team-section__text .blog-secondary-item__date:last-child, .team-section__text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .team-section__text span:last-child, .team-section__text .map-link:last-child {
  margin-bottom: 0;
}
.team-section__grid {
  row-gap: 2.5rem;
}
@media only screen and (max-width: 992px) {
  .team-section__grid {
    row-gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .team-section__grid {
    row-gap: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-section__grid {
    row-gap: 1.5rem;
  }
}
.team-section .cols-5 {
  width: 20%;
}
@media only screen and (max-width: 1200px) {
  .team-section .cols-5 {
    width: 25%;
  }
}
@media only screen and (max-width: 992px) {
  .team-section .cols-5 {
    width: 33.333%;
  }
}
@media only screen and (max-width: 768px) {
  .team-section .cols-5 {
    width: 50%;
  }
}
@media only screen and (max-width: 576px) {
  .team-section .cols-5 {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .team-section .col-md-3 {
    width: 33.333%;
  }
}
@media only screen and (max-width: 768px) {
  .team-section .col-md-3 {
    width: 50%;
  }
}
@media only screen and (max-width: 576px) {
  .team-section .col-md-3 {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .team-section .col-md-4 {
    width: 50%;
  }
}
@media only screen and (max-width: 576px) {
  .team-section .col-md-4 {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .team-section .col-md-6 {
    width: 100%;
  }
}

.team-cards {
  position: relative;
  height: 100%;
}
.team-cards__image {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #E4E5E7;
}
@media only screen and (max-width: 768px) {
  .team-cards__image {
    border-radius: 1rem;
    margin-bottom: 0.875rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards__image {
    border-radius: 0.875rem;
    margin-bottom: 0.75rem;
  }
}
.team-cards__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s ease;
}
.team-cards:hover .team-cards__image img {
  filter: grayscale(0%);
}
.team-cards__placeholder {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
.team-cards__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media only screen and (max-width: 576px) {
  .team-cards__content {
    gap: 0.5rem;
  }
}
.team-cards__name {
  font-weight: 600;
  color: #1B1917;
  margin: 0 0 0.5rem;
}
@media only screen and (max-width: 768px) {
  .team-cards__name {
    margin: 0 0 0.375rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards__name {
    margin: 0 0 0.25rem;
  }
}
.team-cards__position {
  margin-bottom: 0;
  color: #8D9096;
}
.team-cards__department {
  margin-bottom: 0;
  color: #8D9096;
}
.team-cards__experience {
  color: #8D9096;
}
.team-cards__toggle {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.875rem 1.125rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  aspect-ratio: 1/1;
  border-radius: var(--Radius-sm, 0.75rem);
  border: 1px solid var(--neutrals-Grey, #8D9096);
  transition: background-color 0.2s ease;
  outline: none;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .team-cards__toggle {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards__toggle {
    width: 2rem;
    height: 2rem;
    padding: 0.625rem;
    border-radius: 0.5rem;
  }
}
.team-cards__toggle:hover {
  transition: background-color 0.2s ease;
  background: #1055D7;
  color: #fff;
}
.team-cards__toggle-icon {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .team-cards__toggle-icon {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards__toggle-icon {
    font-size: 1rem;
  }
}
.team-cards--large .team-cards__image {
  aspect-ratio: 1/1;
}
.team-cards--large .team-cards__name {
  font-size: 1.15rem;
}
@media only screen and (max-width: 992px) {
  .team-cards--large .team-cards__name {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .team-cards--large .team-cards__name {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards--large .team-cards__name {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 768px) {
  .team-cards--large .team-cards__position,
  .team-cards--large .team-cards__department,
  .team-cards--large .team-cards__experience {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards--large .team-cards__position,
  .team-cards--large .team-cards__department,
  .team-cards--large .team-cards__experience {
    font-size: 0.8125rem;
  }
}
.team-cards--medium .team-cards__image {
  aspect-ratio: 1/1;
  min-height: 11.25rem;
}
@media only screen and (max-width: 992px) {
  .team-cards--medium .team-cards__image {
    min-height: 10rem;
  }
}
@media only screen and (max-width: 768px) {
  .team-cards--medium .team-cards__image {
    min-height: 9rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards--medium .team-cards__image {
    min-height: auto;
  }
}
.team-cards--medium .team-cards__name {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .team-cards--medium .team-cards__name {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards--medium .team-cards__name {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .team-cards--medium .team-cards__position,
  .team-cards--medium .team-cards__department,
  .team-cards--medium .team-cards__experience {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards--medium .team-cards__position,
  .team-cards--medium .team-cards__department,
  .team-cards--medium .team-cards__experience {
    font-size: 0.75rem;
  }
}
.team-cards--small .team-cards__image {
  aspect-ratio: 1/1;
  min-height: 8.75rem;
}
@media only screen and (max-width: 992px) {
  .team-cards--small .team-cards__image {
    min-height: 7.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .team-cards--small .team-cards__image {
    min-height: 6.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards--small .team-cards__image {
    min-height: auto;
  }
}
.team-cards--small .team-cards__name {
  font-size: 0.9rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .team-cards--small .team-cards__name {
    font-size: 0.85rem;
  }
}
@media only screen and (max-width: 576px) {
  .team-cards--small .team-cards__name {
    font-size: 0.8rem;
  }
}
.team-cards--small .team-cards__position,
.team-cards--small .team-cards__department,
.team-cards--small .team-cards__experience {
  font-size: 0.75rem;
}
@media only screen and (max-width: 576px) {
  .team-cards--small .team-cards__position,
  .team-cards--small .team-cards__department,
  .team-cards--small .team-cards__experience {
    font-size: 0.6875rem;
  }
}

.bg-light .team-section__title {
  color: #1B1917;
}

.bg-dark .team-section__title,
.bg-dark .team-section__text {
  color: #fff;
}
.bg-dark .team-cards__name {
  color: #fff;
}
.bg-dark .team-cards__position,
.bg-dark .team-cards__department,
.bg-dark .team-cards__experience {
  color: rgba(255, 255, 255, 0.7);
}
.bg-dark .team-cards__toggle {
  border-color: #fff;
  color: #fff;
}
.bg-dark .team-cards__toggle:hover {
  background: #fff;
  color: #1B1917;
}

.mosaic-section {
  overflow: hidden;
  position: relative;
}
.mosaic-section__title {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 992px) {
  .mosaic-section__title {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .mosaic-section__title {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .mosaic-section__title {
    margin-bottom: 1.5rem;
  }
}

.mosaic-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}
@media only screen and (max-width: 768px) {
  .mosaic-slider-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  }
}

.mosaic-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: slideLeft 60s linear infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 992px) {
  .mosaic-track {
    animation-duration: 45s;
  }
}
@media only screen and (max-width: 768px) {
  .mosaic-track {
    animation-duration: 30s;
  }
}
.mosaic-track.is-dragging {
  cursor: grabbing;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.mosaic-cluster {
  position: relative;
  width: 141rem;
  height: 37rem;
  flex-shrink: 0;
  margin-right: 1.9rem;
  margin-bottom: 6.42rem;
}
@media only screen and (max-width: 1440px) {
  .mosaic-cluster {
    transform: scale(0.85);
    transform-origin: left center;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 992px) {
  .mosaic-cluster {
    margin-bottom: 2rem;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .mosaic-cluster {
    margin-bottom: 1rem;
    margin-right: 0.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .mosaic-cluster {
    margin-bottom: 0;
    margin-right: 0;
  }
}
.mosaic-cluster .img-card {
  position: absolute;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
@media (hover: hover) {
  .mosaic-cluster .img-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.15);
    z-index: 10;
  }
}
.mosaic-cluster .img-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
}
.mosaic-cluster .card-1 {
  left: 0;
  top: 4.35rem;
  width: 25.625rem;
  height: 29.125rem;
  z-index: 2;
}
.mosaic-cluster .card-2 {
  left: 27.525rem;
  top: 0;
  width: 18.524rem;
  height: 11.21375rem;
  z-index: 3;
}
.mosaic-cluster .card-3 {
  left: 27.525rem;
  top: 13.11375rem;
  width: 21.66rem;
  height: 23.36206rem;
  z-index: 1;
}
.mosaic-cluster .card-4 {
  left: 51.085rem;
  width: 23.74363rem;
  height: 15.80206rem;
  z-index: 2;
}
.mosaic-cluster .card-5 {
  left: 51.085rem;
  top: 19.70206rem;
  width: 19.653rem;
  height: 12.74013rem;
  z-index: 3;
}
.mosaic-cluster .card-6 {
  left: 76.72863rem;
  top: 1rem;
  width: 20.265rem;
  height: 19.5625rem;
  z-index: 1;
}
.mosaic-cluster .card-7 {
  left: 72.72863rem;
  top: 21.70206rem;
  width: 21.85219rem;
  height: 14.53788rem;
  z-index: 3;
}
.mosaic-cluster .card-8 {
  left: 100rem;
  top: 6rem;
  width: 34.6rem;
  height: 23rem;
  z-index: 2;
}

.mosaic-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 992px) {
  .mosaic-text {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .mosaic-text {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .mosaic-text {
    gap: 1rem;
    margin-top: 0.75rem;
  }
}
.mosaic-text h4 {
  max-width: 22rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 992px) {
  .mosaic-text h4 {
    max-width: 20rem;
  }
}
@media only screen and (max-width: 768px) {
  .mosaic-text h4 {
    max-width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .mosaic-text h4 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 475px) {
  .mosaic-text h4 {
    font-size: 1.125rem;
  }
}
.mosaic-text__body {
  max-width: 40rem;
  flex: 1 1 15rem;
}
@media only screen and (max-width: 992px) {
  .mosaic-text__body {
    max-width: 35rem;
    flex: 1 1 12rem;
  }
}
@media only screen and (max-width: 768px) {
  .mosaic-text__body {
    max-width: 100%;
    flex: 1 1 auto;
  }
}
@media only screen and (max-width: 576px) {
  .mosaic-text__body {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 475px) {
  .mosaic-text__body {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 576px) {
  .mosaic-text__body p, .mosaic-text__body .btn, .mosaic-text__body .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .mosaic-text__body .wpcf7-list-item-label, .mosaic-text__body .module-intro-hero__btn, .mosaic-text__body .post .text-wrapper .categories .category, .post .text-wrapper .categories .mosaic-text__body .category, .mosaic-text__body .post .wp-block-button a, .post .wp-block-button .mosaic-text__body a, .mosaic-text__body .blog-secondary-item__date, .mosaic-text__body .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .mosaic-text__body span, .mosaic-text__body .map-link {
    margin-bottom: 0.75rem;
  }
  .mosaic-text__body p:last-child, .mosaic-text__body .btn:last-child, .mosaic-text__body .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .mosaic-text__body .wpcf7-list-item-label:last-child, .mosaic-text__body .module-intro-hero__btn:last-child, .mosaic-text__body .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .mosaic-text__body .category:last-child, .mosaic-text__body .post .wp-block-button a:last-child, .post .wp-block-button .mosaic-text__body a:last-child, .mosaic-text__body .blog-secondary-item__date:last-child, .mosaic-text__body .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .mosaic-text__body span:last-child, .mosaic-text__body .map-link:last-child {
    margin-bottom: 0;
  }
}

.image-text-slider-track-block {
  border-radius: var(--radius-xl, 1.25rem);
  background: var(--colors-brand-Primary-Light, #F1F5FE);
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .row.mb-5 {
    margin-bottom: 2.5rem !important;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .row.mb-5 {
    margin-bottom: 2rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .image-text-slider-track-block .row.mb-5 .col-md-6 {
    margin-bottom: 1rem;
  }
  .image-text-slider-track-block .row.mb-5 .col-md-6:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .row.mb-5 h4 {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .row.mb-5 h4 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .row.mb-5 p, .image-text-slider-track-block .row.mb-5 .btn, .image-text-slider-track-block .row.mb-5 .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .image-text-slider-track-block .row.mb-5 .wpcf7-list-item-label, .image-text-slider-track-block .row.mb-5 .module-intro-hero__btn, .image-text-slider-track-block .row.mb-5 .post .text-wrapper .categories .category, .post .text-wrapper .categories .image-text-slider-track-block .row.mb-5 .category, .image-text-slider-track-block .row.mb-5 .post .wp-block-button a, .post .wp-block-button .image-text-slider-track-block .row.mb-5 a, .image-text-slider-track-block .row.mb-5 .blog-secondary-item__date, .image-text-slider-track-block .row.mb-5 .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .image-text-slider-track-block .row.mb-5 span, .image-text-slider-track-block .row.mb-5 .map-link {
    font-size: 0.9375rem;
  }
}
.image-text-slider-track-block .featured-card {
  border-radius: var(--radius-xl, 1.25rem);
  background: var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5));
  padding: 3rem;
  transition: opacity 0.25s ease;
  min-height: 23rem;
}
.image-text-slider-track-block .featured-card.is-switching {
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .featured-card {
    border-radius: 1rem;
    padding: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .featured-card {
    padding: 1.5rem;
  }
}
.image-text-slider-track-block .featured-card--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .featured-card--logo {
    padding: 1.5rem 1rem;
  }
}
.image-text-slider-track-block .featured-card--logo img {
  min-width: 23rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .featured-card--logo img {
    max-height: 6rem;
  }
}
.image-text-slider-track-block .featured-card--card-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 3rem;
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .featured-card--card-content {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .featured-card--card-content {
    padding: 0;
  }
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .featured-card--card-content h5, .image-text-slider-track-block .featured-card--card-content .module-selector-card__name, .image-text-slider-track-block .featured-card--card-content .accordion-button {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .featured-card--card-content h5, .image-text-slider-track-block .featured-card--card-content .module-selector-card__name, .image-text-slider-track-block .featured-card--card-content .accordion-button {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .featured-card--card-content div[data-field=text] {
    font-size: 0.875rem;
  }
}
.image-text-slider-track-block .featured-card--link-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
.image-text-slider-track-block .featured-card--link {
  display: flex;
  height: 2.25rem;
  padding: 0.8125rem 1.1875rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  border-radius: var(--Radius-sm, 0.75rem);
  background: var(--colors-neutrals-Border, #E4E5E7);
  backdrop-filter: blur(15px);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.image-text-slider-track-block .featured-card--link:hover {
  opacity: 0.8;
}
.image-text-slider-track-block .featured-card--link svg {
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
}
.image-text-slider-track-block .section-carousel {
  margin-top: 3rem;
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .section-carousel {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .section-carousel {
    margin-top: 1.5rem;
  }
}
.image-text-slider-track-block .partners-slider .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.image-text-slider-track-block .partners-slider .swiper-slide.is-active {
  opacity: 1;
}
.image-text-slider-track-block .partners-slider .swiper-slide:hover:not(.is-active) {
  opacity: 0.8;
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .partners-slider .swiper-slide {
    width: auto;
  }
}
.image-text-slider-track-block .partners-slider .img-wrapper {
  padding: 1rem;
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .partners-slider .img-wrapper {
    padding: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .partners-slider .img-wrapper {
    padding: 0.5rem;
  }
}
.image-text-slider-track-block .partners-slider .img-wrapper img {
  max-height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
@media only screen and (max-width: 992px) {
  .image-text-slider-track-block .partners-slider .img-wrapper img {
    max-height: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .image-text-slider-track-block .partners-slider .img-wrapper img {
    max-height: 2rem;
  }
}
.image-text-slider-track-block .partners-slider .swiper-slide.is-active .img-wrapper img {
  filter: grayscale(0%);
}

.timeline-section {
  padding: 6rem 0;
  max-width: 61rem;
  margin: auto;
}
@media only screen and (max-width: 992px) {
  .timeline-section {
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 576px) {
  .timeline-section {
    padding: 3rem 0;
  }
}
.timeline-section .timeline-title {
  text-align: center;
  margin: 0 auto 5rem;
}
@media only screen and (max-width: 992px) {
  .timeline-section .timeline-title {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 576px) {
  .timeline-section .timeline-title {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
  }
}
.timeline-section .timeline-arc {
  position: relative;
  width: 100%;
  height: 25rem;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .timeline-section .timeline-arc {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .timeline-section .timeline-arc {
    gap: 2rem;
  }
}
.timeline-section .timeline-arc-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  pointer-events: none;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .timeline-section .timeline-arc-circle {
    display: none;
  }
}
.timeline-section .timeline-arc-circle--1 {
  width: 32.36988rem;
  height: 32.36988rem;
  transform: translate(26%, 50%);
}
.timeline-section .timeline-arc-circle--2 {
  width: 40.59688rem;
  height: 40.59688rem;
  transform: translate(11%, 50%);
}
.timeline-section .timeline-arc-circle--3 {
  width: 48.59375rem;
  height: 48.59375rem;
  transform: translate(0, 50%);
}
.timeline-section .timeline-item {
  position: absolute;
  max-width: 20rem;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .timeline-section .timeline-item {
    position: static;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .timeline-section .timeline-item {
    flex-direction: column;
    gap: 0;
  }
}
.timeline-section .timeline-item--1 {
  left: 3%;
  bottom: 4%;
}
.timeline-section .timeline-item--2 {
  left: 35%;
  top: -0.5%;
}
.timeline-section .timeline-item--3 {
  right: -7.5%;
  bottom: 11%;
}
.timeline-section .timeline-dot {
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgb(35, 200, 254);
  margin-bottom: 1.38rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 992px) {
  .timeline-section .timeline-dot {
    width: 0.75rem;
    height: 0.75rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .timeline-section .timeline-dot {
    margin-bottom: 1rem;
    margin-top: 0;
  }
}
.timeline-section .timeline-item--3 .timeline-dot {
  background-color: #1055D7;
}
.timeline-section .timeline-item--2 .timeline-dot {
  background: var(--colors-gradients-Deep-Blue-1, #0393BC);
}
.timeline-section .timeline-item--2 {
  display: flex;
  flex-direction: row;
  max-width: 30.8125rem;
  gap: 1.25rem;
}
.timeline-section .timeline-item--2 .timeline-dot {
  margin-top: auto;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .timeline-section .timeline-item--2 {
    max-width: 100%;
    flex-direction: row;
    gap: 1.5rem;
  }
  .timeline-section .timeline-item--2 .timeline-dot {
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 576px) {
  .timeline-section .timeline-item--2 {
    flex-direction: column;
    gap: 0;
  }
  .timeline-section .timeline-item--2 .timeline-dot {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.timeline-section .timeline-label {
  display: block;
  text-transform: uppercase;
  margin-bottom: 1.38rem;
}
@media only screen and (max-width: 992px) {
  .timeline-section .timeline-label {
    margin-bottom: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .timeline-section .timeline-label {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
  }
}
.timeline-section .timeline-item .p-lead, .timeline-section .timeline-item .module-tab-success-stories__quote-text, .timeline-section .timeline-item .module-tab-overview__description p, .module-tab-overview__description .timeline-section .timeline-item p, .timeline-section .timeline-item .module-tab-overview__description .map-link, .module-tab-overview__description .timeline-section .timeline-item .map-link, .timeline-section .timeline-item .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .timeline-section .timeline-item span, .timeline-section .timeline-item .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .timeline-section .timeline-item span, .timeline-section .timeline-item .module-tab-overview__description .blog-secondary-item__date, .module-tab-overview__description .timeline-section .timeline-item .blog-secondary-item__date, .timeline-section .timeline-item .module-tab-overview__description .btn, .module-tab-overview__description .timeline-section .timeline-item .btn, .timeline-section .timeline-item .module-tab-overview__description .module-intro-hero__btn, .module-tab-overview__description .timeline-section .timeline-item .module-intro-hero__btn, .timeline-section .timeline-item .module-tab-overview__description .post .text-wrapper .categories .category, .module-tab-overview__description .post .text-wrapper .categories .timeline-section .timeline-item .category, .timeline-section .timeline-item .post .text-wrapper .categories .module-tab-overview__description .category, .post .text-wrapper .categories .module-tab-overview__description .timeline-section .timeline-item .category, .timeline-section .timeline-item .module-tab-overview__description .post .wp-block-button a, .module-tab-overview__description .post .wp-block-button .timeline-section .timeline-item a, .timeline-section .timeline-item .post .wp-block-button .module-tab-overview__description a, .post .wp-block-button .module-tab-overview__description .timeline-section .timeline-item a, .timeline-section .timeline-item .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .timeline-section .timeline-item .wpcf7-list-item-label, .timeline-section .timeline-item .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .timeline-section .timeline-item .wpcf7-list-item-label, .timeline-section .timeline-item .post blockquote p, .timeline-section .timeline-item .post blockquote .btn, .timeline-section .timeline-item .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .timeline-section .timeline-item .post blockquote .wpcf7-list-item-label, .timeline-section .timeline-item .post blockquote .module-intro-hero__btn, .timeline-section .timeline-item .post blockquote .text-wrapper .categories .category, .timeline-section .timeline-item .post .text-wrapper .categories blockquote .category, .timeline-section .timeline-item .post blockquote .wp-block-button a, .timeline-section .timeline-item .post .wp-block-button blockquote a, .timeline-section .timeline-item .post blockquote .blog-secondary-item__date, .post blockquote .timeline-section .timeline-item p, .post blockquote .timeline-section .timeline-item .btn, .post blockquote .timeline-section .timeline-item .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .timeline-section .timeline-item .wpcf7-list-item-label, .post blockquote .timeline-section .timeline-item .module-intro-hero__btn, .post blockquote .timeline-section .timeline-item .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .timeline-section .timeline-item .category, .post blockquote .timeline-section .timeline-item .wp-block-button a, .post .wp-block-button blockquote .timeline-section .timeline-item a, .post blockquote .timeline-section .timeline-item .blog-secondary-item__date, .timeline-section .timeline-item .post blockquote .map-link, .post blockquote .timeline-section .timeline-item .map-link, .timeline-section .timeline-item .post blockquote .modules-listing-section .module-card__bullets ul li span, .post blockquote .modules-listing-section .module-card__bullets ul li .timeline-section .timeline-item span, .timeline-section .timeline-item .modules-listing-section .module-card__bullets ul li .post blockquote span, .modules-listing-section .module-card__bullets ul li .post blockquote .timeline-section .timeline-item span, .timeline-section .timeline-item .platform-section .left h2, .platform-section .left .timeline-section .timeline-item h2, .timeline-section .timeline-item .platform-section .left .is-h2, .platform-section .left .timeline-section .timeline-item .is-h2, .timeline-section .timeline-item .platform-section .left h3, .platform-section .left .timeline-section .timeline-item h3, .timeline-section .timeline-item .platform-section .left span, .platform-section .left .timeline-section .timeline-item span, .timeline-section .timeline-item .module-intro-hero__title, .timeline-section .timeline-item .module-intro-hero__text, .timeline-section .timeline-item .module-intro-features__title {
  margin: 0;
}
@media only screen and (max-width: 992px) {
  .timeline-section .timeline-item .p-lead, .timeline-section .timeline-item .module-tab-success-stories__quote-text, .timeline-section .timeline-item .module-tab-overview__description p, .module-tab-overview__description .timeline-section .timeline-item p, .timeline-section .timeline-item .module-tab-overview__description .map-link, .module-tab-overview__description .timeline-section .timeline-item .map-link, .timeline-section .timeline-item .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .timeline-section .timeline-item span, .timeline-section .timeline-item .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .timeline-section .timeline-item span, .timeline-section .timeline-item .module-tab-overview__description .blog-secondary-item__date, .module-tab-overview__description .timeline-section .timeline-item .blog-secondary-item__date, .timeline-section .timeline-item .module-tab-overview__description .btn, .module-tab-overview__description .timeline-section .timeline-item .btn, .timeline-section .timeline-item .module-tab-overview__description .module-intro-hero__btn, .module-tab-overview__description .timeline-section .timeline-item .module-intro-hero__btn, .timeline-section .timeline-item .module-tab-overview__description .post .text-wrapper .categories .category, .module-tab-overview__description .post .text-wrapper .categories .timeline-section .timeline-item .category, .timeline-section .timeline-item .post .text-wrapper .categories .module-tab-overview__description .category, .post .text-wrapper .categories .module-tab-overview__description .timeline-section .timeline-item .category, .timeline-section .timeline-item .module-tab-overview__description .post .wp-block-button a, .module-tab-overview__description .post .wp-block-button .timeline-section .timeline-item a, .timeline-section .timeline-item .post .wp-block-button .module-tab-overview__description a, .post .wp-block-button .module-tab-overview__description .timeline-section .timeline-item a, .timeline-section .timeline-item .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .timeline-section .timeline-item .wpcf7-list-item-label, .timeline-section .timeline-item .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .timeline-section .timeline-item .wpcf7-list-item-label, .timeline-section .timeline-item .post blockquote p, .timeline-section .timeline-item .post blockquote .btn, .timeline-section .timeline-item .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .timeline-section .timeline-item .post blockquote .wpcf7-list-item-label, .timeline-section .timeline-item .post blockquote .module-intro-hero__btn, .timeline-section .timeline-item .post blockquote .text-wrapper .categories .category, .timeline-section .timeline-item .post .text-wrapper .categories blockquote .category, .timeline-section .timeline-item .post blockquote .wp-block-button a, .timeline-section .timeline-item .post .wp-block-button blockquote a, .timeline-section .timeline-item .post blockquote .blog-secondary-item__date, .post blockquote .timeline-section .timeline-item p, .post blockquote .timeline-section .timeline-item .btn, .post blockquote .timeline-section .timeline-item .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .timeline-section .timeline-item .wpcf7-list-item-label, .post blockquote .timeline-section .timeline-item .module-intro-hero__btn, .post blockquote .timeline-section .timeline-item .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .timeline-section .timeline-item .category, .post blockquote .timeline-section .timeline-item .wp-block-button a, .post .wp-block-button blockquote .timeline-section .timeline-item a, .post blockquote .timeline-section .timeline-item .blog-secondary-item__date, .timeline-section .timeline-item .post blockquote .map-link, .post blockquote .timeline-section .timeline-item .map-link, .timeline-section .timeline-item .post blockquote .modules-listing-section .module-card__bullets ul li span, .post blockquote .modules-listing-section .module-card__bullets ul li .timeline-section .timeline-item span, .timeline-section .timeline-item .modules-listing-section .module-card__bullets ul li .post blockquote span, .modules-listing-section .module-card__bullets ul li .post blockquote .timeline-section .timeline-item span, .timeline-section .timeline-item .platform-section .left h2, .platform-section .left .timeline-section .timeline-item h2, .timeline-section .timeline-item .platform-section .left .is-h2, .platform-section .left .timeline-section .timeline-item .is-h2, .timeline-section .timeline-item .platform-section .left h3, .platform-section .left .timeline-section .timeline-item h3, .timeline-section .timeline-item .platform-section .left span, .platform-section .left .timeline-section .timeline-item span, .timeline-section .timeline-item .module-intro-hero__title, .timeline-section .timeline-item .module-intro-hero__text, .timeline-section .timeline-item .module-intro-features__title {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 576px) {
  .timeline-section .timeline-item .p-lead, .timeline-section .timeline-item .module-tab-success-stories__quote-text, .timeline-section .timeline-item .module-tab-overview__description p, .module-tab-overview__description .timeline-section .timeline-item p, .timeline-section .timeline-item .module-tab-overview__description .map-link, .module-tab-overview__description .timeline-section .timeline-item .map-link, .timeline-section .timeline-item .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .timeline-section .timeline-item span, .timeline-section .timeline-item .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .timeline-section .timeline-item span, .timeline-section .timeline-item .module-tab-overview__description .blog-secondary-item__date, .module-tab-overview__description .timeline-section .timeline-item .blog-secondary-item__date, .timeline-section .timeline-item .module-tab-overview__description .btn, .module-tab-overview__description .timeline-section .timeline-item .btn, .timeline-section .timeline-item .module-tab-overview__description .module-intro-hero__btn, .module-tab-overview__description .timeline-section .timeline-item .module-intro-hero__btn, .timeline-section .timeline-item .module-tab-overview__description .post .text-wrapper .categories .category, .module-tab-overview__description .post .text-wrapper .categories .timeline-section .timeline-item .category, .timeline-section .timeline-item .post .text-wrapper .categories .module-tab-overview__description .category, .post .text-wrapper .categories .module-tab-overview__description .timeline-section .timeline-item .category, .timeline-section .timeline-item .module-tab-overview__description .post .wp-block-button a, .module-tab-overview__description .post .wp-block-button .timeline-section .timeline-item a, .timeline-section .timeline-item .post .wp-block-button .module-tab-overview__description a, .post .wp-block-button .module-tab-overview__description .timeline-section .timeline-item a, .timeline-section .timeline-item .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .timeline-section .timeline-item .wpcf7-list-item-label, .timeline-section .timeline-item .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .timeline-section .timeline-item .wpcf7-list-item-label, .timeline-section .timeline-item .post blockquote p, .timeline-section .timeline-item .post blockquote .btn, .timeline-section .timeline-item .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .timeline-section .timeline-item .post blockquote .wpcf7-list-item-label, .timeline-section .timeline-item .post blockquote .module-intro-hero__btn, .timeline-section .timeline-item .post blockquote .text-wrapper .categories .category, .timeline-section .timeline-item .post .text-wrapper .categories blockquote .category, .timeline-section .timeline-item .post blockquote .wp-block-button a, .timeline-section .timeline-item .post .wp-block-button blockquote a, .timeline-section .timeline-item .post blockquote .blog-secondary-item__date, .post blockquote .timeline-section .timeline-item p, .post blockquote .timeline-section .timeline-item .btn, .post blockquote .timeline-section .timeline-item .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .timeline-section .timeline-item .wpcf7-list-item-label, .post blockquote .timeline-section .timeline-item .module-intro-hero__btn, .post blockquote .timeline-section .timeline-item .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .timeline-section .timeline-item .category, .post blockquote .timeline-section .timeline-item .wp-block-button a, .post .wp-block-button blockquote .timeline-section .timeline-item a, .post blockquote .timeline-section .timeline-item .blog-secondary-item__date, .timeline-section .timeline-item .post blockquote .map-link, .post blockquote .timeline-section .timeline-item .map-link, .timeline-section .timeline-item .post blockquote .modules-listing-section .module-card__bullets ul li span, .post blockquote .modules-listing-section .module-card__bullets ul li .timeline-section .timeline-item span, .timeline-section .timeline-item .modules-listing-section .module-card__bullets ul li .post blockquote span, .modules-listing-section .module-card__bullets ul li .post blockquote .timeline-section .timeline-item span, .timeline-section .timeline-item .platform-section .left h2, .platform-section .left .timeline-section .timeline-item h2, .timeline-section .timeline-item .platform-section .left .is-h2, .platform-section .left .timeline-section .timeline-item .is-h2, .timeline-section .timeline-item .platform-section .left h3, .platform-section .left .timeline-section .timeline-item h3, .timeline-section .timeline-item .platform-section .left span, .platform-section .left .timeline-section .timeline-item span, .timeline-section .timeline-item .module-intro-hero__title, .timeline-section .timeline-item .module-intro-hero__text, .timeline-section .timeline-item .module-intro-features__title {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 992px) {
  .timeline-section .timeline-content {
    flex: 1;
  }
}

.modules-listing-section {
  border-radius: 0 0 var(--radius-xxl, 1.25rem) var(--radius-xxl, 1.25rem);
  background: var(--colors-neutrals-White, #FFF);
}
@media only screen and (max-width: 992px) {
  .modules-listing-section {
    border-radius: 0 0 1rem 1rem;
  }
}
.modules-listing-section .module-detail {
  display: none;
  overflow: hidden;
}
.modules-listing-section .modules-listing-grid {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .modules-listing-grid {
    gap: 4rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .modules-listing-grid {
    gap: 3rem;
  }
}
.modules-listing-section .modules-listing-header {
  margin-bottom: 7.65rem;
  max-width: 60.375rem;
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .modules-listing-header {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .modules-listing-header {
    margin-bottom: 3rem;
  }
}
.modules-listing-section .modules-listing-header h1, .modules-listing-section .modules-listing-header .hero-wrapper h1 span, .hero-wrapper h1 .modules-listing-section .modules-listing-header span, .modules-listing-section .modules-listing-header .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 .modules-listing-section .modules-listing-header span, .modules-listing-section .modules-listing-header .is-h1 {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .modules-listing-header h1, .modules-listing-section .modules-listing-header .hero-wrapper h1 span, .hero-wrapper h1 .modules-listing-section .modules-listing-header span, .modules-listing-section .modules-listing-header .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 .modules-listing-section .modules-listing-header span, .modules-listing-section .modules-listing-header .is-h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .modules-listing-header h1, .modules-listing-section .modules-listing-header .hero-wrapper h1 span, .hero-wrapper h1 .modules-listing-section .modules-listing-header span, .modules-listing-section .modules-listing-header .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 .modules-listing-section .modules-listing-header span, .modules-listing-section .modules-listing-header .is-h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .modules-listing-header .p-lead, .modules-listing-section .modules-listing-header .module-tab-success-stories__quote-text, .modules-listing-section .modules-listing-header .module-tab-overview__description p, .module-tab-overview__description .modules-listing-section .modules-listing-header p, .modules-listing-section .modules-listing-header .module-tab-overview__description .map-link, .module-tab-overview__description .modules-listing-section .modules-listing-header .map-link, .module-tab-overview__description .modules-listing-section .modules-listing-header .module-card__bullets ul li span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .modules-listing-header span, .modules-listing-section .modules-listing-header .module-card__bullets ul li .module-tab-overview__description span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .modules-listing-header span, .modules-listing-section .modules-listing-header .module-tab-overview__description .blog-secondary-item__date, .module-tab-overview__description .modules-listing-section .modules-listing-header .blog-secondary-item__date, .modules-listing-section .modules-listing-header .module-tab-overview__description .btn, .module-tab-overview__description .modules-listing-section .modules-listing-header .btn, .modules-listing-section .modules-listing-header .module-tab-overview__description .module-intro-hero__btn, .module-tab-overview__description .modules-listing-section .modules-listing-header .module-intro-hero__btn, .modules-listing-section .modules-listing-header .module-tab-overview__description .post .text-wrapper .categories .category, .module-tab-overview__description .post .text-wrapper .categories .modules-listing-section .modules-listing-header .category, .modules-listing-section .modules-listing-header .post .text-wrapper .categories .module-tab-overview__description .category, .post .text-wrapper .categories .module-tab-overview__description .modules-listing-section .modules-listing-header .category, .modules-listing-section .modules-listing-header .module-tab-overview__description .post .wp-block-button a, .module-tab-overview__description .post .wp-block-button .modules-listing-section .modules-listing-header a, .modules-listing-section .modules-listing-header .post .wp-block-button .module-tab-overview__description a, .post .wp-block-button .module-tab-overview__description .modules-listing-section .modules-listing-header a, .modules-listing-section .modules-listing-header .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .modules-listing-section .modules-listing-header .wpcf7-list-item-label, .modules-listing-section .modules-listing-header .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .modules-listing-section .modules-listing-header .wpcf7-list-item-label, .modules-listing-section .modules-listing-header .post blockquote p, .modules-listing-section .modules-listing-header .post blockquote .btn, .modules-listing-section .modules-listing-header .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .modules-listing-section .modules-listing-header .post blockquote .wpcf7-list-item-label, .modules-listing-section .modules-listing-header .post blockquote .module-intro-hero__btn, .modules-listing-section .modules-listing-header .post blockquote .text-wrapper .categories .category, .modules-listing-section .modules-listing-header .post .text-wrapper .categories blockquote .category, .modules-listing-section .modules-listing-header .post blockquote .wp-block-button a, .modules-listing-section .modules-listing-header .post .wp-block-button blockquote a, .modules-listing-section .modules-listing-header .post blockquote .blog-secondary-item__date, .post blockquote .modules-listing-section .modules-listing-header p, .post blockquote .modules-listing-section .modules-listing-header .btn, .post blockquote .modules-listing-section .modules-listing-header .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .modules-listing-section .modules-listing-header .wpcf7-list-item-label, .post blockquote .modules-listing-section .modules-listing-header .module-intro-hero__btn, .post blockquote .modules-listing-section .modules-listing-header .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .modules-listing-section .modules-listing-header .category, .post blockquote .modules-listing-section .modules-listing-header .wp-block-button a, .post .wp-block-button blockquote .modules-listing-section .modules-listing-header a, .post blockquote .modules-listing-section .modules-listing-header .blog-secondary-item__date, .modules-listing-section .modules-listing-header .post blockquote .map-link, .post blockquote .modules-listing-section .modules-listing-header .map-link, .post blockquote .modules-listing-section .modules-listing-header .module-card__bullets ul li span, .post blockquote .modules-listing-section .module-card__bullets ul li .modules-listing-header span, .modules-listing-section .modules-listing-header .module-card__bullets ul li .post blockquote span, .modules-listing-section .module-card__bullets ul li .post blockquote .modules-listing-header span, .modules-listing-section .modules-listing-header .platform-section .left h2, .platform-section .left .modules-listing-section .modules-listing-header h2, .modules-listing-section .modules-listing-header .platform-section .left .is-h2, .platform-section .left .modules-listing-section .modules-listing-header .is-h2, .modules-listing-section .modules-listing-header .platform-section .left h3, .platform-section .left .modules-listing-section .modules-listing-header h3, .modules-listing-section .modules-listing-header .platform-section .left span, .platform-section .left .modules-listing-section .modules-listing-header span, .modules-listing-section .modules-listing-header .module-intro-hero__title, .modules-listing-section .modules-listing-header .module-intro-hero__text, .modules-listing-section .modules-listing-header .module-intro-features__title {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .modules-listing-header .p-lead, .modules-listing-section .modules-listing-header .module-tab-success-stories__quote-text, .modules-listing-section .modules-listing-header .module-tab-overview__description p, .module-tab-overview__description .modules-listing-section .modules-listing-header p, .modules-listing-section .modules-listing-header .module-tab-overview__description .map-link, .module-tab-overview__description .modules-listing-section .modules-listing-header .map-link, .module-tab-overview__description .modules-listing-section .modules-listing-header .module-card__bullets ul li span, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li .modules-listing-header span, .modules-listing-section .modules-listing-header .module-card__bullets ul li .module-tab-overview__description span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description .modules-listing-header span, .modules-listing-section .modules-listing-header .module-tab-overview__description .blog-secondary-item__date, .module-tab-overview__description .modules-listing-section .modules-listing-header .blog-secondary-item__date, .modules-listing-section .modules-listing-header .module-tab-overview__description .btn, .module-tab-overview__description .modules-listing-section .modules-listing-header .btn, .modules-listing-section .modules-listing-header .module-tab-overview__description .module-intro-hero__btn, .module-tab-overview__description .modules-listing-section .modules-listing-header .module-intro-hero__btn, .modules-listing-section .modules-listing-header .module-tab-overview__description .post .text-wrapper .categories .category, .module-tab-overview__description .post .text-wrapper .categories .modules-listing-section .modules-listing-header .category, .modules-listing-section .modules-listing-header .post .text-wrapper .categories .module-tab-overview__description .category, .post .text-wrapper .categories .module-tab-overview__description .modules-listing-section .modules-listing-header .category, .modules-listing-section .modules-listing-header .module-tab-overview__description .post .wp-block-button a, .module-tab-overview__description .post .wp-block-button .modules-listing-section .modules-listing-header a, .modules-listing-section .modules-listing-header .post .wp-block-button .module-tab-overview__description a, .post .wp-block-button .module-tab-overview__description .modules-listing-section .modules-listing-header a, .modules-listing-section .modules-listing-header .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-tab-overview__description .form-radio .wpcf7-list-item .modules-listing-section .modules-listing-header .wpcf7-list-item-label, .modules-listing-section .modules-listing-header .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .modules-listing-section .modules-listing-header .wpcf7-list-item-label, .modules-listing-section .modules-listing-header .post blockquote p, .modules-listing-section .modules-listing-header .post blockquote .btn, .modules-listing-section .modules-listing-header .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .modules-listing-section .modules-listing-header .post blockquote .wpcf7-list-item-label, .modules-listing-section .modules-listing-header .post blockquote .module-intro-hero__btn, .modules-listing-section .modules-listing-header .post blockquote .text-wrapper .categories .category, .modules-listing-section .modules-listing-header .post .text-wrapper .categories blockquote .category, .modules-listing-section .modules-listing-header .post blockquote .wp-block-button a, .modules-listing-section .modules-listing-header .post .wp-block-button blockquote a, .modules-listing-section .modules-listing-header .post blockquote .blog-secondary-item__date, .post blockquote .modules-listing-section .modules-listing-header p, .post blockquote .modules-listing-section .modules-listing-header .btn, .post blockquote .modules-listing-section .modules-listing-header .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .modules-listing-section .modules-listing-header .wpcf7-list-item-label, .post blockquote .modules-listing-section .modules-listing-header .module-intro-hero__btn, .post blockquote .modules-listing-section .modules-listing-header .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .modules-listing-section .modules-listing-header .category, .post blockquote .modules-listing-section .modules-listing-header .wp-block-button a, .post .wp-block-button blockquote .modules-listing-section .modules-listing-header a, .post blockquote .modules-listing-section .modules-listing-header .blog-secondary-item__date, .modules-listing-section .modules-listing-header .post blockquote .map-link, .post blockquote .modules-listing-section .modules-listing-header .map-link, .post blockquote .modules-listing-section .modules-listing-header .module-card__bullets ul li span, .post blockquote .modules-listing-section .module-card__bullets ul li .modules-listing-header span, .modules-listing-section .modules-listing-header .module-card__bullets ul li .post blockquote span, .modules-listing-section .module-card__bullets ul li .post blockquote .modules-listing-header span, .modules-listing-section .modules-listing-header .platform-section .left h2, .platform-section .left .modules-listing-section .modules-listing-header h2, .modules-listing-section .modules-listing-header .platform-section .left .is-h2, .platform-section .left .modules-listing-section .modules-listing-header .is-h2, .modules-listing-section .modules-listing-header .platform-section .left h3, .platform-section .left .modules-listing-section .modules-listing-header h3, .modules-listing-section .modules-listing-header .platform-section .left span, .platform-section .left .modules-listing-section .modules-listing-header span, .modules-listing-section .modules-listing-header .module-intro-hero__title, .modules-listing-section .modules-listing-header .module-intro-hero__text, .modules-listing-section .modules-listing-header .module-intro-features__title {
    font-size: 1rem;
  }
}
.modules-listing-section .modules-listing-section__intro {
  margin-bottom: 5.26rem;
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .modules-listing-section__intro {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .modules-listing-section__intro {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .modules-listing-section__intro h6, .modules-listing-section .modules-listing-section__intro .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .modules-listing-section .modules-listing-section__intro a, .modules-listing-section .modules-listing-section__intro .module-tab-split-checklist-featured__box-title, .modules-listing-section .modules-listing-section__intro .modules-selection-bar__count span, .modules-selection-bar__count .modules-listing-section .modules-listing-section__intro span, .modules-listing-section .modules-listing-section__intro .module-intro-features__tagline {
    font-size: 0.875rem;
  }
}
.modules-listing-section .module-card.js-module-card {
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.modules-listing-section .module-card.js-module-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.modules-listing-section .module-card.js-module-card.active {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.modules-listing-section .module-card.js-module-card.module-card--disabled {
  cursor: default;
  pointer-events: none;
}
.modules-listing-section .module-card.js-module-card.module-card--disabled:hover {
  box-shadow: none;
}
.modules-listing-section .module-detail {
  display: none;
}
.modules-listing-section .module-card {
  display: flex;
  flex-direction: row;
  gap: 5.25rem;
  padding: 1rem;
  border-radius: var(--radius-xxl, 1.25rem);
}
@media only screen and (max-width: 1440px) {
  .modules-listing-section .module-card {
    gap: 2.5rem;
    padding: 0.75rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .module-card {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card {
    padding: 0.5rem;
    gap: 1rem;
    border-radius: 0.75rem;
  }
}
.modules-listing-section .module-card__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: var(--padding-xxxl, 2.25rem);
}
@media only screen and (max-width: 1440px) {
  .modules-listing-section .module-card__content {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__content {
    gap: 1rem;
  }
}
.modules-listing-section .module-card__icon {
  position: relative;
  display: flex;
  min-width: 20.0625rem;
  min-height: 13.5625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-xxl, 1.25rem);
}
@media only screen and (max-width: 1440px) {
  .modules-listing-section .module-card__icon {
    min-width: 16rem;
    min-height: 11rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .module-card__icon {
    min-width: 100%;
    min-height: 12rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__icon {
    min-height: 10rem;
    border-radius: 0.75rem;
  }
}
.modules-listing-section .module-card__icon .blurred-bg, .modules-listing-section .module-card__icon .module-selector-card__badge {
  position: absolute;
  right: 0.96063rem;
  top: 0.90625rem;
  padding: var(--padding-sm, 0.625rem);
  border-radius: var(--Radius-sm, 0.75rem);
  border: 1px solid var(--colors-neutrals-Trans-1, rgba(255, 255, 255, 0.06));
  background: var(--colors-neutrals-Trans-1, rgba(255, 255, 255, 0.06));
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .module-card__icon .blurred-bg, .modules-listing-section .module-card__icon .module-selector-card__badge {
    right: 0.75rem;
    top: 0.75rem;
    padding: 0.5rem;
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__icon .blurred-bg, .modules-listing-section .module-card__icon .module-selector-card__badge {
    right: 0.5rem;
    top: 0.5rem;
    padding: 0.375rem;
    font-size: 0.6875rem;
  }
}
.modules-listing-section .module-card__icon .blurred-bg svg, .modules-listing-section .module-card__icon .module-selector-card__badge svg {
  width: 1.01925rem;
  height: 1rem;
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__icon .blurred-bg svg, .modules-listing-section .module-card__icon .module-selector-card__badge svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.modules-listing-section .module-card__icon img {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 1440px) {
  .modules-listing-section .module-card__icon img {
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__icon img {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.modules-listing-section .module-card__badge--in_development {
  border: 1px solid var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5)) !important;
  background: var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1)) !important;
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .module-card__title {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__title {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .module-card__description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__description {
    font-size: 0.875rem;
  }
}
.modules-listing-section .module-card__bullets {
  display: flex;
  min-width: 17.9375rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--padding-xl, 1.25rem);
}
@media only screen and (max-width: 1440px) {
  .modules-listing-section .module-card__bullets {
    min-width: 14rem;
    gap: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .module-card__bullets {
    min-width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__bullets {
    gap: 0.75rem;
  }
}
.modules-listing-section .module-card__bullets ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__bullets ul {
    gap: 0.35rem;
  }
}
.modules-listing-section .module-card__bullets ul li span {
  color: #1B1917;
}
@media only screen and (max-width: 992px) {
  .modules-listing-section .module-card__bullets ul li span {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .module-card__bullets ul li span {
    font-size: 0.875rem;
  }
}
.modules-listing-section .modules-listing-empty {
  text-align: center;
  padding: 3rem;
  color: #8D9096;
}
@media only screen and (max-width: 576px) {
  .modules-listing-section .modules-listing-empty {
    padding: 2rem;
    font-size: 0.9375rem;
  }
}

@media only screen and (max-width: 992px) {
  .modules-selector-section {
    padding: 3rem 0;
  }
}
.modules-selector-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.25rem;
  margin-bottom: 4.85rem;
  align-items: start;
}
@media only screen and (max-width: 992px) {
  .modules-selector-section__header {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .modules-selector-section__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .modules-selector-section__title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .modules-selector-section__title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .modules-selector-section__text {
    font-size: 0.9375rem;
  }
}

.modules-selector-grid {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 0.63rem;
}
.modules-selector-grid .module-selector-card {
  grid-column: span 4;
}
.modules-selector-grid .module-selector-card:nth-child(-n+6) {
  grid-column: span 6;
}
.modules-selector-grid .module-selector-card:nth-child(7) {
  grid-column: span 6;
}
@media (max-width: 1024px) {
  .modules-selector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .modules-selector-grid .module-selector-card,
  .modules-selector-grid .module-selector-card:nth-child(-n+6),
  .modules-selector-grid .module-selector-card:nth-child(7) {
    grid-column: span 1;
  }
}
@media (max-width: 400px) {
  .modules-selector-grid {
    grid-template-columns: 1fr;
  }
}

.module-selector-card {
  position: relative;
  height: 16.0625rem;
  padding: 2.25rem 2.0625rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--neutrals-Border, #E4E5E7);
}
@media (max-width: 1024px) {
  .module-selector-card {
    height: 14rem;
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
  }
}
@media (max-width: 640px) {
  .module-selector-card {
    height: 12rem;
    padding: 1.25rem 1rem;
    border-radius: 0.75rem;
  }
}
.module-selector-card::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .module-selector-card::before {
    top: 1rem;
    left: 1rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media (max-width: 640px) {
  .module-selector-card::before {
    top: 0.75rem;
    left: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.module-selector-card::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  opacity: 0;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6.36641 12.0001L2.56641 8.20007L3.51641 7.25007L6.36641 10.1001L12.4831 3.9834L13.4331 4.9334L6.36641 12.0001Z' fill='%231055D7'/%3E%3C/svg%3E") center/75% no-repeat;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .module-selector-card::after {
    top: 1rem;
    left: 1rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media (max-width: 640px) {
  .module-selector-card::after {
    top: 0.75rem;
    left: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.module-selector-card:has(.module-selector-card__input:checked)::before {
  border-color: #2563eb;
}
.module-selector-card:has(.module-selector-card__input:checked)::after {
  opacity: 1;
}
.module-selector-card__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 1;
}
.module-selector-card__input:disabled {
  cursor: not-allowed;
}
.module-selector-card__badge {
  position: absolute;
  display: flex;
  align-items: center;
  right: 1.25rem;
  top: 1.25rem;
  padding: var(--padding-sm, 0.625rem) !important;
}
@media (max-width: 1024px) {
  .module-selector-card__badge {
    right: 1rem;
    top: 1rem;
    padding: 0.5rem !important;
    font-size: 0.75rem;
  }
}
@media (max-width: 640px) {
  .module-selector-card__badge {
    right: 0.75rem;
    top: 0.75rem;
    padding: 0.375rem !important;
    font-size: 0.6875rem;
  }
}
.module-selector-card__badge--in_development {
  border: 1px solid var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5)) !important;
  background: var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1)) !important;
}
.module-selector-card__badge--under_construction {
  border: 1px solid var(--colors-neutrals-Border, #E4E5E7);
  background: var(--colors-neutrals-White, #FFF) !important;
  color: var(--colors-neutrals-Grey, #8D9096) !important;
}
.module-selector-card__badge svg {
  width: 1.01925rem;
  height: 1rem;
}
@media (max-width: 640px) {
  .module-selector-card__badge svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.module-selector-card .module-selector-card__link {
  position: relative;
  z-index: 4;
  pointer-events: auto;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 3px;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.25s ease;
  transition: text-decoration-color 0.25s ease;
  transition: text-decoration-color 0.25s ease, -webkit-text-decoration-color 0.25s ease;
}
.module-selector-card .module-selector-card__link::after {
  content: "\2197";
  display: inline-block;
  margin-left: 0.25rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__link {
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}
.module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__link::after {
  opacity: 1;
  transform: translateX(0);
}
.module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__name:not(:has(.module-selector-card__link))::after {
  opacity: 1;
  transform: translateX(0);
}
.module-selector-card__icon {
  position: absolute;
  top: 66%;
  left: 2.0625rem;
  transform: translateY(-80%);
  z-index: 2;
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (max-width: 1024px) {
  .module-selector-card__icon {
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 640px) {
  .module-selector-card__icon {
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.module-selector-card__name {
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transform: translateY(0);
  transition: 0.25s ease-in;
}
@media (max-width: 1024px) {
  .module-selector-card__name {
    font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .module-selector-card__name {
    font-size: 0.875rem;
  }
}
.module-selector-card__name:not(:has(.module-selector-card__link))::after {
  content: "\2197";
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.module-selector-card__hover-description {
  position: absolute;
  bottom: 1.75rem;
  left: 2.0625rem;
  right: 2.0625rem;
  z-index: 2;
  color: var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5));
  margin: 0;
  font-size: 0.8125rem;
  transform: translateY(150%);
  transition: 0.3s ease-in;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .module-selector-card__hover-description {
    bottom: 1.75rem;
    left: 1.5rem;
    right: 1.5rem;
    font-size: 0.625rem;
  }
}
@media (max-width: 1000px) {
  .module-selector-card__hover-description {
    font-size: 0.75rem;
  }
}
@media (max-width: 640px) {
  .module-selector-card__hover-description {
    display: none;
  }
}
.module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__icon {
  opacity: 0;
  transform: translateY(-100%);
}
.module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__name {
  opacity: 1;
  transform: translateY(-7rem);
}
@media (max-width: 1024px) {
  .module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__name {
    transform: translateY(-5rem);
  }
}
.module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__name::after {
  opacity: 1;
}
.module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__hover-description {
  transform: translateY(1rem);
}
@media (hover: none) {
  .module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__icon {
    opacity: 1;
    transform: translateY(-80%);
  }
  .module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__name {
    transform: translateY(0);
  }
  .module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__name::after {
    opacity: 0;
  }
  .module-selector-card:not(.module-selector-card--under_construction):hover .module-selector-card__hover-description {
    transform: translateY(150%);
  }
}
.module-selector-card--live, .module-selector-card--in_development {
  color: #fff;
}
.module-selector-card--live .module-selector-card__name, .module-selector-card--in_development .module-selector-card__name {
  color: #fff;
}
.module-selector-card--under_construction {
  background: #fff !important;
  border-color: #e5e7eb;
  color: #1B1917;
  cursor: not-allowed;
}
.module-selector-card--under_construction::before {
  display: none;
}
.module-selector-card--under_construction:has(.module-selector-card__input:disabled) {
  border-color: #e5e7eb;
  box-shadow: none;
}
.module-selector-card--under_construction:has(.module-selector-card__input:disabled)::after {
  opacity: 0;
}
.module-selector-card--under_construction .module-selector-card__icon {
  filter: brightness(0) saturate(100%) invert(6%) sepia(11%) saturate(595%) hue-rotate(349deg) brightness(98%) contrast(92%);
}

.module-detail {
  position: relative;
  width: 100vw;
  max-width: 100%;
  left: 50%;
  right: 50%;
  margin: 24px calc(-50vw + (100vw - 100%) / 2);
  border-radius: var(--radius-xl, 1.25rem);
  color: #F9F9F9;
  transition: 0.25s ease-in;
}
@media only screen and (max-width: 992px) {
  .module-detail {
    margin: 20px calc(-50vw + (100vw - 100%) / 2);
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-detail {
    margin: 16px calc(-50vw + (100vw - 100%) / 2);
    border-radius: 0.75rem;
  }
}
.module-detail__inner {
  padding-top: 2.56rem !important;
  padding-bottom: 5.5rem !important;
  min-height: 48rem;
}
@media only screen and (max-width: 1200px) {
  .module-detail__inner {
    padding-top: 2rem !important;
    padding-bottom: 4rem !important;
    min-height: 40rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-detail__inner {
    min-height: 36rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-detail__inner {
    padding-top: 1.5rem !important;
    padding-bottom: 3rem !important;
    min-height: auto;
  }
}
.module-detail__panel {
  display: block;
  animation: fadeInPanel 0.3s ease forwards;
}
.module-detail {
  /* Navigation */
}
.module-detail__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 992px) {
  .module-detail__nav {
    margin-bottom: 3rem;
    gap: 12px;
  }
}
@media only screen and (max-width: 576px) {
  .module-detail__nav {
    margin-bottom: 2rem;
    flex-direction: row;
    align-items: flex-start;
  }
}
.module-detail__tabs {
  display: flex;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  gap: var(--padding-xl, 1.25rem);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 2px;
  cursor: grab;
}
.module-detail__tabs:active {
  cursor: grabbing;
}
.module-detail__tabs::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 992px) {
  .module-detail__tabs {
    gap: 1rem;
    mask-image: linear-gradient(to right, transparent, black 8px, black calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8px, black calc(100% - 40px), transparent);
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-detail__tabs {
    gap: 0.75rem;
    padding-right: 1.5rem;
  }
}
.module-detail__tab-btn {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
  font-size: 1rem;
  padding: 0.5rem 0 1.5rem 0;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: 0.2s ease;
  color: var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5));
  flex-shrink: 0;
}
@media only screen and (max-width: 992px) {
  .module-detail__tab-btn {
    font-size: 0.9375rem;
    padding: 0.5rem 0 1.25rem 0;
    gap: 0.375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-detail__tab-btn {
    font-size: 0.8125rem;
    padding: 0.375rem 0 1rem 0;
    gap: 0.25rem;
  }
}
.module-detail__tab-btn:hover {
  color: #fff;
}
.module-detail__tab-btn.active {
  color: #fff;
}
.module-detail__tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px 2px 0 0;
}
.module-detail__tab-num {
  font-size: 0.8125rem;
  color: var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5));
}
@media only screen and (max-width: 992px) {
  .module-detail__tab-num {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-detail__tab-num {
    font-size: 0.6875rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-detail__body {
    overflow-x: hidden;
  }
}
.module-detail--dark {
  color: #ffffff;
}
.module-detail--dark .js-module-close {
  color: #ffffff;
}
.module-detail--dark .js-module-close svg {
  fill: #ffffff;
  stroke: #ffffff;
}
.module-detail--dark .module-detail__tab-btn {
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.module-detail--dark .module-detail__tab-btn:hover {
  color: #ffffff;
}
.module-detail--dark .module-detail__tab-btn.active {
  color: #ffffff;
}
.module-detail--dark .module-detail__tab-btn.active::after {
  background: #ffffff;
}
.module-detail--dark .module-detail__tab-num {
  color: rgba(255, 255, 255, 0.5);
}
.module-detail--light {
  color: var(--colors-brand-Primary-Darker, #0B388E);
}
.module-detail--light .js-module-close {
  color: var(--colors-brand-Primary-Darker, #0B388E);
}
.module-detail--light .js-module-close svg {
  fill: var(--colors-brand-Primary-Darker, #0B388E);
  stroke: var(--colors-brand-Primary-Darker, #0B388E);
}
.module-detail--light .module-detail__tab-btn {
  color: rgba(11, 56, 142, 0.6);
  border-bottom: 2px solid rgba(11, 56, 142, 0.15);
}
.module-detail--light .module-detail__tab-btn:hover {
  color: var(--colors-brand-Primary-Darker, #0B388E);
}
.module-detail--light .module-detail__tab-btn.active {
  color: var(--colors-brand-Primary-Darker, #0B388E);
}
.module-detail--light .module-detail__tab-btn.active::after {
  background: var(--colors-brand-Primary-Darker, #0B388E);
}
.module-detail--light .module-detail__tab-num {
  color: rgba(11, 56, 142, 0.6);
}
.module-detail .js-module-close {
  background: none;
  outline: none;
  border: none;
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.module-detail .js-module-close:hover {
  opacity: 0.7;
  transform: scale(1.05);
}
@media only screen and (max-width: 992px) {
  .module-detail .js-module-close {
    width: 2.5rem;
    height: 2.5rem;
  }
  .module-detail .js-module-close svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-detail .js-module-close {
    width: 2rem;
    height: 2rem;
  }
  .module-detail .js-module-close svg {
    width: 2rem;
    height: 2rem;
  }
}
.module-detail__tab-panel {
  display: none;
}
.module-detail__tab-panel.active {
  display: block;
  animation: fadeInPanel 0.3s ease forwards;
}
.module-detail__placeholder {
  padding: 3rem;
  text-align: center;
  opacity: 0.6;
}
@media only screen and (max-width: 576px) {
  .module-detail__placeholder {
    padding: 2rem;
  }
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
::-moz-selection { /* Code for Firefox */
  background: #1055D7;
}

::selection {
  background: #1055D7;
}

:root {
  --bs-backdrop-zindex: 0;
}

@media only screen and (max-width: 2560px) {
  :root {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1919px) {
  :root {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1648px) {
  :root {
    font-size: 16px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  border-radius: 1rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 1rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 1rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  position: relative;
  background: #ffffff;
  font-family: "DM Sans", sans-serif;
}

a {
  color: unset;
  transition: 0.2s ease-out;
}
a:hover {
  color: unset;
  transition: 0.2s ease-in;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  transition: 0.2s ease-out;
}
a:not([href]):not([class]):hover, a:not([href]):not([class]):hover:hover {
  color: unset;
  transition: 0.2s ease-in;
  cursor: pointer;
}

.home {
  position: relative;
  top: 8rem !important;
  z-index: 1;
}

main {
  position: relative;
  padding-bottom: 3.5rem;
  border-radius: 0rem 0rem 2.5rem 2.5rem;
  background: white;
}

table {
  border-collapse: collapse !important;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  table {
    font-size: 0.7rem;
  }
}
table tbody tr:last-child {
  border-bottom: none !important;
}
table tbody tr:last-child td {
  border-bottom: none !important;
}
table tbody tr, table tbody td {
  padding: 8px;
  text-align: left;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #7F736C;
}

.wp-block-table td {
  border-bottom: 1px solid #7F736C !important;
}

.otgs-development-site-front-end {
  display: none !important;
}

.rounded-img {
  border-radius: 9rem 0.5rem;
}
@media only screen and (max-width: 992px) {
  .rounded-img {
    border-radius: 1rem;
  }
}

.reset-radius {
  border-radius: 0 !important;
}

@media only screen and (max-width: 768px) {
  #wpadminbar {
    display: none !important;
  }
}

@media screen and (max-width: 782px) {
  html {
    margin-top: 0 !important;
  }
}
.cky-btn-revisit-wrapper {
  z-index: 1030 !important;
}

.container {
  padding: 0 5.5rem;
}
@media only screen and (max-width: 992px) {
  .container {
    padding: 0 1rem;
  }
}

.container-fluid {
  max-width: 108rem;
  background: transparent;
  padding: 0 5.5rem;
}
@media only screen and (max-width: 992px) {
  .container-fluid {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .container-fluid {
    padding: 0 1rem;
  }
}

.container-small {
  max-width: 50.4rem;
}

section {
  position: relative;
  top: -1rem;
  z-index: 1;
  padding: 6rem 0;
}
@media only screen and (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
}
@media only screen and (max-width: 576px) {
  section {
    padding: 4rem 0;
  }
}

.page-intro-section, .post, .mosaic-section {
  padding: 11rem 0;
}
@media only screen and (max-width: 768px) {
  .page-intro-section, .post, .mosaic-section {
    padding: 8rem 0 2rem 0;
  }
}

.reverse-order {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .reverse-order {
    flex-direction: unset;
  }
}

.about-us .overlapping-images {
  position: relative;
  text-align: center;
  margin-bottom: 5rem;
}
.about-us .overlapping-images img:last-child {
  position: absolute;
  bottom: -8rem;
  right: -7rem;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .about-us .overlapping-images img:last-child {
    right: unset;
    transform: translateX(-75%);
  }
}
@media only screen and (max-width: 992px) {
  .about-us .overlapping-images img {
    width: 50%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.post {
  background: white;
}
.post img {
  border-radius: 1.25rem;
}
@media only screen and (max-width: 992px) {
  .post img {
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .post img {
    border-radius: 0.75rem;
  }
}
.post .post-date {
  display: block;
  font-size: 0.85rem;
  color: #8D9096;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 576px) {
  .post .post-date {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
}
.post h1, .post .hero-wrapper h1 span, .hero-wrapper h1 .post span, .post .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 .post span, .post .is-h1 {
  margin-bottom: 5rem !important;
}
@media only screen and (max-width: 992px) {
  .post h1, .post .hero-wrapper h1 span, .hero-wrapper h1 .post span, .post .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 .post span, .post .is-h1 {
    margin-bottom: 3.5rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .post h1, .post .hero-wrapper h1 span, .hero-wrapper h1 .post span, .post .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 .post span, .post .is-h1 {
    margin-bottom: 2.5rem !important;
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .post h1, .post .hero-wrapper h1 span, .hero-wrapper h1 .post span, .post .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 .post span, .post .is-h1 {
    margin-bottom: 2rem !important;
    font-size: 1.75rem;
  }
}
.post h2, .post .is-h2, .post .map-section h2 span, .map-section h2 .post span, .post .map-section .is-h2 span, .map-section .is-h2 .post span, .post .custom-map .left h2 span, .custom-map .left h2 .post span, .post .custom-map .left .is-h2 span, .custom-map .left .is-h2 .post span, .post h3, .post h4, .post h5, .post .accordion-button, .post .module-selector-card__name, .post h6, .post .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .post a, .post .module-tab-split-checklist-featured__box-title, .post .modules-selection-bar__count span, .modules-selection-bar__count .post span, .post .module-intro-features__tagline {
  margin-bottom: 2.5rem !important;
}
@media only screen and (max-width: 992px) {
  .post h2, .post .is-h2, .post .map-section h2 span, .map-section h2 .post span, .post .map-section .is-h2 span, .map-section .is-h2 .post span, .post .custom-map .left h2 span, .custom-map .left h2 .post span, .post .custom-map .left .is-h2 span, .custom-map .left .is-h2 .post span, .post h3, .post h4, .post h5, .post .accordion-button, .post .module-selector-card__name, .post h6, .post .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .post a, .post .module-tab-split-checklist-featured__box-title, .post .modules-selection-bar__count span, .modules-selection-bar__count .post span, .post .module-intro-features__tagline {
    margin-bottom: 2rem !important;
  }
}
@media only screen and (max-width: 576px) {
  .post h2, .post .is-h2, .post .map-section h2 span, .map-section h2 .post span, .post .map-section .is-h2 span, .map-section .is-h2 .post span, .post .custom-map .left h2 span, .custom-map .left h2 .post span, .post .custom-map .left .is-h2 span, .custom-map .left .is-h2 .post span, .post h3, .post h4, .post h5, .post .accordion-button, .post .module-selector-card__name, .post h6, .post .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .post a, .post .module-tab-split-checklist-featured__box-title, .post .modules-selection-bar__count span, .modules-selection-bar__count .post span, .post .module-intro-features__tagline {
    margin-bottom: 1.5rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .post h2, .post .is-h2, .post .map-section h2 span, .map-section h2 .post span, .post .map-section .is-h2 span, .map-section .is-h2 .post span, .post .custom-map .left h2 span, .custom-map .left h2 .post span, .post .custom-map .left .is-h2 span, .custom-map .left .is-h2 .post span {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .post h2, .post .is-h2, .post .map-section h2 span, .map-section h2 .post span, .post .map-section .is-h2 span, .map-section .is-h2 .post span, .post .custom-map .left h2 span, .custom-map .left h2 .post span, .post .custom-map .left .is-h2 span, .custom-map .left .is-h2 .post span {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .post h3 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .post h3 {
    font-size: 1.25rem;
  }
}
.post p, .post .btn, .post .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post .wpcf7-list-item-label, .post .module-intro-hero__btn, .post .text-wrapper .categories .category, .post .wp-block-button a, .post .blog-secondary-item__date, .post .map-link, .post .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .post span {
  display: block;
  min-height: 1.5rem;
}
@media only screen and (max-width: 576px) {
  .post p, .post .btn, .post .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post .wpcf7-list-item-label, .post .module-intro-hero__btn, .post .text-wrapper .categories .category, .post .wp-block-button a, .post .blog-secondary-item__date, .post .map-link, .post .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .post span {
    font-size: 0.9375rem;
    min-height: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .post .post-breadcrumb {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 576px) {
  .post .post-breadcrumb {
    font-size: 0.65rem;
  }
}
.post .post-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
@media only screen and (max-width: 1200px) {
  .post .post-layout {
    gap: 3rem;
  }
}
@media only screen and (max-width: 992px) {
  .post .post-layout {
    flex-direction: column;
    gap: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .post .post-layout {
    gap: 1.5rem;
  }
}
.post .post-toc {
  flex-shrink: 0;
  width: 20rem;
  position: sticky;
  top: 8rem;
  border-radius: var(--radius-xl, 1.25rem);
  background: var(--colors-neutrals-Light, #F9F9F9);
}
@media only screen and (max-width: 1200px) {
  .post .post-toc {
    width: 18rem;
  }
}
@media only screen and (max-width: 992px) {
  .post .post-toc {
    width: 100%;
    position: static;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .post .post-toc {
    border-radius: 0.75rem;
  }
}
.post .post-toc__inner {
  padding: var(--padding-xxl, 2.25rem);
}
@media only screen and (max-width: 992px) {
  .post .post-toc__inner {
    padding: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .post .post-toc__inner {
    padding: 1.25rem;
  }
}
.post .post-toc__title {
  display: block;
  text-transform: uppercase;
  color: #8D9096;
  padding-bottom: 0.75rem;
}
@media only screen and (max-width: 576px) {
  .post .post-toc__title {
    font-size: 0.75rem;
    padding-bottom: 0.5rem;
  }
}
.post .post-toc__nav {
  display: flex;
  flex-direction: column;
}
.post .post-toc__link {
  color: #8D9096;
  text-decoration: none;
  padding: 0.4rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  transition: color 0.2s, border-color 0.2s;
}
@media only screen and (max-width: 576px) {
  .post .post-toc__link {
    padding: 0.35rem 0;
    padding-left: 0.625rem;
    font-size: 0.875rem;
  }
}
.post .post-toc__link:hover {
  color: #1B1917;
}
.post .post-toc__link.active {
  color: #1B1917;
  border-left-color: #1B1917;
}
.post .post-toc__link--sub {
  padding-left: 1.5rem;
  font-size: 0.8rem;
}
@media only screen and (max-width: 576px) {
  .post .post-toc__link--sub {
    padding-left: 1.25rem;
    font-size: 0.75rem;
  }
}
.post .text-wrapper {
  flex: 1;
  min-width: 0;
  margin-bottom: 6.1rem;
  max-width: 80rem;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 992px) {
  .post .text-wrapper {
    max-width: 100%;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 576px) {
  .post .text-wrapper {
    margin-bottom: 3rem;
  }
}
.post .text-wrapper .wp-block-image {
  margin: 2rem 0;
}
@media only screen and (max-width: 576px) {
  .post .text-wrapper .wp-block-image {
    margin: 1.5rem 0;
  }
}
.post .text-wrapper p a, .post .text-wrapper .btn a, .post .text-wrapper .form-radio .wpcf7-list-item .wpcf7-list-item-label a, .form-radio .wpcf7-list-item .post .text-wrapper .wpcf7-list-item-label a, .post .text-wrapper .module-intro-hero__btn a, .post .text-wrapper .categories .category a, .post .text-wrapper .wp-block-button a a, .post .wp-block-button .text-wrapper a a, .post .text-wrapper .blog-secondary-item__date a, .post .text-wrapper .map-link a, .post .text-wrapper .modules-listing-section .module-card__bullets ul li span a, .modules-listing-section .module-card__bullets ul li .post .text-wrapper span a {
  word-break: break-word;
}
.post .text-wrapper li {
  font-size: clamp(0.875rem, 1.7vw + 0.1rem, 1rem);
}
@media only screen and (max-width: 576px) {
  .post .text-wrapper li {
    font-size: 0.9375rem;
  }
}
.post .text-wrapper .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .post .text-wrapper .categories {
    gap: 0.4rem;
  }
}
@media only screen and (max-width: 576px) {
  .post .text-wrapper .categories {
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }
}
.post .text-wrapper .categories .category {
  color: #4C4D5B !important;
  padding: 0 1rem !important;
  height: 2.7rem;
  font-size: 0.8rem !important;
  background-color: #E4E4E7;
}
@media only screen and (max-width: 576px) {
  .post .text-wrapper .categories .category {
    padding: 0 0.75rem !important;
    height: 2.25rem;
    font-size: 0.75rem !important;
  }
}
.post ul {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 576px) {
  .post ul {
    margin: 1.5rem 0;
    gap: 0.75rem;
  }
}
.post ul li::marker {
  color: #1055D7;
}
.post .wp-block-post-featured-image {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 992px) {
  .post .wp-block-post-featured-image {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 576px) {
  .post .wp-block-post-featured-image {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .post .wp-block-button a {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}
.post blockquote {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
  margin: 2rem 0;
  border-radius: var(--radius-xl, 1.25rem);
  background: var(--colors-neutrals-Light, #F9F9F9);
}
@media only screen and (max-width: 992px) {
  .post blockquote {
    padding: 2.25rem;
    gap: 1.5rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .post blockquote {
    padding: 1.5rem;
    gap: 1rem;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
  }
}
.post blockquote p, .post blockquote .btn, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label, .post blockquote .module-intro-hero__btn, .post blockquote .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .category, .post blockquote .wp-block-button a, .post .wp-block-button blockquote a, .post blockquote .blog-secondary-item__date, .post blockquote .map-link, .post blockquote .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .post blockquote span {
  margin-bottom: 0.2rem !important;
}
@media only screen and (max-width: 576px) {
  .post blockquote p, .post blockquote .btn, .post blockquote .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .post blockquote .wpcf7-list-item-label, .post blockquote .module-intro-hero__btn, .post blockquote .text-wrapper .categories .category, .post .text-wrapper .categories blockquote .category, .post blockquote .wp-block-button a, .post .wp-block-button blockquote a, .post blockquote .blog-secondary-item__date, .post blockquote .map-link, .post blockquote .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .post blockquote span {
    font-size: 1rem;
  }
}
.post blockquote cite {
  color: #8D9096;
  font-style: unset;
}
@media only screen and (max-width: 576px) {
  .post blockquote cite {
    font-size: 0.875rem;
  }
}
.post blockquote cite strong {
  color: var(--colors-neutrals-Dark, #1B1917);
}

.img-fluid {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.posts-index h1, .posts-index .hero-wrapper h1 span, .hero-wrapper h1 .posts-index span, .posts-index .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 .posts-index span, .posts-index .is-h1 {
  margin-bottom: 5rem;
  max-width: 37rem;
}
.posts-index__list {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  padding-left: 5.16rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .posts-index__list {
    padding-left: 2.5rem;
    gap: 5rem;
  }
}
@media (max-width: 768px) {
  .posts-index__list {
    padding-left: 0;
    gap: 3.5rem;
  }
}

.blog-secondary-item__link {
  display: grid;
  grid-template-columns: 28rem 1fr;
  gap: 2.25rem;
  text-decoration: none;
  color: inherit;
  align-items: start;
}
@media (max-width: 1024px) {
  .blog-secondary-item__link {
    grid-template-columns: 20rem 1fr;
  }
}
@media (max-width: 768px) {
  .blog-secondary-item__link {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.blog-secondary-item__link:hover .blog-secondary-item__title {
  text-decoration: underline;
}
.blog-secondary-item__link:hover .blog-secondary-item__image img {
  transform: scale(1.03);
}
.blog-secondary-item__image {
  border-radius: var(--radius-xl, 1.25rem);
  background: #EBEFF6;
  overflow: hidden;
  min-height: 16.5rem;
}
@media (max-width: 768px) {
  .blog-secondary-item__image {
    min-height: 12rem;
  }
}
.blog-secondary-item__image img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
@media (max-width: 768px) {
  .blog-secondary-item__image img {
    width: 100%;
  }
}
.blog-secondary-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: auto;
}
@media (max-width: 768px) {
  .blog-secondary-item__content {
    gap: 0.3rem;
  }
}
.blog-secondary-item__date {
  color: #8D9096;
}
.blog-secondary-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  transition: -webkit-text-decoration 0.2s ease;
  transition: text-decoration 0.2s ease;
  transition: text-decoration 0.2s ease, -webkit-text-decoration 0.2s ease;
}
@media (max-width: 768px) {
  .blog-secondary-item__title {
    font-size: 1.1rem;
  }
}
.blog-secondary-item__excerpt {
  margin: 2rem 0 0;
}
@media (max-width: 768px) {
  .blog-secondary-item__excerpt {
    margin-top: 1rem;
  }
}

.posts-index__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3.2rem;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .posts-index__pagination {
    margin-top: 2.5rem;
  }
}
.posts-index__pagination a,
.posts-index__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.posts-index__pagination-prev, .posts-index__pagination-next {
  padding: 0.4rem 1rem;
  border-radius: 5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.posts-index__pagination-prev:hover, .posts-index__pagination-next:hover {
  background-color: #111;
  color: #fff;
}
.posts-index__pagination-next {
  background-color: #111;
  color: #fff;
}
.posts-index__pagination-prev {
  color: #888;
}
.posts-index__pagination-info {
  color: #888;
}

.main-header {
  position: fixed;
  top: 2.56rem;
  z-index: 5;
  padding: 0.8125rem 1.1875rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  left: 50%;
  transform: translateX(-50%);
}
.main-header .container-fluid {
  padding: 0;
  display: flex;
  background-color: transparent;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin-right: 4.88rem;
}
.main-header .logo-container .text {
  z-index: 1;
  position: relative;
  left: 0.625rem;
  height: 1.35rem;
  filter: brightness(0) saturate(100%);
}
.main-header .logo-container .box {
  z-index: 2;
  width: 2.875rem;
  height: 2.21944rem;
  filter: brightness(0) saturate(100%);
}
.main-header .logo-container .logo {
  z-index: 2;
  width: 9.01356rem;
  height: 1.9375rem;
  filter: invert(100%);
  transition: filter 0.3s ease;
}
@media only screen and (max-width: 576px) {
  .main-header .logo-container .logo {
    width: 6.875rem;
    height: 1.68369rem;
  }
}
.main-header .header-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.main-header .header-navigation > ul {
  display: flex;
  flex-direction: row;
  padding: 0;
  list-style: none;
  gap: 0.5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 1101px) {
  .main-header .header-navigation > ul {
    display: none;
  }
}
.main-header .header-navigation > ul > li {
  color: white;
  margin: auto;
  transition: color 0.3s ease, background 0.3s ease;
  background: transparent;
  border-radius: var(--Radius-sm, 0.75rem);
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.main-header .header-navigation > ul > li > a {
  display: block;
  padding: 0.375rem 0.75rem 0.5rem 0.75rem;
  text-decoration: none !important;
  transform: none !important;
  font-size: 0.8125rem;
}
.main-header .header-navigation > ul > li:hover {
  border-radius: var(--Radius-sm, 0.75rem);
  background: var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
}
.main-header .header-navigation > ul > li:last-child:not(.menu-item-has-children) {
  background: #ffffff;
  color: #1B1917;
}
.main-header .header-navigation > ul > li:last-child:not(.menu-item-has-children) a {
  text-decoration: none !important;
  transform: none !important;
}
.main-header .header-navigation > ul > li:last-child:not(.menu-item-has-children):hover {
  transform: none;
}
.main-header .header-navigation > ul > li:last-child:not(.menu-item-has-children):hover a {
  text-decoration: none !important;
  transform: none !important;
}
.main-header .header-navigation > ul > li .sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 1.5rem);
  right: -5rem;
  min-width: 10rem;
  padding: 1.375rem 2rem;
  border-radius: var(--Radius-md, 1.25rem);
  background: rgba(30, 30, 30, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.25rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  list-style: none;
  z-index: 10;
}
.main-header .header-navigation > ul > li .sub-menu li {
  width: 100%;
  background: transparent !important;
  border-radius: 0.5rem;
}
.main-header .header-navigation > ul > li .sub-menu li a {
  display: block;
  white-space: nowrap;
  color: white;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none !important;
}
.main-header .header-navigation > ul > li .sub-menu li:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}
.main-header .header-navigation > ul > li .sub-menu li:hover:last-child {
  background: rgba(255, 255, 255, 0.1) !important;
}
.main-header .header-navigation > ul > li .sub-menu li:last-child {
  background: transparent !important;
  color: white;
}
.main-header .header-navigation > ul > li .sub-menu li:last-child a {
  color: white;
}
.main-header .header-navigation > ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-header .header-navigation > ul > li.modules-dropdown > .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 2rem;
  min-width: 28rem;
  right: auto;
  left: 50%;
  transform: translateX(-50%) translateY(-0.25rem);
  padding: 1.5rem 2rem;
}
.main-header .header-navigation > ul > li.modules-dropdown > .sub-menu li a {
  white-space: normal;
  line-height: 1.35;
}
.main-header .header-navigation > ul > li.modules-dropdown > .sub-menu li.module-submenu-item--disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
.main-header .header-navigation > ul > li.modules-dropdown > .sub-menu li.module-submenu-item--disabled a {
  color: inherit !important;
  cursor: default;
}
.main-header .header-navigation > ul > li.modules-dropdown:hover > .sub-menu {
  transform: translateX(-50%) translateY(0);
}
.main-header .header-navigation .header-buttons {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7468%) hue-rotate(72deg) brightness(99%) contrast(107%);
}
@media only screen and (max-width: 1200px) {
  .main-header .header-navigation .header-buttons {
    display: flex;
  }
}
.main-header .header-navigation .header-buttons button {
  width: unset;
}
.main-header .header-navigation .header-buttons button img {
  margin-left: 1rem;
}
.main-header .line-spacer {
  width: 3rem;
  border-bottom: thin solid #8D9096;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.line-spacer {
  width: 3rem;
  border-bottom: thin solid #8D9096;
  margin-bottom: 3rem;
}

.logo {
  height: 2.3rem;
}

.offcanvas {
  background-color: #1055D7 !important;
  padding: 1.88rem 2rem;
  right: 0;
  width: 35% !important;
  color: white;
}
@media only screen and (max-width: 1200px) {
  .offcanvas {
    width: 50% !important;
  }
}
@media only screen and (max-width: 1101px) {
  .offcanvas {
    width: 100% !important;
  }
}
.offcanvas .logo {
  filter: invert(100%);
}
.offcanvas button {
  display: flex;
  flex-direction: row;
  border: none;
  align-items: center;
  background-color: #1055D7;
  justify-content: center;
  transition: 0.2s ease-out;
}
.offcanvas button:hover {
  transition: 0.2s ease-in;
  box-shadow: 10px 10px 40px 10px #1055D7;
}
.offcanvas .offcanvas-header {
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2.8rem;
}
.offcanvas .offcanvas-header button {
  display: block;
  color: white;
  margin-left: 2.5rem;
  height: 3.125rem;
}
.offcanvas .offcanvas-header button img {
  margin-left: 1rem;
}
.offcanvas .offcanvas-header a {
  color: #1B1917;
}
@media only screen and (max-width: 768px) {
  .offcanvas .offcanvas-header a {
    margin-left: 0;
  }
}
.offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow-y: hidden;
  padding-bottom: 2.88rem;
  padding-top: 0;
}
.offcanvas .offcanvas-body .links-upper, .offcanvas .offcanvas-body .links-bottom {
  width: 100%;
}
.offcanvas .offcanvas-body .links-upper h6, .offcanvas .offcanvas-body .links-upper .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .offcanvas .offcanvas-body .links-upper a, .offcanvas .offcanvas-body .links-upper .module-tab-split-checklist-featured__box-title, .offcanvas .offcanvas-body .links-upper .modules-selection-bar__count span, .modules-selection-bar__count .offcanvas .offcanvas-body .links-upper span, .offcanvas .offcanvas-body .links-bottom h6, .offcanvas .offcanvas-body .links-bottom .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .offcanvas .offcanvas-body .links-bottom a, .offcanvas .offcanvas-body .links-bottom .module-tab-split-checklist-featured__box-title, .offcanvas .offcanvas-body .links-bottom .modules-selection-bar__count span, .modules-selection-bar__count .offcanvas .offcanvas-body .links-bottom span, .offcanvas .offcanvas-body .links-upper .module-intro-features__tagline, .offcanvas .offcanvas-body .links-bottom .module-intro-features__tagline {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2rem;
  color: #8D9096;
  margin-bottom: 1.6rem;
}
.offcanvas .offcanvas-body .links-upper ul, .offcanvas .offcanvas-body .links-bottom ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .offcanvas .offcanvas-body .links-upper ul, .offcanvas .offcanvas-body .links-bottom ul {
    width: 100%;
  }
}
.offcanvas .offcanvas-body .links-upper ul .menu-item-custom-text, .offcanvas .offcanvas-body .links-bottom ul .menu-item-custom-text {
  position: relative;
  top: 2rem;
  color: #A0A0A0;
}
.offcanvas .offcanvas-body .links-upper ul > li:last-child:not(.menu-item-has-children), .offcanvas .offcanvas-body .links-bottom ul > li:last-child:not(.menu-item-has-children) {
  display: flex;
  padding: 1.5rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-top: 1rem;
  border-radius: var(--Radius-sm, 0.75rem);
  border: 1px solid var(--neutrals-Trans-3, rgba(255, 255, 255, 0.5));
  background: transparent;
  width: 100%;
}
.offcanvas .offcanvas-body .links-upper ul > li:last-child:not(.menu-item-has-children) a, .offcanvas .offcanvas-body .links-bottom ul > li:last-child:not(.menu-item-has-children) a {
  color: white;
  display: flex;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 104%;
  letter-spacing: -0.075rem;
  width: 100%;
}
.offcanvas .offcanvas-body .links-upper ul > li:last-child:not(.menu-item-has-children) a:after, .offcanvas .offcanvas-body .links-bottom ul > li:last-child:not(.menu-item-has-children) a:after {
  content: " ";
  margin-left: auto;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  transform: rotate(180deg);
  background-image: url("../../assets/img/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.offcanvas .offcanvas-body .links-upper ul li, .offcanvas .offcanvas-body .links-bottom ul li {
  list-style: none;
  transition: 0.2s ease-out;
}
.offcanvas .offcanvas-body .links-upper ul li:hover a, .offcanvas .offcanvas-body .links-bottom ul li:hover a {
  -webkit-text-decoration-color: black;
          text-decoration-color: black;
}
.offcanvas .offcanvas-body .links-upper ul > li > a, .offcanvas .offcanvas-body .links-bottom ul > li > a {
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 104%;
  letter-spacing: -0.125rem;
  text-decoration: none;
}
.offcanvas .offcanvas-body .links-upper ul .sub-menu, .offcanvas .offcanvas-body .links-bottom ul .sub-menu {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 1.5rem;
  margin-top: 2rem;
  gap: 1.5rem;
  list-style: none;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  min-width: unset;
}
.offcanvas .offcanvas-body .links-upper ul .sub-menu li, .offcanvas .offcanvas-body .links-bottom ul .sub-menu li {
  border: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
}
.offcanvas .offcanvas-body .links-upper ul .sub-menu li a, .offcanvas .offcanvas-body .links-bottom ul .sub-menu li a {
  font-size: 1.5rem !important;
  letter-spacing: -0.075rem;
  color: white;
  text-decoration: none;
}
.offcanvas .offcanvas-body .links-upper ul .sub-menu li a:after, .offcanvas .offcanvas-body .links-bottom ul .sub-menu li a:after {
  display: none !important;
}
.offcanvas .offcanvas-body .links-upper ul .modules-dropdown > .sub-menu, .offcanvas .offcanvas-body .links-bottom ul .modules-dropdown > .sub-menu {
  display: none !important;
}
.offcanvas .offcanvas-body .links-bottom {
  font-size: 1.1rem !important;
}

.light-header .logo {
  filter: brightness(0) saturate(100%) !important;
}
.light-header .header-buttons {
  filter: unset !important;
}
.light-header .header-navigation > ul > li {
  color: black !important;
}
.light-header .header-navigation > ul > li:last-child:not(.menu-item-has-children) {
  background: #111111 !important;
  color: #ffffff !important;
}
.light-header .header-navigation > ul > li .sub-menu {
  background: rgba(240, 240, 240, 0.75) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.light-header .header-navigation > ul > li .sub-menu li {
  color: black !important;
}
.light-header .header-navigation > ul > li .sub-menu li a {
  color: black !important;
}
.light-header .header-navigation > ul > li .sub-menu li:last-child {
  color: black !important;
}
.light-header .header-navigation > ul > li .sub-menu li:last-child a {
  color: black !important;
}
.light-header .header-navigation > ul > li .sub-menu li:hover {
  background: rgba(0, 0, 0, 0.12) !important;
}
.light-header .header-navigation > ul > li .sub-menu li:hover:last-child {
  background: rgba(0, 0, 0, 0.12) !important;
}
.light-header .header-navigation > ul > li.modules-dropdown > .sub-menu {
  background: rgba(240, 240, 240, 0.75) !important;
}

.footer-main {
  background: #ffffff;
  color: #1B1917;
}
.footer-main .container-fluid {
  position: relative;
  padding: 0 5.5rem 3.125rem;
  background: #ffffff;
}
@media only screen and (max-width: 992px) {
  .footer-main .container-fluid {
    padding: 0 3rem 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer-main .container-fluid {
    padding: 0 2rem 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .footer-main .container-fluid {
    padding: 0 1.25rem 1.5rem;
  }
}
.footer-main .slide-text {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .footer-main .slide-text {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 576px) {
  .footer-main .slide-text {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.footer-main .slide-text p, .footer-main .slide-text .btn, .footer-main .slide-text .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .footer-main .slide-text .wpcf7-list-item-label, .footer-main .slide-text .module-intro-hero__btn, .footer-main .slide-text .post .text-wrapper .categories .category, .post .text-wrapper .categories .footer-main .slide-text .category, .footer-main .slide-text .post .wp-block-button a, .post .wp-block-button .footer-main .slide-text a, .footer-main .slide-text .map-link, .footer-main .slide-text .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .footer-main .slide-text span, .footer-main .slide-text .blog-secondary-item__date {
  display: inline-flex;
  align-items: center;
  font-family: "Satoshi", sans-serif;
  font-size: clamp(3rem, 10vw, 10.74119rem);
  font-style: normal;
  text-transform: none;
  font-weight: 500;
  letter-spacing: clamp(-0.1rem, -0.03em, -0.32225rem);
}
.footer-main .footer-info {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}
@media only screen and (max-width: 992px) {
  .footer-main .footer-info {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer-main .footer-info {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-main .footer-info .footer-company {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-info {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }
}
.footer-main .footer-info img {
  margin-top: 0.25rem;
  width: 9.01356rem;
  height: auto;
  max-width: 100%;
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-info img {
    width: 7rem;
  }
}
.footer-main .footer-info p, .footer-main .footer-info .btn, .footer-main .footer-info .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .footer-main .footer-info .wpcf7-list-item-label, .footer-main .footer-info .module-intro-hero__btn, .footer-main .footer-info .post .text-wrapper .categories .category, .post .text-wrapper .categories .footer-main .footer-info .category, .footer-main .footer-info .post .wp-block-button a, .post .wp-block-button .footer-main .footer-info a, .footer-main .footer-info .map-link, .footer-main .footer-info .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .footer-main .footer-info span, .footer-main .footer-info .blog-secondary-item__date {
  margin: 0;
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-info p, .footer-main .footer-info .btn, .footer-main .footer-info .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .footer-main .footer-info .wpcf7-list-item-label, .footer-main .footer-info .module-intro-hero__btn, .footer-main .footer-info .post .text-wrapper .categories .category, .post .text-wrapper .categories .footer-main .footer-info .category, .footer-main .footer-info .post .wp-block-button a, .post .wp-block-button .footer-main .footer-info a, .footer-main .footer-info .map-link, .footer-main .footer-info .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .footer-main .footer-info span, .footer-main .footer-info .blog-secondary-item__date {
    margin-bottom: 0.3rem;
  }
}
.footer-main .footer-info .p-small, .footer-main .footer-info .module-tab-success-stories__case-bullets ul li, .module-tab-success-stories__case-bullets ul .footer-main .footer-info li, .footer-main .footer-info .wpcf7-list-item-label, .footer-main .footer-info .blurred-bg, .footer-main .footer-info .module-selector-card__badge {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-info .p-small, .footer-main .footer-info .module-tab-success-stories__case-bullets ul li, .module-tab-success-stories__case-bullets ul .footer-main .footer-info li, .footer-main .footer-info .wpcf7-list-item-label, .footer-main .footer-info .blurred-bg, .footer-main .footer-info .module-selector-card__badge {
    margin-bottom: 1rem;
  }
}
.footer-main .footer-info div {
  display: flex;
  flex-direction: column;
}
.footer-main .footer-info a {
  text-decoration: none;
}
.footer-main .footer-info .footer-socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-main .footer-info .footer-socials a {
  margin-right: 0;
}
.footer-main .footer-info .footer-company img {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-info .footer-company img {
    margin-bottom: 1rem;
  }
}
.footer-main .footer-info .footer-company p, .footer-main .footer-info .footer-company .btn, .footer-main .footer-info .footer-company .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .footer-main .footer-info .footer-company .wpcf7-list-item-label, .footer-main .footer-info .footer-company .module-intro-hero__btn, .footer-main .footer-info .footer-company .post .text-wrapper .categories .category, .post .text-wrapper .categories .footer-main .footer-info .footer-company .category, .footer-main .footer-info .footer-company .post .wp-block-button a, .post .wp-block-button .footer-main .footer-info .footer-company a, .footer-main .footer-info .footer-company .map-link, .footer-main .footer-info .footer-company .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .footer-main .footer-info .footer-company span, .footer-main .footer-info .footer-company .blog-secondary-item__date {
  color: #8D9096;
  max-width: 26.375rem;
}
@media only screen and (max-width: 768px) {
  .footer-main .footer-info .footer-company p, .footer-main .footer-info .footer-company .btn, .footer-main .footer-info .footer-company .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .footer-main .footer-info .footer-company .wpcf7-list-item-label, .footer-main .footer-info .footer-company .module-intro-hero__btn, .footer-main .footer-info .footer-company .post .text-wrapper .categories .category, .post .text-wrapper .categories .footer-main .footer-info .footer-company .category, .footer-main .footer-info .footer-company .post .wp-block-button a, .post .wp-block-button .footer-main .footer-info .footer-company a, .footer-main .footer-info .footer-company .map-link, .footer-main .footer-info .footer-company .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .footer-main .footer-info .footer-company span, .footer-main .footer-info .footer-company .blog-secondary-item__date {
    margin-bottom: 0;
    max-width: 100%;
  }
  .footer-main .footer-info .footer-company p br, .footer-main .footer-info .footer-company .btn br, .footer-main .footer-info .footer-company .form-radio .wpcf7-list-item .wpcf7-list-item-label br, .form-radio .wpcf7-list-item .footer-main .footer-info .footer-company .wpcf7-list-item-label br, .footer-main .footer-info .footer-company .module-intro-hero__btn br, .footer-main .footer-info .footer-company .post .text-wrapper .categories .category br, .post .text-wrapper .categories .footer-main .footer-info .footer-company .category br, .footer-main .footer-info .footer-company .post .wp-block-button a br, .post .wp-block-button .footer-main .footer-info .footer-company a br, .footer-main .footer-info .footer-company .map-link br, .footer-main .footer-info .footer-company .modules-listing-section .module-card__bullets ul li span br, .modules-listing-section .module-card__bullets ul li .footer-main .footer-info .footer-company span br, .footer-main .footer-info .footer-company .blog-secondary-item__date br {
    display: none;
  }
}
.footer-main .footer-divider {
  margin: 3.62rem 0;
  background: #1B1917;
  opacity: 0.1;
  height: 1px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .footer-main .footer-divider {
    margin: 2.5rem 0;
  }
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-divider {
    margin: 2rem 0;
  }
}
.footer-main .footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-links ul {
    gap: 1rem;
  }
}
.footer-main .footer-links ul li {
  list-style: none;
}
.footer-main .with-arrow ul li {
  list-style: none;
  position: relative;
}
.footer-main .with-arrow ul li a {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-main .with-arrow ul li a::after {
  content: " ";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(-225deg);
  background: url("/wp-content/themes/operatemybox/assets/img/arrow.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
@media only screen and (max-width: 576px) {
  .footer-main .with-arrow ul li a::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.footer-main .footer-links-secondary {
  margin-bottom: 1rem;
}
.footer-main .footer-links-secondary ul {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 2rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .footer-main .footer-links-secondary ul {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-links-secondary ul {
    gap: 1rem 1.5rem;
  }
}
.footer-main .footer-links-secondary ul li {
  list-style: none;
}
.footer-main .footer-links-secondary ul li a {
  text-decoration: none;
}
.footer-main .footer-trademark {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .footer-main .footer-trademark {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-trademark {
    gap: 1.5rem;
  }
}
.footer-main .footer-trademark p, .footer-main .footer-trademark .btn, .footer-main .footer-trademark .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .footer-main .footer-trademark .wpcf7-list-item-label, .footer-main .footer-trademark .module-intro-hero__btn, .footer-main .footer-trademark .post .text-wrapper .categories .category, .post .text-wrapper .categories .footer-main .footer-trademark .category, .footer-main .footer-trademark .post .wp-block-button a, .post .wp-block-button .footer-main .footer-trademark a, .footer-main .footer-trademark .map-link, .footer-main .footer-trademark .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .footer-main .footer-trademark span, .footer-main .footer-trademark .blog-secondary-item__date {
  margin-bottom: 0;
  font-size: 1rem;
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-trademark p, .footer-main .footer-trademark .btn, .footer-main .footer-trademark .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .footer-main .footer-trademark .wpcf7-list-item-label, .footer-main .footer-trademark .module-intro-hero__btn, .footer-main .footer-trademark .post .text-wrapper .categories .category, .post .text-wrapper .categories .footer-main .footer-trademark .category, .footer-main .footer-trademark .post .wp-block-button a, .post .wp-block-button .footer-main .footer-trademark a, .footer-main .footer-trademark .map-link, .footer-main .footer-trademark .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .footer-main .footer-trademark span, .footer-main .footer-trademark .blog-secondary-item__date {
    font-size: 0.875rem;
  }
}
.footer-main .footer-trademark span {
  font-size: 1rem;
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-trademark span {
    font-size: 0.875rem;
  }
}
.footer-main .footer-trademark .scroll-to-top-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media only screen and (max-width: 768px) {
  .footer-main .footer-trademark .scroll-to-top-wrapper {
    width: 100%;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 576px) {
  .footer-main .footer-trademark .scroll-to-top-wrapper {
    justify-content: space-between;
  }
}
.footer-main .footer-trademark .scroll-to-top {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.62888rem;
  justify-content: center;
  align-items: center;
  gap: 0.62888rem;
  border-radius: 0.62888rem;
  border: none;
  outline: none;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.footer-main .footer-trademark .scroll-to-top:hover {
  background: rgba(27, 25, 23, 0.1);
}
.footer-main .footer-trademark .scroll-to-top svg {
  width: 0.8125rem;
  height: 0.8125rem;
  filter: invert(100%);
}

.hero-wrapper {
  position: relative;
  background: white;
  height: calc(100vh - 3.75rem);
  border-radius: 0 0 1.25rem 1.25rem;
  overflow: hidden;
}
.hero-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5rem;
  height: 25rem;
  z-index: 1;
  background: linear-gradient(0deg, var(--colors-brand-Primary-Darker, #0B388E) 0%, var(--colors-brand-Primary-Dark, rgba(12, 66, 166, 0.8)) 100%);
  filter: blur(150px);
  pointer-events: none;
}
.hero-wrapper .container-fluid {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}
.hero-wrapper .hero-content {
  position: absolute;
  bottom: 6.25rem;
  left: 5.5rem;
  padding-right: 0.25rem;
  background: transparent;
}
@media only screen and (max-width: 768px) {
  .hero-wrapper .hero-content {
    left: 2rem;
    bottom: 4.78rem;
  }
}
@media only screen and (max-width: 768px) {
  .hero-wrapper .hero-content {
    left: 1rem;
  }
}
.hero-wrapper .hero-bg {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  top: 0;
}
.hero-wrapper .hero-video-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: calc(100vh - 3.75rem);
  overflow: hidden;
}
@media screen and (min-height: 1401px) {
  .hero-wrapper .hero-video-wrapper .hero-video {
    height: 100%;
    width: unset;
  }
}
@media screen and (max-height: 1400px) {
  .hero-wrapper .hero-video-wrapper .hero-video {
    width: 100%;
    height: unset;
  }
}
@media only screen and (max-width: 1921px) {
  .hero-wrapper .hero-video-wrapper .hero-video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero-wrapper h1, .hero-wrapper h1 span, .hero-wrapper .is-h1 span, .hero-wrapper .is-h1 {
  color: #ffffff;
  padding-right: 0.5rem;
}
.hero-wrapper h1 span, .hero-wrapper .is-h1 span {
  display: inline-block;
  opacity: 0.6;
  margin-right: 0.5rem;
}

.btn, .form-radio .wpcf7-list-item .wpcf7-list-item-label, .module-intro-hero__btn, .post .text-wrapper .categories .category, .post .wp-block-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.75rem;
  padding: 0.875rem 1.125rem;
  border: #ffffff;
  transition: 0.25s ease-out;
}

.btn-large {
  padding: 0.5rem 1.8rem;
}
@media only screen and (max-width: 992px) {
  .btn-large {
    padding: 0.25rem 1.8rem;
  }
}

.btn-circle {
  border: thin solid #DCD7D2 !important;
  padding: 0.7rem;
  border-radius: 100%;
  height: 4rem;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 768px) {
  .btn-circle {
    height: 3.5rem;
    padding: 1.2rem;
  }
  .btn-circle img {
    max-height: 1rem;
  }
}

.btn-primary {
  background-color: #ffffff;
  border: #ffffff;
  color: #1055D7;
}
.btn-primary:hover {
  background-color: #ffffff;
  color: #1055D7;
  transition: 0.25s ease-in;
  opacity: 0.8;
}

.btn-secondary, .post .wp-block-button a {
  background-color: #ffffff;
  color: #1B1917;
  border-radius: var(--Radius-sm, 0.75rem);
  border: 1px solid var(--neutrals-Grey, #8D9096);
}
.btn-secondary:hover, .post .wp-block-button a:hover {
  background-color: #1055D7;
  color: #ffffff;
  transition: 0.25s ease-in;
  opacity: 0.8;
}

.btn-border-white, .form-radio .wpcf7-list-item .wpcf7-list-item-label {
  border: thin solid white !important;
}

.btn-info {
  text-transform: uppercase;
  background-color: grey;
  border: 2px solid grey;
}

.btn-transparent {
  background-color: transparent;
  color: #ffffff;
  border: thin solid white !important;
  backdrop-filter: blur(5px);
  transition: 0.25s ease-out;
}
.btn-transparent:hover {
  transition: 0.25s ease-in;
  background: #ffffff;
  color: #1B1917;
}

.active-btn {
  color: white;
  background-color: #111111 !important;
  border: thin solid #111111 !important;
}
.active-btn:hover {
  transition: 0.25s ease-in;
  filter: brightness(80%);
  color: white;
}

.active-btn-primary {
  background-color: #1055D7 !important;
  border: thin solid #1055D7 !important;
  color: white;
}
.active-btn-primary img {
  transition: 0.25s ease-in;
  transform: scale(1.07);
}
.active-btn-primary:hover {
  transition: 0.25s ease-in;
  filter: brightness(80%);
  color: white;
}

.hover-to-white:hover {
  border: 1px solid #1055D7;
  color: #1B1917 !important;
  background-color: #ffffff;
  transition: 0.25s ease-in;
}
.hover-to-white:hover svg {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(173deg) brightness(105%) contrast(102%);
  transition: 0.25s ease-in;
}

.with-left-svg svg {
  transition: 0.25s ease-out;
  height: 1.25rem;
  width: 1.25rem;
}

.btn-spacer {
  margin-right: 0.8rem;
}
@media (max-width: 575px) {
  .btn-spacer {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }
}

.w-unset {
  width: unset;
}

.card-button {
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
  padding: 1.125rem;
  justify-content: center;
  border: none;
  outline: none;
  align-items: center;
  border-radius: 31rem;
  background-color: #1055D7;
}
.card-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.rounded-btn, .square-btn {
  display: flex;
  border-radius: 20.83331rem;
  background: white;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-right: 0.7rem;
}
.rounded-btn img, .square-btn img {
  display: block;
  width: 1.33331rem;
  height: 1.33331rem;
}

.square-btn {
  display: flex;
  border-radius: 0.75rem;
}

.tabs-container {
  animation: 1.5s appear;
}

.nav-tabs {
  display: flex;
  gap: 1.7rem;
  margin-bottom: 5rem;
}
.nav-tabs .nav-item {
  width: unset;
}
@media only screen and (max-width: 576px) {
  .nav-tabs .nav-item {
    width: 100%;
  }
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: white !important;
  background-color: transparent;
  border-color: transparent transparent white !important;
  border-bottom: none;
  font-family: "DM Sans", sans-serif;
  border-bottom: 2px solid white;
}

.nav-link {
  font-family: "DM Sans", sans-serif;
  position: relative;
  padding-left: 0;
  padding-bottom: 1.5rem;
  color: #787878 !important;
  border-color: transparent transparent #787878 !important;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem; /* 115.385% */
  letter-spacing: -0.02438rem;
  max-width: 11.4375rem;
  min-width: 11.25rem;
  text-align: left;
  border-bottom: 2px solid #505050;
}
@media only screen and (max-width: 768px) {
  .nav-link {
    width: 100%;
  }
}

.tab-title {
  text-align: center;
  margin-bottom: 7rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 768px) {
  .tab-title {
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
  }
}

.nav-tabs {
  border: none;
}

.tab-pane {
  min-height: 20rem;
}
.tab-pane img {
  max-height: 30rem;
  padding: 1rem;
}

.loader-container {
  min-height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rotate {
  transform: rotate(180deg);
}

.card-with-changing-text {
  display: flex;
  padding: 3.75rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;
  background-color: #fff;
  color: #1055D7;
  align-self: stretch;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .card-with-changing-text {
    display: flex;
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5625rem;
  }
}

.team-card, .service-card {
  display: flex;
  padding: 2.4375rem 2rem;
  max-width: 17.75rem;
  max-height: -moz-fit-content;
  max-height: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
  border-radius: 2.5rem;
  color: #1B1917;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .team-card, .service-card {
    padding: 2.4375rem 2rem;
    width: 100%;
    max-width: unset;
    margin-bottom: 2.5rem;
  }
}
.team-card img, .service-card img {
  width: 100%;
  max-height: 11.875rem;
  border-radius: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .team-card img, .service-card img {
    max-height: unset;
  }
}
.team-card .card-info, .service-card .card-info {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.team-card .card-button, .service-card .card-button {
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
}
.team-card .card-button svg, .service-card .card-button svg {
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
}

.blurred-bg, .module-selector-card__badge {
  position: absolute;
  border-radius: var(--Radius-sm, 0.75rem);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  padding: 0.8125rem 1.1875rem;
  color: white;
  text-decoration: none;
}

.service-card img {
  width: 3.75rem !important;
  height: 3.75rem !important;
  border-radius: unset;
}
@media only screen and (max-width: 576px) {
  .service-card {
    display: flex;
    padding: 2.4375rem 2rem;
    align-items: center;
    gap: 2rem;
    flex-direction: row;
    border-radius: 1rem;
    background: #3C3C3C;
    color: white;
    width: 100%;
    max-width: unset;
    margin-bottom: 1rem;
  }
}

.info-card {
  display: flex;
  padding: 3.75rem 3.75rem 3.25rem 3.75rem;
  flex-direction: column;
  gap: 1.5625rem;
  align-self: stretch;
  border-radius: 2.5rem;
  background: #1055D7;
  color: white;
}
@media only screen and (max-width: 768px) {
  .info-card {
    padding: 3.75rem 1.5rem 3.25rem 1.5rem;
  }
}
.info-card a {
  display: flex;
  padding: 0.5rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  text-decoration: none;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(25deg) brightness(103%) contrast(101%);
  border-bottom: thin solid white;
}

.blue-card {
  background: #03030F !important;
}

.platform-card {
  display: flex;
  padding: 3rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.25rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}
.platform-card p, .platform-card .map-link, .platform-card .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .platform-card span, .platform-card .blog-secondary-item__date, .platform-card .btn, .platform-card .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .platform-card .wpcf7-list-item-label, .platform-card .module-intro-hero__btn, .platform-card .post .text-wrapper .categories .category, .post .text-wrapper .categories .platform-card .category, .platform-card .post .wp-block-button a, .post .wp-block-button .platform-card a {
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem; /* 115.385% */
  letter-spacing: -0.02438rem;
}

.modal-close {
  position: absolute;
  right: 1rem;
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
}

.modal {
  padding: 0;
}
.modal .btn-close {
  opacity: 1;
  background-color: transparent;
  border: thin solid #F9F9F9;
  border-radius: 0.75rem;
  position: absolute;
  right: 0.5rem;
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(177deg) brightness(105%) contrast(95%);
}
@media only screen and (max-width: 376px) {
  .modal .btn-close {
    right: 0.5rem;
    top: -1rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}
.modal .logo {
  height: 2.3rem;
}
@media only screen and (max-width: 768px) {
  .modal .logo {
    max-width: 7rem !important;
  }
}
.modal .subheading, .modal .modal-body h4, .modal-body .modal h4, .modal .timeline-section .timeline-label, .timeline-section .modal .timeline-label, .modal .post .post-toc__title, .post .modal .post-toc__title, .modal .platform-card h2, .platform-card .modal h2, .modal .platform-card .is-h2, .platform-card .modal .is-h2, .modal .platform-card .map-section h2 span, .platform-card .map-section h2 .modal span, .modal .map-section h2 .platform-card span, .map-section h2 .platform-card .modal span, .modal .platform-card .map-section .is-h2 span, .platform-card .map-section .is-h2 .modal span, .modal .map-section .is-h2 .platform-card span, .map-section .is-h2 .platform-card .modal span, .modal .platform-card .custom-map .left h2 span, .platform-card .custom-map .left h2 .modal span, .modal .custom-map .left h2 .platform-card span, .custom-map .left h2 .platform-card .modal span, .modal .platform-card .custom-map .left .is-h2 span, .platform-card .custom-map .left .is-h2 .modal span, .modal .custom-map .left .is-h2 .platform-card span, .custom-map .left .is-h2 .platform-card .modal span, .modal .platform-card h3, .platform-card .modal h3, .modal .platform-card h4, .platform-card .modal h4, .modal .platform-card h5, .platform-card .modal h5, .modal .platform-card .accordion-button, .platform-card .modal .accordion-button, .modal .platform-card .module-selector-card__name, .platform-card .modal .module-selector-card__name, .modal .platform-card h6, .modal .platform-card .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .modal .platform-card a, .modal .platform-card .module-tab-split-checklist-featured__box-title, .modal .platform-card .modules-selection-bar__count span, .modules-selection-bar__count .modal .platform-card span, .platform-card .modal h6, .platform-card .modal .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .platform-card .modal a, .platform-card .modal .module-tab-split-checklist-featured__box-title, .platform-card .modal .modules-selection-bar__count span, .modules-selection-bar__count .platform-card .modal span, .modal .platform-card .module-intro-features__tagline, .platform-card .modal .module-intro-features__tagline {
  line-height: 1;
  margin-bottom: 1.5rem;
}
.modal .modal-image-wrapper {
  width: 100%;
  background: #F9F9F9;
  border-radius: 1.25rem;
  min-height: 22.82931rem;
}
@media only screen and (max-width: 992px) {
  .modal .modal-image-wrapper {
    min-height: unset;
  }
}
.modal .modal-image-wrapper img {
  border-radius: 1.25rem;
}

.modal-backdrop {
  z-index: 0 !important;
}

.modal-content {
  background-color: #1055D7 !important;
  color: #fff;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .modal-content {
    padding: 0 1rem;
  }
}

.modal-content > * {
  transition: 0.1s ease-in-out;
}

.modal-body {
  padding: 0 0 5rem 0;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  .modal-body {
    padding-right: 1.5rem !important;
  }
}
.modal-body h3 {
  margin-bottom: 3.38rem;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem;
  letter-spacing: -0.05625rem;
}
.modal-body h4 {
  color: #A0A0A0;
  margin-bottom: 1rem;
}
.modal-body .modal-img {
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .modal-body .modal-img {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 576px) {
  .modal-body .btn, .modal-body .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .modal-body .wpcf7-list-item-label, .modal-body .module-intro-hero__btn, .modal-body .post .text-wrapper .categories .category, .post .text-wrapper .categories .modal-body .category, .modal-body .post .wp-block-button a, .post .wp-block-button .modal-body a {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .modal-body .contact-form-btn p, .modal-body .contact-form-btn .map-link, .modal-body .contact-form-btn .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .modal-body .contact-form-btn span, .modal-body .contact-form-btn .blog-secondary-item__date, .modal-body .contact-form-btn .btn, .modal-body .contact-form-btn .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .modal-body .contact-form-btn .wpcf7-list-item-label, .modal-body .contact-form-btn .module-intro-hero__btn, .modal-body .contact-form-btn .post .text-wrapper .categories .category, .post .text-wrapper .categories .modal-body .contact-form-btn .category, .modal-body .contact-form-btn .post .wp-block-button a, .post .wp-block-button .modal-body .contact-form-btn a {
    width: 100%;
  }
}

.contact-modal .modal-content {
  background-color: rgba(16, 85, 215, 0.8) !important;
  backdrop-filter: blur(15px);
}

.modal-header {
  position: relative;
  padding: 0;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: #A0A0A0;
  border-bottom: none;
  margin-bottom: 3.5rem;
}
.modal-header .modal-subtitle {
  font-size: 0.875rem;
  color: #A0A0A0;
  margin-bottom: 0;
}

#platformModal br {
  display: none;
}

.grid-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: 1.4rem;
}
.grid-boxes .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.25rem 1rem;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(21, 123, 242, 0.08);
  border-radius: 12px;
}
.grid-boxes .box img {
  margin-bottom: 1rem;
}
.grid-boxes .box span {
  line-height: 1.5rem;
  text-align: center;
  font-size: 1rem;
}

.form .form-group {
  margin-bottom: 2rem;
}
.form .form-check {
  display: flex;
  align-items: center;
  padding-left: 0;
}
.form .form-check input {
  width: 1.625rem;
  height: 1.625rem;
  margin-right: 1rem;
  transition: 0.3s;
}
@media only screen and (max-width: 576px) {
  .form .form-check input {
    width: 1em;
    height: 1em;
  }
}
.form .form-check input:checked {
  background-color: white;
  border: none;
  transition: 0.3s;
}
.form .form-check input:focus {
  box-shadow: none;
}
.form .form-control {
  margin-bottom: 1rem;
  color: white;
  padding: 1rem;
  min-height: 3.125rem;
  border: 1px solid var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5));
  background: transparent;
  border-radius: 0.75rem;
  font-size: 1rem;
}
.form .form-control::-moz-placeholder {
  color: white;
}
.form .form-control::placeholder {
  color: white;
}
.form .form-control {
  transition: 0.25s ease-out;
}
.form .form-control:focus {
  background: white;
  color: #1B1917 !important;
  transition: 0.25s ease-in;
  box-shadow: none;
}
@media only screen and (max-width: 768px) {
  .form .form-control {
    min-height: 2rem;
  }
}
.form .form-control option {
  color: white !important;
  background-color: #111111;
}
@media (max-width: 768px) {
  .form .form--contact h4 {
    text-align: left !important;
  }
}
.form .form--contact .small-textarea {
  height: 6.75rem;
}
.form .form--contact textarea {
  resize: none;
  height: 11.25rem;
  transition: 0.25s ease-in;
}
.form .form--contact textarea:focus {
  transition: 0.25s ease-in;
}

.form-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.form-radio .wpcf7-list-item {
  display: block;
  margin: 0;
  height: 3.125rem;
  position: relative;
}
.form-radio .wpcf7-list-item .wpcf7-list-item-label {
  padding: 1rem !important;
  width: unset !important;
  margin-left: 0;
}
.form-radio input[type=radio] {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-radio input[type=radio]:hover {
  cursor: pointer;
}
.form-radio input[type=radio]:checked + span {
  background: white;
  color: #1B1917;
}

.wpcf7-spinner {
  position: absolute !important;
  visibility: hidden;
  display: block !important;
  background-color: #23282d !important;
  width: 2rem !important;
  height: 2rem !important;
  border: thin solid white !important;
  border-radius: 100%;
  padding: 1rem !important;
  bottom: 1rem !important;
  right: 50% !important;
}

.wpcf7-response-output[aria-hidden=true] {
  background: white;
  padding: 2.3rem 2.6rem;
  border-radius: 12px;
  margin-top: 1rem;
}

.wpcf7-checkbox label {
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .wpcf7-checkbox label {
    max-width: 100%;
  }
}

.wpcf7-checkbox input[type=checkbox] {
  /*position: relative;*/
  position: absolute;
  visibility: hidden;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}

.wpcf7-checkbox input[type=checkbox] + span {
  /* border: 3px solid red; */
}

.wpcf7-checkbox input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 0.175rem;
  width: 1.125rem;
  height: 1.125rem;
  top: 0.275rem;
  left: 0;
  border: thin solid white;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background: transparent;
  padding: 1rem;
  color: #ffffff;
  border-color: #dc3232 !important;
  border-radius: 0.75rem;
  margin: 2rem 0.75rem;
}

.wpcf7-checkbox input[type=checkbox] + span:after {
  display: block;
  position: absolute;
  content: "\2713";
  color: #1055D7;
  width: 1.125rem;
  height: 1.125rem;
  top: 0.175rem;
  left: 0;
  visibility: hidden;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5rem;
}

.wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background: white;
}

.wpcf7-checkbox input[type=checkbox]:checked + span:after {
  visibility: visible;
}

.wpcf7-list-item-label {
  margin-left: 2rem;
  display: inline-block;
}

.wpcf7-response-output {
  display: none !important;
}

.success-message {
  width: 23.875rem;
}

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.form-checkboxes .wpcf7-list-item {
  margin: 0;
}
.form-checkboxes .wpcf7-list-item label {
  display: flex;
  height: 3.125rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: var(--Radius-sm, 0.75rem);
  border: 1px solid var(--colors-neutrals-White, #FFF);
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form-checkboxes .wpcf7-list-item label .wpcf7-list-item-label {
  margin: 0;
}
.form-checkboxes .wpcf7-list-item label .wpcf7-list-item-label:before {
  display: none;
}
.form-checkboxes .wpcf7-list-item label .wpcf7-list-item-label:after {
  display: none;
}
.form-checkboxes .wpcf7-list-item label input[type=checkbox] {
  display: none !important;
}
.form-checkboxes .wpcf7-list-item label:has(input:checked) {
  background: #fff;
  color: #2563EB;
  border-color: #fff;
}

.wpcf7-checkbox .wpcf7-list-item.disabled {
  opacity: 0.4;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.slider_images {
  display: none;
  overflow: hidden;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1200px) {
  .slider_images {
    display: flex;
    min-height: 15rem;
  }
}
.slider_images .swiper-wrapper {
  min-height: 15rem;
}
.slider_images .swiper-wrapper .swiper-slide:nth-child(odd) {
  margin-top: auto;
}
.slider_images .swiper-wrapper img {
  height: 13rem;
  width: auto;
}

.blog-slider .swiper-wrapper {
  height: unset;
}
@media only screen and (max-width: 768px) {
  .blog-slider .swiper-wrapper h5, .blog-slider .swiper-wrapper .accordion-button, .blog-slider .swiper-wrapper .module-selector-card__name {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .blog-slider .swiper-wrapper p, .blog-slider .swiper-wrapper .map-link, .blog-slider .swiper-wrapper .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .blog-slider .swiper-wrapper span, .blog-slider .swiper-wrapper .blog-secondary-item__date, .blog-slider .swiper-wrapper .btn, .blog-slider .swiper-wrapper .module-intro-hero__btn, .blog-slider .swiper-wrapper .post .text-wrapper .categories .category, .post .text-wrapper .categories .blog-slider .swiper-wrapper .category, .blog-slider .swiper-wrapper .post .wp-block-button a, .post .wp-block-button .blog-slider .swiper-wrapper a, .blog-slider .swiper-wrapper .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .blog-slider .swiper-wrapper .wpcf7-list-item-label {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .blog-slider .swiper-wrapper img {
    max-height: 9.4rem;
  }
}

.slider__single-trigger {
  display: flex;
  align-items: center;
  font-weight: 900;
  text-decoration: none;
  opacity: 0.3;
  margin-bottom: 3.75rem;
}
.slider__single-trigger:before {
  position: absolute;
  content: "";
  display: block;
  flex-shrink: 0;
  bottom: 1.5rem;
  height: 3rem;
  transition: 0.3s;
}
.slider__single-trigger:hover {
  text-decoration: none;
  opacity: 1;
}
.slider__single-trigger.active {
  opacity: 1;
}
.slider__single-trigger.active:before {
  width: 60%;
  background: url(../img/underline-big.svg) center no-repeat;
  transform: scale(1);
  transition: 0.3s;
}

.swiper-container.slider__triggers {
  overflow: hidden;
}
.swiper-container.slider__triggers .swiper-wrapper {
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .swiper-container.slider__triggers .swiper-wrapper {
    gap: 2rem;
  }
}
.swiper-container.slider__triggers .swiper-wrapper .swiper-slide {
  width: auto;
  margin: 0;
}
.swiper-container.slider__single .swiper-wrapper .swiper-slide .text p:last-child, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .map-link:last-child, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .swiper-container.slider__single .swiper-wrapper .swiper-slide .text span:last-child, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .blog-secondary-item__date:last-child, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .btn:last-child, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .module-intro-hero__btn:last-child, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .category:last-child, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .post .wp-block-button a:last-child, .post .wp-block-button .swiper-container.slider__single .swiper-wrapper .swiper-slide .text a:last-child, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .swiper-container.slider__single .swiper-wrapper .swiper-slide .text .wpcf7-list-item-label:last-child {
  margin: 0;
  flex: 1;
}
.swiper-container.slider__single .swiper-wrapper .swiper-slide .text ul {
  list-style: disc;
}
.swiper-container.slider__single .swiper-wrapper .swiper-slide .text ul, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text ol {
  margin: 0 0 2rem;
  padding: 0 0 0 2.5rem;
}
.swiper-container.slider__single .swiper-wrapper .swiper-slide .text ul li, .swiper-container.slider__single .swiper-wrapper .swiper-slide .text ol li {
  margin: 0 0 1.25rem !important;
}
.swiper-container.slider__single .swiper-wrapper .swiper-slide .img {
  position: absolute;
  top: -2.8rem;
  right: -4.8rem;
  width: 25rem;
  height: 23rem;
  z-index: -1;
}
.swiper-container.slider__single .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media only screen and (max-width: 992px) {
  .slider__single-trigger {
    text-wrap: nowrap;
  }
  ul.slider-triggers {
    margin: 0 0 2rem;
  }
  ul.slider-triggers li a {
    margin: 0 0 1.2rem;
  }
  .swiper-container.slider__triggers .swiper-wrapper {
    flex-direction: row;
  }
  .swiper-container.slider__single .text {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
  }
  .swiper-container.slider__single .img {
    width: 100% !important;
    height: unset !important;
    position: relative !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    padding-bottom: 40% !important;
    margin: 0 0 2rem;
  }
  .swiper-container.slider__single .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.services-slider {
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .services-slider {
    padding-left: 0;
  }
}
.services-slider .swiper-slide {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.swiper-nav {
  display: flex;
  width: 20%;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.38rem;
}
.swiper-nav img {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) saturate(100%);
}
.swiper-nav img:last-of-type {
  transform: rotate(180deg);
}
.swiper-nav .swiper-button-disabled {
  visibility: hidden;
}

.partners-slider {
  overflow: hidden;
  position: relative;
  margin: 2rem 0 0;
}
.partners-slider .swiper-wrapper .swiper-slide {
  display: flex;
  width: 11.875rem;
  height: 4.375rem;
  padding: var(--padding-xl, 1.25rem) 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  border-radius: var(--radius-md, 0.625rem);
  background: var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.5));
}
.partners-slider .swiper-pagination-bullet-active {
  height: 0.25rem !important;
  width: 0.75rem !important;
  border-radius: 0.3rem;
  background-color: #8D9096 !important;
}
.partners-slider .swiper-pagination-bullet {
  height: 0.25rem;
  width: 0.25rem;
  border-radius: 0.3rem;
  background-color: #A89B93;
}

.platform-svg {
  width: 100%;
  height: 100%;
}
.platform-svg .visibility_path,
.platform-svg .system_path,
.platform-svg .contractors_path,
.platform-svg .labor_path,
.platform-svg .fleet_path,
.platform-svg .automatic_driving_path,
.platform-svg .sustainability_path {
  opacity: 0;
  stroke: white;
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: opacity 0.5s ease, stroke-dashoffset 2s ease;
}
.platform-svg .active_path {
  opacity: 1 !important;
  stroke-dashoffset: 0;
}
.platform-svg .node {
  fill: #9E78FF;
  stroke: white;
  paint-order: stroke;
  stroke-width: 15;
  opacity: 1;
  transition: fill 0.3s ease, stroke 0.3s ease, opacity 0.3s ease;
}
.platform-svg .node:hover {
  fill: white !important;
  stroke: white !important;
  stroke-opacity: 0.2 !important;
  stroke-width: 15 !important;
  cursor: pointer;
  opacity: 1 !important;
}
.platform-svg .outer-node:hover {
  fill: white !important;
  stroke: white !important;
  stroke-opacity: 0.1 !important;
  stroke-width: 7 !important;
  cursor: pointer;
  opacity: 1 !important;
}
.platform-svg .active_text {
  fill: #111111;
  opacity: 1 !important;
  transition: fill 0.3s ease, opacity 0.3s ease;
}
.platform-svg .inactive_text {
  fill: white !important;
  transition: fill 0.3s ease, opacity 0.3s ease;
}
.platform-svg .inactive_text:hover {
  cursor: pointer;
}
.platform-svg .inactive_rect {
  fill: #3C3C3C;
  transition: fill 0.3s ease;
}
.platform-svg .inactive_rect:hover {
  cursor: pointer;
}
.platform-svg .active_node {
  fill: white !important;
  stroke: white !important;
  stroke-opacity: 0.2 !important;
  stroke-width: 15 !important;
  opacity: 1 !important;
  transition: fill 0.3s ease, stroke 0.3s ease, opacity 0.3s ease;
}
.platform-svg .inactive_node {
  fill: #787878 !important;
  stroke: white !important;
  stroke-opacity: 0 !important;
  stroke-width: 0 !important;
  transition: fill 0.3s ease, stroke 0.3s ease, opacity 0.3s ease;
}
.platform-svg .inactive {
  opacity: 0.3 !important;
  fill: #787878 !important;
  transition: opacity 0.3s ease, fill 0.3s ease;
}

.hover-inner, html:has(.multiple_system_integration_text:hover) .multiple_system_integration, html:has(.multiple_system_integration_rect:hover) .multiple_system_integration, html:has(.multiple_contractors_text:hover) .multiple_contractors, html:has(.multiple_contractors_rect:hover) .multiple_contractors, html:has(.labor_shortage_text:hover) .labor_shortage, html:has(.labor_shortage_rect:hover) .labor_shortage, html:has(.fleet_utilization_text:hover) .fleet_utilization, html:has(.fleet_utilization_rect:hover) .fleet_utilization, html:has(.autonomous_driving_text:hover) .autonomous_driving, html:has(.autonomous_driving_rect:hover) .autonomous_driving, html:has(.sustainability_text:hover) .sustainability, html:has(.sustainability_rect:hover) .sustainability, html:has(.visibility_text:hover) .visibility, html:has(.visibility_rect:hover) .visibility {
  fill: white !important;
  stroke: white !important;
  stroke-opacity: 0.2 !important;
  stroke-width: 15 !important;
  cursor: pointer;
  opacity: 1 !important;
}

.hover-inner-rect {
  fill: white !important;
}

.hover-inner-text, html:has(.multiple_system_integration:hover) .multiple_system_integration_rect, html:has(.multiple_contractors:hover) .multiple_contractors_rect, html:has(.labor_shortage:hover) .labor_shortage_rect, html:has(.fleet_utilization:hover) .fleet_utilization_rect, html:has(.autonomous_driving:hover) .autonomous_driving_rect, html:has(.sustainability:hover) .sustainability_rect, html:has(.visibility:hover) .visibility_rect {
  fill: grey;
  stroke: #111;
  stroke-opacity: 0.1 !important;
  stroke-width: 2px !important;
  cursor: pointer;
  opacity: 1 !important;
  transition: opacity 0.3s ease, fill 0.3s ease;
}

.hover-outer, html:has(.value_added_services:hover) .value_added_services, html:has(.state_of_the_art:hover) .state_of_the_art, html:has(.single_point_of_contact:hover) .single_point_of_contact, html:has(.single_contracting_partner:hover) .single_contracting_partner, html:has(.simple_workflows:hover) .simple_workflows, html:has(.route_optimisation:hover) .route_optimisation, html:has(.real_time_data:hover) .real_time_data, html:has(.ratings:hover) .ratings, html:has(.price_transparency:hover) .price_transparency, html:has(.predictions:hover) .predictions, html:has(.predictive_intelligence:hover) .predictive_intelligence, html:has(.one_ssot:hover) .one_ssot, html:has(.machine_learning:hover) .machine_learning, html:has(.kpis:hover) .kpis, html:has(.global_web_access:hover) .global_web_access, html:has(.eco_mode:hover) .eco_mode, html:has(.digital_process:hover) .digital_process, html:has(.troubleshooting:hover) .troubleshooting, html:has(.easy_integration:hover) .easy_integration, html:has(.digital_documents:hover) .digital_documents, html:has(.direct_access:hover) .direct_access, html:has(.customised_offers:hover) .customised_offers, html:has(.compensation:hover) .compensation, html:has(.co2_value:hover) .co2_value, html:has(.automatic_billing:hover) .automatic_billing, html:has(.automatic_planning:hover) .automatic_planning, html:has(.api:hover) .api, html:has(.ad_hoc:hover) .ad_hoc, html:has(.easy_entry:hover) .easy_entry {
  fill: white !important;
  stroke: white !important;
  stroke-opacity: 0.1 !important;
  stroke-width: 7 !important;
  cursor: pointer;
  opacity: 1 !important;
}

#myMap .line {
  opacity: 0; /* Hide the paths */
  transition: opacity 0.5s ease, stroke-dashoffset 2s ease;
}

.vcf-slider {
  --vcf-max-width: 64.5rem;
  --vcf-height: 35rem;
  --vcf-mask-start: 60%;
  --vcf-mask-mid: 75%;
  --vcf-card-bg: #ffffff;
  --vcf-card-border: #e8ecf1;
  --vcf-card-border-active: #d0d8e2;
  --vcf-card-radius: 1.25rem;
  --vcf-card-padding: 1.4rem 1.6rem;
  --vcf-card-shadow: 0 4px 8px 0 rgba(2, 5, 10, 0.04);
  --vcf-color-heading: #111111;
  --vcf-color-body: #111111;
  --vcf-indicator-size: 0.4rem;
  --vcf-indicator-radius: 0.1rem;
  --vcf-indicator-color: #1a1a2e;
  --vcf-icon-size: 7.5rem;
  --vcf-icon-radius: 0.625rem;
  --vcf-icon-img-size: 3.375rem;
  --vcf-title-size: 0.9rem;
  --vcf-title-size-inactive: 0.8rem;
  --vcf-body-size: 0.75rem;
  --vcf-inactive-opacity: 0.8;
  --vcf-transition-speed: 0.4s;
}
@media only screen and (max-width: 768px) {
  .vcf-slider {
    --vcf-max-width: 100%;
    --vcf-height: 22rem;
    --vcf-card-padding: 1.125rem 1.25rem;
    --vcf-card-radius: 1rem;
    --vcf-icon-size: 4rem;
    --vcf-icon-radius: 0.5rem;
    --vcf-icon-img-size: 2rem;
    --vcf-title-size: 0.875rem;
    --vcf-title-size-inactive: 0.8rem;
    --vcf-body-size: 0.75rem;
    --vcf-inactive-opacity: 0.2;
  }
}
@media only screen and (max-width: 576px) {
  .vcf-slider {
    --vcf-height: 25rem;
    --vcf-card-padding: 1.5rem;
    --vcf-icon-size: 3rem;
    --vcf-icon-img-size: 1.5rem;
    --vcf-title-size: 0.8125rem;
    --vcf-title-size-inactive: 0.75rem;
    --vcf-body-size: 0.6875rem;
    --vcf-indicator-size: 0.3rem;
  }
}
@media only screen and (max-width: 475px) {
  .vcf-slider {
    --vcf-icon-size: 2.5rem;
    --vcf-icon-img-size: 1.25rem;
    --vcf-title-size: 0.75rem;
    --vcf-body-size: 0.625rem;
  }
}
@media only screen and (max-width: 376px) {
  .vcf-slider {
    --vcf-card-padding: 0.75rem;
    --vcf-icon-size: 2.25rem;
    --vcf-icon-img-size: 1.125rem;
  }
}

.vcf-slider__wrap {
  position: relative;
  width: 100%;
  max-width: var(--vcf-max-width);
  height: var(--vcf-height);
  overflow: hidden;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .vcf-slider__wrap {
    padding: 0 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .vcf-slider__wrap {
    padding: 0 0.5rem;
  }
}
.vcf-slider__swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.vcf-slider__swiper .swiper-slide {
  height: auto;
  transition: opacity var(--vcf-transition-speed) ease, transform var(--vcf-transition-speed) ease;
}

.vcf-slider__card {
  display: block;
  background: var(--vcf-card-bg);
  border-radius: var(--vcf-card-radius);
  padding: var(--vcf-card-padding);
  transition: box-shadow var(--vcf-transition-speed) ease, border-color var(--vcf-transition-speed) ease;
  cursor: pointer;
  box-shadow: var(--vcf-card-shadow);
}
.swiper-slide-active .vcf-slider__card {
  border-color: var(--vcf-card-border-active);
  box-shadow: var(--vcf-card-shadow);
}
.swiper-slide:not(.swiper-slide-active) .vcf-slider__card {
  opacity: var(--vcf-inactive-opacity);
}

.vcf-slider__body {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .vcf-slider__body {
    gap: 0.875rem;
  }
}
@media only screen and (max-width: 576px) {
  .vcf-slider__body {
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 475px) {
  .vcf-slider__body {
    gap: 0.625rem;
  }
}

.vcf-slider__indicator {
  flex-shrink: 0;
  width: var(--vcf-indicator-size);
  height: var(--vcf-indicator-size);
  border-radius: var(--vcf-indicator-radius);
  background: var(--vcf-indicator-color);
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .vcf-slider__indicator {
    margin-top: 0.4rem;
  }
}
@media only screen and (max-width: 576px) {
  .vcf-slider__indicator {
    margin-top: 0.3rem;
  }
}
@media only screen and (max-width: 475px) {
  .vcf-slider__indicator {
    display: none;
  }
}

.vcf-slider__content {
  flex: 1;
  min-width: 0;
}

.vcf-slider__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: inherit;
  z-index: 2;
  transition: color var(--vcf-transition-speed) ease;
}
@media only screen and (max-width: 576px) {
  .vcf-slider__link {
    gap: 0.25rem;
  }
}
.vcf-slider__link:hover, .vcf-slider__link:focus {
  text-decoration: underline;
  color: inherit;
}

.vcf-slider__title {
  margin: 0 0 1.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media only screen and (max-width: 768px) {
  .vcf-slider__title {
    margin-bottom: 1.25rem;
    gap: 0.3rem;
  }
}
@media only screen and (max-width: 576px) {
  .vcf-slider__title {
    margin-bottom: 1rem;
    gap: 0.25rem;
  }
}
@media only screen and (max-width: 475px) {
  .vcf-slider__title {
    margin-bottom: 0.75rem;
  }
}
.vcf-slider__arrow {
  display: inline-flex;
  align-items: center;
  color: var(--vcf-color-heading);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .vcf-slider__arrow svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}
@media only screen and (max-width: 576px) {
  .vcf-slider__arrow svg {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.swiper-slide-active .vcf-slider__arrow {
  opacity: 1;
}

.vcf-slider__text {
  font-size: var(--vcf-body-size);
  color: var(--vcf-color-body);
  max-height: 0;
  opacity: 1;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}
.vcf-slider__text p, .vcf-slider__text .map-link, .vcf-slider__text .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .vcf-slider__text span, .vcf-slider__text .blog-secondary-item__date, .vcf-slider__text .btn, .vcf-slider__text .module-intro-hero__btn, .vcf-slider__text .post .text-wrapper .categories .category, .post .text-wrapper .categories .vcf-slider__text .category, .vcf-slider__text .post .wp-block-button a, .post .wp-block-button .vcf-slider__text a, .vcf-slider__text .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .vcf-slider__text .wpcf7-list-item-label {
  margin: 0;
}
@media only screen and (max-width: 576px) {
  .vcf-slider__text {
    line-height: 1.4;
  }
}
.swiper-slide-active .vcf-slider__text {
  max-height: 10rem;
  opacity: 1;
}

.vcf-slider__icon {
  flex-shrink: 0;
  width: var(--vcf-icon-size);
  height: var(--vcf-icon-size);
  border-radius: var(--vcf-icon-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--vcf-transition-speed) ease, transform var(--vcf-transition-speed) ease;
  opacity: 0.3;
}
.vcf-slider__icon img {
  width: var(--vcf-icon-img-size);
  height: var(--vcf-icon-img-size);
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.swiper-slide-active .vcf-slider__icon {
  opacity: 1;
}
@media only screen and (max-width: 376px) {
  .vcf-slider__icon {
    display: none;
  }
}

@media only screen and (max-width: 376px) {
  .vcf-slider__body {
    flex-direction: column;
    gap: 0.5rem;
  }
  .vcf-slider__indicator {
    display: none;
  }
  .vcf-slider__title {
    margin-bottom: 0.5rem;
  }
  .swiper-slide {
    overflow: hidden;
  }
}
.modules-selection-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: var(--padding-xxl, 2.25rem) 0;
  pointer-events: none;
  border-radius: var(--radius-xl, 1.25rem) var(--radius-xl, 1.25rem) 0 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.modules-selection-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.modules-selection-bar.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.modules-selection-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.modules-selection-bar__info {
  flex: 1;
  min-width: 0;
}
.modules-selection-bar__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  color: var(--colors-neutrals-Grey, #8D9096);
  line-height: 1.4;
}
@media (max-width: 640px) {
  .modules-selection-bar__subtitle {
    font-size: 0.8125rem;
  }
}
@media (max-width: 400px) {
  .modules-selection-bar__subtitle {
    display: none;
  }
}
.modules-selection-bar__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.875rem 1.125rem;
}
.modules-selection-bar__cta svg {
  width: 0.6875rem;
  height: 0.6875rem;
  aspect-ratio: 1/1;
}
@media (max-width: 640px) {
  .modules-selection-bar {
    padding: 1rem 0;
  }
}

body.has-selection-bar {
  padding-bottom: 5.5rem;
}
@media (max-width: 640px) {
  body.has-selection-bar {
    padding-bottom: 4.5rem;
  }
}

.module-tab-overview {
  position: relative;
}
.module-tab-overview .row {
  align-items: stretch;
  min-height: 25rem;
}
@media only screen and (max-width: 992px) {
  .module-tab-overview .row {
    min-height: 20rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-overview .row {
    min-height: auto;
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-overview .row {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-overview__content {
    padding-top: 0;
  }
}
.module-tab-overview__tagline {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 992px) {
  .module-tab-overview__tagline {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-overview__tagline {
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 992px) {
  .module-tab-overview__headline {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-overview__headline {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-overview__headline {
    font-size: 1.5rem;
  }
}
.module-tab-overview__description {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 992px) {
  .module-tab-overview__description {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-overview__description {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .module-tab-overview__description p, .module-tab-overview__description .map-link, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span, .module-tab-overview__description .blog-secondary-item__date, .module-tab-overview__description .btn, .module-tab-overview__description .module-intro-hero__btn, .module-tab-overview__description .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-tab-overview__description .category, .module-tab-overview__description .post .wp-block-button a, .post .wp-block-button .module-tab-overview__description a, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-overview__description p, .module-tab-overview__description .map-link, .module-tab-overview__description .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-tab-overview__description span, .module-tab-overview__description .blog-secondary-item__date, .module-tab-overview__description .btn, .module-tab-overview__description .module-intro-hero__btn, .module-tab-overview__description .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-tab-overview__description .category, .module-tab-overview__description .post .wp-block-button a, .post .wp-block-button .module-tab-overview__description a, .module-tab-overview__description .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-overview__description .wpcf7-list-item-label {
    font-size: 0.9375rem;
  }
}
.module-tab-overview__sub-description {
  opacity: 0.6;
}
@media only screen and (max-width: 992px) {
  .module-tab-overview__sub-description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-overview__sub-description {
    font-size: 0.875rem;
  }
}
.module-tab-overview__image {
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .module-tab-overview__image {
    height: auto;
    max-height: 20rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-overview__image {
    max-height: 16rem;
  }
}
.module-tab-overview__image img {
  border-radius: var(--radius-xl, 1.25rem);
  width: 100%;
  height: 100%;
  max-height: 40rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 992px) {
  .module-tab-overview__image img {
    border-radius: 1rem;
    max-height: 32rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-overview__image img {
    max-height: 20rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-overview__image img {
    border-radius: 0.75rem;
    max-height: 16rem;
  }
}

.module-tab-split-checklist .row {
  align-items: stretch;
  min-height: 31.03875rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist .row {
    min-height: 26rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist .row {
    min-height: auto;
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist .row {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist__content {
    margin-bottom: 0;
  }
}
.module-tab-split-checklist__title {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist__title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.module-tab-split-checklist__description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__description {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-checklist__description p:last-child, .module-tab-split-checklist__description .map-link:last-child, .module-tab-split-checklist__description .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-checklist__description span:last-child, .module-tab-split-checklist__description .blog-secondary-item__date:last-child, .module-tab-split-checklist__description .btn:last-child, .module-tab-split-checklist__description .module-intro-hero__btn:last-child, .module-tab-split-checklist__description .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-checklist__description .category:last-child, .module-tab-split-checklist__description .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-checklist__description a:last-child, .module-tab-split-checklist__description .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-checklist__description .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-checklist__sub-description {
  opacity: 0.6;
  margin-top: auto;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__sub-description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist__sub-description {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__sub-description {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-checklist__box {
  border-radius: var(--radius-xl, 1.25rem);
  background: var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
  padding: var(--padding-xxl, 2.25rem);
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__box {
    padding: 1.75rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist__box {
    height: auto;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__box {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
}
.module-tab-split-checklist__box-title {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__box-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__box-title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
}
.module-tab-split-checklist__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__list {
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__list {
    gap: 0.625rem;
  }
}
.module-tab-split-checklist__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__item {
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__item {
    gap: 0.625rem;
    align-items: flex-start;
  }
}
.module-tab-split-checklist__item:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__item:not(:last-child) {
    padding-bottom: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__item:not(:last-child) {
    padding-bottom: 0.625rem;
  }
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__item-text {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__item-text {
    font-size: 0.875rem;
  }
}
.module-tab-split-checklist__item-text p:last-child, .module-tab-split-checklist__item-text .map-link:last-child, .module-tab-split-checklist__item-text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-checklist__item-text span:last-child, .module-tab-split-checklist__item-text .blog-secondary-item__date:last-child, .module-tab-split-checklist__item-text .btn:last-child, .module-tab-split-checklist__item-text .module-intro-hero__btn:last-child, .module-tab-split-checklist__item-text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-checklist__item-text .category:last-child, .module-tab-split-checklist__item-text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-checklist__item-text a:last-child, .module-tab-split-checklist__item-text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-checklist__item-text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-checklist__item-text a {
  color: inherit;
  text-decoration: underline;
}
.module-tab-split-checklist__check-icon {
  flex-shrink: 0;
  color: currentColor;
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__check-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__check-icon {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.125rem;
  }
}
.module-tab-split-checklist__bottom-text {
  margin-top: 2rem;
  font-size: 0.875rem;
  opacity: 0.8;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__bottom-text {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__bottom-text {
    margin-top: 1rem;
    font-size: 0.8125rem;
  }
}
.module-tab-split-checklist__bottom-text p:last-child, .module-tab-split-checklist__bottom-text .map-link:last-child, .module-tab-split-checklist__bottom-text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-checklist__bottom-text span:last-child, .module-tab-split-checklist__bottom-text .blog-secondary-item__date:last-child, .module-tab-split-checklist__bottom-text .btn:last-child, .module-tab-split-checklist__bottom-text .module-intro-hero__btn:last-child, .module-tab-split-checklist__bottom-text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-checklist__bottom-text .category:last-child, .module-tab-split-checklist__bottom-text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-checklist__bottom-text a:last-child, .module-tab-split-checklist__bottom-text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-checklist__bottom-text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-checklist--multi .row {
  min-height: unset;
}
.module-tab-split-checklist--multi .module-tab-split-checklist__title {
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .module-tab-split-checklist--multi .module-tab-split-checklist__title {
    margin-bottom: 1rem;
  }
}
.module-tab-split-checklist__row {
  padding: 2.25rem 0;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist__row {
    padding: 1.75rem 0;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist__row {
    padding: 1.25rem 0;
  }
}
.module-tab-split-checklist__row:first-child {
  padding-top: 0;
}
.module-tab-split-checklist__row:last-child {
  padding-bottom: 0;
}

.module-tab-split-checklist-featured .row {
  align-items: stretch;
  min-height: 31.03875rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured .row {
    min-height: 26rem;
  }
}
@media only screen and (max-width: 992px) {
  .module-tab-split-checklist-featured .row {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist-featured .row {
    min-height: auto;
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured .row {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist-featured__content {
    margin-bottom: 0;
  }
}
.module-tab-split-checklist-featured__title {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist-featured__title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.module-tab-split-checklist-featured__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__list {
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__list {
    gap: 0.625rem;
  }
}
.module-tab-split-checklist-featured__list--box {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__list--box {
    margin-top: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__list--box {
    margin-top: 1rem;
  }
}
.module-tab-split-checklist-featured__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__item {
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__item {
    gap: 0.625rem;
    align-items: flex-start;
  }
}
.module-tab-split-checklist-featured__item:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__item:not(:last-child) {
    padding-bottom: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__item:not(:last-child) {
    padding-bottom: 0.625rem;
  }
}
.module-tab-split-checklist-featured__check-icon {
  flex-shrink: 0;
  color: currentColor;
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__check-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__check-icon {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.125rem;
  }
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__item-text {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__item-text {
    font-size: 0.875rem;
  }
}
.module-tab-split-checklist-featured__item-text p:last-child, .module-tab-split-checklist-featured__item-text .map-link:last-child, .module-tab-split-checklist-featured__item-text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-checklist-featured__item-text span:last-child, .module-tab-split-checklist-featured__item-text .blog-secondary-item__date:last-child, .module-tab-split-checklist-featured__item-text .btn:last-child, .module-tab-split-checklist-featured__item-text .module-intro-hero__btn:last-child, .module-tab-split-checklist-featured__item-text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-checklist-featured__item-text .category:last-child, .module-tab-split-checklist-featured__item-text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-checklist-featured__item-text a:last-child, .module-tab-split-checklist-featured__item-text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-checklist-featured__item-text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-checklist-featured__item-text a {
  color: inherit;
  text-decoration: underline;
}
.module-tab-split-checklist-featured__sub-description {
  opacity: 0.6;
  margin-top: auto;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__sub-description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist-featured__sub-description {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__sub-description {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-checklist-featured__sub-description p:last-child, .module-tab-split-checklist-featured__sub-description .map-link:last-child, .module-tab-split-checklist-featured__sub-description .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-checklist-featured__sub-description span:last-child, .module-tab-split-checklist-featured__sub-description .blog-secondary-item__date:last-child, .module-tab-split-checklist-featured__sub-description .btn:last-child, .module-tab-split-checklist-featured__sub-description .module-intro-hero__btn:last-child, .module-tab-split-checklist-featured__sub-description .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-checklist-featured__sub-description .category:last-child, .module-tab-split-checklist-featured__sub-description .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-checklist-featured__sub-description a:last-child, .module-tab-split-checklist-featured__sub-description .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-checklist-featured__sub-description .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-checklist-featured__sub-description a {
  color: inherit;
  text-decoration: underline;
}
.module-tab-split-checklist-featured__box {
  border-radius: var(--radius-xl, 1.25rem);
  background: var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
  padding: var(--padding-xxl, 2.25rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__box {
    padding: 1.75rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-checklist-featured__box {
    height: auto;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__box {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
}
.module-tab-split-checklist-featured__box-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__box-header {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__box-header {
    flex-direction: column-reverse;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
.module-tab-split-checklist-featured__box-title {
  flex: 1;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__box-title {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__box-title {
    font-size: 0.9375rem;
  }
}
.module-tab-split-checklist-featured__box-title p:last-child, .module-tab-split-checklist-featured__box-title .map-link:last-child, .module-tab-split-checklist-featured__box-title .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-checklist-featured__box-title span:last-child, .module-tab-split-checklist-featured__box-title .blog-secondary-item__date:last-child, .module-tab-split-checklist-featured__box-title .btn:last-child, .module-tab-split-checklist-featured__box-title .module-intro-hero__btn:last-child, .module-tab-split-checklist-featured__box-title .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-checklist-featured__box-title .category:last-child, .module-tab-split-checklist-featured__box-title .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-checklist-featured__box-title a:last-child, .module-tab-split-checklist-featured__box-title .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-checklist-featured__box-title .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-checklist-featured__box-title a {
  color: inherit;
  text-decoration: underline;
}
.module-tab-split-checklist-featured__box-logo {
  flex-shrink: 0;
  max-width: 100px;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__box-logo {
    max-width: 80px;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__box-logo {
    max-width: 70px;
  }
}
.module-tab-split-checklist-featured__box-logo img {
  width: auto;
  height: auto;
  max-height: 5.48206rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__box-logo img {
    max-height: 4.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__box-logo img {
    max-height: 3.5rem;
  }
}
.module-tab-split-checklist-featured__box-description {
  margin-bottom: 1rem;
  opacity: 0.6;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__box-description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__box-description {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-checklist-featured__box-description p:last-child, .module-tab-split-checklist-featured__box-description .map-link:last-child, .module-tab-split-checklist-featured__box-description .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-checklist-featured__box-description span:last-child, .module-tab-split-checklist-featured__box-description .blog-secondary-item__date:last-child, .module-tab-split-checklist-featured__box-description .btn:last-child, .module-tab-split-checklist-featured__box-description .module-intro-hero__btn:last-child, .module-tab-split-checklist-featured__box-description .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-checklist-featured__box-description .category:last-child, .module-tab-split-checklist-featured__box-description .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-checklist-featured__box-description a:last-child, .module-tab-split-checklist-featured__box-description .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-checklist-featured__box-description .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-checklist-featured__box-bottom-text {
  margin-top: auto;
  padding-top: 2.25rem;
  opacity: 0.6;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-checklist-featured__box-bottom-text {
    padding-top: 1.5rem;
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-checklist-featured__box-bottom-text {
    padding-top: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-checklist-featured__box-bottom-text p:last-child, .module-tab-split-checklist-featured__box-bottom-text .map-link:last-child, .module-tab-split-checklist-featured__box-bottom-text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-checklist-featured__box-bottom-text span:last-child, .module-tab-split-checklist-featured__box-bottom-text .blog-secondary-item__date:last-child, .module-tab-split-checklist-featured__box-bottom-text .btn:last-child, .module-tab-split-checklist-featured__box-bottom-text .module-intro-hero__btn:last-child, .module-tab-split-checklist-featured__box-bottom-text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-checklist-featured__box-bottom-text .category:last-child, .module-tab-split-checklist-featured__box-bottom-text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-checklist-featured__box-bottom-text a:last-child, .module-tab-split-checklist-featured__box-bottom-text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-checklist-featured__box-bottom-text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-checklist-featured__box-bottom-text a {
  color: inherit;
  text-decoration: underline;
}

.module-tab-success-stories__header {
  margin-bottom: 2.25rem;
}
.module-tab-success-stories__title {
  margin-bottom: 2.25rem;
}
.module-tab-success-stories__description {
  margin-bottom: 0;
}
.module-tab-success-stories__cases {
  margin-bottom: 2.25rem;
}
.module-tab-success-stories__case {
  border-radius: var(--radius-xl, 1.25rem);
  border: 1px solid var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
  height: 100%;
  display: flex;
  padding: var(--padding-xxl, 2.25rem);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--padding-xxl, 2.25rem);
  flex: 1 0 0;
  align-self: stretch;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}
.module-tab-success-stories__case:hover, .module-tab-success-stories__case.active {
  background: var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
}
.module-tab-success-stories__case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  align-self: stretch;
}
.module-tab-success-stories__case-number {
  width: 2rem;
  height: 2rem;
  padding: var(--padding-sm, 0.625rem);
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--neutrals-Trans-2, rgba(255, 255, 255, 0.1));
}
.module-tab-success-stories__case-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-tab-success-stories__case-title p, .module-tab-success-stories__case-title .map-link, .module-tab-success-stories__case-title .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-tab-success-stories__case-title span, .module-tab-success-stories__case-title .blog-secondary-item__date, .module-tab-success-stories__case-title .btn, .module-tab-success-stories__case-title .module-intro-hero__btn, .module-tab-success-stories__case-title .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-tab-success-stories__case-title .category, .module-tab-success-stories__case-title .post .wp-block-button a, .post .wp-block-button .module-tab-success-stories__case-title a, .module-tab-success-stories__case-title .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-success-stories__case-title .wpcf7-list-item-label {
  margin-bottom: 0;
}
.module-tab-success-stories__case-title a {
  color: inherit;
  text-decoration: underline;
}
.module-tab-success-stories__case-bullets ul {
  margin: 0;
  padding-left: 1.25rem;
}
.module-tab-success-stories__case-bullets ul li {
  margin-bottom: 0.5rem;
}
.module-tab-success-stories__case-bullets ul li:last-child {
  margin-bottom: 0;
}
.module-tab-success-stories__case-bullets a {
  color: inherit;
  text-decoration: underline;
}
.module-tab-success-stories__quotes {
  padding-top: 2.25rem;
}
.module-tab-success-stories__quote {
  border-radius: var(--radius-xl, 1.25rem);
  border: 1px solid var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
  display: none;
  padding: var(--padding-xxl, 2.25rem);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--padding-xxl, 2.25rem);
  align-self: stretch;
}
.module-tab-success-stories__quote.active {
  display: flex;
}
.module-tab-success-stories__quote-text {
  margin-bottom: 0;
}
.module-tab-success-stories__quote-author p, .module-tab-success-stories__quote-author .map-link, .module-tab-success-stories__quote-author .modules-listing-section .module-card__bullets ul li span, .modules-listing-section .module-card__bullets ul li .module-tab-success-stories__quote-author span, .module-tab-success-stories__quote-author .blog-secondary-item__date, .module-tab-success-stories__quote-author .btn, .module-tab-success-stories__quote-author .module-intro-hero__btn, .module-tab-success-stories__quote-author .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-tab-success-stories__quote-author .category, .module-tab-success-stories__quote-author .post .wp-block-button a, .post .wp-block-button .module-tab-success-stories__quote-author a, .module-tab-success-stories__quote-author .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-success-stories__quote-author .wpcf7-list-item-label {
  margin-bottom: 0;
}
.module-tab-success-stories__quote-author a {
  color: inherit;
  text-decoration: underline;
}

.module-tab-split-cards .row {
  align-items: stretch;
  min-height: 33.03875rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-cards .row {
    min-height: 28rem;
  }
}
@media only screen and (max-width: 992px) {
  .module-tab-split-cards .row {
    min-height: 28rem;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-cards .row {
    min-height: auto;
    flex-direction: column;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-cards .row {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-cards__content {
    margin-bottom: 0;
  }
}
.module-tab-split-cards__title {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-cards__title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-cards__title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-cards__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.module-tab-split-cards__text {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-cards__text {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-cards__text {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-cards__text p:last-child, .module-tab-split-cards__text .map-link:last-child, .module-tab-split-cards__text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-cards__text span:last-child, .module-tab-split-cards__text .blog-secondary-item__date:last-child, .module-tab-split-cards__text .btn:last-child, .module-tab-split-cards__text .module-intro-hero__btn:last-child, .module-tab-split-cards__text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-cards__text .category:last-child, .module-tab-split-cards__text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-cards__text a:last-child, .module-tab-split-cards__text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-cards__text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-cards__bottom-text {
  opacity: 0.6;
  margin-top: auto;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-cards__bottom-text {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-cards__bottom-text {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-cards__bottom-text {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-cards__bottom-text p:last-child, .module-tab-split-cards__bottom-text .map-link:last-child, .module-tab-split-cards__bottom-text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-cards__bottom-text span:last-child, .module-tab-split-cards__bottom-text .blog-secondary-item__date:last-child, .module-tab-split-cards__bottom-text .btn:last-child, .module-tab-split-cards__bottom-text .module-intro-hero__btn:last-child, .module-tab-split-cards__bottom-text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-cards__bottom-text .category:last-child, .module-tab-split-cards__bottom-text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-cards__bottom-text a:last-child, .module-tab-split-cards__bottom-text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-cards__bottom-text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-cards__cards-title {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-cards__cards-title {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-cards__cards-title {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
  }
}
.module-tab-split-cards__cards-top-text {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-cards__cards-top-text {
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-cards__cards-top-text {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-cards__cards-top-text p:last-child, .module-tab-split-cards__cards-top-text .map-link:last-child, .module-tab-split-cards__cards-top-text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-cards__cards-top-text span:last-child, .module-tab-split-cards__cards-top-text .blog-secondary-item__date:last-child, .module-tab-split-cards__cards-top-text .btn:last-child, .module-tab-split-cards__cards-top-text .module-intro-hero__btn:last-child, .module-tab-split-cards__cards-top-text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-cards__cards-top-text .category:last-child, .module-tab-split-cards__cards-top-text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-cards__cards-top-text a:last-child, .module-tab-split-cards__cards-top-text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-cards__cards-top-text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-cards__grid {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-cards__grid {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-split-cards__grid {
    -moz-columns: 1;
         columns: 1;
  }
}
.module-tab-split-cards__card {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 1rem;
  padding: var(--padding-xl, 1.25rem);
  background: transparent;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: var(--radius-xl, 1.25rem);
  border: 1px solid var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-cards__card {
    margin-bottom: 0.75rem;
    padding: 1rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-cards__card {
    margin-bottom: 0.625rem;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-cards__card:last-child {
  margin-bottom: 0;
}
.module-tab-split-cards__card:hover {
  background: var(--colors-neutrals-Trans-3, rgba(255, 255, 255, 0.15));
  transform: translateY(-2px);
}
@media (hover: none) {
  .module-tab-split-cards__card:hover {
    transform: none;
  }
}
.module-tab-split-cards__card p:last-child, .module-tab-split-cards__card .map-link:last-child, .module-tab-split-cards__card .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-cards__card span:last-child, .module-tab-split-cards__card .blog-secondary-item__date:last-child, .module-tab-split-cards__card .btn:last-child, .module-tab-split-cards__card .module-intro-hero__btn:last-child, .module-tab-split-cards__card .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-cards__card .category:last-child, .module-tab-split-cards__card .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-cards__card a:last-child, .module-tab-split-cards__card .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-cards__card .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-split-cards__card a {
  color: inherit;
  text-decoration: underline;
}
.module-tab-split-cards__cards-bottom-text {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-split-cards__cards-bottom-text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-split-cards__cards-bottom-text {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-split-cards__cards-bottom-text p:last-child, .module-tab-split-cards__cards-bottom-text .map-link:last-child, .module-tab-split-cards__cards-bottom-text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-split-cards__cards-bottom-text span:last-child, .module-tab-split-cards__cards-bottom-text .blog-secondary-item__date:last-child, .module-tab-split-cards__cards-bottom-text .btn:last-child, .module-tab-split-cards__cards-bottom-text .module-intro-hero__btn:last-child, .module-tab-split-cards__cards-bottom-text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-split-cards__cards-bottom-text .category:last-child, .module-tab-split-cards__cards-bottom-text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-split-cards__cards-bottom-text a:last-child, .module-tab-split-cards__cards-bottom-text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-split-cards__cards-bottom-text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}

.module-tab-checklist-tabs .row {
  align-items: stretch;
  min-height: 31.03875rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs .row {
    min-height: 26rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-checklist-tabs .row {
    min-height: auto;
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs .row {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-checklist-tabs__content {
    margin-bottom: 0;
  }
}
.module-tab-checklist-tabs__title {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-checklist-tabs__title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.module-tab-checklist-tabs__description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__description {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-checklist-tabs__description p:last-child, .module-tab-checklist-tabs__description .map-link:last-child, .module-tab-checklist-tabs__description .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-checklist-tabs__description span:last-child, .module-tab-checklist-tabs__description .blog-secondary-item__date:last-child, .module-tab-checklist-tabs__description .btn:last-child, .module-tab-checklist-tabs__description .module-intro-hero__btn:last-child, .module-tab-checklist-tabs__description .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-checklist-tabs__description .category:last-child, .module-tab-checklist-tabs__description .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-checklist-tabs__description a:last-child, .module-tab-checklist-tabs__description .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-checklist-tabs__description .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-checklist-tabs__sub-description {
  opacity: 0.6;
  margin-top: auto;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__sub-description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-checklist-tabs__sub-description {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__sub-description {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-checklist-tabs__container {
  border-radius: var(--radius-xl, 1.25rem);
  background: var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
  padding: var(--padding-xxl, 2.25rem);
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__container {
    padding: 1.75rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-checklist-tabs__container {
    height: auto;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__container {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
}
.module-tab-checklist-tabs__nav {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
  margin-bottom: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 1px;
}
.module-tab-checklist-tabs__nav::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__nav {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__nav {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
}
.module-tab-checklist-tabs__nav-btn {
  background: none;
  border: none;
  color: inherit;
  padding: 0.75rem 0;
  opacity: 0.6;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__nav-btn {
    padding: 0.625rem 0;
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__nav-btn {
    padding: 0.5rem 0;
    font-size: 0.875rem;
  }
}
.module-tab-checklist-tabs__nav-btn:hover {
  opacity: 0.8;
}
.module-tab-checklist-tabs__nav-btn.active {
  opacity: 1;
}
.module-tab-checklist-tabs__nav-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}
.module-tab-checklist-tabs__panels {
  flex: 1;
}
.module-tab-checklist-tabs__checklist-title {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__checklist-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__checklist-title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
}
.module-tab-checklist-tabs__checklist-description {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__checklist-description {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__checklist-description {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-checklist-tabs__panel {
  display: none;
}
.module-tab-checklist-tabs__panel.active {
  display: block;
  animation: fadeInPanel 0.3s ease forwards;
}
.module-tab-checklist-tabs__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__list {
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__list {
    gap: 0.625rem;
  }
}
.module-tab-checklist-tabs__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__item {
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__item {
    gap: 0.625rem;
    align-items: flex-start;
  }
}
.module-tab-checklist-tabs__item:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__item:not(:last-child) {
    padding-bottom: 0.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__item:not(:last-child) {
    padding-bottom: 0.625rem;
  }
}
.module-tab-checklist-tabs__check-icon {
  flex-shrink: 0;
  color: currentColor;
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__check-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__check-icon {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.125rem;
  }
}
@media only screen and (max-width: 1200px) {
  .module-tab-checklist-tabs__item-text {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-checklist-tabs__item-text {
    font-size: 0.875rem;
  }
}
.module-tab-checklist-tabs__item-text p:last-child, .module-tab-checklist-tabs__item-text .map-link:last-child, .module-tab-checklist-tabs__item-text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-checklist-tabs__item-text span:last-child, .module-tab-checklist-tabs__item-text .blog-secondary-item__date:last-child, .module-tab-checklist-tabs__item-text .btn:last-child, .module-tab-checklist-tabs__item-text .module-intro-hero__btn:last-child, .module-tab-checklist-tabs__item-text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-checklist-tabs__item-text .category:last-child, .module-tab-checklist-tabs__item-text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-checklist-tabs__item-text a:last-child, .module-tab-checklist-tabs__item-text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-checklist-tabs__item-text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-checklist-tabs__item-text a {
  color: inherit;
  text-decoration: underline;
}

.module-tab-ecosystem .row {
  align-items: stretch;
  min-height: 31.03875rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-ecosystem .row {
    min-height: 26rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-ecosystem .row {
    min-height: auto;
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-ecosystem .row {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-ecosystem__content {
    margin-bottom: 0;
  }
}
.module-tab-ecosystem__title {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-ecosystem__title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-ecosystem__title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-ecosystem__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.module-tab-ecosystem__description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-ecosystem__description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-ecosystem__description {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-ecosystem__description p:last-child, .module-tab-ecosystem__description .map-link:last-child, .module-tab-ecosystem__description .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-ecosystem__description span:last-child, .module-tab-ecosystem__description .blog-secondary-item__date:last-child, .module-tab-ecosystem__description .btn:last-child, .module-tab-ecosystem__description .module-intro-hero__btn:last-child, .module-tab-ecosystem__description .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-ecosystem__description .category:last-child, .module-tab-ecosystem__description .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-ecosystem__description a:last-child, .module-tab-ecosystem__description .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-ecosystem__description .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-ecosystem__sub-description {
  opacity: 0.6;
  margin-top: auto;
}
@media only screen and (max-width: 1200px) {
  .module-tab-ecosystem__sub-description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-ecosystem__sub-description {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-ecosystem__sub-description {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.module-tab-ecosystem__diagram {
  border-radius: var(--radius-xl, 1.25rem);
  background: var(--colors-neutrals-Trans-2, rgba(255, 255, 255, 0.1));
  padding: var(--padding-xxl, 2.25rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1200px) {
  .module-tab-ecosystem__diagram {
    padding: 1.75rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-ecosystem__diagram {
    height: auto;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-ecosystem__diagram {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
}
.module-tab-ecosystem__diagram-title {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-ecosystem__diagram-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-ecosystem__diagram-title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
}
.module-tab-ecosystem__diagram-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .module-tab-ecosystem__diagram-image {
    min-height: 16rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-ecosystem__diagram-image {
    min-height: 12rem;
  }
}
.module-tab-ecosystem__diagram-image img {
  width: auto;
  height: 100%;
  max-height: 23.47444rem;
  display: block;
}
@media only screen and (max-width: 1200px) {
  .module-tab-ecosystem__diagram-image img {
    max-height: 20rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-ecosystem__diagram-image img {
    max-height: 16rem;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-ecosystem__diagram-image img {
    max-height: 12rem;
  }
}
.module-tab-ecosystem__bottom-text {
  margin-top: 2rem;
  font-size: 0.875rem;
  opacity: 0.8;
}
@media only screen and (max-width: 1200px) {
  .module-tab-ecosystem__bottom-text {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-ecosystem__bottom-text {
    margin-top: 1rem;
    font-size: 0.8125rem;
  }
}
.module-tab-ecosystem__bottom-text p:last-child, .module-tab-ecosystem__bottom-text .map-link:last-child, .module-tab-ecosystem__bottom-text .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-ecosystem__bottom-text span:last-child, .module-tab-ecosystem__bottom-text .blog-secondary-item__date:last-child, .module-tab-ecosystem__bottom-text .btn:last-child, .module-tab-ecosystem__bottom-text .module-intro-hero__btn:last-child, .module-tab-ecosystem__bottom-text .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-ecosystem__bottom-text .category:last-child, .module-tab-ecosystem__bottom-text .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-ecosystem__bottom-text a:last-child, .module-tab-ecosystem__bottom-text .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-ecosystem__bottom-text .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}

.module-tab-contact .row {
  align-items: stretch;
  min-height: 31.03875rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact .row {
    min-height: 26rem;
  }
}
@media only screen and (max-width: 992px) {
  .module-tab-contact .row {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-contact .row {
    min-height: auto;
    flex-direction: column;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact .row {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-contact__content {
    margin-bottom: 0;
  }
}
.module-tab-contact__tagline {
  margin-bottom: 1rem;
  opacity: 0.6;
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact__tagline {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__tagline {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
  }
}
.module-tab-contact__headline {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact__headline {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-contact__headline {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__headline {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.module-tab-contact__description {
  font-size: 1rem;
  opacity: 0.6;
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact__description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__description {
    font-size: 0.875rem;
  }
}
.module-tab-contact__description p:last-child, .module-tab-contact__description .map-link:last-child, .module-tab-contact__description .modules-listing-section .module-card__bullets ul li span:last-child, .modules-listing-section .module-card__bullets ul li .module-tab-contact__description span:last-child, .module-tab-contact__description .blog-secondary-item__date:last-child, .module-tab-contact__description .btn:last-child, .module-tab-contact__description .module-intro-hero__btn:last-child, .module-tab-contact__description .post .text-wrapper .categories .category:last-child, .post .text-wrapper .categories .module-tab-contact__description .category:last-child, .module-tab-contact__description .post .wp-block-button a:last-child, .post .wp-block-button .module-tab-contact__description a:last-child, .module-tab-contact__description .form-radio .wpcf7-list-item .wpcf7-list-item-label:last-child, .form-radio .wpcf7-list-item .module-tab-contact__description .wpcf7-list-item-label:last-child {
  margin-bottom: 0;
}
.module-tab-contact__form {
  display: flex;
  padding: var(--padding-xxl, 2.25rem);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: var(--radius-xl, 1.25rem);
  background: var(--colors-neutrals-White, #FFF);
}
.module-tab-contact__form .row {
  gap: unset;
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact__form {
    padding: 1.75rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-tab-contact__form {
    flex: none;
    align-self: auto;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__form {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
}
.module-tab-contact__form .row {
  min-height: unset;
}
@media only screen and (max-width: 768px) {
  .module-tab-contact__form .row {
    flex-direction: row;
    gap: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__form .row {
    gap: 0.75rem;
  }
}
.module-tab-contact__form .row .form-group {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact__form .row .form-group {
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__form .row .form-group {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact__form .row .form-label {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__form .row .form-label {
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
  }
}
.module-tab-contact__form .row .form-control {
  padding: var(--padding-md, 1.25rem);
  border-radius: 0.375rem;
  border: 1px solid var(--colors-neutrals-Border, #E4E5E7);
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact__form .row .form-control {
    padding: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__form .row .form-control {
    padding: 0.875rem;
    font-size: 0.875rem;
  }
}
.module-tab-contact__form .row .form-control:focus {
  border-color: var(--module-color);
  box-shadow: none;
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__form .row .form-control::-moz-placeholder {
    font-size: 0.875rem;
  }
  .module-tab-contact__form .row .form-control::placeholder {
    font-size: 0.875rem;
  }
}
.module-tab-contact__form .row textarea.form-control {
  min-height: 8rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact__form .row textarea.form-control {
    min-height: 7rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__form .row textarea.form-control {
    min-height: 6rem;
  }
}
.module-tab-contact__form .row .btn, .module-tab-contact__form .row .module-intro-hero__btn, .module-tab-contact__form .row .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-tab-contact__form .row .category, .module-tab-contact__form .row .post .wp-block-button a, .post .wp-block-button .module-tab-contact__form .row a, .module-tab-contact__form .row .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-contact__form .row .wpcf7-list-item-label {
  margin-left: auto;
  background-color: var(--module-color);
  border-color: var(--module-color);
  color: #fff;
  padding: 0.875rem 1.125rem;
}
@media only screen and (max-width: 1200px) {
  .module-tab-contact__form .row .btn, .module-tab-contact__form .row .module-intro-hero__btn, .module-tab-contact__form .row .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-tab-contact__form .row .category, .module-tab-contact__form .row .post .wp-block-button a, .post .wp-block-button .module-tab-contact__form .row a, .module-tab-contact__form .row .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-contact__form .row .wpcf7-list-item-label {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 576px) {
  .module-tab-contact__form .row .btn, .module-tab-contact__form .row .module-intro-hero__btn, .module-tab-contact__form .row .post .text-wrapper .categories .category, .post .text-wrapper .categories .module-tab-contact__form .row .category, .module-tab-contact__form .row .post .wp-block-button a, .post .wp-block-button .module-tab-contact__form .row a, .module-tab-contact__form .row .form-radio .wpcf7-list-item .wpcf7-list-item-label, .form-radio .wpcf7-list-item .module-tab-contact__form .row .wpcf7-list-item-label {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    width: 100%;
    margin-left: 0;
  }
}
.module-tab-contact__form .row .btn:hover, .module-tab-contact__form .row .module-intro-hero__btn:hover, .module-tab-contact__form .row .post .text-wrapper .categories .category:hover, .post .text-wrapper .categories .module-tab-contact__form .row .category:hover, .module-tab-contact__form .row .post .wp-block-button a:hover, .post .wp-block-button .module-tab-contact__form .row a:hover, .module-tab-contact__form .row .form-radio .wpcf7-list-item .wpcf7-list-item-label:hover, .form-radio .wpcf7-list-item .module-tab-contact__form .row .wpcf7-list-item-label:hover, .module-tab-contact__form .row .btn:focus, .module-tab-contact__form .row .module-intro-hero__btn:focus, .module-tab-contact__form .row .post .text-wrapper .categories .category:focus, .post .text-wrapper .categories .module-tab-contact__form .row .category:focus, .module-tab-contact__form .row .post .wp-block-button a:focus, .post .wp-block-button .module-tab-contact__form .row a:focus, .module-tab-contact__form .row .form-radio .wpcf7-list-item .wpcf7-list-item-label:focus, .form-radio .wpcf7-list-item .module-tab-contact__form .row .wpcf7-list-item-label:focus {
  background-color: var(--module-color);
  border-color: var(--module-color);
  opacity: 0.85;
}
.module-tab-contact .form-label {
  color: var(--module-color) !important;
}