.hero-section {
  height: calc(var(--screen-height, 100svh) * 0.6);
  position: relative;
  padding-top: var(--top-bar-height, 5rem);
}

.hero-section .h1 {
  font-size: 4rem;
}

.hero-section .hero-section__disclaimer {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  left: 0;
  bottom: 0;
  width: 100%;
  bottom: 2rem;
  text-transform: uppercase;
  color: var(--color-grey);
  font-size: 0.875rem;
}

.hero-section .hero-section__disclaimer svg {
  height: 1.5rem;
  width: 1.25rem;
}

.service-section {
  height: calc(var(--screen-height, 100svh) * 0.4);
  position: relative;
  background: var(--color-white);
  /* padding: 10vh 0; */
  border-radius: 6.25rem;
  opacity: 0;
}

.service-section[data-active] {
  opacity: 1;
}

.service-section__image {
  position: absolute;
  height: 80%;
}

.service-section__image--man {
  right: 5%;
  bottom: 0;
}

.service-section__image--woman {
  left: 5%;
  bottom: 0;
  height: 75%;
}

.service-section__decoration {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}

.service-section__decoration .text-decoration {
  border-radius: 1rem;
  position: relative;
  z-index: 0;
}

.service-section__decoration .text-decoration div {
  background: var(--color-white);
  position: relative;
  z-index: 0;
  padding: 0.25rem 0.5rem;
  border-radius: inherit;
  line-height: 1;
}

.service-section__decoration .text-decoration::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 0.125rem);
  width: calc(100% + 0.125rem);
  background: var(--color-gradient);
  z-index: -1;
  border-radius: inherit;
}

.service-section__decoration .text-decoration::after {
  content: attr(data-shadow);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: var(--transition);
  opacity: 0;
}

.service-section__decoration .text-decoration[data-active]::after {
  opacity: 1;
}

.section--how-it-works {
  margin-top: 10vh;
}

.section--plan {
  margin: 2rem 0;
  position: relative;
  scroll-margin-top: 100vh;
}

.section--plan {
  padding: 5vh 0 7.5vh 0;
}

.section--plan .cta.cta--border-gradient {
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
}

.section--plan::before {
  /* z-index: 1; */
  content: "";
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  height: calc(100% - 2rem);
  width: calc(100% - 2rem);
  transform: translate(-50%, -50%);
  background: var(--color-gradient);
  opacity: 0.2;
  filter: blur(2rem);
}

.section--plan .cta--table {
  width: 100%;
  padding: 0.5rem 0.5rem;
}

.section--plan .cta--table div {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section--plan .ntr-price {
  position: relative;
  flex-wrap: wrap;
  line-height: 1;
}

.section--plan .ntr-price::after {
  content: "(incl. TVA)";
  display: block;
  width: 100%;
  color: var(--color-grey);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  height: 0;
  text-align: center;
}

/* .section--plan__image-cnt {
    height: 20rem;
    position: relative;
}

.section--plan__image-cnt .section--plan__image {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    transform: translate(-50%, 100%);
    transition: var(--transition);
    transition-timing-function: ease-in-out;
    text-align: center;
}

.section--plan__image-cnt .section--plan__image[data-active] {
    transform: translate(-50%, 0);
}

.section--plan__image-cnt .section--plan__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
} */

.video-element {
  z-index: 99999;
}

.video-element[data-fixed-aligned] {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* START HERO SECTION ANIMATION */

.title-text {
  font-size: 3rem;
  font-family: "Secondary";
  text-align: center;
  position: relative;
  display: inline-flex;
  line-height: 1;
}

.title-text::after {
  content: attr(data-shadow);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  height: 100%;
  width: 100%;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% auto;
  color: transparent;
  filter: blur(0.2rem);
  opacity: 0;
  transition: 750ms;
  animation: gradientShift 10s linear infinite;
}

.title-text[data-active]::after {
  opacity: 1;
}

.title-animation .x-separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-animation .x-separator svg {
  height: 0.75rem;
  width: 0.75rem;
}

.title-animation .adds-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  transition: var(--transition);
  position: relative;
  z-index: -1;
  will-change: transform;
}

.title-animation .adds-text-1 {
  transform: translateY(2.5rem);
}

.title-animation .adds-text-2 {
  transform: translateY(-4rem);
}

.title-animation .adds-text svg {
  height: 1rem;
  width: 1rem;
}

.title-animation .transfer-indicator {
  display: flex;
  align-items: top;
  justify-content: center;
  transform-origin: top;
  filter: blur(1rem);
  height: 2rem;
  position: relative;
  z-index: -1;
  transform-origin: top;
}

.title-animation .transfer-indicator svg {
  height: 4rem;
  transform: scaleY(0);
  will-change: transform;
  transition: 500ms;
}

.title-animation .transfer-indicator[data-active] svg {
  transform: scaleY(1);
}

.img-trained-by {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  display: none;
}

.img-trained-by::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 0.25rem);
  width: calc(100% + 0.25rem);
  background: var(--color-gradient);
  z-index: 1;
  border-radius: inherit;
}

