@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Visby CF", serif;
  scroll-behavior: smooth;
  letter-spacing: 0.02rem;
}

.container {
  max-width: 1440px;
  padding: 0 150px;
}

a {
  transition: background-color 0.1s ease-in-out;
}

.tippy-box {
  background: #FFF;
  color: #000;
}

#curtain-transition {
  width: 100%;
  height: 100vh;
  background-color: black;
  color: white;
  pointer-events: none;
  transform: scaleY(0);
  position: absolute;
  z-index: 100W;
}

@media (max-width: 991px) {
  .entry-content {
    margin-top: 70px;
  }
}
@media (max-width: 600px) {
  .entry-content {
    margin-top: 20px;
  }
}

p, h2 {
  margin: 0;
}

.grey-bg {
  background-color: #E6E6E6;
}

.dark-grey-bg {
  background-color: #454545;
}

.black-bg {
  background-color: #000000;
  color: #FFFFFF;
}

.outline {
  position: relative;
  display: inline;
}
.outline .link-title {
  display: flex;
}
.outline .underline {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2px;
  background-color: #000;
}

.cat--advise {
  background-color: #F2F2F2;
}
.cat--engage {
  background-color: #D9D9D9;
}
.cat--design {
  background-color: #B6B6B6;
}
.cat--plus {
  background-color: #454545;
  color: #FFF;
}

.image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.image-container img {
  will-change: transform;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #111;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(0); /* start position */
  transition: none;
  overflow: hidden;
}
#preloader .svg-logo {
  overflow: hidden;
  height: 40px;
  width: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader .svg-logo svg {
  transform: translateY(0); /* start fully visible */
}

/* Slightly move main content */
html.is-changing .transition-main {
  transition: transform 400ms ease-in-out;
}

html.is-animating.is-leaving .transition-main {
  transform: translateY(calc(5vh * var(--overlay-direction, 1)));
}

html.is-animating.is-rendering .transition-main {
  transform: translateY(calc(-5vh * var(--overlay-direction, 1)));
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: var(--swup-blue-darker);
  opacity: 0;
  transform: translate3d(0, calc(-100% * var(--overlay-direction, 1)), 0);
  pointer-events: none;
}

html.is-changing .transition-overlay {
  transition: transform 400ms ease-in-out;
  opacity: 1;
}

html.is-animating .transition-overlay {
  transform: translate3d(0, 0, 0);
}

html.is-rendering .transition-overlay {
  transform: translate3d(0, calc(var(--overlay-direction, 1) * 100%), 0);
}

html.to-back {
  --overlay-direction: -1;
}

.wrapper {
  padding: 0 !important;
}

.cta-btn:hover {
  text-decoration: none;
}
.cta-btn svg {
  margin-left: 25px;
}

.default-btn {
  color: #000000;
  position: relative;
  display: inline-flex;
  width: auto;
  align-items: center;
  border-radius: 10px;
  gap: 1rem;
  background-color: #E6E6E6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.default-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  flex-direction: row-reverse;
  gap: 1rem;
}
.default-btn .arrow-svg,
.default-btn .btn-text {
  will-change: transform;
}
.default-btn.btn-sm {
  font-size: 18px;
  padding: 10px 20px;
}
.default-btn.btn-sm .icon {
  height: 15px;
  width: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.default-btn.btn-sm .icon svg {
  height: 40px;
  width: 40px;
}
.default-btn.btn-sm .icon svg path {
  fill: #000000;
}
.default-btn.btn-sm:hover svg path {
  fill: #0037FF;
}
.default-btn.btn-lg {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  padding: 15px 20px;
}
@media (max-width: 600px) {
  .default-btn.btn-lg {
    font-size: 16px;
    padding: 10px 15px;
  }
}
.default-btn.btn-lg .icon {
  height: 18px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .default-btn.btn-lg .icon {
    height: 16px;
    width: 13px;
  }
}
.default-btn.btn-lg .icon svg {
  height: 40px;
  width: 40px;
}
.default-btn.btn-lg .icon svg path {
  fill: #000000;
}
.default-btn.btn-lg:hover svg path {
  fill: #0037FF;
}
.default-btn.btn-block {
  width: 100%;
  justify-content: center;
  padding: 10px 20px;
}
@media (max-width: 600px) {
  .default-btn.btn-block {
    font-size: 12px;
    padding: 10px 15px;
  }
}
.default-btn.btn-block:hover svg path {
  fill: #0037FF;
}
.default-btn.btn-light {
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
  color: inherit;
  background-color: #FFFFFF;
  color: #000000;
  padding: 15px 20px;
}
@media (max-width: 600px) {
  .default-btn.btn-light {
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    color: inherit;
    display: flex;
    justify-content: center;
  }
}
.default-btn.btn-light:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.default-btn.btn-light:hover svg path {
  fill: #0037FF;
}

.cta-btn-desktop {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 20px;
  border: 0;
  border-radius: 10px;
  background: #E6E6E6;
  color: #000000;
  font-weight: 700;
  line-height: 34px;
  text-decoration: none;
  overflow: visible;
  position: relative;
  font-size: 24px;
  transition: background-color 0.4s ease, color 0.4s ease;
  -webkit-box-shadow: 0px 3px 3px -1px rgba(66, 68, 90, 0.09);
  -moz-box-shadow: 0px 3px 3px -1px rgba(66, 68, 90, 0.09);
  box-shadow: 0px 3px 3px -1px rgba(66, 68, 90, 0.09);
  --svg-move-distance: 0px;
  --span-move-distance: 0px;
}
.cta-btn-desktop svg {
  flex-shrink: 0;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  fill: #000000;
  stroke: #000000;
}
.cta-btn-desktop svg path {
  transition: fill 0.4s ease, stroke 0.4s ease;
}
.cta-btn-desktop span {
  flex-shrink: 0;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
  text-decoration: none;
}
.cta-btn-desktop:hover {
  text-decoration: none;
  background: #000000 !important;
  color: #FFFFFF !important;
}
.cta-btn-desktop:hover svg {
  transform: translateX(var(--svg-move-distance));
}
.cta-btn-desktop:hover svg path {
  fill: #0037FF;
  stroke: #0037FF;
}
.cta-btn-desktop:hover span {
  transform: translateX(var(--span-move-distance));
}
.cta-btn-desktop:not(:hover) svg,
.cta-btn-desktop:not(:hover) span {
  transform: translateX(0);
}
@media (max-width: 991px) {
  .cta-btn-desktop {
    font-size: 24px;
    padding: 15px 20px;
  }
  .cta-btn-desktop svg {
    width: 22px;
    height: 18px;
  }
}
@media (max-width: 600px) {
  .cta-btn-desktop {
    font-size: 16px;
    padding: 5px 15px;
  }
  .cta-btn-desktop svg {
    width: 16px;
    height: 13px;
  }
}
.cta-btn-desktop.sm {
  padding: 10px 20px;
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .cta-btn-desktop.sm {
    font-size: 18px;
    padding: 10px 20px;
  }
  .cta-btn-desktop.sm svg {
    width: 19px;
    height: 15px;
  }
}
@media (max-width: 600px) {
  .cta-btn-desktop.sm {
    font-size: 12px;
    border-radius: 5px;
    padding: 5px 10px;
    gap: 10px;
  }
  .cta-btn-desktop.sm svg {
    width: 12px;
    height: 10px;
  }
}

.cta-link-title {
  border-radius: 10px;
  padding: 25px 25px 20px 30px;
  font-weight: 700;
  line-height: 50px;
  text-decoration: none;
  color: #000000;
  position: relative;
  display: inline-flex;
  width: auto;
  align-items: center;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 40px;
}
.cta-link-title:hover {
  background-color: #F2F2F2 !important;
}
.cta-link-title .svg-container {
  height: 45px;
  width: 45px;
  margin-left: 25px;
  overflow: hidden;
}
.cta-link-title .svg-container .svg-rotate {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.cta-link-title .svg-container .svg-rotate .icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-link-title .svg-container .svg-rotate .icon svg {
  height: 45px;
  width: 45px;
}
.cta-link-title .svg-container .svg-rotate .icon svg path {
  fill: #000000;
}
@media (max-width: 600px) {
  .cta-link-title {
    border-radius: 5px;
    font-size: 22px;
    line-height: 35px;
    padding: 12px 22px 7px 22px;
  }
  .cta-link-title .svg-container {
    height: 25px;
    width: 25px;
    overflow: hidden;
    margin-left: 10px;
  }
  .cta-link-title .svg-container .svg-rotate {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    transform: rotate(315deg);
  }
  .cta-link-title .svg-container .svg-rotate .icon {
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-link-title .svg-container .svg-rotate .icon svg {
    height: 25px;
    width: 25px;
  }
  .cta-link-title .svg-container .svg-rotate .icon svg path {
    transition: fill 0.2s ease-in-out;
  }
}
.cta-link-title:hover {
  background-color: #C7C7C7 !important;
  color: #0037FF;
  text-decoration: none;
}
.cta-link-title:hover .svg-container .svg-rotate .icon svg path {
  fill: #0037FF;
}
.cta-link-title:active {
  background-color: #000 !important;
  color: #FFFFFF !important;
  text-decoration: none;
}
.cta-link-title:active .svg-container .svg-rotate .icon svg path {
  fill: #0037FF;
}

.cta-link-content {
  font-size: 25px;
  position: relative;
  border-radius: 5px;
  padding: 10px 20px 5px 25px;
  font-weight: 700;
  display: inline-flex;
  width: auto;
  align-items: center;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cta-link-content:hover {
  background-color: #E5E5E5 !important;
}
@media (max-width: 600px) {
  .cta-link-content {
    font-size: 18px;
    padding: 5px 15px 2px 20px;
    border-radius: 5px;
  }
}
.cta-link-content .strong {
  font-weight: 700;
  margin-right: 7px;
}
.cta-link-content .svg-container {
  height: 30px;
  width: 30px;
  overflow: hidden;
  margin-left: 5px;
}
.cta-link-content .svg-container .svg-rotate {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transform: rotate(315deg);
}
.cta-link-content .svg-container .svg-rotate .icon {
  height: 27px;
  width: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .cta-link-content .svg-container .svg-rotate .icon {
    height: 27px;
    width: 27px;
  }
}
.cta-link-content .svg-container .svg-rotate .icon svg {
  height: 30px;
  width: 30px;
}
@media (max-width: 600px) {
  .cta-link-content .svg-container .svg-rotate .icon svg {
    height: 20px;
    width: 20px;
  }
}
.cta-link-content .svg-container .svg-rotate .icon svg path {
  fill: #000000;
  transition: fill 0.2s ease-in-out;
}
@media (max-width: 600px) {
  .cta-link-content svg {
    height: 17px;
    width: 17px;
  }
}
.cta-link-content:hover .svg-container .svg-rotate .icon svg path {
  fill: #0037FF;
}
.cta-link-content:hover {
  text-decoration: none;
}

.cta-link {
  font-size: 30px;
  line-height: 40px;
  justify-content: flex-end;
  align-items: center;
  font-weight: 400;
  display: inline-flex;
}
.cta-link .strong {
  font-weight: 700;
  margin-right: 7px;
}
.cta-link:hover {
  text-decoration: none;
}

.btn-arrow-link {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}
.btn-arrow-link svg {
  margin-left: 8px;
  height: 15px;
  width: 15px;
}
@media (min-width: 600px) {
  .btn-arrow-link svg {
    margin-left: 3px;
  }
}

.wellevate-shades li:nth-child(1) .cta-btn-desktop {
  background-color: #F2F2F2;
}
.wellevate-shades li:nth-child(2) .cta-btn-desktop {
  background-color: #D9D9D9;
}
.wellevate-shades li:nth-child(3) .cta-btn-desktop {
  background-color: #B6B6B6;
}
.wellevate-shades li:nth-child(4) .cta-btn-desktop {
  background-color: #454545;
}
.wellevate-shades .content-repeater__item {
  display: block;
}
.wellevate-shades .content-repeater__item:nth-child(1) {
  background-color: #F2F2F2;
}
.wellevate-shades .content-repeater__item:nth-child(2) {
  background-color: #D9D9D9;
}
.wellevate-shades .content-repeater__item:nth-child(3) {
  background-color: #B6B6B6;
}
.wellevate-shades .content-repeater__item:nth-child(4) {
  background-color: #454545;
}

.mobile-nav .sub-menu li:nth-child(1) a {
  background-color: #F2F2F2;
}
.mobile-nav .sub-menu li:last-child .menu-title-inner {
  color: #FFF !important;
}
.mobile-nav .sub-menu li:nth-child(2) a {
  background-color: #D9D9D9;
}
.mobile-nav .sub-menu li:last-child .menu-title-inner {
  color: #FFF !important;
}
.mobile-nav .sub-menu li:nth-child(3) a {
  background-color: #B6B6B6;
}
.mobile-nav .sub-menu li:last-child .menu-title-inner {
  color: #FFF !important;
}
.mobile-nav .sub-menu li:nth-child(4) a {
  background-color: #454545;
}
.mobile-nav .sub-menu li:last-child .menu-title-inner {
  color: #FFF !important;
}

.more-wellevate-shades .content-item {
  justify-content: space-between;
}
.more-wellevate-shades .content-item:nth-child(1) {
  background-color: #F2F2F2;
}
.more-wellevate-shades .content-item:nth-child(2) {
  background-color: #D9D9D9;
}
.more-wellevate-shades .content-item:nth-child(3) {
  background-color: #BDBDBD;
}
.more-wellevate-shades .content-item:nth-child(4) {
  background-color: #5E5E5E;
}
.more-wellevate-shades .content-item:nth-child(5) {
  background-color: #434343;
}
.more-wellevate-shades .content-item:nth-child(6) {
  background-color: #262626;
}

.split-text {
  visibility: hidden;
}

.line {
  display: block;
  overflow: hidden;
}

.headlines {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 991px) {
  .headlines {
    gap: 5px;
  }
}
@media (max-width: 600px) {
  .headlines {
    gap: 5px;
  }
}

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

.fluid-img {
  max-width: 100%;
}

.hero_title_text {
  font-size: 60px;
  font-family: "Visby CF";
  color: #000000;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
@media (max-width: 991px) {
  .hero_title_text {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .hero_title_text {
    font-size: 26px;
  }
}

.hero_secondary_title_text {
  font-size: 60px;
  font-family: "Visby CF";
  color: #B6B6B6;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
}
@media (max-width: 991px) {
  .hero_secondary_title_text {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .hero_secondary_title_text {
    font-size: 26px;
  }
}

.hero_subtitle_text {
  font-size: 30px;
  font-family: "Aptos";
  color: #000000;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@media (max-width: 991px) {
  .hero_subtitle_text {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .hero_subtitle_text {
    font-size: 16px;
  }
}

.title_text {
  font-size: 30px;
  font-family: "Visby CF";
  color: #000000;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
@media (max-width: 991px) {
  .title_text {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .title_text {
    font-size: 16px;
  }
}

.subtitle_text {
  font-size: 30px;
  font-family: "Visby CF";
  color: #B6B6B6;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
@media (max-width: 991px) {
  .subtitle_text {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .subtitle_text {
    font-size: 16px;
  }
}

.header_text {
  font-size: 24px;
  font-family: "Visby CF";
  color: #000000;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
@media (max-width: 991px) {
  .header_text {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .header_text {
    font-size: 14px;
  }
}

.descriptor_text {
  font-size: 18px;
  font-family: "Aptos";
  color: #000000;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@media (max-width: 991px) {
  .descriptor_text {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .descriptor_text {
    font-size: 12px;
  }
}

.body_text {
  font-size: 18px;
  font-family: "Aptos";
  color: #434343;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
@media (max-width: 991px) {
  .body_text {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .body_text {
    font-size: 12px;
    line-height: 22px;
  }
}

.small_text {
  font-size: 14px;
  font-family: "Aptos";
  color: 400;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@media (max-width: 991px) {
  .small_text {
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  .small_text {
    font-size: 8px;
  }
}

.swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  width: 100%;
}
.swiper-nav .swiper-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
  position: static !important;
  margin: 0;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-nav .swiper-button-prev::after,
.swiper-nav .swiper-button-next::after {
  display: none !important;
  content: none !important;
}
.swiper-nav .swiper-button-prev svg,
.swiper-nav .swiper-button-next svg {
  width: 18px;
  height: 16px;
  transition: transform 0.2s ease, fill 0.2s ease;
}
.swiper-nav .swiper-button-prev svg path,
.swiper-nav .swiper-button-next svg path {
  fill: #868686;
  transition: fill 0.2s ease;
}
.swiper-nav .swiper-button-prev:hover svg path,
.swiper-nav .swiper-button-next:hover svg path {
  fill: #000;
}
.swiper-nav .swiper-button-prev.swiper-button-prev:hover svg,
.swiper-nav .swiper-button-next.swiper-button-prev:hover svg {
  transform: translateX(-2px);
}
.swiper-nav .swiper-button-prev.swiper-button-next:hover svg,
.swiper-nav .swiper-button-next.swiper-button-next:hover svg {
  transform: translateX(2px);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: auto !important;
  position: static !important;
  margin: 0;
}

.carousel-wrapper,
.myCaseSwiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.myCaseSwiper .swiper-wrapper {
  display: flex;
}

.myCaseSwiper .swiper-slide {
  flex-shrink: 0;
  width: auto;
}

.sidebar-header {
  margin-bottom: 30px;
}
.sidebar-header p {
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 700;
}

@font-face {
  font-family: "Visby CF";
  src: url("../fonts/VisbyCF-Bold.woff2") format("woff2"), url("../fonts/VisbyCF-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../fonts/VisbyCF-Light.woff2") format("woff2"), url("../fonts/VisbyCF-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../fonts/VisbyCF-Medium.woff2") format("woff2"), url("../fonts/VisbyCF-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../fonts/VisbyCF-Heavy.woff2") format("woff2"), url("../fonts/VisbyCF-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF Extra";
  src: url("../fonts/VisbyCF-ExtraBold.woff2") format("woff2"), url("../fonts/VisbyCF-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF Demi";
  src: url("../fonts/VisbyCF-DemiBold.woff2") format("woff2"), url("../fonts/VisbyCF-DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../fonts/VisbyCF-Regular.woff2") format("woff2"), url("../fonts/VisbyCF-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Visby CF";
  src: url("../fonts/VisbyCF-Thin.woff2") format("woff2"), url("../fonts/VisbyCF-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aptos";
  src: url("../fonts/Aptos-Light.woff2") format("woff2"), url("../fonts/Aptos-Light.woff") format("woff"), url("../fonts/Aptos-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aptos";
  src: url("../fonts/Aptos.woff2") format("woff2"), url("../fonts/Aptos.woff") format("woff"), url("../fonts/Aptos.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
header {
  box-shadow: 0px 4px 10px rgba(3, 7, 18, 0.01), 0px 18px 39px rgba(3, 7, 18, 0.01), 0px 39px 88px rgba(3, 7, 18, 0.02), 0px 70px 157px rgba(3, 7, 18, 0.03);
  position: sticky !important;
  top: 0;
  right: 0;
  left: 0;
}
header.fixed-top {
  z-index: 99 !important;
}
@media (max-width: 1280px) {
  header h1 {
    display: none !important;
  }
}
header .navbar {
  background-color: #fff;
  padding: 20px 0;
}
@media (max-width: 600px) {
  header .navbar {
    padding: 0;
  }
}
header .navbar .site-logo {
  max-width: 176px;
}
@media (max-width: 1280px) {
  header .navbar .site-logo {
    margin-left: 1rem;
  }
}
@media (max-width: 600px) {
  header .navbar .site-logo {
    max-width: 120px;
  }
}
header .navbar .menu-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .navbar .menu-desktop .default-btn {
  font-weight: 700;
}
header .navbar .menu-desktop .primary-menu {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 54px;
  margin-right: 54px;
  margin-bottom: 0;
}
header .navbar .menu-desktop .primary-menu li a {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}
header .navbar .menu-desktop .primary-menu li a .fa-chevron-down {
  display: inline-block;
  margin-left: 5px;
  transform-origin: center;
  font-size: 10px;
}
header .navbar .menu-desktop .primary-menu li a:hover {
  text-decoration: none;
}
header .navbar .menu-desktop .primary-menu li .sub-menu {
  display: none;
}
header .navbar .menu-desktop .lang-switcher {
  position: relative;
  display: inline-block;
  font-family: inherit;
}
header .navbar .menu-desktop .lang-switcher__toggle {
  background: none;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  border: 0;
  margin-left: 40px;
}
header .navbar .menu-desktop .lang-switcher__arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}
header .navbar .menu-desktop .lang-switcher__toggle[aria-expanded=true] .lang-switcher__arrow {
  transform: rotate(180deg);
}
header .navbar .menu-desktop .lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
  margin: 4px 0 0;
  padding: 4px 0;
  min-width: 60px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
header .navbar .menu-desktop .lang-switcher__dropdown.open {
  display: block;
}
header .navbar .menu-desktop .lang-switcher__item a {
  font-size: 18px;
  font-weight: 400;
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: #333;
}
header .navbar .menu-desktop .lang-switcher__item a:hover,
header .navbar .menu-desktop .lang-switcher__item.active a {
  background: #f5f5f5;
  color: #000;
}
@media (max-width: 1280px) {
  header .navbar .menu-desktop {
    display: none;
  }
}
header .subpage-menu {
  background-color: #fff;
  display: block;
  overflow: hidden;
}
@media (max-width: 1280px) {
  header .subpage-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
  }
}
header .subpage-menu li:last-child a .menu-title .menu-title-inner {
  color: #FFFFFF !important;
}
header .subpage-menu li:last-child a .menu-title svg,
header .subpage-menu li:last-child a .menu-title svg path {
  fill: #FFFFFF !important;
}
header .subpage-menu .child-pages-list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 30px;
  justify-content: space-between;
  padding-top: 40px;
  opacity: 1;
}
@media (max-width: 1280px) {
  header .subpage-menu .child-pages-list {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
  }
}
header .subpage-menu .child-pages-list li {
  opacity: 0;
  width: 25%;
  border-bottom: none !important;
}
header .subpage-menu .child-pages-list li a {
  width: 100%;
  font-weight: 400;
  margin-bottom: 20px;
}
header .subpage-menu .child-pages-list li a span.btn-text {
  display: flex;
}
header .subpage-menu .child-pages-list li a:hover {
  text-decoration: none;
}
header .subpage-menu .child-pages-list li:last-child a span {
  color: #FFF !important;
}
header .subpage-menu .child-pages-list li:last-child a svg path {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
header .subpage-menu .child-pages-list li:last-child a:hover svg path {
  fill: #0037FF;
  stroke: #0037FF;
}
header .subpage-menu .child-pages-list li .menu-description {
  font-family: "Aptos", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 70px;
  color: #000000;
}
header .mobile-toggle,
header .mobile-menu {
  display: none;
}
@media (max-width: 1280px) {
  header .mobile-menu {
    padding: 20px 0;
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 70px;
  }
  header .mobile-menu .mobile-menu-inner {
    background-color: #fff;
    height: 100dvh;
    width: 100%;
  }
}
@media (max-width: 1280px) and (max-width: 600px) {
  header .mobile-menu .mobile-menu-inner .container {
    padding: 0;
  }
}
@media (max-width: 1280px) {
  header .mobile-menu .mobile-menu-inner .mobile-nav {
    list-style: none;
    padding: 16px 12px;
    margin-bottom: 0;
  }
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .mobile-menu-item a {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    border-radius: 5px;
  }
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .sub-menu {
    background: transparent;
    padding: 0;
    list-style: none;
    transition: height 0.3s, opacity 0.3s;
    overflow: hidden;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .sub-menu.active {
    height: auto;
    opacity: 1;
    margin-top: 20px;
  }
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .sub-menu li {
    border-bottom: none !important;
  }
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .sub-menu a {
    width: 100%;
    margin-bottom: 10px;
  }
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .sub-menu a .menu-title {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
  }
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .sub-menu a .menu-title .menu-title-inner {
    font-family: "Visby CF", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #000;
  }
}
@media (max-width: 1280px) and (max-width: 600px) {
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .sub-menu a .menu-title .menu-title-inner {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .sub-menu a .menu-title .menu-title-inner .highlight {
    font-weight: 700;
    margin-right: 7px;
  }
  header .mobile-menu .mobile-menu-inner .mobile-nav .top-level-item .sub-menu a .menu-title svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  header .mobile-menu .mobile-menu-inner .mobile-cta-block {
    padding: 81px 12px 0 12px;
    display: flex;
    justify-content: space-between;
  }
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .inline {
    display: flex;
    align-items: center;
  }
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .inline p {
    margin-bottom: 0;
    margin-right: 7px;
    font-size: 14px;
    font-weight: 500;
  }
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher {
    position: relative;
    display: inline-block;
    font-family: inherit;
  }
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__toggle {
    background: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
    border: 0;
    margin-left: 40px;
  }
}
@media (max-width: 1280px) and (max-width: 600px) {
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__toggle {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
  }
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__toggle[aria-expanded=true] .lang-switcher__arrow {
    transform: rotate(180deg);
  }
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    list-style: none;
    margin: 4px 0 0;
    padding: 4px 0;
    min-width: 60px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__dropdown.open {
    display: block;
  }
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__item a {
    font-size: 18px;
    font-weight: 400;
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
  }
}
@media (max-width: 1280px) and (max-width: 600px) {
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__item a {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__item a:hover,
  header .mobile-menu .mobile-menu-inner .mobile-cta-block .lang-switcher__item.active a {
    background: #f5f5f5;
    color: #000;
  }
  header .desktop-menu {
    display: none;
  }
  header .mobile-toggle {
    display: block;
    background: none;
    border: none;
    margin: 1rem;
  }
  header .mobile-menu.active {
    display: flex;
  }
  header .mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .sub-menu {
    transition: height 0.3s, opacity 0.3s;
    overflow: hidden;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  header .sub-menu li {
    border-bottom: none !important;
  }
  header .sub-menu.active {
    opacity: 1;
    height: auto;
    visibility: visible;
  }
  header .sub-menu li {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.3s, transform 0.3s;
  }
  header .sub-menu.active {
    display: block;
  }
  header .submenu-toggle {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
  }
}

.hamburger-icon .line {
  fill: black;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
}
.hamburger-icon .top {
  transform: translateY(0) rotate(0deg);
}
.hamburger-icon .middle {
  opacity: 1;
  transform: scaleX(1);
}
.hamburger-icon .bottom {
  transform: translateY(0) rotate(0deg);
}

.mobile-toggle.active .hamburger-icon .top {
  transform: translateY(20px) rotate(45deg);
}
.mobile-toggle.active .hamburger-icon .middle {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active .hamburger-icon .bottom {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 991px) {
  .container {
    padding: 0 30px;
    max-width: 100%;
  }
}

.sub-menu li,
.child-pages-list li,
.top-level-item,
.mobile-nav .top-level-item {
  border-bottom: none !important;
}

.top-level-item:has(.sub-menu.active) {
  border-bottom: none !important;
}

.mobile-menu li,
.primary-menu li {
  border-bottom: none !important;
}

#wrapper-footer {
  padding: 100px 0;
}
@media (max-width: 600px) {
  #wrapper-footer {
    padding: 50px 0;
  }
}
#wrapper-footer .footer-logo {
  display: flex;
  justify-content: space-between;
  flex-direction: start;
}
#wrapper-footer .footer-logo img {
  max-width: 220.313px;
  object-fit: contain;
}
@media (max-width: 600px) {
  #wrapper-footer .footer-logo img {
    max-width: 169px;
  }
}
#wrapper-footer .footer-logo #backToTop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
#wrapper-footer .footer-logo #backToTop p {
  margin-bottom: 0;
  transition: color 0.3s ease;
}
#wrapper-footer .footer-logo #backToTop svg {
  margin-top: 0;
  transition: transform 0.3s ease;
}
#wrapper-footer .footer-logo #backToTop:hover p {
  color: #000000;
}
#wrapper-footer .footer-logo #backToTop:hover svg {
  transform: translateY(-3px);
}
@media (max-width: 600px) {
  #wrapper-footer .footer-logo #backToTop {
    display: none;
  }
}
#wrapper-footer .full-width-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 50px 0;
}
#wrapper-footer .footer-links {
  display: flex;
}
#wrapper-footer .footer-links .upper-col {
  display: flex;
  justify-content: space-between;
}
#wrapper-footer .footer-links .upper-col a {
  text-decoration: none !important;
}
@media (max-width: 600px) {
  #wrapper-footer .footer-links .upper-col ul {
    flex: 1;
  }
}
@media (max-width: 600px) {
  #wrapper-footer .footer-links .col {
    width: 100% !important;
    flex: 0 0 100%;
    max-width: 100%;
    display: block;
  }
}
#wrapper-footer .footer-links .col {
  padding: 0;
}
#wrapper-footer .footer-links .col .services-links {
  padding: 0;
  list-style: none;
}
#wrapper-footer .footer-links .col .services-links li {
  margin-bottom: 30px;
}
#wrapper-footer .footer-links .col .services-links li a {
  font-size: 26px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
}
#wrapper-footer .footer-links .col .services-links li a .strong {
  margin-right: 7px;
  font-weight: 700;
}
#wrapper-footer .footer-links .col .services-links li a:hover {
  text-decoration: none;
}
@media (max-width: 600px) {
  #wrapper-footer .footer-links .col .services-links li a {
    font-size: 14px;
    font-weight: 400;
  }
}
#wrapper-footer .footer-links .col .footer-menu-links {
  padding: 0;
  list-style: none;
}
#wrapper-footer .footer-links .col .footer-menu-links.rowlink {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
#wrapper-footer .footer-links .col .footer-menu-links li {
  margin-bottom: 30px;
  padding-right: 5vw;
}
#wrapper-footer .footer-links .col .footer-menu-links li a {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
  font-style: normal;
}
#wrapper-footer .footer-links .col .footer-menu-links li a .strong {
  margin-right: 7px;
  font-weight: 700;
}
#wrapper-footer .footer-links .col .footer-menu-links li a:hover {
  text-decoration-line: none;
}
@media (max-width: 600px) {
  #wrapper-footer .footer-links .col .footer-menu-links li a {
    font-size: 14px;
    font-weight: 400;
    text-decoration-line: underline;
  }
}
@media (max-width: 600px) {
  #wrapper-footer .footer-links .col .footer-menu-links li {
    padding-right: 0px;
  }
}
@media (max-width: 600px) {
  #wrapper-footer .footer-links .col .list-block-social-desktop {
    display: none !important;
  }
}
@media (min-width: 600px) {
  #wrapper-footer .footer-links .col .list-block-social-mobile {
    display: none !important;
  }
}
#wrapper-footer .footer-links .col .inline {
  display: flex;
  align-items: center;
}
#wrapper-footer .footer-links .col .inline p {
  margin-bottom: 0;
  margin-right: 7px;
  font-weight: 500;
}
#wrapper-footer .footer-links .col .inline .btn-arrow-link {
  font-size: 14px;
}
#wrapper-footer .footer-links .col .inline .btn-arrow-link svg {
  height: 9px;
  width: 9px;
}
#wrapper-footer .footer-links .col .social-links {
  display: flex;
  gap: 27px;
  margin-top: 60px;
}
#wrapper-footer .footer-links .col .social-links a {
  color: #868686;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 600px) {
  #wrapper-footer .footer-links .col:nth-child(-n+2) {
    width: 50%;
  }
}
@media (max-width: 600px) {
  #wrapper-footer .footer-links {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
#wrapper-footer .footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 90px;
}
@media (max-width: 991px) {
  #wrapper-footer .footer-copyright {
    font-size: 12px;
    padding-top: 30px !important;
    flex-direction: column;
    align-items: start;
  }
}
#wrapper-footer .footer-copyright .policy-links {
  display: flex;
  gap: 27px;
}
#wrapper-footer .footer-copyright .policy-links a {
  color: #868686;
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 600px) {
  #wrapper-footer .footer-copyright .policy-links a {
    font-size: 12px;
  }
}
#wrapper-footer .footer-copyright .policy-links a:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  #wrapper-footer .footer-copyright .policy-links {
    gap: 10px;
  }
}
#wrapper-footer .footer-copyright .copyright {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #868686;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  #wrapper-footer .footer-copyright .copyright {
    font-size: 12px;
  }
}
#wrapper-footer .cta-wrapper {
  margin-top: 0px !important;
}
@media (max-width: 991px) {
  #wrapper-footer .cta-wrapper {
    text-align: left;
  }
}
#wrapper-footer .cta-wrapper .cta-link-lg {
  display: flex;
  align-items: center;
  font-size: 46px;
  padding: 0 !important;
  margin-top: 0px;
  background-color: #FFFFFF;
}
#wrapper-footer .cta-wrapper .cta-link-lg.cta-link-sm {
  font-size: 20px;
  margin-top: 0px !important;
}
#wrapper-footer .cta-wrapper .cta-link-lg.cta-link-sm .svg-container .svg-rotate {
  gap: 10px;
}
#wrapper-footer .cta-wrapper .cta-link-lg.cta-link-sm .svg-container .svg-rotate .icon svg path {
  fill: #000000;
}
#wrapper-footer .cta-wrapper .cta-link-lg.cta-link-sm:hover .svg-container .svg-rotate .icon svg path {
  fill: #0037FF !important;
}
#wrapper-footer .cta-wrapper .cta-link-lg .svg-container {
  height: 46px;
  width: 46px;
  overflow: hidden;
  margin-left: 10px;
}
#wrapper-footer .cta-wrapper .cta-link-lg .svg-container .svg-rotate {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  transform: rotate(315deg);
}
#wrapper-footer .cta-wrapper .cta-link-lg .svg-container .svg-rotate .icon {
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#wrapper-footer .cta-wrapper .cta-link-lg .svg-container .svg-rotate .icon svg {
  height: 46px;
  width: 46px;
}
#wrapper-footer .cta-wrapper .cta-link-lg .svg-container .svg-rotate .icon svg path {
  fill: #0037FF;
  transition: fill 0.2s ease-in-out;
}
#wrapper-footer .cta-wrapper .svg-container.svg-container-sm {
  display: flex;
  justify-items: start;
  align-items: start;
  height: 25px;
  width: 25x;
  margin-left: 5px;
}
#wrapper-footer .cta-wrapper .svg-container.svg-container-sm .svg-rotate .icon,
#wrapper-footer .cta-wrapper .svg-container.svg-container-sm .svg-rotate .icon svg {
  height: 21px;
  width: 21px;
}
@media (max-width: 600px) {
  #wrapper-footer .cta-wrapper .cta-link-lg {
    margin-top: 60px;
    font-size: 32px;
    line-height: 35px;
    justify-content: flex-start;
    text-align: left;
  }
  #wrapper-footer .cta-wrapper .cta-link-lg.cta-link-sm {
    font-size: 14px;
    margin-top: 0px;
  }
  #wrapper-footer .cta-wrapper .svg-container {
    height: 25px;
    width: 25px;
    overflow: hidden;
    margin-left: 5px;
  }
  #wrapper-footer .cta-wrapper .svg-container .svg-rotate {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    transform: rotate(315deg);
  }
  #wrapper-footer .cta-wrapper .svg-container .svg-rotate .icon {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #wrapper-footer .cta-wrapper .svg-container .svg-rotate .icon svg {
    height: 20px;
    width: 20px;
  }
  #wrapper-footer .cta-wrapper .svg-container .svg-rotate .icon svg path {
    transition: fill 0.2s ease-in-out;
  }
}

