/* Block - Hero Image or Video Background */
.block-hero-image-or-video-backgound {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}
.hero-image-video-wrapper {
    position: relative;
}
.hero-image-video-inner-wrapper {
    width: 100%;
    aspect-ratio: 5/2.7;
}
.hero-image-video-inner-wrapper video {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 99.6%;
  top: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.block-hero-image-or-video-backgound img.pulse-hero-image {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 5/2.7;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.hero-content-wrapper {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 130px;
  z-index: 2;
}
.hero-content-wrapper h1 {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 65px;
  width: 100%;
  max-width: 850px;
  text-wrap: balance;
  text-align: center;
  color: #ffffff;
  padding-bottom: 160px;
}
.hero-introtexts p {
  color: #fff;
  font-size: 25px;
  line-height: 107%;
  text-align: center;
}
.hero-image-video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.hero-image-video-overlay::after {
  content: "";
  display: block;
  background-color: rgba(29, 29, 31, 0.4);
  width: 100%;
  height: 99.6%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.pulse-hero-graphic {
  position: absolute;
  top: 57%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 2;
}
/* End Block - Hero Image or Video Background */

/* Block - Single Image */
.single-image-block-wrapper {
  width: 100%;
  max-width: 1077px;
  margin: auto;
}
.single-image-block-wrapper img {
  border-radius: 11px;
  width: 100%;
  box-shadow: 30px 30px 75px 0px #00000026;
}
/* End Block - Single Image */

/* Block - Slider Tabs */
.block-slider-tabs-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  row-gap: 10px;
}
.block-slider-tabs-header-wrapper .legend-title {
  font-family: 'Inter';
  color: #1D1D1F;
  font-weight: 600;
}
.block-slider-tabs-header-wrapper .heading-title {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 65px;
}
.block-slider-tabs-header-wrapper .lede {
  color: #1D1D1F;
  font-weight: 500;
  font-size: 25px;
  font-family: 'Inter';
  width: 100%;
  max-width: 600px;
  text-align: center;
  text-wrap: balance;
  line-height: 107%;
}
.block-slider-tabs-header-wrapper .heading-title {
  background: linear-gradient(90deg, #C200FF 0%, #51FFFF 123.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
ul.slider-tab-titles {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  max-width: 90%;
}
.slider-tab-titles .slider-tab-title {
  padding: 20px 40px;
  cursor: pointer;
}
.slider-tab-title-text {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 20px;
  color: #1D1D1F;
  width: 100%;
  max-width: 250px;
  text-align: center;
  text-wrap: balance;
}
.slider-tab-title.active .slider-tab-title-text {
  background: linear-gradient(90deg, #C200FF 0%, #51FFFF 123.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.slider-tab-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 20px 20px 50px 0px #00000026;
  object-fit: cover;
  aspect-ratio: 5/3.5;
}
.slider-tab-content-item {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 50px;
}
.slider-tabs {
  position: relative;
  max-width: 1120px;
  margin-left: auto;
}
.slider-tabs-inner-wrapper {
  position: relative;
  border-radius: 10px;
  width: 100%;
  padding: 10px 0 40px;
}
.slider-tabs-inner-wrapper::before {
  content: '';
  position: absolute;
  inset: 0; /* cover entire div */
  padding: 3px; /* border thickness */
  border-radius: 10px;
  background: linear-gradient(90deg, #C200FF 0%, #51FFFF 123.85%);
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude; 
  pointer-events: none;
}
.slider-tab-titles {
  position: relative;
}
.slider-tab-titles::after {
  content: '';
  position: absolute;
  bottom: 1.5px;
  left: 0;
  width: 100%;
  height: 1px; /* border thickness */
  background: linear-gradient(90deg, #C200FF 0%, #51FFFF 123.85%);
}
.slider-tab-title {
  position: relative;
}
.slider-tab-title.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px; /* border thickness */
  background: linear-gradient(90deg, #C200FF 0%, #51FFFF 279%);
}
.slider-tab-content p {
  font-size: 23px;
  font-family: 'Inter';
  margin-bottom: 20px;
  color: #1D1D1F;
}
.slider-tab-content ul {
  display: inline-flex;
  column-gap: 30px;
  padding-left: 0;
  margin-top: 10px;
}
.slider-tab-content ul li {
  font-size: 21px;
  font-family: 'Inter';
  color: #1D1D1F;
  font-weight: 700;
  text-wrap: balance;
  position: relative;
  padding-left: 40px;
}
.slider-tab-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 27px;
  height: 27px;
  background-image: url('/wp-content/uploads/2026/03/checklist-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.slider-tabs-outer-wrapper {
  position: relative;
  margin-top: 50px;
  transform: translateX(-11%);
  width: 1200px;
}
.slider-tabs-swiper {
  padding-bottom: 60px;
}
.slider-tabs-swiper-button .swiper-button-prev, .slider-tabs-swiper-button .swiper-button-next {
  position: relative;
}
.slider-tabs-swiper-button .swiper-button-prev::after {
  background-image: url('/wp-content/uploads/2026/03/slider-prev-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 22px;
  height: 22px;
  color: transparent;
}
.slider-tabs-swiper-button .swiper-button-next::after {
  background-image: url('/wp-content/uploads/2026/03/slider-next-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 22px;
  height: 22px;
  color: transparent;
}
.slider-tabs-swiper-button .swiper-button-prev, .slider-tabs-swiper-button .swiper-button-next {
  background-color: #EDEDED;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  flex-direction: column;
  flex-shrink: 0;
  transition: 0.4s ease;
}
.slider-tabs-swiper-button .swiper-button-prev:hover, .slider-tabs-swiper-button .swiper-button-next:hover {
  background-color: #CECECE;
}
.slider-tabs-swiper-button {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin-right: 30px;
}
/* End Block - Slider Tabs */

/* Block - Three Columns Content */
.three-columns-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  width: 100%;
  max-width: 710px;
  text-align: center;
  margin: auto auto 50px;
}
.three-columns-header-wrapper .legend-title {
  font-family: 'Inter';
  color: #1D1D1F;
  font-weight: 600;
}
.three-columns-header-wrapper .heading-title {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 65px;
}
.three-columns-header-wrapper .lede {
  color: #1D1D1F;
  font-weight: 500;
  font-size: 25px;
  font-family: 'Inter';
  text-align: center;
  text-wrap: balance;
  line-height: 107%;
}
.three-columns-header-wrapper .heading-title {
  background: linear-gradient(90deg, #C200FF 0%, #51FFFF 123.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-wrap: balance;
}
.three-columns-content-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.three-columns-content-item {
  position: relative;
  border-radius: 20px;
  padding: 40px 40px 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F4F4F4;
}
.three-columns-content-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(24.95deg, #C200FF -1.43%, #51FFFF 108.66%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.three-columns-content-item:hover::before {
  opacity: 1;
}
.three-columns-content-item > * {
  position: relative;
  z-index: 1;
}
.three-column-content-item-title {
  margin-bottom: 20px;
}
.three-column-content-item-title h3 {
  font-family: 'Inter';
  font-size: 35px;
  font-weight: 600;
  background: linear-gradient(90deg, #C200FF 0%, #51FFFF 123.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-wrap: balance;
  transition: 0.4s ease;
}
.three-columns-content-item:hover .three-column-content-item-title h3 {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.three-column-content-item-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #1D1D1F;
  transition: 0.4s ease;
}
.three-columns-content-item:hover .three-column-content-item-content p {
  color: #fff;
}
.three-column-content-item-icon-wrapper {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  max-width: 130px;
  position: absolute;
  bottom: -69px;
  left: 50%;
  transform: translateX(-50%);
}
/* End Block - Three Columns Content */


/* pulse page header menu styling */
body.page-id-2134 header.site-header {
  background-color: #F4F4F4;
}
body.page-id-2134 .single-image-block-wrapper {
  position: relative;
  z-index: 1;
  transform: translateY(-81px);
}

/* ACF Range Field Paddings*/
.pt-0 { padding-top: 0; }
.p-10 { padding-top: 10; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pt-40 { padding-top: 40px; }
.pt-50 { padding-top: 50px; }
.pt-60 { padding-top: 60px; }
.pt-70 { padding-top: 70px; }
.pt-80 { padding-top: 80px; }
.pt-90 { padding-top: 90px; }
.pt-100 { padding-top: 100px; }

.pb-0 { padding-bottom: 0; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-40 { padding-bottom: 40px; }
.pb-50 { padding-bottom: 50px; }
.pb-60 { padding-bottom: 60px; }
.pb-70 { padding-bottom: 70px; }
.pb-80 { padding-bottom: 80px; }
.pb-90 { padding-bottom: 90px; }
.pb-100 { padding-bottom: 100px; }