.img-trained-by img {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: inherit;
}

/* END HERO SECTION ANIMATION */

.btn-buy-plan {
  white-space: nowrap;
  will-change: transform;
  z-index: 999;
  text-align: center;
  transition: var(--transition);
  border-radius: 2rem 2rem 1rem 1rem;
  display: inline-block;
}

.btn-buy-plan .cta {
  padding: 0.75rem 1rem !important;
  font-size: 1.125rem;
}

.btn-buy-plan .cta .background-white {
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.75);
}

.btn-buy-plan .btn-buy-plan__info {
  transition: var(--transition);
  will-change: transform;
  position: relative;
  color: var(--color-grey);
  z-index: -1;
  border-radius: 2rem;
  font-size: 0.75rem;
}

.btn-buy-plan[data-active] .btn-buy-plan__info {
  transform: none;
}

.whitespace-nowrap {
  white-space: nowrap;
}

@keyframes bounce {
  from {
    transform: translateY(-25%);
  }

  to {
    transform: translateY(25%);
  }
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-gradient);
}

/* .swiper-container .swiper-wrapper {
    height: auto !important;
} */

.datepicker-custom .datepicker-picker {
  background: var(--color-gradient-transparent);
}

.datepicker-custom {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  width: calc(100% - 1.875rem);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.datepicker-custom .datepicker-picker .datepicker-main .datepicker-view .days .days-of-week {
  border-color: rgba(0, 0, 0, 0.1);
}

.datepicker-custom .datepicker-picker .datepicker-main .datepicker-view .days .datepicker-grid .datepicker-cell.disabled,
.datepicker-custom .datepicker-controls .button {
  color: var(--color-black) !important;
}

.datepicker-custom .datepicker-picker .datepicker-main .datepicker-view .days .datepicker-grid .datepicker-cell.next {
  opacity: 1;
  color: var(--color-black);
}

.datepicker-custom .datepicker-picker .datepicker-main .datepicker-view .days .datepicker-grid .datepicker-cell.day.focused {
  color: var(--color-white);
}

.datepicker-custom {
  opacity: 0;
  position: fixed;
}

.datepicker-custom.active {
  opacity: 1;
  pointer-events: all;
}

#modal.modal-waiting-list .modal__content {
  max-width: 40rem;
}

.w-fall {
  position: relative;
}

.w-fall::before {
  content: "";
  position: absolute;
  background: var(--color-gradient);
  z-index: -1;
  filter: blur(1rem);
  transition: 1s;
  will-change: transform, opacity;
}

.w-fall.w-fall--1::before {
  width: 50%;
  height: 50%;
  transform: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

.w-fall.w-fall--1[data-active]::before {
  height: 100%;
  width: 100%;
  opacity: 0.5;
}

.w-fall.w-fall--2::before,
.w-fall.w-fall--3::before,
.w-fall.w-fall--4::before {
  height: 3rem;
  width: 0.75rem;
  top: 0;
  z-index: -2;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  filter: blur(0.65rem);
}

.w-fall.w-fall--2[data-active]::before,
.w-fall.w-fall--3[data-active]::before,
.w-fall.w-fall--4[data-active]::before {
  opacity: 1;
}

.w-fall.w-fall--2[data-transform-origin]::before,
.w-fall.w-fall--3[data-transform-origin]::before,
.w-fall.w-fall--4[data-transform-origin]::before {
  transform-origin: bottom;
}

.w-fall.w-fall--2::before {
  left: 0;
  transform: rotate(30deg) scaleY(0);
}

.w-fall.w-fall--2[data-active]::before {
  transform: rotate(30deg) scaleY(1);
}

.w-fall.w-fall--3::before {
  left: calc(50% - 0.5rem);
}

.w-fall.w-fall--3[data-active]::before {
  transform: scaleY(1);
}

.w-fall.w-fall--4::before {
  right: 0;
  transform: rotate(-30deg) scaleY(0);
}

.w-fall.w-fall--4[data-active]::before {
  transform: rotate(-30deg) scaleY(1);
}

#play {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999999;
  padding: 0.25rem 1rem;
}

/* BUTTON GSAP*/