.question-text {
  font-size: "Aptos", sans-serif;
  font-size: 18px;
}
@media (max-width: 600px) {
  .question-text {
    font-size: 12px;
  }
}

.right {
  display: flex;
  flex-direction: row-reverse;
}
.right .cta-btn-desktop {
  margin-top: 20px;
}

.custom-page-template {
  padding: 100px 0;
}
.custom-page-template .hero_title_text {
  margin-bottom: 60px;
}

#single-wrapper {
  margin-top: 150px;
}
#single-wrapper .headline {
  margin-bottom: 30px;
}
#single-wrapper .headline .cat-title {
  background-color: #F2F2F2;
  padding: 10px 18px;
  border-radius: 5px;
  width: fit-content;
  margin-bottom: 25px;
  font-weight: 400;
}
#single-wrapper .headline h1 {
  margin-top: 0;
  margin-bottom: 15px;
}
#single-wrapper .author .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
#single-wrapper .author .flex .col {
  width: auto;
  flex-grow: unset;
  flex-basis: unset;
  padding: 0;
}
#single-wrapper .author .flex .col p {
  font-family: "Aptos", serif;
  color: #868686;
}
#single-wrapper .author .flex .col p.author-name {
  color: #000;
}
#single-wrapper .author .flex .col .author-info-wrapper {
  font-family: "Aptos", serif;
  display: flex;
  align-items: center;
  gap: 15px;
}
#single-wrapper .author .flex .col .author-info-wrapper .author-avatar {
  height: 51px;
  width: 51px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}
#single-wrapper .author .flex .col .author-info-wrapper .author-avatar img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
#single-wrapper .content-info {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
@media (max-width: 991px) {
  #single-wrapper .content-info {
    flex-direction: column;
  }
}
#single-wrapper .content-info .col {
  padding: 0;
}
#single-wrapper .content-info .col:nth-child(1) {
  margin-bottom: 30px;
  flex: 2;
}
#single-wrapper .content-info .col:nth-child(1) .main-content h2 {
  font-size: 24px;
  font-family: "Visby CF";
  color: #000000;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
@media (max-width: 991px) {
  #single-wrapper .content-info .col:nth-child(1) .main-content h2 {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  #single-wrapper .content-info .col:nth-child(1) .main-content h2 {
    font-size: 14px;
  }
}
#single-wrapper .content-info .col:nth-child(1) .main-content h2 {
  margin-bottom: 30px;
}
#single-wrapper .content-info .col:nth-child(1) .main-content p {
  margin-bottom: 40px;
}
#single-wrapper .content-info .col:nth-child(2) {
  flex: 1;
}
#single-wrapper .content-info .col:nth-child(2) .sidebar-header {
  margin-bottom: 30px;
}
#single-wrapper .content-info .col:nth-child(2) .sidebar-header p {
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 700;
}
#single-wrapper .content-info .col:nth-child(2) .shareables {
  margin-bottom: 60px;
}
#single-wrapper .content-info .col:nth-child(2) .shareables .share-wrap {
  display: flex;
  gap: 15px;
}
#single-wrapper .content-info .col:nth-child(2) .shareables .share-wrap .share-btn {
  height: 40px;
  width: 40px;
  border: 1px solid #F2F2F2;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#single-wrapper .content-info .col:nth-child(2) .shareables .share-wrap .share-btn:hover {
  text-decoration: none;
  border: 1px solid transparent;
  background-color: #000;
}
#single-wrapper .content-info .col:nth-child(2) .shareables .share-wrap .share-btn:hover i {
  color: #F2F2F2;
}
#single-wrapper .content-info .col:nth-child(2) .shareables .share-wrap .share-btn i {
  font-size: 22px;
  color: #868686;
}
#single-wrapper .content-info .col:nth-child(2) .recent-posts-wrapper .recent-post-item {
  border: 1px solid #F2F2F2;
  border-radius: 5px;
  margin-bottom: 15px;
}
#single-wrapper .content-info .col:nth-child(2) .recent-posts-wrapper .recent-post-item a {
  display: flex;
  gap: 15px;
}
#single-wrapper .content-info .col:nth-child(2) .recent-posts-wrapper .recent-post-item a .post-image {
  width: 120px;
  height: 104px;
}
#single-wrapper .content-info .col:nth-child(2) .recent-posts-wrapper .recent-post-item a .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#single-wrapper .content-info .col:nth-child(2) .recent-posts-wrapper .recent-post-item a .post-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
#single-wrapper .content-info .col:nth-child(2) .recent-posts-wrapper .recent-post-item a .post-details p {
  margin: 0;
}
#single-wrapper .content-info .col:nth-child(2) .recent-posts-wrapper .recent-post-item a .post-details p.post-title {
  color: #000000;
}
#single-wrapper .content-info .col:nth-child(2) .recent-posts-wrapper .recent-post-item a .post-details p.post-excerpt {
  color: #434343;
}
#single-wrapper .content-info .col:nth-child(2) .recent-posts-wrapper .recent-post-item a:hover {
  text-decoration: none;
}
#single-wrapper .post-navigation {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 60px;
}
#single-wrapper .post-navigation .nav-btn {
  color: #868686;
  padding: 10px 20px;
  text-decoration: none;
  transition: 0.2s ease;
}
#single-wrapper .post-navigation .nav-btn:hover {
  color: #000;
}
#single-wrapper .post-navigation .nav-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.block--custom-layout__header {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .block--custom-layout__header {
    padding-bottom: 0px;
  }
}
.block--custom-layout__header .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block--custom-layout__header .container .inner-container {
  padding: 100px 0;
}
.block--custom-layout__header .container h1 {
  font-size: 60px;
  line-height: normal;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 600px) {
  .block--custom-layout__header .container h1 {
    font-size: 26px;
    line-height: normal;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__header .container .subheading {
  font-size: 60px;
  line-height: normal;
  font-weight: 700;
  color: #C7C7C7;
}
@media (max-width: 600px) {
  .block--custom-layout__header .container .subheading {
    font-size: 26px;
    line-height: normal;
    font-weight: 700;
    color: #C7C7C7;
  }
}
.block--custom-layout__header .container .text-highlight {
  font-family: "Aptos", sans-serif;
  font-size: 30px;
  line-height: normal;
  font-weight: 400;
  color: #434343;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 100px;
  display: inline-block;
}
@media (max-width: 600px) {
  .block--custom-layout__header .container .text-highlight {
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    color: #434343;
    margin-top: 60px;
  }
}
.block--custom-layout__header .container .text-highlight .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: #434343;
  margin-left: 5px;
  margin-bottom: -3px;
  animation: blink 0.7s infinite;
}
.block--custom-layout__header .container .text-highlight {
  /* ✨ Blink animation */
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.block--custom-layout__header .container .cta-wrapper {
  text-align: left;
}
.block--custom-layout__header .container .cta-wrapper .cta-link-title {
  background-color: #F2F2F2;
  color: #000000;
}

.block--custom-layout__business-communication {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__business-communication {
    padding: 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication {
    padding: 30px 0px;
  }
}
.block--custom-layout__business-communication .container {
  height: 100%;
}
.block--custom-layout__business-communication .container .inner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 40px;
  }
}
.block--custom-layout__business-communication .container .inner-container .col {
  padding-right: 0px;
  padding-left: 0px;
}
.block--custom-layout__business-communication .container .inner-container .col:first-child {
  position: relative;
}
.block--custom-layout__business-communication .container .inner-container .headlines.sticky-headlines {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .headlines.sticky-headlines {
    position: inherit;
    top: 100px;
  }
}
.block--custom-layout__business-communication .container .inner-container .headlines .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .headlines .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__business-communication .container .inner-container .headlines .heading {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .headlines .heading br {
    display: contents;
  }
}
.block--custom-layout__business-communication .container .inner-container .headlines .subheading {
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  color: #868686;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .block--custom-layout__business-communication .container .inner-container .headlines .subheading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__business-communication .container .inner-container .headlines .text-highlight {
  font-size: 400px;
  font-weight: 700;
  line-height: 50px;
}
.block--custom-layout__business-communication .container .inner-container .headlines p {
  font-size: 20px;
  line-height: 30px;
  color: var(--Wellevate-Gray-C, #5E5E5E);
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .headlines p {
    font-size: 12px;
    line-height: 19px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .headlines {
    display: none;
  }
}
.block--custom-layout__business-communication .container .inner-container .headlines-mobile {
  display: none;
}
.block--custom-layout__business-communication .container .inner-container .headlines-mobile .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .headlines-mobile .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__business-communication .container .inner-container .headlines-mobile .heading {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .headlines-mobile .heading br {
    display: contents;
  }
}
.block--custom-layout__business-communication .container .inner-container .headlines-mobile .subheading {
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  color: #868686;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .block--custom-layout__business-communication .container .inner-container .headlines-mobile .subheading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 30px;
  }
}
.block--custom-layout__business-communication .container .inner-container .headlines-mobile .text-highlight {
  font-size: 400px;
  font-weight: 700;
  line-height: 50px;
}
.block--custom-layout__business-communication .container .inner-container .headlines-mobile p {
  font-size: 20px;
  line-height: 30px;
  color: var(--Wellevate-Gray-C, #5E5E5E);
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .headlines-mobile p {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__business-communication .container .inner-container .headlines-mobile p {
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .headlines-mobile {
    display: block;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .content-repeater {
    margin-top: 0px;
  }
}
.block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item {
  border-radius: 5px;
  padding: 50px 25px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item {
    padding: 30px 15px;
  }
}
.block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item .header {
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item .header {
    font-size: 16px;
  }
}
.block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item .separator {
  height: 1px;
  width: 100%;
  background-color: #9C9C9C;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item .separator {
    margin-bottom: 15px;
  }
}
.block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item .descriptor {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 70px;
}
@media (max-width: 600px) {
  .block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item .descriptor {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 30px;
  }
}
.block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item .cta-link-content {
  background-color: #FFFFFF;
  color: #000000;
  font-weight: 400;
}
.block--custom-layout__business-communication .container .inner-container .content-repeater {
  /* Apply styles from the 3rd item onward */
}
.block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item:nth-child(n+4) .header, .block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item:nth-child(n+4) .separator, .block--custom-layout__business-communication .container .inner-container .content-repeater .content-repeater__item:nth-child(n+4) .descriptor {
  color: #FFFFFF !important;
}

.block--custom-layout__choose-wellevate {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__choose-wellevate {
    padding: 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__choose-wellevate {
    padding: 30px 0px;
  }
}
.block--custom-layout__choose-wellevate .container .headlines .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__choose-wellevate .container .headlines .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__choose-wellevate .container .headlines .descriptor {
  font-size: 20px;
  line-height: 30px;
  color: var(--Wellevate-Gray-C, #5E5E5E);
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__choose-wellevate .container .headlines .descriptor {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__choose-wellevate .container .content-repeater .content-item .icon-svg {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__choose-wellevate .container .content-repeater .content-item .icon-svg {
    margin-bottom: 10px;
  }
}
.block--custom-layout__choose-wellevate .container .content-repeater .content-item .header {
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
}
@media (max-width: 600px) {
  .block--custom-layout__choose-wellevate .container .content-repeater .content-item .header {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 0px;
  }
  .block--custom-layout__choose-wellevate .container .content-repeater .content-item .header br {
    display: contents;
  }
}
.block--custom-layout__choose-wellevate .container .content-repeater .content-item .descriptor {
  font-size: 20px;
  color: var(--Wellevate-Gray-C, #5E5E5E);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__choose-wellevate .container .content-repeater .content-item .descriptor {
    font-size: 12px;
    line-height: 22px;
  }
}
.block--custom-layout__choose-wellevate .container .cta-wrapper {
  text-align: right;
  margin-top: 100px;
}
@media (max-width: 600px) {
  .block--custom-layout__choose-wellevate .container .cta-wrapper {
    margin-top: 30px;
  }
}
.block--custom-layout__choose-wellevate .container .cta-wrapper .cta-link-title {
  background-color: #F2F2F2;
  color: #000000;
}

.block--custom-layout__collaboration-logos {
  padding: 100px 0;
  background-color: #FFFFFF;
  margin: 75px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__collaboration-logos {
    padding: 60px 0;
    margin: 30px 0;
  }
}
.block--custom-layout__collaboration-logos .headlines {
  margin-bottom: 70px;
}
.block--custom-layout__collaboration-logos .headlines .heading {
  font-size: 26px;
  color: #000000;
  font-weight: 700;
  text-align: center;
  line-height: 36px;
}
@media (max-width: 600px) {
  .block--custom-layout__collaboration-logos .headlines .heading {
    font-size: 18px;
  }
}
.block--custom-layout__collaboration-logos .content-repeater {
  position: relative;
}
.block--custom-layout__collaboration-logos .content-repeater .right-overlay {
  position: absolute;
  height: 100%;
  width: 20%;
  background: #ffffff;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0.29) 65%, rgba(255, 255, 255, 0) 100%);
  z-index: 9;
  right: 0;
}
.block--custom-layout__collaboration-logos .content-repeater .left-overlay {
  position: absolute;
  height: 100%;
  width: 20%;
  background: #ffffff;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0.29) 65%, rgba(255, 255, 255, 0) 100%);
  z-index: 9;
}
.block--custom-layout__collaboration-logos .content-repeater .top-level-slider {
  margin-bottom: 63px;
}
.block--custom-layout__collaboration-logos .content-repeater .swiper-wrapper {
  transition-timing-function: linear !important;
}
.block--custom-layout__collaboration-logos .content-repeater .swiper-wrapper .swiper-slide img {
  height: 60px;
}
@media (max-width: 600px) {
  .block--custom-layout__collaboration-logos .content-repeater .swiper-wrapper .swiper-slide img {
    max-height: 25px;
  }
}

.block--custom-layout__case-study {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__case-study {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__case-study {
    padding: 30px 0px;
  }
}
.block--custom-layout__case-study p, .block--custom-layout__case-study h2 {
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__case-study .background {
    background-color: #F5F5F5;
  }
}
.block--custom-layout__case-study .swiper-nav {
  margin-top: 20px;
}
.block--custom-layout__case-study .wrapper {
  background-color: #F5F5F5;
  margin-top: 60px;
  margin-bottom: 50px;
  border-radius: 5px;
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item {
  display: flex;
  padding: 50px;
}
@media (max-width: 991px) {
  .block--custom-layout__case-study .wrapper .content-repeater .content-item {
    padding: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__case-study .wrapper .content-repeater .content-item {
    flex-wrap: wrap;
    flex-direction: column;
    padding: 40px 0px;
  }
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__image img {
  border-radius: 5px;
  width: 350px;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__image img {
    width: 250px;
    height: 350px;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__image img {
    width: 100%;
    height: 330px;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__image {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text {
  flex: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text img {
  width: 177.188px;
  height: auto;
}
@media (max-width: 600px) {
  .block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text img {
    max-width: 50%;
    height: auto;
  }
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .text_wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .text_wrapper {
    margin-top: 20px;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .text_wrapper {
    margin-top: 15px;
    gap: 15px;
  }
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view {
  font-size: 30px;
  line-height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-weight: 700;
  color: #000000;
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view .strong {
  font-weight: 700;
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view svg {
  margin-left: 25px;
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view:hover {
  text-decoration: none;
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view {
    font-size: 20px;
    position: relative;
    margin-top: 30px;
  }
  .block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view svg {
    height: 16px;
    width: 16px;
    margin-left: 15px;
  }
  .block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view svg path {
    fill: #000000;
  }
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view:hover {
  color: #0037FF;
  text-decoration: none;
}
.block--custom-layout__case-study .wrapper .content-repeater .content-item .content-item__text .cta-view:hover .svg path {
  fill: #0037FF;
}
.block--custom-layout__case-study .cta-wrapper {
  text-align: right;
}
.block--custom-layout__case-study .cta-wrapper .cta-link-content {
  background-color: #FFFFFF;
  color: #000000;
}

.block--custom-layout__wellevate-founder {
  background-color: #000000;
  color: #FFFFFF;
  padding: 100px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-founder {
    padding: 40px 0px;
  }
}
.block--custom-layout__wellevate-founder .inner-container .content-wrapper {
  display: flex;
  gap: 100px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-founder .inner-container .content-wrapper {
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-founder .inner-container .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__text {
  position: relative;
  align-self: center;
  flex: 1.5;
}
.block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__text .headlines {
  display: flex;
  flex-direction: column;
}
.block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__text .heading {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 50px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__text .heading {
    font-size: 14px;
    line-height: 24px;
    margin: 20px 0;
  }
}
.block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__text .sub-header {
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__text .sub-header {
    font-size: 16px;
    line-height: 24px;
  }
}
.block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__text .descriptor {
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  color: #FFFFFF;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__text .descriptor {
    font-size: 12px;
  }
}
.block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__image {
  display: flex;
  align-items: center;
}
.block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__image img {
  margin-bottom: 20px;
  max-width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-founder .inner-container .content-wrapper .content-item__image img {
    object-position: top;
    width: 100%;
    height: 330px;
  }
}
.block--custom-layout__wellevate-founder .inner-container .cta-wrapper {
  text-align: right;
  margin-top: 50px;
}
.block--custom-layout__wellevate-founder .inner-container .cta-wrapper .cta-link-content {
  background-color: #FFFFFF;
  color: #000000;
}

.block--custom-layout__approach-table {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__approach-table {
    padding: 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__approach-table {
    padding: 30px 0px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__approach-table .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.block--custom-layout__approach-table .inner-container .headlines .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__approach-table .inner-container .headlines .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__approach-table .inner-container .headlines .descriptor {
  font-size: 20px;
  line-height: 30px;
  color: var(--Wellevate-Gray-C, #5E5E5E);
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__approach-table .inner-container .headlines .descriptor {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__approach-table .table-business-approach {
  margin-top: 70px;
}
@media (max-width: 991px) {
  .block--custom-layout__approach-table .table-business-approach {
    margin-top: 30px;
  }
}
.block--custom-layout__approach-table .table-business-approach thead tr th {
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
  border-top: 0;
  border-bottom: 0;
  padding: 1.5rem 0.75rem;
}
@media (max-width: 600px) {
  .block--custom-layout__approach-table .table-business-approach thead tr th {
    font-size: 12px;
  }
  .block--custom-layout__approach-table .table-business-approach thead tr th span {
    display: none;
  }
  .block--custom-layout__approach-table .table-business-approach thead tr th {
    min-width: 100px;
    padding: 0.5rem;
  }
}
.block--custom-layout__approach-table .table-business-approach thead tr th:nth-child(2) {
  background-color: #f0f0f0;
}
.block--custom-layout__approach-table .table-business-approach tbody tr th {
  font-size: 20px;
  vertical-align: middle;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .block--custom-layout__approach-table .table-business-approach tbody tr th {
    font-size: 12px;
    display: flex;
  }
}
.block--custom-layout__approach-table .table-business-approach tbody tr th svg {
  height: 30px;
  width: 30px;
  margin-right: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__approach-table .table-business-approach tbody tr th svg {
    height: 20px;
    width: 20px;
    margin-right: 15px;
  }
}
.block--custom-layout__approach-table .table-business-approach tbody tr td {
  padding: 1.5rem 0.75rem;
  text-align: center;
}
.block--custom-layout__approach-table .table-business-approach tbody tr td:nth-child(2) {
  background-color: #f0f0f0;
}
.block--custom-layout__approach-table .table-business-approach .business_image {
  align-self: center;
  height: 18px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .block--custom-layout__approach-table .table-business-approach .business_image {
    height: 12px !important;
    width: auto;
  }
}

@media (min-width: 768px) {
  .mobile-dropdown {
    display: none;
  }
}
@media (max-width: 768px) {
  .table-business-approach thead tr th:nth-child(4),
  .table-business-approach thead tr th:nth-child(5),
  .table-business-approach thead tr th:nth-child(6) {
    display: none;
  }
  /* Hide all columns except Wellevate and the active one */
  .table-business-approach td {
    display: none;
  }
  /* Always show Wellevate */
  .table-business-approach .wellevate-column {
    display: table-cell;
  }
  /* Make sure one column is visible on load */
  .table-business-approach .freelancer-column {
    display: table-cell;
  }
  /* Style the dropdown */
  .mobile-dropdown {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    border: 0;
  }
}
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.block--custom-layout__wellevate-services {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-services {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-services {
    padding: 30px 0px;
  }
}
.block--custom-layout__wellevate-services .header_text {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-services .header_text {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-services .header_text {
    margin-top: 30px;
  }
}
.block--custom-layout__wellevate-services .content-repeater {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-services .content-repeater {
    margin-top: 30px;
  }
}
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item {
  transition: all 0.2s ease-in-out;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-services .content-repeater .content-repeater__item {
    padding: 30px 35px;
  }
}
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item:nth-child(n+4) h3 {
  color: #FFFFFF !important;
}
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item:nth-child(n+4) .descriptor {
  color: #FFFFFF !important;
}
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item:nth-child(n+4) svg,
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item:nth-child(n+4) svg path {
  fill: #FFFFFF !important;
  stroke: transparent !important;
}
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item:hover {
  background-color: #0037FF !important;
}
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item:hover h3 {
  color: #FFFFFF !important;
}
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item:hover .descriptor {
  color: #FFFFFF !important;
}
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item:hover svg,
.block--custom-layout__wellevate-services .content-repeater .content-repeater__item:hover svg path {
  fill: #FFFFFF !important;
  stroke: transparent !important;
}
.block--custom-layout__wellevate-services .content-repeater .container {
  display: flex;
  padding-top: 34px;
  padding-bottom: 34px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-services .content-repeater .container {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 5px;
  }
}
.block--custom-layout__wellevate-services .content-repeater .cta-btn-desktop, .block--custom-layout__wellevate-services .content-repeater .title_text {
  font-weight: 400;
}
.block--custom-layout__wellevate-services .content-repeater .cta-btn-desktop {
  align-items: center;
  width: 250px;
  align-self: center;
  margin-left: 40px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-services .content-repeater .cta-btn-desktop {
    align-self: flex-end;
    width: 150px;
  }
}

.block--custom-layout__explore-pricing {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__explore-pricing {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing {
    padding: 30px 0px;
  }
}
.block--custom-layout__explore-pricing .desktop {
  display: block;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .desktop {
    display: none;
  }
}
.block--custom-layout__explore-pricing .mobile {
  display: none;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .mobile {
    display: block;
  }
}
.block--custom-layout__explore-pricing .inner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__explore-pricing .inner-container .col {
  padding-right: 0px;
  padding-left: 0px;
}
.block--custom-layout__explore-pricing .inner-container .col .headlines .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .headlines .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .headlines .heading {
    padding-bottom: 0px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .headlines .descriptor {
  font-size: 20px;
  line-height: 30px;
  color: var(--Wellevate-Gray-C, #5E5E5E);
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .headlines .descriptor {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .headlines .descriptor {
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .headlines .descriptor {
    margin-bottom: 30px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .headlines .cta-view2 {
  font-size: 47px;
  line-height: 38px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #000000;
}
.block--custom-layout__explore-pricing .inner-container .col .headlines .cta-view2 .strong {
  font-weight: 700;
}
.block--custom-layout__explore-pricing .inner-container .col .headlines .cta-view2 svg {
  margin-left: 25px;
}
.block--custom-layout__explore-pricing .inner-container .col .headlines .cta-view2:hover {
  text-decoration: none;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .headlines .cta-view2 {
    display: none;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper {
    gap: 30px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .count-item {
  display: flex;
  flex: 1;
  gap: 48px;
  border-radius: 5px;
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .count-item {
    gap: 15px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .count-item .number {
  position: absolute;
  height: 100%;
  left: 20px;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .count-item .number p {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  bottom: 0;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .count-item .text-container {
  display: flex;
  flex: 1;
  justify-content: left;
  align-items: center;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .count-item .text-container p {
  color: var(--Black, #000);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  padding-left: 70px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .count-item .text-container p {
    font-size: 16px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .count-item-mobile {
  display: flex;
  flex: 1;
  gap: 48px;
  border-radius: 5px;
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .count-item-mobile {
    gap: 15px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .count-item-mobile .number {
  position: absolute;
  height: 100%;
  left: 20px;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .count-item-mobile .number p {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  bottom: 0;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .count-item-mobile .text-container {
  display: flex;
  flex: 1;
  justify-content: left;
  align-items: center;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .count-item-mobile .text-container p {
  color: var(--Black, #000);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  padding-left: 70px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .count-item-mobile .text-container p {
    font-size: 16px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .count-item-mobile {
  min-height: 67px;
  margin-bottom: 15px;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile {
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 35px 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1.5px solid #D9D9D9;
  position: relative;
  background-color: #FFFFFF;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile {
    gap: 0;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .white-container-row {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent, #FFFFFF);
  z-index: 9999;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .white-container-row p {
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  padding: 10px 20px;
  border-radius: 5px;
  background: #F2F2F2;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .white-container-row p a {
  color: #000000;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .white-container-row p a {
    font-size: 14px;
    padding-right: 5px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .white-container-row p {
    bottom: 10px;
    padding: 0px 10px;
    right: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .white-container-row {
    font-size: 14px;
    padding-right: 5px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .row-container-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .row-container-row .content-header-row {
  padding: 10px;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  background: var(--Wellevate-Advise, #F2F2F2);
  display: flex;
  align-items: center;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .row-container-row .content-header-row p {
  text-align: left;
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .row-container-row .content-header-row p {
    font-size: 16px;
    line-height: 26px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .row-container-row .content-wrapper-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 5px;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .row-container-row .content-wrapper-row .content-item {
  padding: 5px;
  align-self: stretch;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .row-container-row .content-wrapper-row .content-item p {
  text-align: left;
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .row-container-row .content-wrapper-row .content-item p {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .row-container-row .content-wrapper-row .content-item:last-child {
  border-bottom: none;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .text-container {
  color: #5E5E5E;
  padding-top: 20px;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .text-container .header {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .text-container .header {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .text-container .descriptor {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin-top: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .text-container .descriptor {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile table {
  align-self: stretch;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile table tr {
  color: #5E5E5E;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile table tr th {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  border-bottom: 2px solid #5E5E5E;
  padding: 15px 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile table tr th {
    font-size: 12px;
    text-align: center;
    padding: 0px 0px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile table tr td {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  border-top: 1px solid #D9D9D9;
  padding: 15px 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile table tr td {
    font-size: 12px;
    text-align: center;
    padding: 10px 0px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile table {
  margin-bottom: 10px;
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  align-self: stretch;
  border: none;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .card {
    justify-content: flex-start;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .card svg {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .card svg {
    margin-bottom: 15px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .card .header {
  color: #000000;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .card .header {
    font-size: 16px;
    line-height: 26px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .card .descriptor {
  color: #434343;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .card .descriptor {
    font-size: 12px;
    line-height: 19px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .card {
    padding: 30px 10px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .line {
  border-bottom: 1px solid #d1d1d1;
  width: 100%;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile .line {
    border-bottom: none;
    border-left: 1px solid #d1d1d1;
    width: 1px;
    min-height: 200px;
    align-self: center;
    background-color: transparent;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .item-mobile .price-content-mobile {
    padding: 10px 10px;
  }
}
.block--custom-layout__explore-pricing .inner-container .col .count-wrapper .count-item.active {
  background: #B6B6B6;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .col .count-wrapper .count-item.active {
    background: #F2F2F2;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content {
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 35px 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1.5px solid #D9D9D9;
  position: relative;
  background-color: #FFFFFF;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content {
    gap: 0;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content .white-container-row {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent, #FFFFFF);
  z-index: 9999;
}
.block--custom-layout__explore-pricing .inner-container .price-content .white-container-row p {
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  padding: 10px 20px;
  border-radius: 5px;
  background: #F2F2F2;
}
.block--custom-layout__explore-pricing .inner-container .price-content .white-container-row p a {
  color: #000000;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .white-container-row p a {
    font-size: 14px;
    padding-right: 5px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .white-container-row p {
    bottom: 10px;
    padding: 0px 10px;
    right: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .white-container-row {
    font-size: 14px;
    padding-right: 5px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content .row-container-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.block--custom-layout__explore-pricing .inner-container .price-content .row-container-row .content-header-row {
  padding: 10px;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  background: var(--Wellevate-Advise, #F2F2F2);
  display: flex;
  align-items: center;
}
.block--custom-layout__explore-pricing .inner-container .price-content .row-container-row .content-header-row p {
  text-align: left;
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .row-container-row .content-header-row p {
    font-size: 16px;
    line-height: 26px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content .row-container-row .content-wrapper-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 5px;
}
.block--custom-layout__explore-pricing .inner-container .price-content .row-container-row .content-wrapper-row .content-item {
  padding: 5px;
  align-self: stretch;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
}
.block--custom-layout__explore-pricing .inner-container .price-content .row-container-row .content-wrapper-row .content-item p {
  text-align: left;
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .row-container-row .content-wrapper-row .content-item p {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content .row-container-row .content-wrapper-row .content-item:last-child {
  border-bottom: none;
}
.block--custom-layout__explore-pricing .inner-container .price-content .text-container {
  color: #5E5E5E;
  padding-top: 20px;
}
.block--custom-layout__explore-pricing .inner-container .price-content .text-container .header {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .text-container .header {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content .text-container .descriptor {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin-top: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .text-container .descriptor {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content table {
  align-self: stretch;
}
.block--custom-layout__explore-pricing .inner-container .price-content table tr {
  color: #5E5E5E;
}
.block--custom-layout__explore-pricing .inner-container .price-content table tr th {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  border-bottom: 2px solid #5E5E5E;
  padding: 15px 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content table tr th {
    font-size: 12px;
    text-align: center;
    padding: 0px 0px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content table tr td {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  border-top: 1px solid #D9D9D9;
  padding: 15px 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content table tr td {
    font-size: 12px;
    text-align: center;
    padding: 10px 0px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content table {
  margin-bottom: 10px;
}
.block--custom-layout__explore-pricing .inner-container .price-content .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  align-self: stretch;
  border: none;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .card {
    justify-content: flex-start;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content .card svg {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .card svg {
    margin-bottom: 15px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content .card .header {
  color: #000000;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .card .header {
    font-size: 16px;
    line-height: 26px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content .card .descriptor {
  color: #434343;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .card .descriptor {
    font-size: 12px;
    line-height: 19px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .card {
    padding: 30px 10px;
  }
}
.block--custom-layout__explore-pricing .inner-container .price-content .line {
  border-bottom: 1px solid #d1d1d1;
  width: 100%;
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content .line {
    border-bottom: none;
    border-left: 1px solid #d1d1d1;
    width: 1px;
    min-height: 200px;
    align-self: center;
    background-color: transparent;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__explore-pricing .inner-container .price-content {
    padding: 10px 10px;
  }
}

.cta-container {
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 600px) {
  .cta-container {
    padding-top: 20px;
  }
}

.cta-wrapper {
  text-align: right;
}
.cta-wrapper .cta-link-content {
  background-color: #F2F2F2;
  color: #000000;
}

.block--custom-layout__how-it-works {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works {
    padding: 30px 0px;
  }
}
.block--custom-layout__how-it-works .inner-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works .inner-container {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works .inner-container {
    gap: 30px;
  }
}
.block--custom-layout__how-it-works .inner-container .headlines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.block--custom-layout__how-it-works .inner-container .content-repeater {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__how-it-works .inner-container .content-repeater .content-item {
  display: flex;
  border-radius: 5px;
  flex-direction: row;
  border: none !important;
  position: relative;
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater .content-item {
    flex-direction: column;
    align-items: stretch;
  }
}
.block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper {
  padding: 30px 20px 30px 20px;
  padding-right: 100px;
  height: 300px;
  width: 100%;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper {
    padding-right: 90px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper {
    height: auto;
    min-height: 255px;
    padding: 20px 10px 70px 10px;
    padding-right: 110px;
  }
}
.block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__icon {
  margin-bottom: 15px;
}
.block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__icon img {
  max-width: 35px;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__icon img {
    max-width: 25px;
  }
}
.block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content .content-item__content__text .header_text {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content .content-item__content__text .header_text {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content .content-item__content__text .header_text {
    margin-bottom: 10px;
  }
}
.block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__count {
  padding-right: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  flex: 1;
  position: absolute;
  bottom: 0;
  right: 0;
}
.block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__count svg {
  height: 100px;
  width: auto;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__count svg {
    height: 90px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works .inner-container .content-repeater .content-item .content-item__count svg {
    height: 90px;
  }
}
.block--custom-layout__how-it-works .inner-container .cta-buttons-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works .inner-container .cta-buttons-wrapper {
    justify-content: flex-end;
    gap: 15px;
  }
}
.block--custom-layout__how-it-works .inner-container .cta-buttons-wrapper .cta-btn-desktop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #E6E6E6;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  align-self: flex-end;
}
.block--custom-layout__how-it-works .inner-container .cta-buttons-wrapper .cta-btn-desktop:hover {
  background-color: rgb(217.25, 217.25, 217.25);
  transform: translateX(5px);
}
.block--custom-layout__how-it-works .inner-container .cta-buttons-wrapper .cta-btn-desktop svg {
  width: 24px;
  height: 19px;
  flex-shrink: 0;
}
.block--custom-layout__how-it-works .inner-container .cta-buttons-wrapper .cta-btn-desktop span {
  font-weight: 500;
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works .inner-container .cta-buttons-wrapper .cta-btn-desktop {
    padding: 10px 20px;
    font-size: 14px;
  }
  .block--custom-layout__how-it-works .inner-container .cta-buttons-wrapper .cta-btn-desktop svg {
    width: 20px;
    height: 16px;
  }
}
.block--custom-layout__how-it-works .inner-container .cta-wrapper {
  margin-top: 50px;
  text-align: right;
}
.block--custom-layout__how-it-works .inner-container .cta-wrapper .cta-link-title {
  background-color: #E6E6E6;
  color: #000000;
}

.block--custom-layout__wysiwyg h2 {
  margin-bottom: 1rem;
}
.block--custom-layout__wysiwyg p {
  margin-bottom: 1.5rem;
}

.block--custom-layout__service_header {
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
  margin-bottom: 75px;
}
@media (max-width: 600px) {
  .block--custom-layout__service_header {
    padding-top: 70px;
    padding-bottom: 60px;
    margin-bottom: 30px;
  }
}
@media (min-width: 600px) {
  .block--custom-layout__service_header {
    height: 100vh;
  }
}
.block--custom-layout__service_header .desktop {
  display: flex !important;
}
@media (max-width: 600px) {
  .block--custom-layout__service_header .desktop {
    display: none !important;
  }
}
.block--custom-layout__service_header .mobile {
  display: none !important;
}
@media (max-width: 600px) {
  .block--custom-layout__service_header .mobile {
    display: flex !important;
  }
}
.block--custom-layout__service_header .container {
  height: 100%;
  color: #FFFFFF;
}
.block--custom-layout__service_header .container .headlines h1 {
  font-size: 70px;
  line-height: 110px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .block--custom-layout__service_header .container .headlines h1 {
    font-size: 30px;
    line-height: 50px;
  }
}
.block--custom-layout__service_header .container .headlines .subheading {
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .block--custom-layout__service_header .container .headlines .subheading {
    margin-bottom: 0px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
  }
}
.block--custom-layout__service_header .container .bottom-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.block--custom-layout__service_header .container .bottom-wrapper img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}
.block--custom-layout__service_header .container .bottom-wrapper .no-image {
  height: 300px;
  background-color: #D9D9D9;
  width: 100%;
}
.block--custom-layout__service_header .container .bottom-wrapper .inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.block--custom-layout__service_header .container .bottom-wrapper .description {
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  display: flex;
  align-items: center;
  width: 100%;
}
.block--custom-layout__service_header .container .bottom-wrapper .cta-wrapper {
  display: flex;
  align-items: center;
}
@media (min-width: 600px) {
  .block--custom-layout__service_header .container .bottom-wrapper img .no-image {
    flex: 1;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service_header .container .bottom-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .block--custom-layout__service_header .container .bottom-wrapper img, .block--custom-layout__service_header .container .bottom-wrapper .no-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
    background-color: #D9D9D9;
    margin-bottom: 30px;
  }
  .block--custom-layout__service_header .container .bottom-wrapper .inner-wrapper {
    gap: 0px;
  }
  .block--custom-layout__service_header .container .bottom-wrapper .description {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 30px;
  }
  .block--custom-layout__service_header .container .bottom-wrapper .cta-link-lg {
    font-size: 16px;
    padding: 10px 20px;
  }
  .block--custom-layout__service_header .container .bottom-wrapper .svg-container {
    margin-left: 10px;
  }
}
.block--custom-layout__service_header .container .cta-wrapper {
  justify-content: right;
  text-align: right;
}
.block--custom-layout__service_header .container .cta-wrapper .cta-link-title {
  background-color: #fff;
  color: #000000;
}

.block--custom-layout__services_keyfeatures {
  padding: 75px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures {
    padding: 30px 0;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .headlines .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .headlines .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .headlines .descriptor {
  font-size: 20px;
  line-height: 30px;
  color: var(--Wellevate-Gray-C, #5E5E5E);
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .headlines .descriptor {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .headlines .descriptor {
  padding-bottom: 50px !important;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .headlines .descriptor {
    margin-bottom: 0px !important;
    padding-bottom: 30px !important;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .content-repeater {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0;
}
.block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 25px 15px 25px;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item .accordion-header {
    padding: 15px 10px 10px 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item .accordion-header svg {
    width: 11px;
    height: 11px;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item .accordion-content {
  height: 0;
  padding: 0 25px 0 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item .accordion-content {
    padding: 0 10px 0 10px;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item h3 {
  font-size: 26px;
  font-style: normal;
  line-height: 36px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item h3 {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 0;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item p {
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .content-repeater .content-item p {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .icon {
  display: none;
  transition: opacity 0.3s ease;
}
.block--custom-layout__services_keyfeatures .inner-container .icon.icon-minus {
  display: inline;
}
.block--custom-layout__services_keyfeatures .inner-container .content-item.active .accordion-content {
  display: block;
}
.block--custom-layout__services_keyfeatures .inner-container .content-item.active .icon-plus {
  display: inline;
}
.block--custom-layout__services_keyfeatures .inner-container .content-item.active .icon-minus {
  display: none;
}
.block--custom-layout__services_keyfeatures .inner-container .content-item:nth-child(n+4) h3, .block--custom-layout__services_keyfeatures .inner-container .content-item:nth-child(n+4) p {
  color: #FFFFFF;
}
.block--custom-layout__services_keyfeatures .inner-container .content-item:nth-child(n+4) svg path {
  fill: #FFFFFF;
}
.block--custom-layout__services_keyfeatures .inner-container .cta-wrapper {
  text-align: right;
  margin-top: 50px;
}
.block--custom-layout__services_keyfeatures .inner-container .cta-wrapper .cta-link-content {
  background-color: #FFFFFF;
  color: #000000;
}
.block--custom-layout__services_keyfeatures .inner-container .col-content {
  display: flex;
  padding-top: 50px;
  gap: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .col-content {
    flex-direction: column;
    gap: 15px;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 5px;
  padding: 50px 25px;
  background-color: #F2F2F2;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item {
    padding: 30px 15px;
  }
  .block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item h3 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item .list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item .list {
    gap: 10px;
    padding-top: 10px;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item .list .list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  max-width: 100%;
  word-break: break-word;
}
.block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item .list .list-item svg {
  flex-shrink: 0;
  width: 20px !important;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item .list .list-item {
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    gap: 15px;
  }
}
.block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item:nth-child(2) {
  background-color: #262626;
  color: #FFFFFF !important;
}
.block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item:nth-child(2) .list .list-item svg path {
  fill: #FFFFFF;
}
.block--custom-layout__services_keyfeatures .inner-container .col-content .col-content-item:nth-child(3) {
  background-color: #D9D9D9;
}

.block--custom-layout__services_savetime {
  padding: 75px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services_savetime {
    padding: 30px 0;
  }
}
.block--custom-layout__services_savetime .inner-container .headlines .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_savetime .inner-container .headlines .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services_savetime .inner-container .headlines .heading {
    margin-bottom: 0px !important;
    padding-bottom: 30px !important;
  }
}
.block--custom-layout__services_savetime .inner-container .content-repeater {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.block--custom-layout__services_savetime .inner-container .content-repeater .content-item {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0;
  border-bottom: 1px solid #D9D9D9;
}
.block--custom-layout__services_savetime .inner-container .content-repeater .content-item .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 25px 0;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 600px) {
  .block--custom-layout__services_savetime .inner-container .content-repeater .content-item .accordion-header {
    padding: 15px 0px 10px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services_savetime .inner-container .content-repeater .content-item .accordion-header svg {
    width: 11px;
    height: 11px;
  }
}
.block--custom-layout__services_savetime .inner-container .content-repeater .content-item .accordion-content {
  height: 0;
}
.block--custom-layout__services_savetime .inner-container .content-repeater .content-item h3 {
  font-size: 26px;
  font-style: normal;
  line-height: 36px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_savetime .inner-container .content-repeater .content-item h3 {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 0;
  }
}
.block--custom-layout__services_savetime .inner-container .content-repeater .content-item p {
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_savetime .inner-container .content-repeater .content-item p {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__services_savetime .inner-container .content-repeater .content-item:last-child {
  border-bottom: none;
}
.block--custom-layout__services_savetime .inner-container .icon {
  display: none;
  transition: opacity 0.3s ease;
}
.block--custom-layout__services_savetime .inner-container .icon.icon-minus {
  display: inline;
}
.block--custom-layout__services_savetime .inner-container .content-item.active .accordion-content {
  display: block;
}
.block--custom-layout__services_savetime .inner-container .content-item.active .icon-plus {
  display: inline;
}
.block--custom-layout__services_savetime .inner-container .content-item.active .icon-minus {
  display: none;
}

.lower {
  display: none;
}
@media (max-width: 600px) {
  .lower {
    display: block;
  }
}

.cta-wrapper {
  text-align: right;
  margin-top: 50px;
}
.cta-wrapper .cta-link-content {
  background-color: #F2F2F2;
  color: #000000;
}

.block--custom-layout__services_testimony {
  padding: 100px 0;
  margin: 75px 0;
  margin-bottom: 150px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_testimony {
    padding: 60px 0;
    margin: 30px 0;
    margin-bottom: 60px;
  }
}
.block--custom-layout__services_testimony .inner-container .headlines {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block--custom-layout__services_testimony .inner-container .headlines .heading {
  color: #FFFFFF;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_testimony .inner-container .headlines .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__services_testimony .inner-container .headlines .heading {
  padding-bottom: 20px !important;
}
@media (max-width: 600px) {
  .block--custom-layout__services_testimony .inner-container .headlines .heading {
    margin-bottom: 0px !important;
    padding-bottom: 30px !important;
    max-width: 300px;
    word-wrap: break-word;
    white-space: normal;
  }
}
.block--custom-layout__services_testimony .inner-container .testimonial-swiper {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services_testimony .inner-container .testimonial-swiper {
    margin-bottom: 0px !important;
    padding-bottom: 30px !important;
  }
}
.block--custom-layout__services_testimony .inner-container .testimonial-swiper .content-item {
  border: none;
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_testimony .inner-container .testimonial-swiper .content-item {
    padding-bottom: 5px !important;
  }
}
.block--custom-layout__services_testimony .inner-container .testimonial-swiper .content-item .content .name .position {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_testimony .inner-container .testimonial-swiper .content-item .content .name .position {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
}
.block--custom-layout__services_testimony .inner-container .testimonial-swiper .content-item .content {
  padding-bottom: 50px;
  word-wrap: break-word;
  white-space: normal;
}
@media (max-width: 600px) {
  .block--custom-layout__services_testimony .inner-container .testimonial-swiper .content-item .content {
    padding-bottom: 30px !important;
  }
}
.block--custom-layout__services_testimony .inner-container .testimonial-swiper .content-item .name .position {
  margin: 0;
  padding: 0;
}

/* Inactive dots */
.swiper-pagination-bullet {
  background-color: #D9D9D9;
  opacity: 1;
}

/* Active dot */
.swiper-pagination-bullet-active {
  background-color: #0037FF;
}

.block--custom-layout__choices {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__choices {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__choices {
    padding: 30px 0px;
  }
}
.block--custom-layout__choices .container .headlines {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .block--custom-layout__choices .container .headlines {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__choices .container .headlines {
    margin-bottom: 40px;
  }
}
.block--custom-layout__choices .container .content-repeater {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 0px;
}
@media (max-width: 991px) {
  .block--custom-layout__choices .container .content-repeater {
    grid-column-gap: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__choices .container .content-repeater {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
  }
}
.block--custom-layout__choices .container .content-repeater .content-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  height: 100%;
}
.block--custom-layout__choices .container .content-repeater .content-item .content {
  display: flex;
  flex-direction: column;
}
.block--custom-layout__choices .container .content-repeater .content-item .icon-svg {
  width: 53px;
  height: 60px;
  margin-bottom: 30px;
  flex-shrink: 0;
}
.block--custom-layout__choices .container .content-repeater .content-item .icon-svg svg, .block--custom-layout__choices .container .content-repeater .content-item .icon-svg img {
  width: 53px;
  height: 60px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .block--custom-layout__choices .container .content-repeater .content-item .icon-svg {
    width: 40px;
    height: 45px;
    margin-bottom: 15px;
  }
  .block--custom-layout__choices .container .content-repeater .content-item .icon-svg svg, .block--custom-layout__choices .container .content-repeater .content-item .icon-svg img {
    width: 40px;
    height: 45px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__choices .container .content-repeater .content-item .icon-svg {
    width: 35px;
    height: 40px;
    margin-bottom: 10px;
  }
  .block--custom-layout__choices .container .content-repeater .content-item .icon-svg svg, .block--custom-layout__choices .container .content-repeater .content-item .icon-svg img {
    width: 35px;
    height: 40px;
  }
}
.block--custom-layout__choices .container .content-repeater .content-item .header_text {
  margin-bottom: 30px;
  margin-top: 0;
  max-width: 380px;
}
@media (max-width: 991px) {
  .block--custom-layout__choices .container .content-repeater .content-item .header_text {
    margin-bottom: 15px;
    max-width: 280px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__choices .container .content-repeater .content-item .header_text {
    margin-bottom: 10px;
    max-width: 100%;
  }
}
.block--custom-layout__choices .container .content-repeater .content-item .body_text {
  margin-bottom: 50px;
  margin-top: 0;
}
@media (max-width: 991px) {
  .block--custom-layout__choices .container .content-repeater .content-item .body_text {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__choices .container .content-repeater .content-item .body_text {
    margin-bottom: 30px;
  }
}
.block--custom-layout__choices .container .content-repeater .content-item .right {
  margin-top: auto;
}
.block--custom-layout__choices .container .content-repeater .content-item .cta-btn-desktop-sm,
.block--custom-layout__choices .container .content-repeater .content-item .cta-btn-desktop.sm {
  align-self: flex-start;
}

.block--custom-layout__service_header_light {
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
  height: 100vh;
}
.block--custom-layout__service_header_light.disable-full-height {
  height: auto;
}
@media (max-width: 991px) {
  .block--custom-layout__service_header_light {
    height: auto;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service_header_light {
    padding: 80px 0;
    margin-bottom: 30px;
  }
}
.block--custom-layout__service_header_light .desktop {
  display: flex !important;
}
@media (max-width: 600px) {
  .block--custom-layout__service_header_light .desktop {
    display: none !important;
  }
}
.block--custom-layout__service_header_light .mobile {
  display: none !important;
}
@media (max-width: 600px) {
  .block--custom-layout__service_header_light .mobile {
    display: flex !important;
  }
}
.block--custom-layout__service_header_light img {
  width: 450px;
  height: 450px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991px) {
  .block--custom-layout__service_header_light img {
    width: 100%;
    height: 350px;
    aspect-ratio: auto;
    flex: 1;
    max-width: 100%;
  }
}
@media (max-width: 320px) {
  .block--custom-layout__service_header_light img {
    width: 100%;
    height: auto;
  }
}
.block--custom-layout__service_header_light .main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 40px;
}
@media (max-width: 600px) {
  .block--custom-layout__service_header_light .main-wrapper {
    gap: 30px;
  }
}
.block--custom-layout__service_header_light .main-wrapper .headlines .hero_title_text strong {
  font-weight: 700;
}
.block--custom-layout__service_header_light .inner-container {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 991px) {
  .block--custom-layout__service_header_light .inner-container {
    flex-direction: row;
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service_header_light .inner-container {
    flex-direction: column;
    gap: 30px;
  }
}
.block--custom-layout__service_header_light .container {
  display: flex;
  align-items: center;
  height: 100%;
  color: #000000;
}
.block--custom-layout__service_header_light .container .headlines {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.block--custom-layout__service_header_light .container .headlines h1 {
  font-weight: 400;
}
.block--custom-layout__service_header_light .container .bottom-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.block--custom-layout__service_header_light .container .bottom-wrapper img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}
.block--custom-layout__service_header_light .container .bottom-wrapper .no-image {
  height: 300px;
  background-color: #D9D9D9;
  width: 100%;
}
.block--custom-layout__service_header_light .container .bottom-wrapper .inner-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 600px) {
  .block--custom-layout__service_header_light .container .bottom-wrapper img .no-image {
    flex: 1;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service_header_light .container .bottom-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .block--custom-layout__service_header_light .container .bottom-wrapper img, .block--custom-layout__service_header_light .container .bottom-wrapper .no-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
    background-color: #D9D9D9;
    margin-bottom: 30px;
  }
  .block--custom-layout__service_header_light .container .bottom-wrapper .inner-wrapper {
    gap: 0px;
  }
  .block--custom-layout__service_header_light .container .bottom-wrapper .description {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 30px;
  }
  .block--custom-layout__service_header_light .container .bottom-wrapper .svg-container {
    margin-left: 10px;
  }
}
.block--custom-layout__service_header_light .cta-btn-desktop {
  align-self: flex-start;
}

.block--custom-layout__services-step-process {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__services-step-process {
    padding: 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process {
    padding: 30px 0px;
  }
}
.block--custom-layout__services-step-process {
  padding-top: 0;
}
.block--custom-layout__services-step-process .desktop {
  display: flex;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .desktop {
    display: none !important;
  }
}
.block--custom-layout__services-step-process .mobile {
  display: none;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .mobile {
    display: block;
  }
}
.block--custom-layout__services-step-process .inner-container .headlines .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .headlines .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .headlines .heading {
    padding-bottom: 0px;
  }
}
.block--custom-layout__services-step-process .inner-container .headlines .descriptor {
  font-size: 20px;
  line-height: 30px;
  color: var(--Wellevate-Gray-C, #5E5E5E);
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .headlines .descriptor {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__services-step-process .inner-container .headlines .descriptor {
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .headlines .descriptor {
    margin-bottom: 30px;
  }
}
.block--custom-layout__services-step-process .inner-container .process-wrapper {
  display: flex;
  height: 679px;
  padding-right: 0px;
  padding-left: 0px;
  gap: 25px;
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper {
    gap: 30px;
  }
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step {
  display: flex;
  flex: 1;
  gap: 48px;
  border-radius: 5px;
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step {
    gap: 15px;
  }
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step .number {
  position: absolute;
  height: 100%;
  right: 20px;
  bottom: -37px;
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step .number p {
  font-size: 120px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  bottom: 0;
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step .text-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: left;
  gap: 0;
  padding: 50px 20px;
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step .text-container p {
  color: var(--Black, #000);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  max-width: 300px;
  line-height: 36px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step .text-container p {
    font-size: 16px;
  }
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step .text-container .subtitle-title {
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step.active {
  background: #B6B6B6;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .process-wrapper .count-wrapper .count-item-step.active {
    background: #F2F2F2;
  }
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .step-content {
  position: relative;
  flex: 2;
  border-radius: 5px;
  border: 1.5px solid #D9D9D9;
  overflow: hidden;
}
.block--custom-layout__services-step-process .inner-container .process-wrapper .inside {
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.block--custom-layout__services-step-process .inner-container .header {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .header {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .upper-header {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
  }
}
.block--custom-layout__services-step-process .inner-container .lower-header {
  color: #0037FF;
}
.block--custom-layout__services-step-process .inner-container .descriptor {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .inner-container .descriptor {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
  }
}
.block--custom-layout__services-step-process .inner-container .header, .block--custom-layout__services-step-process .inner-container .descriptor {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  margin: 0;
  padding: 0;
}
.block--custom-layout__services-step-process .content-repeater {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.block--custom-layout__services-step-process .content-repeater .content-item {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0;
  border-bottom: 1px solid #D9D9D9;
}
.block--custom-layout__services-step-process .content-repeater .content-item .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 5px 0;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .content-repeater .content-item .accordion-header {
    padding: 15px 0px 10px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .content-repeater .content-item .accordion-header svg {
    width: 11px;
    height: 11px;
  }
}
.block--custom-layout__services-step-process .content-repeater .content-item .accordion-content {
  padding: 0 0 5px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .content-repeater .content-item .accordion-content {
    padding: 0;
  }
}
.block--custom-layout__services-step-process .content-repeater .content-item h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .content-repeater .content-item h3 {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 0;
  }
}
.block--custom-layout__services-step-process .content-repeater .content-item p {
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .content-repeater .content-item p {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__services-step-process .content-repeater .content-item:last-child {
  border-bottom: none;
}
.block--custom-layout__services-step-process .icon {
  display: none;
  transition: opacity 0.3s ease;
}
.block--custom-layout__services-step-process .icon.icon-minus {
  display: inline;
}
.block--custom-layout__services-step-process .content-item.active .accordion-content {
  display: block;
}
.block--custom-layout__services-step-process .content-item.active .icon-plus {
  display: inline;
}
.block--custom-layout__services-step-process .content-item.active .icon-minus {
  display: none;
}
.block--custom-layout__services-step-process .item-mobile {
  padding: 10px 0;
}
.block--custom-layout__services-step-process .item-mobile .count-item-mobile {
  min-height: 67px;
  margin-bottom: 15px;
  display: flex;
  flex: 1;
  gap: 48px;
  border-radius: 5px;
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .count-item-mobile {
    gap: 15px;
  }
}
.block--custom-layout__services-step-process .item-mobile .count-item-mobile .number {
  position: absolute;
  height: 100%;
  right: 20px;
}
.block--custom-layout__services-step-process .item-mobile .count-item-mobile .number p {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  bottom: 0;
}
.block--custom-layout__services-step-process .item-mobile .count-item-mobile .text-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: left;
  padding-right: 60px;
  padding-left: 20px;
}
.block--custom-layout__services-step-process .item-mobile .count-item-mobile .text-container p {
  color: var(--Black, #000);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .count-item-mobile .text-container p {
    font-size: 16px;
  }
}
.block--custom-layout__services-step-process .item-mobile .count-item-mobile .text-container .subtitle-title {
  font-size: 12px;
  line-height: 19px;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile {
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 35px 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1.5px solid #D9D9D9;
  position: relative;
  background-color: #FFFFFF;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile {
    gap: 0;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .white-container-row {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent, #FFFFFF);
  z-index: 9999;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .white-container-row p {
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  padding: 10px 20px;
  border-radius: 5px;
  background: #F2F2F2;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .white-container-row p a {
  color: #000000;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .white-container-row p a {
    font-size: 14px;
    padding-right: 5px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .white-container-row p {
    bottom: 10px;
    padding: 0px 10px;
    right: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .white-container-row {
    font-size: 14px;
    padding-right: 5px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .row-container-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .row-container-row .content-header-row {
  padding: 10px;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  background: var(--Wellevate-Advise, #F2F2F2);
  display: flex;
  align-items: center;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .row-container-row .content-header-row p {
  text-align: left;
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .row-container-row .content-header-row p {
    font-size: 16px;
    line-height: 26px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .row-container-row .content-wrapper-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 5px;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .row-container-row .content-wrapper-row .content-item {
  padding: 5px;
  align-self: stretch;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .row-container-row .content-wrapper-row .content-item p {
  text-align: left;
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .row-container-row .content-wrapper-row .content-item p {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .row-container-row .content-wrapper-row .content-item:last-child {
  border-bottom: none;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .text-container {
  color: #5E5E5E;
  padding-top: 20px;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .text-container .header {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .text-container .header {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .text-container .descriptor {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin-top: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .text-container .descriptor {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile table {
  align-self: stretch;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile table tr {
  color: #5E5E5E;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile table tr th {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  border-bottom: 2px solid #5E5E5E;
  padding: 15px 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile table tr th {
    font-size: 12px;
    text-align: center;
    padding: 0px 0px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile table tr td {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  border-top: 1px solid #D9D9D9;
  padding: 15px 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile table tr td {
    font-size: 12px;
    text-align: center;
    padding: 10px 0px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile table {
  margin-bottom: 10px;
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  align-self: stretch;
  border: none;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .card {
    justify-content: flex-start;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .card svg {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .card svg {
    margin-bottom: 15px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .card .header {
  color: #000000;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .card .header {
    font-size: 16px;
    line-height: 26px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .card .descriptor {
  color: #434343;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .card .descriptor {
    font-size: 12px;
    line-height: 19px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .card {
    padding: 30px 10px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile .line {
  border-bottom: 1px solid #d1d1d1;
  width: 100%;
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile .line {
    border-bottom: none;
    border-left: 1px solid #d1d1d1;
    width: 1px;
    min-height: 200px;
    align-self: center;
    background-color: transparent;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services-step-process .item-mobile .process-content-mobile {
    padding: 10px 10px;
  }
}
.block--custom-layout__services-step-process .item-mobile .process-content-mobile {
  border: none;
  margin: 15px 0;
  padding: 0 !important;
}

.block--custom-layout__services_why_business_choose {
  padding: 75px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose {
    padding: 30px 0;
  }
}
.block--custom-layout__services_why_business_choose .inner-container .headlines .header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.block--custom-layout__services_why_business_choose .inner-container .headlines .header .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose .inner-container .headlines .header .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__services_why_business_choose .inner-container .headlines .header .heading {
  margin-bottom: 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose .inner-container .headlines .header .heading {
    margin-bottom: 0px !important;
    padding-bottom: 0 !important;
  }
}
.block--custom-layout__services_why_business_choose .inner-container .headlines .header .highlight {
  padding: 5px 20px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 40px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 60px;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose .inner-container .headlines .header .highlight {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__services_why_business_choose .inner-container .headlines .subheader {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  color: var(--Wellevate-Gray-D, #868686);
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose .inner-container .headlines .subheader {
    font-size: 16px;
    line-height: 26px;
  }
}
.block--custom-layout__services_why_business_choose .inner-container .content-repeater {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0;
  border-bottom: 1px solid #D9D9D9;
}
.block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0 0;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item .accordion-header {
    padding: 10px 0px 0px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item .accordion-header svg {
    width: 11px;
    height: 11px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item .accordion-header p {
    max-width: 350px;
  }
}
.block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item .accordion-content {
  height: 0;
  overflow: hidden;
}
.block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item .accordion-content h3 {
  color: #0037FF;
  font-weight: 700;
}
.block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item h3 {
  font-size: 26px;
  font-style: normal;
  line-height: 36px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item h3 {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 0;
  }
}
.block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item p {
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item p {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__services_why_business_choose .inner-container .content-repeater .content-item:last-child {
  border-bottom: none;
}
.block--custom-layout__services_why_business_choose .inner-container .icon {
  display: none;
  transition: opacity 0.3s ease;
}
.block--custom-layout__services_why_business_choose .inner-container .icon.icon-minus {
  display: inline;
}
.block--custom-layout__services_why_business_choose .inner-container .content-item.active .accordion-content {
  display: block;
}
.block--custom-layout__services_why_business_choose .inner-container .content-item.active .icon-plus {
  display: inline;
}
.block--custom-layout__services_why_business_choose .inner-container .content-item.active .icon-minus {
  display: none;
}

.lower {
  display: none;
}
@media (max-width: 600px) {
  .lower {
    display: block;
  }
}

.block--custom-layout__services-what-we-offer {
  margin: 75px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services-what-we-offer {
    margin: 30px 0;
  }
}
.block--custom-layout__services-what-we-offer .inner-container .headlines .heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-what-we-offer .inner-container .headlines .heading {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__services-what-we-offer .inner-container .headlines .heading {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.block--custom-layout__services-what-we-offer .inner-container .headlines .subheader {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 50px !important;
  color: #868686;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-what-we-offer .inner-container .headlines .subheader {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    padding-bottom: 30px !important;
  }
}
.block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  padding-top: 50px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item {
  display: flex;
  flex-direction: column;
}
.block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item p {
  padding: 0;
  margin: 0;
}
.block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item .text-container {
  padding: 20px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item .text-container {
    padding: 5px 0;
  }
}
.block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item .text-container .wwc-header {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  padding-top: 10px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item .text-container .wwc-header {
    font-size: 16px;
    line-height: 26px;
  }
}
.block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item .text-container .wwc-description {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #434343;
}
@media (max-width: 600px) {
  .block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item .text-container .wwc-description {
    font-size: 12px;
    line-height: 19px;
  }
}
.block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item .tag-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item .tag-wrapper .tags {
  border-radius: 5px;
  padding: 5px 10px 5px 10px;
  background-color: #F2F2F2;
  color: var(--Wellevate-Gray-B, #434343);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 600px) {
  .block--custom-layout__services-what-we-offer .inner-container .content-wwc-repeater .content-wwc-item .tag-wrapper .tags {
    font-size: 10px;
    line-height: 19px;
  }
}
.block--custom-layout__services-what-we-offer .inner-container .cta-wrapper {
  margin-top: 50px;
  text-align: right;
}
.block--custom-layout__services-what-we-offer .inner-container .cta-wrapper .cta-link-title {
  background-color: #F2F2F2;
  color: #000000;
}

/* What We Do Block Styles */
.block--custom-layout__what-we-do {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do {
    padding: 30px 0px;
  }
}
.block--custom-layout__what-we-do p, .block--custom-layout__what-we-do h2 {
  margin: 0;
}
.block--custom-layout__what-we-do .headlines .title_text {
  margin-bottom: 10px;
}
.block--custom-layout__what-we-do .headlines .subtitle_text {
  margin-bottom: 10px;
}
.block--custom-layout__what-we-do .headlines .description-text {
  margin-top: 60px;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-we-do .headlines .description-text {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .headlines .description-text {
    margin-top: 20px;
  }
}
.block--custom-layout__what-we-do .headlines .description-text p {
  font-family: "Aptos", sans-serif !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  color: #434343 !important;
  margin: 0 !important;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-we-do .headlines .description-text p {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .headlines .description-text p {
    font-size: 12px !important;
    line-height: 22px !important;
  }
}
.block--custom-layout__what-we-do .headlines .header-text {
  margin-top: 150px;
  margin-bottom: 60px;
  font-weight: 700 !important;
  font-size: 30px !important;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-we-do .headlines .header-text {
    margin-top: 100px;
    margin-bottom: 40px;
    font-size: 24px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .headlines .header-text {
    margin-top: 80px;
    margin-bottom: 40px;
    font-size: 16px !important;
  }
}
.block--custom-layout__what-we-do .steps-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  gap: 100px;
}
.block--custom-layout__what-we-do .steps-wrapper .step-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.block--custom-layout__what-we-do .steps-wrapper .step-wrapper:nth-child(even) .step-outcome {
  flex-direction: row-reverse;
}
.block--custom-layout__what-we-do .steps-wrapper .step-wrapper:nth-child(odd) .step-outcome {
  flex-direction: row;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .steps-wrapper .step-wrapper {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .steps-wrapper .step-wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .steps-wrapper {
    margin-top: 0;
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .steps-wrapper {
    margin-top: 0;
    gap: 60px;
  }
}
.block--custom-layout__what-we-do .step-header-card {
  background-color: #F5F5F5;
  border-radius: 5px;
  display: flex;
  padding: 0 25px;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  height: 150px;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card {
    padding: 0 10px;
    gap: 15px;
    height: auto;
    min-height: 150px;
    align-items: flex-end;
    padding-bottom: 0;
  }
}
.block--custom-layout__what-we-do .step-header-card .step-count {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card .step-count {
    height: auto;
    align-self: flex-end;
    flex-shrink: 0;
  }
}
.block--custom-layout__what-we-do .step-header-card .step-count span {
  position: relative;
  color: #000;
  font-family: "Visby CF";
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  bottom: 0;
  line-height: 67px;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .step-header-card .step-count span {
    font-size: 100px;
    line-height: 57px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card .step-count span {
    font-size: 70px;
    line-height: 38px;
  }
}
.block--custom-layout__what-we-do .step-header-card .step-header-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.block--custom-layout__what-we-do .step-header-card .step-header-text .step-header-label {
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card .step-header-text .body_text {
    line-height: 24px;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card .step-header-text {
    padding: 15px 0;
    min-width: 0;
    flex: 1;
  }
}
.block--custom-layout__what-we-do .what-we-do {
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .what-we-do {
    padding-bottom: 15px;
  }
}
.block--custom-layout__what-we-do .services-list {
  display: grid;
  gap: 30px;
}
.block--custom-layout__what-we-do .services-list .service-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.block--custom-layout__what-we-do .services-list .service-item svg {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list .service-item svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list .service-item svg {
    height: 25px;
    width: 25px;
  }
}
.block--custom-layout__what-we-do .services-list .service-item .service-item-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list .service-item .service-item-description {
    gap: 0px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list .service-item {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list .service-item {
    gap: 5px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list {
    gap: 40px;
  }
}
.block--custom-layout__what-we-do .two-column {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .two-column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .three-column {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .three-column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(1)):not(:has(.service-item:nth-child(2))) {
  grid-template-columns: repeat(1, 1fr);
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(2)):not(:has(.service-item:nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(2)):not(:has(.service-item:nth-child(3))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(3)):not(:has(.service-item:nth-child(4))) {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(3)):not(:has(.service-item:nth-child(4))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(4)):not(:has(.service-item:nth-child(5))) {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(4)):not(:has(.service-item:nth-child(5))) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(4)):not(:has(.service-item:nth-child(5))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(5)):not(:has(.service-item:nth-child(6))) {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(5)):not(:has(.service-item:nth-child(6))) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(5)):not(:has(.service-item:nth-child(6))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(6)):not(:has(.service-item:nth-child(7))) {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(6)):not(:has(.service-item:nth-child(7))) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(6)):not(:has(.service-item:nth-child(7))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(7)):not(:has(.service-item:nth-child(8))) {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(7)):not(:has(.service-item:nth-child(8))) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(7)):not(:has(.service-item:nth-child(8))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(8)) {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(8)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(8)) {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .step-outcome {
  background-color: #F5F5F5;
  border-radius: 5px;
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 100px;
  align-self: stretch;
}
.block--custom-layout__what-we-do .step-outcome .step-image img {
  object-fit: cover;
  height: 315px;
  width: 490px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .step-outcome .step-image img {
    height: 209px;
    width: 326px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-outcome .step-image img {
    height: 209px;
    width: 100%;
  }
}
.block--custom-layout__what-we-do .step-outcome .outcome-description-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  gap: 15px;
}
.block--custom-layout__what-we-do .step-outcome .outcome-description-wrapper hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: #868686;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-outcome .outcome-description-wrapper .body_text {
    margin-bottom: 15px;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .step-outcome {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-outcome {
    flex-direction: column-reverse !important;
    padding: 20px;
    gap: 20px;
  }
  .block--custom-layout__what-we-do .step-outcome .outcome-description-wrapper {
    gap: 10px;
    min-width: 0;
    width: 100%;
  }
}
.block--custom-layout__what-we-do .step-cta {
  align-self: flex-end;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-cta {
    align-self: flex-end;
  }
}

/* About Us Core Values Block Styles */
.block--custom-layout__about-us-core-values {
  padding: 100px 0;
}
.block--custom-layout__about-us-core-values .fullwidth-section {
  background-color: #000;
  padding: 100px 0;
}
.block--custom-layout__about-us-core-values .fullwidth-section .title_text {
  margin-bottom: 40px;
  color: #FFF;
}
.block--custom-layout__about-us-core-values .fullwidth-section svg {
  margin-bottom: 20px;
}
.block--custom-layout__about-us-core-values .fullwidth-section .hero_title_text {
  color: #FFF;
}
.block--custom-layout__about-us-core-values .main-content .headlines .title_text {
  margin-bottom: 60px;
}
.block--custom-layout__about-us-core-values .main-content .headlines .body_text {
  margin-bottom: 60px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper {
  margin-top: 60px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .header_text {
  margin-bottom: 60px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item {
  display: flex;
  flex-direction: column;
  border: 1px solid #C7C7C7;
  border-radius: 5px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
  height: 370px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item svg {
  width: 50px;
  height: 43.164px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item svg g path {
  transition: fill 0.3s;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .svg-wrapper {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .svg-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .subtitle_text {
  color: #000;
  margin-bottom: 0;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .body_text p:last-child {
  margin-top: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover {
  background-color: #C7C7C7;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover svg path, .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover svg rect, .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover svg mask path {
  fill: #000 !important;
  stroke: #000 !important;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover .item-content {
  transform: translateY(-10px);
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover .item-content .body_text p:last-child {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

@media (max-width: 425px) {
  .block--custom-layout__about-us-core-values {
    padding: 60px 0;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper {
    margin-top: 30px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item {
    width: 100% !important;
    padding: 20px;
    gap: 15px;
    height: auto;
    min-height: 150px;
    transition: background-color 0.3s;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .svg-wrapper svg {
    width: 36px;
    height: 36px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content {
    position: static;
    transform: none !important;
    margin-top: 15px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .subtitle_text {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .body_text {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .body_text p:last-child {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.3s ease;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover .item-content {
    transform: none !important;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover .item-content .body_text p:last-child {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
  }
}
/* Talk To Markus Block Styles */
.block--custom-layout__talk-to-markus .talk-to-markus {
  background-color: #E6E6E6;
  padding: 100px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__talk-to-markus .talk-to-markus {
    padding: 40px 0;
  }
}
.block--custom-layout__talk-to-markus .talk-to-markus .inner-content {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 600px) {
  .block--custom-layout__talk-to-markus .talk-to-markus .inner-content {
    flex-direction: column;
    gap: 40px;
  }
}
.block--custom-layout__talk-to-markus .talk-to-markus .inner-content .col .headlines .hero_title_text {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .block--custom-layout__talk-to-markus .talk-to-markus .inner-content .col .headlines .hero_title_text {
    margin-bottom: 20px;
  }
}
.block--custom-layout__talk-to-markus .talk-to-markus .inner-content .col .headlines .title_text {
  font-family: "Aptos", serif;
  margin-bottom: 60px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__talk-to-markus .talk-to-markus .inner-content .col .headlines .title_text {
    margin-bottom: 20px;
  }
}
.block--custom-layout__talk-to-markus .talk-to-markus .inner-content .col .headlines .cta-btn-desktop {
  background-color: #FFF;
}
.block--custom-layout__talk-to-markus .talk-to-markus .inner-content .col .image-card {
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  height: 420px;
}
@media (max-width: 600px) {
  .block--custom-layout__talk-to-markus .talk-to-markus .inner-content .col .image-card {
    height: 320px;
  }
}
.block--custom-layout__talk-to-markus .talk-to-markus .inner-content .col .image-card .name {
  bottom: 20px;
  left: 20px;
  top: auto;
  position: absolute;
}
.block--custom-layout__talk-to-markus .talk-to-markus .inner-content .col:nth-child(1) {
  flex: 1.5;
}
.block--custom-layout__talk-to-markus .outro-headlines {
  padding: 100px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__talk-to-markus .outro-headlines {
    padding: 80px 0;
  }
}
.block--custom-layout__talk-to-markus .outro-headlines .hero_title_text {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .block--custom-layout__talk-to-markus .outro-headlines .hero_title_text {
    margin-bottom: 20px;
  }
}

/* Header Section Block Styles */
.block--custom-layout__header-section {
  padding-top: 100px;
}
.block--custom-layout__header-section .headlines .title_text {
  margin-bottom: 15px;
}

/* Job Listings Block Styles */
.block--custom-layout__job-listings {
  background-color: #E6E6E6;
  padding: 100px 0;
}
.block--custom-layout__job-listings .main-header {
  margin-bottom: 60px;
}
.block--custom-layout__job-listings .main-header h2 {
  margin-bottom: 60px;
}
.block--custom-layout__job-listings .job-listings-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 0px;
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item {
  background-color: #FFF;
  border: 1px solid #C7C7C7;
  border-radius: 5px;
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item .featured-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item .details {
  padding: 30px 20px;
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item .details .post-item-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 62px;
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item .details .post-item-details .category {
  background-color: #F2F2F2;
  border-radius: 5px;
  padding: 8px 12px;
  font-family: "Aptos", sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: #000;
}
@media (max-width: 991px) {
  .block--custom-layout__job-listings .job-listings-wrapper .article-item .details .post-item-details .category {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: #000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__job-listings .job-listings-wrapper .article-item .details .post-item-details .category {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    color: #000;
  }
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item .details .post-item-details .date {
  font-family: "Aptos", sans-serif;
  font-size: 12px;
  line-height: normal;
  font-weight: 400;
  color: #000;
}
@media (max-width: 991px) {
  .block--custom-layout__job-listings .job-listings-wrapper .article-item .details .post-item-details .date {
    font-size: 10px;
    line-height: normal;
    font-weight: 400;
    color: #000;
  }
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item .details .job-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item .details .job-details .articles-excerpt {
  margin-bottom: 32px;
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item .details .job-details .btn-apply {
  font-family: "Aptos", sans-serif;
  background-color: #000;
  padding: 20px 20px;
  border-radius: 10px;
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  color: #FFF;
}
@media (max-width: 600px) {
  .block--custom-layout__job-listings .job-listings-wrapper .article-item .details .job-details .btn-apply {
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    color: #FFF;
  }
}
.block--custom-layout__job-listings .job-listings-wrapper .article-item .details .job-details .btn-apply:hover {
  background-color: #0037FF;
  text-decoration: none;
}
.block--custom-layout__job-listings .no-listings-wrapper {
  background-color: #FFF;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  border-radius: 10px;
}
.block--custom-layout__job-listings .no-listings-wrapper .col h3 {
  font-weight: 700;
  margin-bottom: 20px;
}
.block--custom-layout__job-listings .no-listings-wrapper .col {
  flex: 1;
}
.block--custom-layout__job-listings .cta-btn-desktop {
  background-color: #FFF;
  margin-top: 60px;
}
.block--custom-layout__job-listings .button-wrapper {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .block--custom-layout__job-listings .button-wrapper {
    margin-top: 20px;
  }
}
.block--custom-layout__job-listings .button-wrapper .articles-cta {
  background-color: #E6E6E6 !important;
  display: inline-flex;
  padding: 15px 20px;
  font-size: 24px;
}
.block--custom-layout__job-listings .button-wrapper .articles-cta svg path {
  fill: #000000;
  stroke: #000000;
}
.block--custom-layout__job-listings .button-wrapper .articles-cta span {
  color: #000000;
}

/* About Us Core Values Block Styles */
.block--custom-layout__about-us-core-values {
  padding: 100px 0;
}
.block--custom-layout__about-us-core-values .fullwidth-section {
  background-color: #000;
  padding: 100px 0;
}
.block--custom-layout__about-us-core-values .fullwidth-section .title_text {
  margin-bottom: 40px;
  color: #FFF;
}
.block--custom-layout__about-us-core-values .fullwidth-section svg {
  margin-bottom: 20px;
}
.block--custom-layout__about-us-core-values .fullwidth-section .hero_title_text {
  color: #FFF;
}
.block--custom-layout__about-us-core-values .main-content .headlines .title_text {
  margin-bottom: 60px;
}
.block--custom-layout__about-us-core-values .main-content .headlines .body_text {
  margin-bottom: 60px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper {
  margin-top: 60px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .header_text {
  margin-bottom: 60px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item {
  display: flex;
  flex-direction: column;
  border: 1px solid #C7C7C7;
  border-radius: 5px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
  height: 370px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item svg {
  width: 50px;
  height: 43.164px;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item svg g path {
  transition: fill 0.3s;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .svg-wrapper {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .svg-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .subtitle_text {
  color: #000;
  margin-bottom: 0;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .body_text p:last-child {
  margin-top: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover {
  background-color: #C7C7C7;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover svg path, .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover svg rect, .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover svg mask path {
  fill: #000 !important;
  stroke: #000 !important;
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover .item-content {
  transform: translateY(-10px);
}
.block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover .item-content .body_text p:last-child {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

@media (max-width: 425px) {
  .block--custom-layout__about-us-core-values {
    padding: 60px 0;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper {
    margin-top: 30px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item {
    width: 100% !important;
    padding: 20px;
    gap: 15px;
    height: auto;
    min-height: 150px;
    transition: background-color 0.3s;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .svg-wrapper svg {
    width: 36px;
    height: 36px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content {
    position: static;
    transform: none !important;
    margin-top: 15px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .subtitle_text {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .body_text {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item .item-content .body_text p:last-child {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.3s ease;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover .item-content {
    transform: none !important;
  }
  .block--custom-layout__about-us-core-values .main-content .core-values__wrapper .repeater-list .item:hover .item-content .body_text p:last-child {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
  }
}
/* Wellevate Plus Maintenance Block Styles */
.block--custom-layout__wellevate-plus-maintenance {
  padding: 100px 0;
}
.block--custom-layout__wellevate-plus-maintenance .headlines {
  margin-bottom: 40px;
}
.block--custom-layout__wellevate-plus-maintenance .headlines .header_text {
  margin-bottom: 15px;
}
.block--custom-layout__wellevate-plus-maintenance .main-content .key-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-maintenance .main-content .key-points {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__wellevate-plus-maintenance .main-content .key-points .item svg {
  margin-bottom: 20px;
}
.block--custom-layout__wellevate-plus-maintenance .main-content .key-points .item .content-header {
  margin-bottom: 10px;
  font-weight: 700;
}

/* Coming Soon Console Block Styles */
.block--custom-layout__coming-soon-console {
  padding: 100px 0;
}
.block--custom-layout__coming-soon-console .headlines .title_text {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .block--custom-layout__coming-soon-console .headlines .title_text {
    margin-bottom: 30px;
  }
}
.block--custom-layout__coming-soon-console .headlines .body_text {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .block--custom-layout__coming-soon-console .headlines .body_text {
    margin-bottom: 30px;
  }
}
.block--custom-layout__coming-soon-console .how-it-works__wrapper {
  margin-top: 60px;
}
.block--custom-layout__coming-soon-console .how-it-works__wrapper .header_text {
  margin-bottom: 30px;
}
.block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
}
.block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list .item {
  display: flex;
  flex-direction: column;
  background-color: #E6E6E6;
  height: 282px;
  padding: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list .item {
    height: auto;
    min-height: 182px;
    padding-bottom: 80px;
  }
}
.block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list .item .body_text {
  word-break: break-word;
  hyphens: auto;
  overflow-wrap: break-word;
}
.block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list .item .body_text .step-count {
  position: absolute;
  bottom: 0;
  right: 30px;
}
.block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list .item .body_text .step-count span {
  position: relative;
  color: #000;
  font-family: "Visby CF";
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  bottom: 0;
  line-height: 67px;
}
@media (max-width: 991px) {
  .block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list .item .body_text .step-count span {
    font-size: 100px;
    line-height: 57px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list .item .body_text .step-count span {
    font-size: 70px;
    line-height: 38px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list .item {
    height: 200px;
  }
  .block--custom-layout__coming-soon-console .how-it-works__wrapper .repeater-list .item svg {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
}
.block--custom-layout__coming-soon-console .why-it-matters__wrapper {
  margin-top: 60px;
}
.block--custom-layout__coming-soon-console .why-it-matters__wrapper .header_text {
  margin-bottom: 30px;
}
.block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
@media (max-width: 600px) {
  .block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list svg {
    height: 30px;
    width: 30px;
  }
  .block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list {
    grid-template-columns: 1fr;
  }
}
.block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list .item {
  display: flex;
  flex-direction: column;
  border: 1px solid #C7C7C7;
  border-radius: 5px;
  gap: 30px;
  padding: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list .item {
    padding-bottom: 80px;
  }
}
.block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list .item .body_text {
  word-break: break-word;
  hyphens: auto;
  overflow-wrap: break-word;
}
.block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list .item .body_text .step-count {
  position: absolute;
  bottom: 0;
  right: 30px;
}
.block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list .item .body_text .step-count span {
  position: relative;
  color: #000;
  font-family: "Visby CF";
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  bottom: 0;
  line-height: 67px;
}
@media (max-width: 991px) {
  .block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list .item .body_text .step-count span {
    font-size: 100px;
    line-height: 57px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__coming-soon-console .why-it-matters__wrapper .repeater-list .item .body_text .step-count span {
    font-size: 70px;
    line-height: 38px;
    bottom: -4px !important;
  }
}

/* Grid Article Block Styles */
.block--custom-layout__grid-article {
  padding: 100px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .container {
    padding: 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .section-header, .block--custom-layout__grid-article .button-wrapper, .block--custom-layout__grid-article .this-month-articles .col-title {
    padding: 0px 30px;
  }
}
.block--custom-layout__grid-article .section-header .heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .section-header .heading {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__grid-article .section-header .descriptor {
  font-family: "Visby CF", sans-serif;
  font-size: 30px;
  line-height: normal;
  font-weight: 700;
  color: #B6B6B6;
  margin-bottom: 60px;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__grid-article .section-header .descriptor {
    font-size: 20px;
    line-height: normal;
    font-weight: 700;
    color: #B6B6B6;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .section-header .descriptor {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #B6B6B6;
    margin-bottom: 30px;
  }
}
.block--custom-layout__grid-article .section-header .article-description p {
  font-family: "Aptos", sans-serif !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  color: #434343 !important;
  margin: 0 !important;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__grid-article .section-header .article-description p {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .section-header .article-description p {
    font-size: 12px !important;
    line-height: 22px !important;
  }
}
.block--custom-layout__grid-article .inner-container .col-title h3 {
  margin-top: 60px;
  margin-bottom: 30px;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper {
  width: 100%;
  overflow: visible;
  grid-column-gap: 5px;
  grid-row-gap: 0px;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item {
  border: 1px solid #C7C7C7;
  border-radius: 5px;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .featured-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 20px;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .post-item-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 62px;
}
@media (max-width: 991px) {
  .block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .post-item-details {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .post-item-details {
    margin-bottom: 30px;
  }
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .post-item-details .category {
  border-radius: 5px;
  padding: 8px 12px;
  font-family: "Visby CF", sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: #000;
}
@media (max-width: 991px) {
  .block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .post-item-details .category {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: #000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .post-item-details .category {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    color: #000;
  }
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .post-item-details .date {
  font-family: "Aptos", sans-serif;
  font-size: 12px;
  line-height: normal;
  font-weight: 400;
  color: #000;
}
@media (max-width: 991px) {
  .block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .post-item-details .date {
    font-size: 10px;
    line-height: normal;
    font-weight: 400;
    color: #000;
  }
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link {
    gap: 10px;
  }
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link .read-more {
  align-self: flex-start;
  margin-top: auto;
  font-family: "Aptos", sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  color: #B6B6B6;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 991px) {
  .block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link .read-more {
    font-size: 12px;
    line-height: normal;
    font-weight: 700;
    color: #B6B6B6;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link .read-more {
    font-size: 10px;
    line-height: normal;
    font-weight: 700;
    color: #B6B6B6;
  }
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link .read-more svg {
  margin-left: 5px;
  height: 12px;
  width: 12px;
  transition: margin-left 0.3s ease, height 0.3s ease, width 0.3s ease;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link .read-more svg path {
  fill: #B6B6B6;
  stroke: #B6B6B6;
  stroke-width: 2;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link .read-more:hover {
  color: #000000;
  border-color: #000000;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link .read-more:hover svg {
  margin-left: 8px;
  height: 19px;
  width: 19px;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link .read-more:hover svg path {
  fill: #000000;
  stroke: #000000;
}
.block--custom-layout__grid-article .inner-container .grid-article-wrapper .article-item .details .article-link:hover {
  text-decoration: none;
}
.block--custom-layout__grid-article .inner-container .button-wrapper {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .block--custom-layout__grid-article .inner-container .button-wrapper {
    margin-top: 20px;
  }
}
.block--custom-layout__grid-article .inner-container .button-wrapper .articles-cta {
  background-color: #E6E6E6 !important;
  display: inline-flex;
  padding: 15px 20px;
  font-size: 24px;
}
.block--custom-layout__grid-article .inner-container .button-wrapper .articles-cta svg path {
  fill: #000000;
  stroke: #000000;
}
.block--custom-layout__grid-article .inner-container .button-wrapper .articles-cta span {
  color: #000000;
}
.block--custom-layout__grid-article .myArticleSwiper {
  width: 100%;
  overflow: hidden;
}
.block--custom-layout__grid-article .myArticleSwiper .swiper-wrapper {
  align-items: stretch !important;
}
.block--custom-layout__grid-article .myArticleSwiper .swiper-slide {
  display: flex !important;
  height: auto !important;
  box-sizing: border-box;
}
.block--custom-layout__grid-article .article-swiper-controls {
  margin-top: 30px;
  display: none;
}
.block--custom-layout__grid-article .category {
  background-color: #000000;
}
.block--custom-layout__grid-article .category--advise {
  background-color: #F5F5F5;
  color: #000000;
}
.block--custom-layout__grid-article .category--advise-de {
  background-color: #F5F5F5;
  color: #000000;
}
.block--custom-layout__grid-article .category--engage-de {
  background-color: #D9D9D9;
  color: #000000;
}
.block--custom-layout__grid-article .category--engage {
  background-color: #D9D9D9;
  color: #000000;
}
.block--custom-layout__grid-article .category--reports-de {
  background-color: #B6B6B6;
  color: #000000;
}
.block--custom-layout__grid-article .category--reports {
  background-color: #B6B6B6;
  color: #000000;
}
.block--custom-layout__grid-article .category--uncategorized {
  background-color: #000000;
  color: #FFFFFF;
}
.block--custom-layout__grid-article .category--uncategorized-en {
  background-color: #000000;
  color: #FFFFFF;
}
.block--custom-layout__grid-article .category--uncategorized-de {
  background-color: #000000;
  color: #FFFFFF;
}

.block--custom-layout__service-credit {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit {
    padding: 75px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit {
    padding: 50px 0px;
  }
}
.block--custom-layout__service-credit .service-credit__top {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .service-credit__top {
    gap: 15px;
    margin-bottom: 40px;
  }
}
.block--custom-layout__service-credit .service-credit__icon img {
  max-width: 200px;
  height: auto;
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .service-credit__icon img {
    max-width: 120px;
  }
}
.block--custom-layout__service-credit .service-credit__header {
  margin: 0;
}
.block--custom-layout__service-credit .service-credit__subheader {
  margin: 0;
  color: #766c6c;
  font-weight: 700;
}
.block--custom-layout__service-credit .service-credit__description {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.block--custom-layout__service-credit .service-credit__tables {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .service-credit__tables {
    gap: 30px;
  }
}
.block--custom-layout__service-credit .service-credit__left,
.block--custom-layout__service-credit .service-credit__right {
  width: 100%;
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .service-credit__left {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .service-credit__right {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.block--custom-layout__service-credit .service-credit__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .service-credit__right {
    grid-template-columns: 1fr;
  }
}
.block--custom-layout__service-credit .pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 5px;
  overflow: hidden;
}
.block--custom-layout__service-credit .pricing-table--main thead {
  background: transparent;
}
.block--custom-layout__service-credit .pricing-table--main thead th {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #000000;
  padding: 3px 16px;
  text-align: left;
  border-bottom: 2px solid #000000;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .pricing-table--main thead th {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    color: #000000;
    padding: 14px 16px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .pricing-table--main thead th {
    font-size: 12px;
    line-height: normal;
    font-weight: 700;
    color: #000000;
    padding: 12px 12px;
  }
}
.block--custom-layout__service-credit .pricing-table--main tbody tr {
  border-bottom: 1px solid #000000;
}
.block--custom-layout__service-credit .pricing-table--main tbody tr:last-child {
  border-bottom: none;
}
.block--custom-layout__service-credit .pricing-table--main tbody td {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: #434343;
  padding: 18px 16px;
}
.block--custom-layout__service-credit .pricing-table--main tbody td.font-weight-bold {
  font-weight: 700;
  color: #000000;
}
.block--custom-layout__service-credit .pricing-table--main tbody td:has(> :only-child:is(span, div):empty), .block--custom-layout__service-credit .pricing-table--main tbody td:empty, .block--custom-layout__service-credit .pricing-table--main tbody td:is(:contains("-"):not(:contains(" "))) {
  position: relative;
}
.block--custom-layout__service-credit .pricing-table--main tbody td:has(> :only-child:is(span, div):empty)::after, .block--custom-layout__service-credit .pricing-table--main tbody td:empty::after, .block--custom-layout__service-credit .pricing-table--main tbody td:is(:contains("-"):not(:contains(" ")))::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  background-color: #434343;
}
.block--custom-layout__service-credit .pricing-table--main tbody td:has(> :only-child:is(span, div):empty), .block--custom-layout__service-credit .pricing-table--main tbody td:empty, .block--custom-layout__service-credit .pricing-table--main tbody td:is(:contains("-"):not(:contains(" "))) {
  color: transparent;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .pricing-table--main tbody td {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #434343;
    padding: 14px 16px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .pricing-table--main tbody td {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    color: #434343;
    padding: 12px 12px;
  }
}
.block--custom-layout__service-credit .pricing-table--secondary {
  background: transparent;
}
.block--custom-layout__service-credit .pricing-table--secondary thead {
  background: transparent;
}
.block--custom-layout__service-credit .pricing-table--secondary thead th {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #000000;
  padding: 12px 12px 3px 3px;
  text-align: left;
  border-bottom: 2px solid #000000;
  vertical-align: bottom;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .pricing-table--secondary thead th {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    color: #000000;
    padding: 10px 12px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .pricing-table--secondary thead th {
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
    padding: 8px 6px;
  }
}
.block--custom-layout__service-credit .pricing-table--secondary tbody tr {
  border-bottom: 1px solid #000000;
}
.block--custom-layout__service-credit .pricing-table--secondary tbody tr:last-child {
  border-bottom: none;
}
.block--custom-layout__service-credit .pricing-table--secondary tbody td {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: #434343;
  padding: 6px 3px;
  vertical-align: top;
}
.block--custom-layout__service-credit .pricing-table--secondary tbody td:has(> :only-child:is(span, div):empty), .block--custom-layout__service-credit .pricing-table--secondary tbody td:empty {
  position: relative;
}
.block--custom-layout__service-credit .pricing-table--secondary tbody td:has(> :only-child:is(span, div):empty)::after, .block--custom-layout__service-credit .pricing-table--secondary tbody td:empty::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  background-color: #434343;
}
.block--custom-layout__service-credit .pricing-table--secondary tbody td:has(> :only-child:is(span, div):empty), .block--custom-layout__service-credit .pricing-table--secondary tbody td:empty {
  color: transparent;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .pricing-table--secondary tbody td {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #434343;
    padding: 10px 12px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .pricing-table--secondary tbody td {
    font-size: 9px;
    line-height: 1.3;
    font-weight: 400;
    color: #434343;
    padding: 8px 6px;
  }
}
.block--custom-layout__service-credit .pricing-table--three-col thead th {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  padding: 12px 10px 3px 3px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .pricing-table--three-col thead th {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
    padding: 10px 8px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .pricing-table--three-col thead th {
    font-size: 8px;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
    padding: 8px 4px;
  }
}
.block--custom-layout__service-credit .pricing-table--three-col tbody td {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #434343;
  padding: 6px 3px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.block--custom-layout__service-credit .pricing-table--three-col tbody td:has(> :only-child:is(span, div):empty), .block--custom-layout__service-credit .pricing-table--three-col tbody td:empty {
  position: relative;
}
.block--custom-layout__service-credit .pricing-table--three-col tbody td:has(> :only-child:is(span, div):empty)::after, .block--custom-layout__service-credit .pricing-table--three-col tbody td:empty::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  background-color: #434343;
}
.block--custom-layout__service-credit .pricing-table--three-col tbody td:has(> :only-child:is(span, div):empty), .block--custom-layout__service-credit .pricing-table--three-col tbody td:empty {
  color: transparent;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .pricing-table--three-col tbody td {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    color: #434343;
    padding: 10px 8px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .pricing-table--three-col tbody td {
    font-size: 8px;
    line-height: 1.3;
    font-weight: 400;
    color: #434343;
    padding: 8px 4px;
  }
}
.block--custom-layout__service-credit .pricing-box {
  background: #E6E6E6;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .pricing-box {
    padding: 20px;
    gap: 15px;
  }
}
.block--custom-layout__service-credit .pricing-box__header {
  margin: 0;
  line-height: 1.3;
  font-size: 17px;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .pricing-box__header {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .pricing-box__header {
    font-size: 14px;
  }
}
.block--custom-layout__service-credit .pricing-box__subheader {
  margin: 0;
  color: #434343;
  font-size: 14px;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .pricing-box__subheader {
    font-size: 12px;
  }
}
.block--custom-layout__service-credit .pricing-box:nth-child(2) {
  background: #C7C7C7;
}
.block--custom-layout__service-credit .service-credit__note {
  margin-top: 20px;
  color: #434343;
  font-style: italic;
  font-size: 12px;
  line-height: normal;
  font-weight: 400;
  color: #434343;
}
@media (max-width: 991px) {
  .block--custom-layout__service-credit .service-credit__note {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    color: #434343;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__service-credit .service-credit__note {
    margin-top: 15px;
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    color: #434343;
  }
}

/* Our Team Block Styles */
.block--custom-layout__our-team {
  padding: 80px 0;
}
.block--custom-layout__our-team .fullwidth-image {
  margin-bottom: 100px;
}
.block--custom-layout__our-team .main-header {
  margin-bottom: 60px;
}
.block--custom-layout__our-team .team-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 50px;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 10px;
}
@media (max-width: 600px) {
  .block--custom-layout__our-team .team-filter {
    flex-wrap: nowrap;
    max-height: none;
    overflow: visible;
    gap: 8px;
    position: relative;
    justify-content: flex-end;
  }
}
.block--custom-layout__our-team .team-filter .filter-btn {
  padding: 15px 15px;
  cursor: pointer;
  border: 0;
  border-radius: 5px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  font-family: "Visby CF", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  color: #000000;
}
.block--custom-layout__our-team .team-filter .filter-btn:hover {
  background-color: #E6E6E6;
  color: #000;
}
.block--custom-layout__our-team .team-filter .filter-btn.active {
  background-color: #000;
  color: #FFF;
}
@media (max-width: 600px) {
  .block--custom-layout__our-team .team-filter .filter-btn {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
    display: none !important;
  }
}
.block--custom-layout__our-team .team-filter .filter-dropdown {
  display: none;
}
@media (max-width: 600px) {
  .block--custom-layout__our-team .team-filter .filter-dropdown {
    display: block;
    flex-shrink: 0;
    position: relative;
  }
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle {
  padding: 6px 12px;
  cursor: pointer;
  border: 1.5px solid #C7C7C7;
  border-radius: 5px;
  background-color: #E6E6E6;
  font-family: "Visby CF", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 80px;
  width: auto;
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  color: #000000;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle:hover {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle:hover svg {
  stroke: #FFFFFF;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle.active {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle.active svg {
  stroke: #FFFFFF;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle.show {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle.show svg {
  transform: rotate(180deg);
  stroke: #FFFFFF;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle .toggle-text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle .toggle-text::before, .block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle .toggle-text::after {
  content: none !important;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  stroke: #000000;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle::before, .block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-toggle::after {
  content: none !important;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: auto;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  z-index: 100;
  padding: 6px;
  min-width: 160px;
  overflow-y: auto;
  max-height: 300px;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-menu.show {
  display: block;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-menu .filter-btn {
  display: flex !important;
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: 5px;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Visby CF", sans-serif;
  transition: all 0.2s ease;
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: #000000;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-menu .filter-btn:last-child {
  margin-bottom: 0;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-menu .filter-btn:hover {
  background-color: #f0f0f0;
  color: #000000;
}
.block--custom-layout__our-team .team-filter .filter-dropdown .dropdown-menu .filter-btn.active {
  background-color: #000000;
  color: #FFFFFF;
}
.block--custom-layout__our-team .team-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  margin-bottom: 40px;
  max-height: 700px;
  overflow-y: auto;
  padding-right: 10px;
  position: relative;
}
.block--custom-layout__our-team .team-items::-webkit-scrollbar {
  background-color: #f2f2f2;
  width: 8px;
}
.block--custom-layout__our-team .team-items::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .block--custom-layout__our-team .team-items {
    grid-template-columns: repeat(4, 1fr);
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-team .team-items {
    grid-template-columns: repeat(2, 1fr);
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}
.block--custom-layout__our-team .team-items .team-item__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 5px;
}
.block--custom-layout__our-team .team-items .team-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.block--custom-layout__our-team .team-items .team-item h3 {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #000000;
  margin-top: 15px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .block--custom-layout__our-team .team-items .team-item h3 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-team .team-items .team-item h3 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
    margin-top: 10px;
  }
}
.block--custom-layout__our-team .team-items .team-item p {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #434343;
  margin-top: 0;
}
@media (max-width: 768px) {
  .block--custom-layout__our-team .team-items .team-item p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #434343;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-team .team-items .team-item p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #434343;
  }
}
.block--custom-layout__our-team .team-pagination {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.block--custom-layout__our-team .team-pagination .pagination-btn {
  padding: 3px 10px;
  height: 30px;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  font-family: "Visby CF", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #000000;
}
.block--custom-layout__our-team .team-pagination .pagination-btn svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.block--custom-layout__our-team .team-pagination .pagination-btn:hover:not(:disabled) {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
.block--custom-layout__our-team .team-pagination .pagination-btn:hover:not(:disabled) svg {
  stroke: #FFFFFF;
}
.block--custom-layout__our-team .team-pagination .pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .block--custom-layout__our-team .team-pagination .pagination-btn {
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-team .team-pagination .pagination-btn {
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    color: #000000;
  }
}
.block--custom-layout__our-team .team-pagination .pagination-numbers {
  display: flex;
  gap: 5px;
}
.block--custom-layout__our-team .team-pagination .pagination-numbers .page-number {
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  font-family: "Visby CF", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #000000;
}
.block--custom-layout__our-team .team-pagination .pagination-numbers .page-number:hover {
  background-color: #f5f5f5;
}
.block--custom-layout__our-team .team-pagination .pagination-numbers .page-number.active {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
@media (max-width: 768px) {
  .block--custom-layout__our-team .team-pagination .pagination-numbers .page-number {
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-team .team-pagination .pagination-numbers .page-number {
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    color: #000000;
  }
}

.block--custom-layout__video-player {
  padding: 100px 0;
}
.block--custom-layout__video-player .custom-video-wrapper {
  position: relative;
  width: 100%;
}
.block--custom-layout__video-player .custom-video {
  width: 100%;
  display: block;
}
.block--custom-layout__video-player .video-ui-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.block--custom-layout__video-player .video-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 9999;
}
.block--custom-layout__video-player {
  /* Both icons hidden by default — JS controls visibility via .show */
}
.block--custom-layout__video-player .play-icon,
.block--custom-layout__video-player .pause-icon {
  width: 80px;
  height: 80px;
  display: none;
  cursor: pointer;
}
@media (max-width: 600px) {
  .block--custom-layout__video-player .play-icon,
  .block--custom-layout__video-player .pause-icon {
    width: 40px;
    height: 40px;
  }
}
.block--custom-layout__video-player .play-icon.show,
.block--custom-layout__video-player .pause-icon.show {
  display: block;
}
.block--custom-layout__video-player .video-time {
  pointer-events: none;
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
}
.block--custom-layout__video-player .video-progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  pointer-events: auto;
}
.block--custom-layout__video-player .video-progress {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Iframe Block Styles */
.block--custom-layout__iframe {
  width: 100%;
  height: 100vh;
  overflow: hidden; /* Prevent scroll-jumps */
  position: relative;
}
.block--custom-layout__iframe iframe {
  width: 100%;
  height: 100vh;
  border: none;
  touch-action: manipulation;
}

/* Contact Form Block Styles */
.block--custom-layout__contact-form {
  padding: 100px 0;
}
.block--custom-layout__contact-form .main-header {
  margin: 100px 0;
}
.block--custom-layout__contact-form .main-header .header-section h2 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 991px) {
  .block--custom-layout__contact-form .main-header .header-section h2 {
    font-size: 40px;
    line-height: normal;
    font-weight: 700;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__contact-form .main-header .header-section h2 {
    font-size: 26px;
    line-height: normal;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__contact-form .main-header .header-section h3 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  color: #C7C7C7;
}
@media (max-width: 991px) {
  .block--custom-layout__contact-form .main-header .header-section h3 {
    font-size: 40px;
    line-height: normal;
    font-weight: 700;
    color: #C7C7C7;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__contact-form .main-header .header-section h3 {
    font-size: 26px;
    line-height: normal;
    font-weight: 700;
    color: #C7C7C7;
  }
}
.block--custom-layout__contact-form .main-content {
  border: 1px solid #C7C7C7;
  border-radius: 10px;
  overflow: hidden;
}
.block--custom-layout__contact-form .main-content .inner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 0px;
}
@media (max-width: 991px) {
  .block--custom-layout__contact-form .main-content .inner-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}
.block--custom-layout__contact-form .main-content .inner-container .col:first-child {
  background-color: #E6E6E6;
  padding: 50px;
}
.block--custom-layout__contact-form .main-content .inner-container .col .brand-logo {
  margin-bottom: 10px;
  max-width: 176px;
}
.block--custom-layout__contact-form .main-content .inner-container .col .ci-content .ci-header {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 991px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .ci-content .ci-header {
    font-size: 20px;
    line-height: normal;
    font-weight: 700;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .ci-content .ci-header {
    font-size: 14px;
    line-height: normal;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__contact-form .main-content .inner-container .col .ci-content .ci-subheader {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #000000;
}
@media (max-width: 991px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .ci-content .ci-subheader {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .ci-content .ci-subheader {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    color: #000000;
  }
}
.block--custom-layout__contact-form .main-content .inner-container .col .divider {
  height: 1px;
  width: 100%;
  background-color: #000000;
  margin: 30px 0;
}
.block--custom-layout__contact-form .main-content .inner-container .col .contact-details .contact-detail-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.block--custom-layout__contact-form .main-content .inner-container .col .contact-details .contact-detail-item .contact-text {
  font-family: "Aptos", sans-serif;
  font-weight: 400;
}
@media (max-width: 991px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .contact-details .contact-detail-item .contact-text {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .contact-details .contact-detail-item .contact-text {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    color: #000000;
  }
}
.block--custom-layout__contact-form .main-content .inner-container .col .social-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 60px;
}
.block--custom-layout__contact-form .main-content .inner-container .col .social-links a {
  color: #868686;
  font-size: 14px;
  font-weight: 400;
}
.block--custom-layout__contact-form .main-content .inner-container .col .form-wrapper {
  padding: 50px 20px;
}
.block--custom-layout__contact-form .main-content .inner-container .col .form-wrapper .form-header h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 991px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .form-wrapper .form-header h3 {
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .form-wrapper .form-header h3 {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: #000000;
  }
}
.block--custom-layout__contact-form .main-content .inner-container .col .form-wrapper .form-header p {
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #000000;
}
@media (max-width: 991px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .form-wrapper .form-header p {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__contact-form .main-content .inner-container .col .form-wrapper .form-header p {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    color: #000000;
  }
}
.block--custom-layout__contact-form .main-content .inner-container .col .form-wrapper .form-shortcode {
  margin-top: 30px;
}
.block--custom-layout__contact-form .main-content .inner-container .col .form-wrapper .form-shortcode .custom-forminator-wrapper {
  display: flex;
  justify-content: end;
}

/* Custom Slider Block Styles */
.block--custom-layout__custom-slider {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__custom-slider {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__custom-slider {
    padding: 30px 0px;
  }
}
.block--custom-layout__custom-slider p,
.block--custom-layout__custom-slider h2 {
  margin: 0;
}
.block--custom-layout__custom-slider .swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  position: relative;
}
.block--custom-layout__custom-slider .swiper-nav .swiper-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block--custom-layout__custom-slider .swiper-nav .swiper-button-prev,
.block--custom-layout__custom-slider .swiper-nav .swiper-button-next {
  position: static !important;
  margin: 0;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block--custom-layout__custom-slider .swiper-nav .swiper-button-prev::after,
.block--custom-layout__custom-slider .swiper-nav .swiper-button-next::after {
  display: none !important;
  content: none !important;
}
.block--custom-layout__custom-slider .swiper-nav .swiper-button-prev svg,
.block--custom-layout__custom-slider .swiper-nav .swiper-button-next svg {
  width: 18px;
  height: 16px;
  transition: transform 0.2s ease, fill 0.2s ease;
}
.block--custom-layout__custom-slider .swiper-nav .swiper-button-prev svg path,
.block--custom-layout__custom-slider .swiper-nav .swiper-button-next svg path {
  fill: #868686;
  transition: fill 0.2s ease;
}
.block--custom-layout__custom-slider .swiper-nav .swiper-button-prev:hover svg path,
.block--custom-layout__custom-slider .swiper-nav .swiper-button-next:hover svg path {
  fill: #000;
}
.block--custom-layout__custom-slider .swiper-nav .swiper-button-prev.swiper-button-prev:hover svg,
.block--custom-layout__custom-slider .swiper-nav .swiper-button-next.swiper-button-prev:hover svg {
  transform: translateX(-2px);
}
.block--custom-layout__custom-slider .swiper-nav .swiper-button-prev.swiper-button-next:hover svg,
.block--custom-layout__custom-slider .swiper-nav .swiper-button-next.swiper-button-next:hover svg {
  transform: translateX(2px);
}
.block--custom-layout__custom-slider .swiper-horizontal > .swiper-pagination-bullets,
.block--custom-layout__custom-slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.block--custom-layout__custom-slider .swiper-pagination-custom,
.block--custom-layout__custom-slider .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: auto !important;
  position: static !important;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__custom-slider .background {
    background-color: #F5F5F5;
  }
}
.block--custom-layout__custom-slider .wrapper {
  margin-top: 60px;
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item {
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  padding: 30px;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item {
    padding: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item {
    flex-wrap: wrap;
    flex-direction: column;
    padding: 40px 0px;
  }
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__image img {
    width: 250px;
    height: 350px;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__image img {
    width: 100%;
    height: 330px;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__image {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text {
  flex: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text img {
  height: 70px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text img {
    max-width: 50%;
    height: auto;
  }
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .text_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  height: 100%;
}
@media (max-width: 991px) {
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .text_wrapper {
    margin-top: 20px;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .text_wrapper {
    margin-top: 15px;
    gap: 15px;
  }
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view {
  font-size: 30px;
  line-height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-weight: 700;
  color: #000000;
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view .strong {
  font-weight: 700;
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view svg {
  margin-left: 25px;
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view:hover {
  text-decoration: none;
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view {
    font-size: 20px;
    position: relative;
    margin-top: 30px;
  }
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view svg {
    height: 16px;
    width: 16px;
    margin-left: 15px;
  }
  .block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view svg path {
    fill: #000000;
  }
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view:hover {
  color: #0037FF;
  text-decoration: none;
}
.block--custom-layout__custom-slider .wrapper .content-repeater .content-item .content-item__text .cta-view:hover .svg path {
  fill: #0037FF;
}
.block--custom-layout__custom-slider .cta-wrapper {
  text-align: right;
}
.block--custom-layout__custom-slider .cta-wrapper .cta-link-content {
  background-color: #FFFFFF;
  color: #000000;
}

/* This Is A Demo Block Styles */
.block--custom-layout__this-is-a-demo {
  padding: 100px 0;
}

/* Wellevate Plus Pricing Block Styles */
.block--custom-layout__wellevate-plus-pricing {
  padding: 100px 0;
}
.block--custom-layout__wellevate-plus-pricing .main-header {
  margin-bottom: 60px;
}
.block--custom-layout__wellevate-plus-pricing .main-content .inner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col {
  margin: 0;
  padding: 20px 15px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .title-wrapper {
  background-color: #454545;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 15px;
  width: 100%;
}
.block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .title-wrapper h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0px;
  color: #FFFFFF;
}
.block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .description h3 {
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  color: #000000;
}
.block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .description p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #868686;
  margin-bottom: 0;
}
.block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .description br {
  display: none;
}
.block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .content-wrapper .default-btn.btn-sm {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #000000;
}
.block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col:nth-child(2) {
  align-items: flex-end;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .title-wrapper h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #FFF;
  }
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .description h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: #000000;
  }
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .description p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #868686;
  }
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .content-wrapper .default-btn.btn-sm {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #000000;
  }
}
@media (max-width: 767px) {
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .title-wrapper h3 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #FFF;
  }
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .description h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #000000;
  }
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .description p {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #868686;
  }
  .block--custom-layout__wellevate-plus-pricing .main-content .inner-container .col .content-wrapper .default-btn.btn-sm {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
  }
}

/* Wellevate Plus Our Services Block Styles */
.block--custom-layout__wellevate-plus-our-services {
  padding-bottom: 100px;
}
.block--custom-layout__wellevate-plus-our-services .main-header .headlines {
  margin-bottom: 30px;
}
.block--custom-layout__wellevate-plus-our-services .main-header .headlines .title_text {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-header .headlines .title_text {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-header .headlines .title_text {
    font-size: 16px !important;
    line-height: 26px !important;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-header .headlines .subtitle_text {
  font-family: "Visby CF", sans-serif;
  color: #B6B6B6;
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-header .headlines .subtitle_text {
    font-size: 20px !important;
    line-height: normal !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-header .headlines .subtitle_text {
    font-size: 16px !important;
    line-height: normal !important;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-header .headlines .description_text {
  font-family: "Aptos", sans-serif;
  color: #434343;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-header .headlines .description_text {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-header .headlines .description_text {
    font-size: 12px !important;
    line-height: 22px !important;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px !important;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item {
  background-color: #454545;
  color: #FFFFFF;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item {
    padding: 20px 15px;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item h3 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item h3 {
    font-size: 16px !important;
    line-height: 26px !important;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item p, .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item li {
  font-family: "Aptos", sans-serif;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item p, .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item li {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item p, .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item li {
    font-size: 12px !important;
    line-height: 22px !important;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item .divider {
  background-color: #FFFFFF;
  height: 1px;
  width: 100%;
  margin: 15px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item .divider {
    margin: 5px 0;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item ul {
  margin-bottom: 40px;
  padding-left: 0;
  list-style-position: outside;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item ul {
    margin-bottom: 20px;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item ul li {
  margin-bottom: 15px;
  margin-left: 1.5em;
  padding-left: 0.5em;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item ul li {
    font-size: 14px !important;
    line-height: 24px !important;
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item ul li {
    font-size: 12px !important;
    line-height: 22px !important;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item > a:last-child {
  margin-top: auto;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background-color: #FFFFFF;
  color: #000000;
  border-radius: 8px;
  font-family: "Visby CF", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item > a:last-child {
    padding: 10px 4px;
    font-size: 18px !important;
    line-height: 28px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item > a:last-child {
    font-size: 12px !important;
    line-height: 22px !important;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item > a:last-child svg, .block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item > a:last-child::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.block--custom-layout__wellevate-plus-our-services .main-content .featured-services .featured-item > a:last-child:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-table-wrapper {
  position: relative;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .comparison-table-wrapper {
    display: none;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content table {
  font-family: "Aptos", sans-serif;
}
.block--custom-layout__wellevate-plus-our-services .main-content table thead th {
  text-align: center;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content table thead th {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
    padding: 10px;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content table thead th:nth-child(1) {
  background-color: #868686;
}
.block--custom-layout__wellevate-plus-our-services .main-content table thead th:nth-child(2) {
  background-color: #C7C7C7;
}
.block--custom-layout__wellevate-plus-our-services .main-content table thead th:nth-child(3) {
  background-color: #454545;
}
.block--custom-layout__wellevate-plus-our-services .main-content table thead th:nth-child(4) {
  background-color: #000000;
}
.block--custom-layout__wellevate-plus-our-services .main-content table tbody tr {
  vertical-align: middle;
}
.block--custom-layout__wellevate-plus-our-services .main-content table tbody tr td {
  vertical-align: middle;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content table tbody tr td {
    padding: 10px;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content table tbody tr td .td-cell img {
  height: 36px;
  width: 36px;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content table tbody tr td .td-cell img {
    height: 24px;
    width: 24px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content table tbody tr td .td-cell img {
    height: 16px;
    width: 16px;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content table tbody tr td .td-cell {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #434343;
}
@media (max-width: 991px) {
  .block--custom-layout__wellevate-plus-our-services .main-content table tbody tr td .td-cell {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content table tbody tr td .td-cell {
    font-size: 12px !important;
    line-height: 22px !important;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content table tbody tr td .td-cell {
  display: flex;
  align-items: center;
  gap: 20px;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper {
  display: none;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper {
    display: block;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 40% 60%;
  position: relative;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40%;
  width: 1px;
  height: 100%;
  background-color: #e0e0e0;
  z-index: 1;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .color-block {
  background-color: #808080;
  min-height: 50px;
  position: relative;
  z-index: 0;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown {
  position: relative;
  z-index: 0;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-toggle {
  width: 100%;
  padding: 10px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  font-family: "Visby CF", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 50px;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-toggle {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #FFFFFF;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-toggle .toggle-text {
  flex: 1;
  text-align: left;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-toggle .toggle-text::before, .block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-toggle .toggle-text::after {
  content: none !important;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-toggle svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-toggle.show svg {
  transform: rotate(180deg);
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-toggle::before, .block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-toggle::after {
  content: none !important;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-top: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  overflow: hidden;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-menu.show {
  display: block;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-menu .version-option {
  width: 100%;
  padding: 10px;
  background-color: #FFFFFF;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-family: "Visby CF", sans-serif;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-menu .version-option {
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    color: #000000;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-menu .version-option:last-child {
  border-bottom: none;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-menu .version-option:hover, .block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .version-selector .version-dropdown .dropdown-menu .version-option.active {
  background-color: #f5f5f5;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list {
  border: 1px solid #e0e0e0;
  border-top: none;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list .feature-item {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
  display: grid;
  grid-template-columns: 40% 60%;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list .feature-item:last-child {
  border-bottom: none;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list .feature-item .feature-header {
  background-color: #f5f5f5;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid #e0e0e0;
  text-align: left;
  min-height: 120px;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list .feature-item .feature-header svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list .feature-item .feature-header span {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #434343;
  }
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list .feature-item .feature-value {
  background-color: #FFFFFF;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  min-height: 120px;
  text-align: left;
}
.block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list .feature-item .feature-value img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list .feature-item .feature-value {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #434343;
  }
  .block--custom-layout__wellevate-plus-our-services .main-content .comparison-mobile-wrapper .feature-list .feature-item .feature-value * {
    font-size: 12px !important;
    line-height: 22px !important;
    font-weight: 400 !important;
    color: #434343 !important;
  }
}
@media (max-width: 1024px) {
  .block--custom-layout__wellevate-plus-our-services .cta-btn-desktop {
    font-size: 14px;
  }
}

/* Wellevate Plus How To Works Block Styles */
.block--custom-layout__wellevate-plus-how-to-works .headlines .title_text {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .block--custom-layout__wellevate-plus-how-to-works .headlines .title_text {
    margin-bottom: 0px;
  }
}
.block--custom-layout__wellevate-plus-how-to-works .headlines .subtitle_text {
  margin-bottom: 60px;
}
.block--custom-layout__wellevate-plus-how-to-works .main-content {
  display: flex;
  flex-direction: column;
}
.block--custom-layout__wellevate-plus-how-to-works .main-content .how-to-toggle-gallery {
  display: flex;
  gap: 2rem;
}
.block--custom-layout__wellevate-plus-how-to-works .main-content .how-to-toggle-gallery .col {
  display: flex;
  flex: 1;
}
.block--custom-layout__wellevate-plus-how-to-works .main-content .how-to-toggle-gallery .col:nth-child(2) {
  flex-direction: column;
  gap: 15px;
}
.block--custom-layout__wellevate-plus-how-to-works .main-content .cta-btn-desktop {
  margin-left: auto;
  margin-top: 60px;
}
.block--custom-layout__wellevate-plus-how-to-works .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 555px;
  height: 238px;
  overflow: hidden;
  border-radius: 12px;
}
.block--custom-layout__wellevate-plus-how-to-works .how-to-img-item {
  background-color: #454545;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.block--custom-layout__wellevate-plus-how-to-works .how-to-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block--custom-layout__wellevate-plus-how-to-works .how-to-img-item.active {
  opacity: 1;
  pointer-events: all;
}
.block--custom-layout__wellevate-plus-how-to-works .step-wrapper .step-image-mobile {
  display: none;
}
.block--custom-layout__wellevate-plus-how-to-works .grid-item {
  display: flex;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #E6E6E6;
  padding: 0 20px;
  border-radius: 5px;
  gap: 30px;
}
.block--custom-layout__wellevate-plus-how-to-works .grid-item .step-number svg path {
  fill: black;
}
.block--custom-layout__wellevate-plus-how-to-works .grid-item.active {
  background: #454545;
}
.block--custom-layout__wellevate-plus-how-to-works .grid-item.active .step-number svg path {
  fill: white;
}
.block--custom-layout__wellevate-plus-how-to-works .grid-item.active .step-content h3 {
  color: #FFFFFF;
}
.block--custom-layout__wellevate-plus-how-to-works .grid-item .step-number {
  display: flex;
  align-items: flex-end;
}
.block--custom-layout__wellevate-plus-how-to-works .grid-item .step-content {
  padding: 20px 0;
}
.block--custom-layout__wellevate-plus-how-to-works .grid-item .step-content h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .block--custom-layout__wellevate-plus-how-to-works .subtitle_text {
    margin-bottom: 40px;
  }
  .block--custom-layout__wellevate-plus-how-to-works .main-content .cta-btn-desktop {
    margin-top: 60px;
  }
  .block--custom-layout__wellevate-plus-how-to-works .image-wrapper {
    max-width: 385.5px;
    height: 270px;
  }
  .block--custom-layout__wellevate-plus-how-to-works .grid-item .step-content h3 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #000000;
  }
}
@media (max-width: 767px) {
  .block--custom-layout__wellevate-plus-how-to-works .subtitle_text {
    margin-bottom: 40px;
  }
  .block--custom-layout__wellevate-plus-how-to-works .main-content .how-to-toggle-gallery {
    flex-direction: column;
    gap: 0;
  }
  .block--custom-layout__wellevate-plus-how-to-works .main-content .how-to-toggle-gallery .col:nth-child(1) {
    display: none;
  }
  .block--custom-layout__wellevate-plus-how-to-works .main-content .how-to-toggle-gallery .col:nth-child(2) {
    gap: 30px;
  }
  .block--custom-layout__wellevate-plus-how-to-works .main-content .cta-btn-desktop.lg {
    margin-top: 40px;
    margin-left: auto;
    display: block;
    width: fit-content;
    font-size: 12px !important;
    line-height: 26px !important;
  }
  .block--custom-layout__wellevate-plus-how-to-works .main-content .cta-btn-desktop.lg .btn-text {
    font-size: 12px !important;
    line-height: 26px !important;
  }
  .block--custom-layout__wellevate-plus-how-to-works .step-wrapper .step-image-mobile {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
  }
  .block--custom-layout__wellevate-plus-how-to-works .step-wrapper .step-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .block--custom-layout__wellevate-plus-how-to-works .grid-item {
    gap: 25px;
    padding: 20px 20px 0px 20px;
  }
  .block--custom-layout__wellevate-plus-how-to-works .grid-item .step-number {
    padding-bottom: 0px;
  }
  .block--custom-layout__wellevate-plus-how-to-works .grid-item .step-content {
    padding: 0;
    padding-bottom: 20px;
  }
  .block--custom-layout__wellevate-plus-how-to-works .grid-item .step-content h3 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #000000;
  }
}
@media (max-width: 767px) {
  .block--custom-layout__wellevate-plus-how-to-works .grid-item .step-number {
    align-items: flex-end !important;
  }
}
@media (max-width: 680px) {
  .block--custom-layout__wellevate-plus-how-to-works .main-content .cta-btn-desktop.lg {
    font-size: 12px !important;
    line-height: 26px !important;
  }
  .block--custom-layout__wellevate-plus-how-to-works .main-content .cta-btn-desktop.lg .btn-text {
    font-size: 16px !important;
    line-height: 26px !important;
  }
}

/* Add In Block Styles */
.block--custom-layout__add-in {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__add-in {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__add-in {
    padding: 30px 0px;
  }
}
.block--custom-layout__add-in .video-section {
  width: 100%;
  margin: 100px 0;
  text-align: center;
}
@media (max-width: 991px) {
  .block--custom-layout__add-in .video-section {
    margin: 80px 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__add-in .video-section {
    margin: 40px 0;
  }
}
.block--custom-layout__add-in .video-section .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #000;
}
.block--custom-layout__add-in .video-section .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  object-fit: cover;
}
.block--custom-layout__add-in .key_features_content {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .block--custom-layout__add-in .key_features_content {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.block--custom-layout__add-in .key_features_content table {
  flex: 1;
}
.block--custom-layout__add-in .key_features_content table tr {
  border-bottom: 1px solid #C7C7C7;
  padding: 10px 0 !important;
}
.block--custom-layout__add-in .key_features_content table tr th {
  color: #000;
  text-align: center;
  font-family: "Visby CF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
  border-radius: 5px 5px 0 0;
}
@media (max-width: 991px) {
  .block--custom-layout__add-in .key_features_content table tr th {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__add-in .key_features_content table tr th {
    font-size: 10px;
    line-height: 22px;
  }
}
.block--custom-layout__add-in .key_features_content table tr td {
  vertical-align: middle;
}
.block--custom-layout__add-in .key_features_content table tr td:first-child {
  text-align: left;
}
.block--custom-layout__add-in .key_features_content table tr td:not(:first-child) {
  text-align: center;
  width: 150px;
}
.block--custom-layout__add-in .key_features_content table tr td:not(:first-child) svg {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  width: auto;
}
@media (max-width: 991px) {
  .block--custom-layout__add-in .key_features_content table tr td:not(:first-child) svg {
    height: 22px;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__add-in .key_features_content table tr td:not(:first-child) svg {
    height: 15px;
  }
}
.block--custom-layout__add-in .key_features_content table tr td, .block--custom-layout__add-in .key_features_content table tr th {
  padding: 15px 10px;
}
.block--custom-layout__add-in .key_features_content table tr td:nth-child(2), .block--custom-layout__add-in .key_features_content table tr th:nth-child(2) {
  background-color: #E6E6E6;
}
.block--custom-layout__add-in .key_features_content table tr:last-child {
  border: none;
}
.block--custom-layout__add-in .key_features_content table tr:last-child td {
  border-radius: 0 0 5px 5px;
}
.block--custom-layout__add-in .key_features_content .key_features_image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.block--custom-layout__add-in .key_features_content .key_features_image img {
  width: 362.959px;
  height: auto;
  border-radius: 5px;
}
.block--custom-layout__add-in .key_benefits_section {
  margin: 100px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__add-in .key_benefits_section {
    margin: 80px 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__add-in .key_benefits_section {
    margin: 40px 0;
  }
}
.block--custom-layout__add-in .key_benefits_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.block--custom-layout__add-in .key_benefits_content .content-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.block--custom-layout__add-in .key_benefits_content .content-item svg {
  height: 40px;
  margin-bottom: 30px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .block--custom-layout__add-in .key_benefits_content {
    margin-top: 40px;
    gap: 20px;
  }
  .block--custom-layout__add-in .key_benefits_content svg {
    height: 30px !important;
    margin-bottom: 15px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__add-in .key_benefits_content {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .block--custom-layout__add-in .key_benefits_content svg {
    height: 25px !important;
  }
}
.block--custom-layout__add-in .highlighted_content_card {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  padding: 30px;
  border-radius: 5px;
  background-color: #E6E6E6;
  align-items: center;
}
.block--custom-layout__add-in .highlighted_content_card svg {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .block--custom-layout__add-in .highlighted_content_card {
    margin-top: 40px;
    padding: 20px;
    gap: 20px;
  }
  .block--custom-layout__add-in .highlighted_content_card svg {
    height: 30px !important;
    margin-bottom: 15px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__add-in .highlighted_content_card {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .block--custom-layout__add-in .highlighted_content_card svg {
    height: 25px !important;
  }
}

/* Reports Block Styles */
.block--custom-layout__reports {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__reports {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__reports {
    padding: 30px 0px;
  }
}
.block--custom-layout__reports .reports-container {
  margin-top: 50px;
  display: flex;
}
.block--custom-layout__reports .reports-container .article-item {
  border: 1px solid #F2F2F2;
  border-radius: 5px;
  overflow: hidden;
}
.block--custom-layout__reports .reports-container .article-item .featured-article-image img {
  height: 290px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .block--custom-layout__reports .reports-container .article-item .featured-article-image img {
    height: 110px;
  }
}
.block--custom-layout__reports .reports-container .article-item .details {
  padding: 20px;
}
.block--custom-layout__reports .reports-container .article-item .details h3 a {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 600px) {
  .block--custom-layout__reports .reports-container .article-item .details h3 a {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__reports .reports-container .article-item .details svg {
  margin-left: 10px;
  height: 16px;
  width: 16px;
}
.block--custom-layout__reports .reports-container .article-item .details .article-excerpt, .block--custom-layout__reports .reports-container .article-item .details p {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: #434343;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__reports .reports-container .article-item .details .article-excerpt, .block--custom-layout__reports .reports-container .article-item .details p {
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #000000;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__reports .reports-container {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__reports .reports-container {
    margin-top: 30px;
  }
}
.block--custom-layout__reports .article-item {
  flex: 0 0 auto;
  width: 25%;
  box-sizing: border-box;
}
.block--custom-layout__reports .swiper-button-next, .block--custom-layout__reports .swiper-button-prev {
  background-color: white;
  width: 63px;
  height: 63px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  z-index: 99;
  filter: drop-shadow(0 0 9.1px rgba(0, 0, 0, 0.25));
}
.block--custom-layout__reports .swiper-button-next svg, .block--custom-layout__reports .swiper-button-prev svg {
  width: 18.9px;
  height: 31.587px;
  flex-shrink: 0;
}
.block--custom-layout__reports .swiper-button-next::after, .block--custom-layout__reports .swiper-button-prev::after {
  display: none !important;
  content: none !important;
}
@media (max-width: 991px) {
  .block--custom-layout__reports .swiper-button-next, .block--custom-layout__reports .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .block--custom-layout__reports .swiper-button-next svg, .block--custom-layout__reports .swiper-button-prev svg {
    width: 12px;
    height: 20.055px;
  }
}

/* Creates Impact Block Styles */
.block--custom-layout__creates-impact {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__creates-impact {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__creates-impact {
    padding: 30px 0px;
  }
}
.block--custom-layout__creates-impact .ci_content_repeater {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.block--custom-layout__creates-impact .ci_content_repeater .item {
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 30px;
  border: 1px solid #C7C7C7;
  border-radius: 5px;
}
.block--custom-layout__creates-impact .ci_content_repeater .item svg {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .block--custom-layout__creates-impact .ci_content_repeater {
    margin-top: 40px;
    gap: 10px;
  }
  .block--custom-layout__creates-impact .ci_content_repeater .item {
    padding: 20px;
    gap: 20px;
  }
  .block--custom-layout__creates-impact .ci_content_repeater .item svg {
    height: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__creates-impact .ci_content_repeater {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .block--custom-layout__creates-impact .ci_content_repeater .item {
    gap: 15px;
    padding: 15px;
  }
  .block--custom-layout__creates-impact .ci_content_repeater .item svg {
    height: 25px;
  }
}

/* Creative Work Block Styles */
.block--custom-layout__creative-work {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__creative-work {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__creative-work {
    padding: 30px 0px;
  }
}
.block--custom-layout__creative-work .cw_content_repeater {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
.block--custom-layout__creative-work .cw_content_repeater .item {
  display: flex;
  gap: 30px;
  padding: 30px;
  border-bottom: 1px solid #C7C7C7;
  align-items: center;
}
.block--custom-layout__creative-work .cw_content_repeater .item .body_text {
  font-weight: 700;
}
.block--custom-layout__creative-work .cw_content_repeater .item svg {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
.block--custom-layout__creative-work .cw_content_repeater .item:last-child {
  border: none;
}
@media (max-width: 991px) {
  .block--custom-layout__creative-work .cw_content_repeater {
    margin-top: 40px;
  }
  .block--custom-layout__creative-work .cw_content_repeater .item {
    padding: 20px;
    gap: 20px;
  }
  .block--custom-layout__creative-work .cw_content_repeater .item svg {
    height: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__creative-work .cw_content_repeater {
    margin-top: 30px;
  }
  .block--custom-layout__creative-work .cw_content_repeater .item {
    gap: 15px;
    padding: 15px;
  }
  .block--custom-layout__creative-work .cw_content_repeater .item svg {
    height: 25px;
  }
}

/* Inquiry Outcome Block Styles */
.block--custom-layout__inquiry-outcome {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__inquiry-outcome {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__inquiry-outcome {
    padding: 30px 0px;
  }
}
.block--custom-layout__inquiry-outcome .desktop-tablet-only {
  display: block;
}
@media (max-width: 600px) {
  .block--custom-layout__inquiry-outcome .desktop-tablet-only {
    display: none;
  }
}
.block--custom-layout__inquiry-outcome .mobile-only {
  display: none;
}
@media (max-width: 600px) {
  .block--custom-layout__inquiry-outcome .mobile-only {
    display: block;
  }
}
.block--custom-layout__inquiry-outcome .content-wrapper {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .block--custom-layout__inquiry-outcome .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__inquiry-outcome .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper {
    gap: 0px;
  }
}
.block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper {
  align-items: flex-start;
}
@media (max-width: 600px) {
  .block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper {
    align-items: flex-start;
  }
  .block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper .headlines {
    align-self: flex-start;
  }
  .block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper .mobile-only {
    align-self: flex-end;
  }
}
.block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper .cta-btn-desktop {
  font-size: 24px;
  padding: 15px 20px;
}
@media (max-width: 1024px) {
  .block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper .cta-btn-desktop {
    font-size: 18px !important;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper .cta-btn-desktop {
    padding: 10px 20px !important;
  }
  .block--custom-layout__inquiry-outcome .content-wrapper .headline-wrapper .cta-btn-desktop svg {
    width: 19px !important;
    height: 15px !important;
  }
}
.block--custom-layout__inquiry-outcome .content-wrapper .mobile-only .right .cta-btn-mobile.cta-btn-desktop {
  font-size: 12px !important;
  padding: 10px 10px !important;
  border-radius: 5px !important;
  gap: 10px !important;
  line-height: normal !important;
}
.block--custom-layout__inquiry-outcome .content-wrapper .mobile-only .right .cta-btn-mobile.cta-btn-desktop svg {
  width: 12px !important;
  height: 10px !important;
}
.block--custom-layout__inquiry-outcome .content-wrapper .mobile-only .right .cta-btn-mobile.cta-btn-desktop span {
  font-size: 12px !important;
}
.block--custom-layout__inquiry-outcome .content-wrapper .carousel-wrapper {
  flex: 1;
}
.block--custom-layout__inquiry-outcome .content-wrapper .carousel-wrapper .content-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background-color: #E6E6E6;
  border-radius: 5px;
  padding: 50px 30px;
  height: 290px;
}
.block--custom-layout__inquiry-outcome .content-wrapper .carousel-wrapper .content-item h3 {
  font-weight: 400;
}
.block--custom-layout__inquiry-outcome .content-wrapper .carousel-wrapper .content-item hr {
  border: none;
  width: 100%;
  height: 2px;
  background-color: #000;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .block--custom-layout__inquiry-outcome .content-wrapper .carousel-wrapper .content-item {
    padding: 40px 20px;
  }
  .block--custom-layout__inquiry-outcome .content-wrapper .carousel-wrapper .content-item svg {
    width: auto;
    height: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__inquiry-outcome .content-wrapper .carousel-wrapper .content-item {
    height: auto;
    padding: 30px 20px;
  }
  .block--custom-layout__inquiry-outcome .content-wrapper .carousel-wrapper .content-item svg {
    width: auto;
    height: 25px;
  }
  .block--custom-layout__inquiry-outcome .content-wrapper .carousel-wrapper .content-item hr {
    height: 1px;
  }
}

/* Discount Prices Block Styles */
.block--custom-layout__discount-prices {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__discount-prices {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__discount-prices {
    padding: 30px 0px;
  }
}
.block--custom-layout__discount-prices .content-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .block--custom-layout__discount-prices .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__discount-prices .content-wrapper {
    gap: 40px;
  }
}
.block--custom-layout__discount-prices .content-wrapper .content-one,
.block--custom-layout__discount-prices .content-wrapper .content-two {
  width: 100%;
}
.block--custom-layout__discount-prices .content-wrapper .section-container {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .block--custom-layout__discount-prices .content-wrapper .section-container {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__discount-prices .content-wrapper .section-container {
    flex-direction: column;
    gap: 15px;
  }
}
.block--custom-layout__discount-prices .content-wrapper .section-title-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: #E6E6E6;
  border-radius: 5px;
  min-width: 180px;
}
@media (max-width: 991px) {
  .block--custom-layout__discount-prices .content-wrapper .section-title-card {
    min-width: 150px;
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__discount-prices .content-wrapper .section-title-card {
    min-width: auto;
    width: 100%;
    padding: 15px;
  }
}
.block--custom-layout__discount-prices .content-wrapper .section-title-card .header_text {
  text-align: center;
  margin: 0;
}
.block--custom-layout__discount-prices .content-wrapper .content-repeater-one,
.block--custom-layout__discount-prices .content-wrapper .content-repeater-two {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  flex: 1;
}
@media (max-width: 991px) {
  .block--custom-layout__discount-prices .content-wrapper .content-repeater-one,
  .block--custom-layout__discount-prices .content-wrapper .content-repeater-two {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__discount-prices .content-wrapper .content-repeater-one,
  .block--custom-layout__discount-prices .content-wrapper .content-repeater-two {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.block--custom-layout__discount-prices .content-wrapper .content-repeater-one:has(.content-item:only-child),
.block--custom-layout__discount-prices .content-wrapper .content-repeater-two:has(.content-item:only-child) {
  grid-template-columns: 1fr;
}
.block--custom-layout__discount-prices .content-wrapper .content-repeater-one:has(.content-item:only-child) .content-item,
.block--custom-layout__discount-prices .content-wrapper .content-repeater-two:has(.content-item:only-child) .content-item {
  max-width: 100%;
}
.block--custom-layout__discount-prices .content-wrapper .content-item {
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 5px;
  border: 1px solid #C7C7C7;
  background: #FFFFFF;
}
@media (max-width: 991px) {
  .block--custom-layout__discount-prices .content-wrapper .content-item {
    gap: 10px;
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__discount-prices .content-wrapper .content-item {
    gap: 10px;
    padding: 15px;
    width: 100%;
  }
}
.block--custom-layout__discount-prices .content-wrapper .content-item .per-credit {
  display: flex;
  padding: 3px 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 5px;
  background: #E6E6E6;
}
.block--custom-layout__discount-prices .content-wrapper .content-item .per-credit p {
  color: #000;
  font-family: Aptos;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
@media (max-width: 600px) {
  .block--custom-layout__discount-prices .content-wrapper .content-item .per-credit {
    padding: 3px 10px;
  }
  .block--custom-layout__discount-prices .content-wrapper .content-item .per-credit p {
    font-size: 10px;
    line-height: 14px;
  }
}
.block--custom-layout__discount-prices .content-wrapper .content-item hr {
  border: none;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  margin: 0;
  padding: 0;
}

/* How It Works Pricing Block Styles */
.block--custom-layout__how-it-works-pricing {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works-pricing {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works-pricing {
    padding: 30px 0px;
  }
}
.block--custom-layout__how-it-works-pricing .inner-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works-pricing .inner-container {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works-pricing .inner-container {
    gap: 40px;
  }
}
.block--custom-layout__how-it-works-pricing .inner-container .headlines {
  width: 100%;
  flex-shrink: 0;
}
.block--custom-layout__how-it-works-pricing .inner-container .headlines .title_text,
.block--custom-layout__how-it-works-pricing .inner-container .headlines .subtitle_text {
  margin: 0;
}
.block--custom-layout__how-it-works-pricing .inner-container .headlines .body_text {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works-pricing .inner-container .headlines .body_text {
    margin-top: 15px;
  }
}
.block--custom-layout__how-it-works-pricing .inner-container .content-repeater {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item {
  position: relative;
  display: flex;
  border-radius: 5px;
  flex-direction: row;
  border: none !important;
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item {
    flex-direction: column;
  }
}
.block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper {
  padding: 30px;
  padding-right: 100px;
  height: 300px;
}
.block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__image img {
  max-width: 30px;
  margin-bottom: 15px;
}
.block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content .header_text {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content .header_text {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content .header_text {
    margin-bottom: 10px;
  }
}
.block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content p, .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content span {
  word-break: break-word;
  hyphens: auto;
  overflow-wrap: break-word;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__content {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper {
    height: auto;
    min-height: 219px;
    padding: 30px 20px;
    padding-right: 80px;
    padding-bottom: 70px;
  }
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper .content-item__image img {
    max-width: 25px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__inner-wrapper {
    height: auto;
    min-height: 180px;
    padding-right: 70px;
    padding-bottom: 70px;
  }
}
.block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__count {
  position: absolute;
  bottom: 0;
  right: 25px;
  flex: 1;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__count {
    right: 20px;
  }
  .block--custom-layout__how-it-works-pricing .inner-container .content-repeater .content-item .content-item__count svg {
    height: 60px;
    width: auto;
  }
}
.block--custom-layout__how-it-works-pricing .cta-btn-desktop {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .block--custom-layout__how-it-works-pricing .cta-btn-desktop {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__how-it-works-pricing .cta-btn-desktop {
    margin-top: 40px;
  }
}

/* Our Services Design Block Styles */
.block--custom-layout__our-services-design {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-design {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-design {
    padding: 30px 0px;
  }
}
.block--custom-layout__our-services-design .osd-content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}
.block--custom-layout__our-services-design .osd-content-wrapper .osd-content-block .osd-header-block {
  display: flex;
  align-items: center;
  gap: 20px;
}
.block--custom-layout__our-services-design .osd-content-wrapper .osd-content-block .osd-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.block--custom-layout__our-services-design .osd-content-wrapper .osd-content-block .osd-item-list .osd-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #E6E6E6;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-design .osd-content-wrapper {
    margin-top: 40px;
    gap: 40px;
  }
  .block--custom-layout__our-services-design .osd-content-wrapper .osd-item-list {
    margin-top: 20px !important;
  }
  .block--custom-layout__our-services-design .osd-content-wrapper .osd-item-list .osd-item {
    padding: 5px;
  }
  .block--custom-layout__our-services-design .osd-content-wrapper svg {
    width: auto;
    height: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-design .osd-content-wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 40px;
    gap: 40px;
  }
  .block--custom-layout__our-services-design .osd-content-wrapper .osd-header-block {
    gap: 10px !important;
  }
  .block--custom-layout__our-services-design .osd-content-wrapper .osd-item-list {
    margin-top: 10px !important;
  }
  .block--custom-layout__our-services-design .osd-content-wrapper .osd-item-list .osd-item {
    padding: 2px 10px !important;
  }
  .block--custom-layout__our-services-design .osd-content-wrapper svg {
    width: auto;
    height: 25px;
  }
}

/* Our Services Engage Block Styles */
.block--custom-layout__our-services-engage {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage {
    padding: 30px 0px;
  }
}
.block--custom-layout__our-services-engage .headlines h2 {
  margin-bottom: 30px;
}
.block--custom-layout__our-services-engage .ose-content-wrapper {
  display: flex;
  margin-top: 60px;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper {
    margin-top: 40px;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper {
    margin-top: 30px;
    gap: 30px;
  }
}
@media (min-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block.images-right .ose-inner-block {
    flex-direction: row;
  }
}
@media (min-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block.images-left .ose-inner-block {
    flex-direction: row-reverse;
  }
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block.images-left .ose-inner-block .text_wrapper {
    justify-content: center;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-header-block {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  border: 2px solid #C7C7C7;
  background-color: #D9D9D9;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-header-block svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-header-block svg {
    width: 25px;
    height: 25px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content {
    padding: 0 0;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-section-header {
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 15px;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-section-header p {
  margin: 0;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-section-header {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-section-header {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 60px;
  align-items: stretch;
  border-bottom: 2px solid #C7C7C7;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block:last-child {
  border-bottom: none;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block:has(.two-column) {
  align-items: flex-start;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text-content-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text-content-wrapper .text_wrapper:not(.two-column) {
  display: flex;
  flex-direction: column;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper:not(.two-column) {
  gap: 10px;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper:not(.two-column) .ose-section-header {
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper:not(.two-column) .ose-section-header {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper:not(.two-column) .ose-section-header {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper:not(.two-column) {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper:not(.two-column) {
    gap: 10px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column {
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .first-column {
  flex: 1;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .first-column .ose-section-header {
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .first-column .ose-section-header {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .first-column .ose-section-header {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text {
  flex: 1;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text ol {
  padding-left: 0;
  margin: 0;
  list-style-position: outside;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text ol li {
  margin-left: 1.5em;
  padding-left: 0.5em;
  margin-bottom: 15px;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text ol li::marker {
  font-weight: 700;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text ol li {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text ol li {
    margin-bottom: 5px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text ul {
  padding-left: 0;
  margin: 0;
  list-style-position: outside;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text ul li {
  margin-left: 1.5em;
  padding-left: 0.5em;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column .ose-text ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column {
    flex-direction: column;
    gap: 10px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text {
  width: 100%;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text p {
  margin-bottom: 15px;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text ol li {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text ol li {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text ol li {
    margin-bottom: 5px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text ul li {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text ul li {
    margin-bottom: 5px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper {
  margin-top: 10px;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-title {
  font-family: "Aptos", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid {
    gap: 30px;
    row-gap: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid {
    gap: 15px;
    row-gap: 20px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item {
    gap: 8px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 15px);
  top: 12px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:not(:last-child)::after {
    width: 16px;
    height: 16px;
    left: calc(100% + 8px);
    top: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:not(:last-child)::after {
    width: 14px;
    height: 14px;
    left: calc(100% + 5px);
    top: 9px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:nth-child(9)::after {
  opacity: 0.1;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:nth-child(8)::after {
  opacity: 0.85;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:nth-child(7)::after {
  opacity: 0.8;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:nth-child(6)::after {
  opacity: 0.75;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:nth-child(5)::after {
  opacity: 0.6;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:nth-child(4)::after {
  opacity: 0.55;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:nth-child(3)::after {
  opacity: 0.5;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:nth-child(2)::after {
  opacity: 0.45;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item:nth-child(1)::after {
  opacity: 0.4;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item .cycle-icon {
  width: 30px;
  height: 25.22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item .cycle-icon {
    width: 26px;
    height: 21.86px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item .cycle-icon {
    width: 22px;
    height: 18.5px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item .cycle-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item {
  /* FIX: Added font-family 'Aptos' to cycle-label */
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item .cycle-label {
  font-family: "Aptos", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item .cycle-label {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .monthly-cycles-wrapper .cycles-grid .cycle-item .cycle-label {
    font-size: 12px;
  }
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .ose-image {
  flex: 0 0 250px;
  width: 250px !important;
  height: 250px;
}
.block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .ose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block {
    gap: 40px;
  }
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper {
    gap: 10px;
  }
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper.two-column {
    gap: 10px;
  }
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text p {
    margin-bottom: 10px;
  }
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .ose-image {
    flex: 0 0 250px;
    width: 250px !important;
    height: 200px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
    align-items: flex-start;
  }
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper {
    gap: 10px;
    justify-content: flex-start;
  }
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .text_wrapper .ose-text p {
    margin-bottom: 5px;
  }
  .block--custom-layout__our-services-engage .ose-content-wrapper .ose-content-block .ose-inner-content .ose-inner-block .ose-image {
    width: 100% !important;
    height: 209px;
  }
}

/* Paragraph Image Block Styles */
.block--custom-layout__paragraph-image {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__paragraph-image {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__paragraph-image {
    padding: 30px 0px;
  }
}
.block--custom-layout__paragraph-image .content-wrapper {
  display: flex;
  align-items: center;
  margin-top: 60px;
  gap: 100px;
}
.block--custom-layout__paragraph-image .content-wrapper img {
  width: 300px;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}
@media (max-width: 991px) {
  .block--custom-layout__paragraph-image .content-wrapper img {
    width: 304px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__paragraph-image .content-wrapper img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__paragraph-image .content-wrapper {
    margin-top: 40px;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__paragraph-image .content-wrapper {
    flex-direction: column;
  }
}

/* Faqs Block Styles */
.block--custom-layout__faqs {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__faqs {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__faqs {
    padding: 30px 0px;
  }
}
.block--custom-layout__faqs .content-repeater {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .block--custom-layout__faqs .content-repeater {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__faqs .content-repeater {
    margin-top: 30px;
  }
}
.block--custom-layout__faqs .content-repeater .content-item {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0;
  border-bottom: 1px solid #D9D9D9;
}
.block--custom-layout__faqs .content-repeater .content-item .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 991px) {
  .block--custom-layout__faqs .content-repeater .content-item .accordion-header {
    padding: 10px 0px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__faqs .content-repeater .content-item .accordion-header svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__faqs .content-repeater .content-item .accordion-header svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__faqs .content-repeater .content-item .accordion-header p {
    max-width: 350px;
  }
}
.block--custom-layout__faqs .content-repeater .content-item .accordion-content {
  height: 0;
  overflow: hidden;
}
.block--custom-layout__faqs .content-repeater .content-item .accordion-content p {
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .block--custom-layout__faqs .content-repeater .content-item .accordion-content p {
    padding-bottom: 10px;
  }
}
.block--custom-layout__faqs .content-repeater .content-item:last-child {
  border-bottom: none;
}
.block--custom-layout__faqs .icon {
  display: none;
  transition: opacity 0.3s ease;
}
.block--custom-layout__faqs .icon.icon-minus {
  display: inline;
}
.block--custom-layout__faqs .content-item.active .accordion-content {
  display: block;
}
.block--custom-layout__faqs .content-item.active .icon-plus {
  display: inline;
}
.block--custom-layout__faqs .content-item.active .icon-minus {
  display: none;
}

.lower {
  display: none;
}
@media (max-width: 600px) {
  .lower {
    display: block;
  }
}

/* What We Do Block Styles */
.block--custom-layout__what-we-do {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do {
    padding: 30px 0px;
  }
}
.block--custom-layout__what-we-do p, .block--custom-layout__what-we-do h2 {
  margin: 0;
}
.block--custom-layout__what-we-do .headlines .title_text {
  margin-bottom: 10px;
}
.block--custom-layout__what-we-do .headlines .subtitle_text {
  margin-bottom: 10px;
}
.block--custom-layout__what-we-do .headlines .description-text {
  margin-top: 60px;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-we-do .headlines .description-text {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .headlines .description-text {
    margin-top: 20px;
  }
}
.block--custom-layout__what-we-do .headlines .description-text p {
  font-family: "Aptos", sans-serif !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  color: #434343 !important;
  margin: 0 !important;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-we-do .headlines .description-text p {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .headlines .description-text p {
    font-size: 12px !important;
    line-height: 22px !important;
  }
}
.block--custom-layout__what-we-do .headlines .header-text {
  margin-top: 150px;
  margin-bottom: 60px;
  font-weight: 700 !important;
  font-size: 30px !important;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-we-do .headlines .header-text {
    margin-top: 100px;
    margin-bottom: 40px;
    font-size: 24px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .headlines .header-text {
    margin-top: 80px;
    margin-bottom: 40px;
    font-size: 16px !important;
  }
}
.block--custom-layout__what-we-do .steps-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  gap: 100px;
}
.block--custom-layout__what-we-do .steps-wrapper .step-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.block--custom-layout__what-we-do .steps-wrapper .step-wrapper:nth-child(even) .step-outcome {
  flex-direction: row-reverse;
}
.block--custom-layout__what-we-do .steps-wrapper .step-wrapper:nth-child(odd) .step-outcome {
  flex-direction: row;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .steps-wrapper .step-wrapper {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .steps-wrapper .step-wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .steps-wrapper {
    margin-top: 0;
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .steps-wrapper {
    margin-top: 0;
    gap: 60px;
  }
}
.block--custom-layout__what-we-do .step-header-card {
  background-color: #F5F5F5;
  border-radius: 5px;
  display: flex;
  padding: 0 25px;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  height: 150px;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card {
    padding: 0 10px;
    gap: 15px;
    height: auto;
    min-height: 150px;
    align-items: flex-end;
    padding-bottom: 0;
  }
}
.block--custom-layout__what-we-do .step-header-card .step-count {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card .step-count {
    height: auto;
    align-self: flex-end;
    flex-shrink: 0;
  }
}
.block--custom-layout__what-we-do .step-header-card .step-count span {
  position: relative;
  color: #000;
  font-family: "Visby CF";
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  bottom: 0;
  line-height: 67px;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .step-header-card .step-count span {
    font-size: 100px;
    line-height: 57px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card .step-count span {
    font-size: 70px;
    line-height: 38px;
  }
}
.block--custom-layout__what-we-do .step-header-card .step-header-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.block--custom-layout__what-we-do .step-header-card .step-header-text .step-header-label {
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card .step-header-text .body_text {
    line-height: 24px;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-header-card .step-header-text {
    padding: 15px 0;
    min-width: 0;
    flex: 1;
  }
}
.block--custom-layout__what-we-do .what-we-do {
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .what-we-do {
    padding-bottom: 15px;
  }
}
.block--custom-layout__what-we-do .services-list {
  display: grid;
  gap: 30px;
}
.block--custom-layout__what-we-do .services-list .service-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.block--custom-layout__what-we-do .services-list .service-item svg {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list .service-item svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list .service-item svg {
    height: 25px;
    width: 25px;
  }
}
.block--custom-layout__what-we-do .services-list .service-item .service-item-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list .service-item .service-item-description {
    gap: 0px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list .service-item {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list .service-item {
    gap: 5px;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list {
    gap: 40px;
  }
}
.block--custom-layout__what-we-do .two-column {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .two-column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .three-column {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .three-column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(1)):not(:has(.service-item:nth-child(2))) {
  grid-template-columns: repeat(1, 1fr);
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(2)):not(:has(.service-item:nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(2)):not(:has(.service-item:nth-child(3))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(3)):not(:has(.service-item:nth-child(4))) {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(3)):not(:has(.service-item:nth-child(4))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(4)):not(:has(.service-item:nth-child(5))) {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(4)):not(:has(.service-item:nth-child(5))) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(4)):not(:has(.service-item:nth-child(5))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(5)):not(:has(.service-item:nth-child(6))) {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(5)):not(:has(.service-item:nth-child(6))) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(5)):not(:has(.service-item:nth-child(6))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(6)):not(:has(.service-item:nth-child(7))) {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(6)):not(:has(.service-item:nth-child(7))) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(6)):not(:has(.service-item:nth-child(7))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(7)):not(:has(.service-item:nth-child(8))) {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(7)):not(:has(.service-item:nth-child(8))) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(7)):not(:has(.service-item:nth-child(8))) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(8)) {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(8)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list:has(.service-item:nth-child(8)) {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .services-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block--custom-layout__what-we-do .step-outcome {
  background-color: #F5F5F5;
  border-radius: 5px;
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 100px;
  align-self: stretch;
}
.block--custom-layout__what-we-do .step-outcome .step-image img {
  object-fit: cover;
  height: 315px;
  width: 490px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .step-outcome .step-image img {
    height: 209px;
    width: 326px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-outcome .step-image img {
    height: 209px;
    width: 100%;
  }
}
.block--custom-layout__what-we-do .step-outcome .outcome-description-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  gap: 15px;
}
.block--custom-layout__what-we-do .step-outcome .outcome-description-wrapper hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: #868686;
  margin: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-outcome .outcome-description-wrapper .body_text {
    margin-bottom: 15px;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
  }
}
@media (max-width: 991px) {
  .block--custom-layout__what-we-do .step-outcome {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-outcome {
    flex-direction: column-reverse !important;
    padding: 20px;
    gap: 20px;
  }
  .block--custom-layout__what-we-do .step-outcome .outcome-description-wrapper {
    gap: 10px;
    min-width: 0;
    width: 100%;
  }
}
.block--custom-layout__what-we-do .step-cta {
  align-self: flex-end;
}
@media (max-width: 600px) {
  .block--custom-layout__what-we-do .step-cta {
    align-self: flex-end;
  }
}

/* Home Lets Talk Block Styles */
.block--custom-layout__lets-talk {
  background-color: #E6E6E6;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__lets-talk {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__lets-talk {
    padding: 40px 0;
  }
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk {
    padding: 30px 0;
  }
}
.block--custom-layout__lets-talk .inner-container {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 991px) {
  .block--custom-layout__lets-talk .inner-container {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__lets-talk .inner-container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk .inner-container {
    gap: 20px;
  }
}
.block--custom-layout__lets-talk .inner-container .col {
  padding: 0;
}
@media (max-width: 991px) {
  .block--custom-layout__lets-talk .inner-container .col {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
}
.block--custom-layout__lets-talk .inner-container .col:first-child {
  flex: 2;
}
@media (max-width: 991px) {
  .block--custom-layout__lets-talk .inner-container .col:first-child {
    flex: 1;
    min-width: 0;
  }
}
.block--custom-layout__lets-talk .inner-container .col img {
  width: 359px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 5px;
  object-fit: cover;
}
@media (min-width: 991px) {
  .block--custom-layout__lets-talk .inner-container .col img {
    width: 303px;
    height: 303px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__lets-talk .inner-container .col img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk .inner-container .col img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
}
.block--custom-layout__lets-talk .inner-container .col .section-header {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.block--custom-layout__lets-talk .inner-container .col .section-header .heading {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 991px) {
  .block--custom-layout__lets-talk .inner-container .col .section-header .heading {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #000000;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
  }
}
.block--custom-layout__lets-talk .inner-container .col .section-header .header_text {
  font-weight: 400;
}
@media (max-width: 600px) {
  .block--custom-layout__lets-talk .inner-container .col .section-header .heading {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    color: #000000;
  }
  .block--custom-layout__lets-talk .inner-container .col .section-header {
    gap: 30px;
  }
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk .inner-container .col .section-header .heading {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    color: #000000;
  }
  .block--custom-layout__lets-talk .inner-container .col .section-header {
    gap: 20px;
  }
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 424px;
}
@media (max-width: 991px) {
  .block--custom-layout__lets-talk .inner-container .col .project-statistics {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk .inner-container .col .project-statistics {
    width: 100%;
    gap: 8px;
  }
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  width: 207px;
}
@media (max-width: 991px) {
  .block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group {
    width: 100%;
    gap: 8px;
  }
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.left .item {
  padding: 20px;
  border-radius: 5px;
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.left .item .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.left .item.expanded {
  background-color: #FFF;
  height: 297px;
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.left .item.expanded {
    height: 220px;
    padding: 14px;
  }
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.left .item.expanded .enumeration {
  display: flex;
  flex-direction: column;
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.left .item.shrinked {
  background-color: #454545;
  color: #FFF;
  height: 144px;
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.left .item.shrinked {
    height: 110px;
    padding: 14px;
  }
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.left .item.shrinked .enumeration .number {
  color: #FFF;
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.left .item.shrinked .enumeration {
  display: flex;
  flex-direction: column;
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.right .item {
  padding: 20px;
  border-radius: 5px;
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.right .item .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.right .item.shrinked {
  background-color: #D9D9D9;
  height: 144px;
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.right .item.shrinked {
    height: 110px;
    padding: 14px;
  }
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.right .item.shrinked .enumeration {
  display: flex;
  flex-direction: column;
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.right .item.expanded {
  background-color: #B6B6B6;
  height: 297px;
}
@media (max-width: 425px) {
  .block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.right .item.expanded {
    height: 220px;
    padding: 14px;
  }
}
.block--custom-layout__lets-talk .inner-container .col .project-statistics .col-group.right .item.expanded .enumeration {
  display: flex;
  flex-direction: column;
}
.block--custom-layout__lets-talk .cta-btn-desktop {
  background-color: #FFFFFF;
}

/* Home Featured Articles Block Styles */
.block--custom-layout__home-featured-articles {
  padding: 100px 0;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles {
    padding: 60px 0;
  }
}
.block--custom-layout__home-featured-articles .desktop-only {
  display: block;
}
@media (max-width: 991px) {
  .block--custom-layout__home-featured-articles .desktop-only {
    display: none !important;
  }
}
.block--custom-layout__home-featured-articles .tablet-mobile-only {
  display: none;
}
@media (max-width: 991px) {
  .block--custom-layout__home-featured-articles .tablet-mobile-only {
    display: block !important;
  }
}
.block--custom-layout__home-featured-articles .section-header .heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0px;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .section-header .heading {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__home-featured-articles .section-header .descriptor {
  font-family: "Aptos", sans-serif;
  font-size: 30px;
  line-height: normal;
  font-weight: 700;
  color: #B6B6B6;
  margin-bottom: 60px;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__home-featured-articles .section-header .descriptor {
    font-size: 20px;
    line-height: normal;
    font-weight: 700;
    color: #B6B6B6;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .section-header .descriptor {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #B6B6B6;
    margin-bottom: 30px;
  }
}
.block--custom-layout__home-featured-articles .section-header .article-description p {
  font-family: "Aptos", sans-serif !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  color: #434343 !important;
  margin: 0 !important;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__home-featured-articles .section-header .article-description p {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .section-header .article-description p {
    font-size: 12px !important;
    line-height: 22px !important;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
@media (max-width: 991px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid {
  margin-top: 50px;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid {
    margin-top: 30px;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .col-title h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: inherit;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .col-title h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 20px;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col {
  padding: 0;
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item {
  border: 1px solid #F2F2F2;
  border-radius: 5px;
  overflow: hidden;
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .featured-article-image img {
  height: 290px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .featured-article-image img {
    height: 110px;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .details {
  padding: 20px;
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .details h3 a {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .details h3 a {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .details svg {
  margin-left: 10px;
  height: 16px;
  width: 16px;
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .details .article-excerpt, .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .details p {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: #434343;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .details .article-excerpt, .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .featured-articles-list .article-item .details p {
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #000000;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
@media (max-width: 991px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item {
  border: 1px solid #F2F2F2;
  border-radius: 5px;
  overflow: hidden;
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .featured-article-image img {
  height: 290px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .featured-article-image img {
    height: 110px;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .details {
  padding: 20px;
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .details h3 a {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .details h3 a {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .details svg {
  margin-left: 10px;
  height: 16px;
  width: 16px;
}
.block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .details .article-excerpt, .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .details p {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: #434343;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .details .article-excerpt, .block--custom-layout__home-featured-articles .inner-container .flex-grid .col .more-articles-list .article-item .details p {
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #000000;
  }
}
.block--custom-layout__home-featured-articles .inner-container .button-wrapper {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .block--custom-layout__home-featured-articles .inner-container .button-wrapper {
    margin-top: 20px;
  }
}
.block--custom-layout__home-featured-articles .inner-container .button-wrapper .articles-cta {
  background-color: #E6E6E6 !important;
  display: inline-flex;
  padding: 15px 20px;
  font-size: 24px;
}
.block--custom-layout__home-featured-articles .inner-container .button-wrapper .articles-cta svg path {
  fill: #000000;
  stroke: #000000;
}
.block--custom-layout__home-featured-articles .inner-container .button-wrapper .articles-cta span {
  color: #000000;
}
@media (max-width: 991px) {
  .block--custom-layout__home-featured-articles .inner-container .tablet-mobile-only {
    display: flex;
    justify-content: flex-start;
  }
  .block--custom-layout__home-featured-articles .inner-container .tablet-mobile-only .articles-cta {
    width: auto;
    display: inline-flex;
    font-size: 16px !important;
    padding: 10px 15px !important;
  }
  .block--custom-layout__home-featured-articles .inner-container .tablet-mobile-only .articles-cta svg {
    width: 16px !important;
    height: 13px !important;
  }
}

/* Home Explore Pricing Block Styles */
.block--custom-layout__home-explore-pricing {
  padding: 150px 0;
  position: relative;
}
.block--custom-layout__home-explore-pricing .desktop-tablet-only {
  display: block;
}
@media (max-width: 991px) {
  .block--custom-layout__home-explore-pricing .desktop-tablet-only {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing .desktop-tablet-only {
    display: none !important;
  }
}
.block--custom-layout__home-explore-pricing .mobile-only {
  display: none !important;
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing .mobile-only {
    display: block !important;
    margin-top: 30px;
  }
}
.block--custom-layout__home-explore-pricing.no-padding {
  padding: 0 !important;
}
.block--custom-layout__home-explore-pricing img {
  border-radius: 5px;
}
.block--custom-layout__home-explore-pricing.margin {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}
@media (max-width: 991px) {
  .block--custom-layout__home-explore-pricing.margin {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing.margin {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing {
    padding: 30px 0;
  }
}
.block--custom-layout__home-explore-pricing .inner-container {
  display: flex;
  gap: 60px;
  align-items: center;
}
.block--custom-layout__home-explore-pricing .inner-container.row-reverse {
  flex-direction: row-reverse;
}
.block--custom-layout__home-explore-pricing .inner-container.remove-align-center {
  align-items: unset;
}
@media (min-width: 991px) {
  .block--custom-layout__home-explore-pricing .inner-container {
    gap: 80px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing .inner-container {
    flex-direction: column !important;
    gap: 30px;
  }
}
.block--custom-layout__home-explore-pricing .inner-container .col {
  padding: 0;
}
.block--custom-layout__home-explore-pricing .inner-container .col .section-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 991px) {
  .block--custom-layout__home-explore-pricing .inner-container .col .section-header {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing .inner-container .col .section-header {
    gap: 15px;
  }
}
.block--custom-layout__home-explore-pricing .inner-container .col .section-header .heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing .inner-container .col .section-header .heading {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__home-explore-pricing .inner-container .col .section-header .descriptor {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #434343;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing .inner-container .col .section-header .descriptor {
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #434343;
    margin-bottom: 15px;
  }
}
.block--custom-layout__home-explore-pricing .inner-container .col .section-header .body_text p {
  margin-bottom: 20px;
}
.block--custom-layout__home-explore-pricing .inner-container .col:nth-child(1) {
  display: flex;
  align-items: center;
  flex: 1.5;
}
.block--custom-layout__home-explore-pricing .cta-btn-desktop {
  background-color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  height: auto;
  min-height: 56px;
  padding: 12px 20px;
  width: auto;
}
.block--custom-layout__home-explore-pricing .cta-btn-desktop svg {
  flex-shrink: 0;
  min-width: 24px;
}
.block--custom-layout__home-explore-pricing .cta-btn-desktop span {
  flex: 1;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .block--custom-layout__home-explore-pricing .cta-btn-desktop {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 20px;
    min-height: 60px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing .cta-btn-desktop {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    min-height: 50px;
    gap: 8px;
    font-size: 14px;
  }
  .block--custom-layout__home-explore-pricing .cta-btn-desktop svg {
    min-width: 18px;
    width: 18px;
    height: 15px;
  }
  .block--custom-layout__home-explore-pricing .cta-btn-desktop span {
    font-size: 14px;
  }
}
.block--custom-layout__home-explore-pricing .mobile-only .cta-btn-mobile.cta-btn-desktop {
  width: 100%;
  justify-content: flex-start;
  white-space: nowrap;
  height: auto;
  min-height: 50px;
  padding: 12px 14px;
  gap: 8px;
}
@media (max-width: 600px) {
  .block--custom-layout__home-explore-pricing .mobile-only .cta-btn-mobile.cta-btn-desktop {
    font-size: 13px;
  }
  .block--custom-layout__home-explore-pricing .mobile-only .cta-btn-mobile.cta-btn-desktop svg {
    min-width: 18px;
    width: 18px;
    height: 15px;
  }
  .block--custom-layout__home-explore-pricing .mobile-only .cta-btn-mobile.cta-btn-desktop span {
    font-size: 13px;
  }
}

/* Our Services Block Styles */
.block--custom-layout__our-services {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services {
    padding: 50px 0px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services {
    padding: 30px 0px;
  }
}
.block--custom-layout__our-services .section-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.block--custom-layout__our-services .section-header .heading {
  font-size: 30px;
  line-height: normal;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 600px) {
  .block--custom-layout__our-services .section-header .heading {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__our-services .grid-services {
  margin-top: 40px;
}
.block--custom-layout__our-services .grid-services.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 15px;
}
@media (max-width: 991px) {
  .block--custom-layout__our-services .grid-services.grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__our-services .grid-services.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.block--custom-layout__our-services .grid-services.grid .grid-item {
  padding: 30px 30px;
  border-radius: 5px;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item {
    padding: 25px 25px;
  }
}
.block--custom-layout__our-services .grid-services.grid .grid-item:nth-of-type(1) {
  background-color: #F2F2F2;
}
.block--custom-layout__our-services .grid-services.grid .grid-item:nth-of-type(2) {
  background-color: #D9D9D9;
}
.block--custom-layout__our-services .grid-services.grid .grid-item:nth-of-type(3) {
  background-color: #B6B6B6;
}
.block--custom-layout__our-services .grid-services.grid .grid-item:nth-of-type(4) {
  background-color: #454545;
}
.block--custom-layout__our-services .grid-services.grid .grid-item .service-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.block--custom-layout__our-services .grid-services.grid .grid-item .service-box .service-title {
  font-size: 24px;
  line-height: normal;
  font-weight: inherit;
  color: #000000;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .service-title {
    font-size: 18px;
    line-height: normal;
    font-weight: inherit;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .service-title {
    font-size: 14px;
    line-height: normal;
    font-weight: inherit;
    color: #000000;
  }
}
.block--custom-layout__our-services .grid-services.grid .grid-item .service-box .service-description {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .service-description {
    font-size: 14px;
    line-height: normal;
    font-weight: 700;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .service-description {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__our-services .grid-services.grid .grid-item .service-box .service-description {
  margin-bottom: 0;
}
.block--custom-layout__our-services .grid-services.grid .grid-item .service-box hr {
  border: none;
  border-top: 1px solid #868686;
  margin: 15px 0;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box hr {
    margin: 12px 0;
  }
}
.block--custom-layout__our-services .grid-services.grid .grid-item .service-box .description {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: #434343;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #434343;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .description {
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #434343;
  }
}
.block--custom-layout__our-services .grid-services.grid .grid-item .service-box .description {
  margin-bottom: 43px;
}
.block--custom-layout__our-services .grid-services.grid .grid-item .service-box .learn-more {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: auto;
}
.block--custom-layout__our-services .grid-services.grid .grid-item .service-box .learn-more:hover {
  color: #FFFFFF;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .learn-more {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #000000;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .learn-more {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #000000 !important;
  }
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .learn-more svg {
    height: 12px;
    width: 14px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services .grid-services.grid .grid-item .service-box .learn-more svg {
    height: 10px;
    width: 12px;
  }
}
.block--custom-layout__our-services .grid-services.grid .grid-item:last-child .service-box .service-title, .block--custom-layout__our-services .grid-services.grid .grid-item:last-child .service-box .service-description, .block--custom-layout__our-services .grid-services.grid .grid-item:last-child .service-box .description {
  color: #FFFFFF;
}
.block--custom-layout__our-services .card-item {
  border-radius: 5px;
  background-color: #E6E6E6;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 20px;
  margin-top: 50px;
}
.block--custom-layout__our-services .card-item svg {
  height: 40px;
  flex-shrink: 0;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__our-services .card-item svg {
    height: 30px;
    width: auto;
  }
  .block--custom-layout__our-services .card-item {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__our-services .card-item svg {
    height: 25px;
    width: auto;
  }
  .block--custom-layout__our-services .card-item {
    gap: 15px;
    padding: 15px;
    margin-top: 30px;
  }
}
.block--custom-layout__our-services .cta-btn-desktop {
  width: 100%;
}
@media (max-width: 600px) {
  .block--custom-layout__our-services .cta-btn-desktop {
    display: flex;
    justify-content: flex-end;
    width: auto;
    margin-left: auto;
  }
}

/* What Does Wellevate Do Block Styles */
.block--custom-layout__what-does-wellevate-do {
  padding: 0 0 75px 0;
}
@media (max-width: 991px) {
  .block--custom-layout__what-does-wellevate-do {
    padding: 0 0 50px 0;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do {
    padding: 0 0 30px 0;
  }
}
.block--custom-layout__what-does-wellevate-do .section-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.block--custom-layout__what-does-wellevate-do .section-header h2.heading {
  font-size: 30px;
  line-height: normal;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-does-wellevate-do .section-header h2.heading {
    font-size: 24px;
    line-height: normal;
    font-weight: 700;
    color: #000000;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do .section-header h2.heading {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #000000;
  }
}
.block--custom-layout__what-does-wellevate-do .section-header .descriptor {
  font-size: 30px;
  line-height: normal;
  font-weight: 700;
  color: #B6B6B6;
  margin-top: 0;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-does-wellevate-do .section-header .descriptor {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: #B6B6B6;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do .section-header .descriptor {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #B6B6B6;
  }
}
.block--custom-layout__what-does-wellevate-do .section-header p {
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #434343;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-does-wellevate-do .section-header p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #434343;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do .section-header p {
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #434343;
  }
}
.block--custom-layout__what-does-wellevate-do .content-repeater {
  margin-top: 60px;
}
.block--custom-layout__what-does-wellevate-do .content-repeater.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  align-items: start;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.block--custom-layout__what-does-wellevate-do .content-repeater.grid .icon-svg {
  height: 40px;
  width: 40px;
  margin-bottom: 30px;
  flex-shrink: 0;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid .icon-svg {
    height: 30px;
    width: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid .icon-svg {
    height: 25px;
    width: 25px;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid .icon-svg svg {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid .icon-svg svg {
    height: 25px;
    width: 25px;
  }
}
.block--custom-layout__what-does-wellevate-do .content-repeater.grid .content {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.block--custom-layout__what-does-wellevate-do .content-repeater.grid .content .header {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid .content .header {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    min-height: 52px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid .content .header {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    min-height: 48px;
  }
}
.block--custom-layout__what-does-wellevate-do .content-repeater.grid .content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #434343;
  font-family: "Aptos", sans-serif;
}
.block--custom-layout__what-does-wellevate-do .content-repeater.grid .content p br {
  display: contents;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid .content p {
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
    color: #434343;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater.grid .content p {
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #434343;
  }
}
.block--custom-layout__what-does-wellevate-do .content-repeater .content-item {
  background: #F5F5F5;
  padding: 60px 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  text-align: center;
}
@media (max-width: 991px) and (min-width: 601px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater .content-item {
    padding: 30px 15px;
  }
}
@media (max-width: 600px) {
  .block--custom-layout__what-does-wellevate-do .content-repeater .content-item {
    padding: 40px 20px;
  }
}
.block--custom-layout__what-does-wellevate-do .content-repeater .content-item:first-child {
  background: #E6E6E6;
}
.block--custom-layout__what-does-wellevate-do .content-repeater .content-item:nth-child(2) {
  background: #C7C7C7;
}
.block--custom-layout__what-does-wellevate-do .content-repeater .content-item:last-child {
  background: #E6E6E6;
}

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