.my-button {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  background-image: linear-gradient(90deg, #00c2ff 0%, #b521e9 100%);
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 3;
  padding: 0;
  margin: 0;
  border-radius: 2rem;
  --alternative-gradient-opacity: 0;
  box-shadow: 3px 2px 8px rgba(181, 33, 233, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.225);
}

.my-button:before,
.my-button:after {
  content: "";
  position: absolute;
  pointer-events: none;
  mix-blend-mode: overlay;
  will-change: transform;
}

.my-button:before {
  inset: 1px;
  mix-blend-mode: overlay;
  filter: blur(0.25px);
  border-radius: 2rem;
  z-index: 1;
}

.my-button:after {
  border-radius: 2rem;
  inset: 0;
  opacity: var(--alternative-gradient-opacity);
  background-image: linear-gradient(90deg, #00c2ff 0%, #b521e9 100%);
}

.my-button > span {
  display: inline-flex;
  padding: 0.875rem 1.5rem;
  gap: 0.5rem;
  position: relative;
  z-index: 3;
  will-change: transform;
  --button-glow-1-scale: 0.6;
  --button-glow-1-opacity: 0;
  --button-glow-1-blur: 0px;
  --button-glow-2-scale: 0.5;
  --button-glow-2-opacity: 0;
  --button-glow-2-blur: 0px;
  border-radius: 2rem;
  font-size: 1.125rem;
}

.my-button > span svg {
  vertical-align: top;
  margin-left: -12px;
  margin-right: 4px;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
  fill: none;
  filter: drop-shadow(0px 0.5px 0.75px rgba(9, 24, 85, 0.35));
}

.my-button span:before,
.my-button span:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  mix-blend-mode: multiply;
  z-index: -1;
}

.my-button span:before {
  box-shadow: 0 0 0 3px #8d66e5;
  transform: scale(var(--button-glow-1-scale)) translateZ(0);
  opacity: var(--button-glow-1-opacity);
  filter: blur(var(--button-glow-1-blur));
}

.my-button > span:after {
  box-shadow: 0 0 0 3px #b291ff;
  transform: scale(var(--button-glow-2-scale)) translateZ(0);
  opacity: var(--button-glow-2-opacity);
  filter: blur(var(--button-glow-2-blur));
}

.my-button div {
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  pointer-events: none;
  overflow: hidden;
}

.my-button div:before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  z-index: 2;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.my-button div svg {
  position: absolute;
  mix-blend-mode: overlay;
  opacity: 0;
  filter: blur(3px);
}

.my-button .text-secondary-cnt {
  background: rgba(255, 255, 255, 0.75);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  padding: 0 0.125rem;
}

.my-button .text-secondary {
  font-weight: 700;
  font-size: 0.75rem;
}

@media (min-width: 64rem) {
  .datepicker-custom {
    max-width: 40rem;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
  }

  .lg-ntr {
    height: 2rem;
  }

  .section--plan__image-cnt .section--plan__image {
    width: 50%;
  }

  .datepicker-custom .datepicker-picker .datepicker-main .datepicker-view .days .datepicker-grid .datepicker-cell.next:hover {
    color: var(--color-white) !important;
  }
}

/* Landscape phones and tablets - adjust hero/service split for short height */
@media (max-width: 63.9375rem) and (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto !important;
    min-height: 100svh;
    padding-bottom: 2rem;
  }

  .service-section {
    height: auto !important;
    min-height: 50vh;
    padding: 2rem 0;
  }

  .service-section__image {
    height: 40%;
    width: auto;
    bottom: 1rem;
  }

  .title-text {
    font-size: 1.5rem;
  }

  .title-text.title-3 {
    font-size: 1.25rem;
  }

  .hero-section .hero-section__disclaimer {
    position: relative;
    bottom: auto;
    margin-top: 2rem;
  }
}

@media (max-width: 63.9375rem) {
  .title-text {
    font-size: 2rem;
  }

  .title-text::after {
    filter: blur(0.1rem);
  }

  .title-text.title-3 {
    font-size: 1.5rem;
  }

  .service-section {
    border-radius: 2rem;
    /* z-index: -1; */
    padding: 5vh 0 0 0;
  }

  .service-section__image--man {
    right: 0;
  }

  .service-section__image--woman {
    left: 0.9375rem;
  }

  .service-section__image {
    height: 50%;
    width: auto;
    bottom: 0;
  }

  .service-section__image--woman {
    height: 45% !important;
  }

  #modal.modal-pop-up.modal-calculator .modal__wrapper {
    padding: 2rem 1rem 1rem 1rem;
  }

  .section--plan__image-cnt {
    height: 11rem;
  }

  .section--plan .lg-ntr {
    height: 1.25rem;
  }
}
