:root{
  --prev-cta-white: #FFFFFF;
  --prev-cta-text: #EEEEEE;
  --prev-cta-cyan: #00EEFF;
  --prev-cta-overlay: rgba(9, 21, 37, 0.50);
  --prev-cta-btn-shadow: rgba(13, 242, 242, 0.10);
}

/* =========================================================
   CTA BANNER
========================================================= */
.prevenance-cta-banner{
  position: relative;
  width: 100%;
  min-height: 500px;
  height: 500px;
  overflow: hidden;
  isolation: isolate;
}

.prevenance-cta-banner__media-layer{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.prevenance-cta-banner__image,
.prevenance-cta-banner__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.prevenance-cta-banner__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--prev-cta-overlay);
}

.prevenance-cta-banner__container{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.prevenance-cta-banner__inner{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prevenance-cta-banner__content{
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prevenance-cta-banner__title{
  margin: 0;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: var(--prev-cta-white);
  text-align: center;
  text-transform:capitalize;
}

.prevenance-cta-banner__description{
  margin: 22px 0 0;
  max-width: 760px;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--prev-cta-text);
  text-align: center;
}

.prevenance-cta-banner__button-wrap{
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.prevenance-cta-banner__button,
.prevenance-cta-banner__button--static{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 20px;
  border-radius: 12px;
  background: var(--prev-cta-cyan);
  text-decoration: none;
  box-shadow: 0 0 20px 0 var(--prev-cta-btn-shadow);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.prevenance-cta-banner__button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 28px 0 var(--prev-cta-btn-shadow);
  filter: brightness(1.03);
}

.prevenance-cta-banner__button-icon{
  width: 18px;
  height: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prevenance-cta-banner__button-icon img{
  width: 18px;
  height: 18px;
  display: block;
}

.prevenance-cta-banner__button-text{
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

/* =========================================================
   ENTRANCE ANIMATION
========================================================= */
.prevenance-cta-banner__title,
.prevenance-cta-banner__description,
.prevenance-cta-banner__button-wrap{
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.prevenance-cta-banner.is-inview .prevenance-cta-banner__title,
.prevenance-cta-banner.is-inview .prevenance-cta-banner__description,
.prevenance-cta-banner.is-inview .prevenance-cta-banner__button-wrap{
  opacity: 1;
  transform: translateY(0);
}

.prevenance-cta-banner.is-inview .prevenance-cta-banner__description{
  transition-delay: 0.12s;
}

.prevenance-cta-banner.is-inview .prevenance-cta-banner__button-wrap{
  transition-delay: 0.22s;
}

/* =========================================================
   LARGE LAPTOP
========================================================= */
@media (min-width: 1200px) and (max-width: 1439px){
  .prevenance-cta-banner__container{
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =========================================================
   LAPTOP / SMALL DESKTOP
========================================================= */
@media (min-width: 992px) and (max-width: 1199px){
  .prevenance-cta-banner{
    min-height: 460px;
    height: 460px;
  }

  .prevenance-cta-banner__container{
    padding-left: 20px;
    padding-right: 20px;
  }

  .prevenance-cta-banner__content{
    max-width: 820px;
  }

  .prevenance-cta-banner__title{
    font-size: 34px;
  }

  .prevenance-cta-banner__description{
    margin-top: 18px;
  }
}

/* =========================================================
   TABLET
========================================================= */
@media (min-width: 768px) and (max-width: 991px){
  .prevenance-cta-banner{
    min-height: 420px;
    height: 420px;
  }

  .prevenance-cta-banner__container{
    padding-left: 20px;
    padding-right: 20px;
  }

  .prevenance-cta-banner__content{
    max-width: 660px;
  }

  .prevenance-cta-banner__title{
    font-size: 30px;
    line-height:40px;
  }

  .prevenance-cta-banner__description{
    margin-top: 16px;
    max-width: 680px;
    font-size: 15px;
    line-height: 25px;
  }

  .prevenance-cta-banner__button-wrap{
    margin-top: 22px;
  }
}

/* =========================================================
   MOBILE LARGE
========================================================= */
@media (min-width: 576px) and (max-width: 767px){
  .prevenance-cta-banner{
    min-height: 380px;
    height: 380px;
  }

  .prevenance-cta-banner__container{
    padding-left: 20px;
    padding-right: 20px;
  }

  .prevenance-cta-banner__content{
    max-width: 100%;
  }

  .prevenance-cta-banner__title{
    font-size: 26px;
    line-height:36px;
  }

  .prevenance-cta-banner__description{
    margin-top: 14px;
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
  }

  .prevenance-cta-banner__button-wrap{
    margin-top: 20px;
  }

  .prevenance-cta-banner__button,
  .prevenance-cta-banner__button--static{
    padding-left: 18px;
    padding-right: 18px;
  }

  .prevenance-cta-banner__button-text{
    font-size: 15px;
    line-height: 24px;
  }
}

/* =========================================================
   MOBILE SMALL
========================================================= */
@media (min-width: 0px) and (max-width: 575px){
  .prevenance-cta-banner{
    min-height: 340px;
    height: 340px;
  }

  .prevenance-cta-banner__container{
    padding-left: 20px;
    padding-right: 20px;
  }

  .prevenance-cta-banner__content{
    max-width: 100%;
  }

  .prevenance-cta-banner__title{
    font-size: 22px;
    line-height:32px;
  }

  .prevenance-cta-banner__description{
    margin-top: 12px;
    max-width: 100%;
    font-size: 14px;
    line-height: 23px;
  }

  .prevenance-cta-banner__button-wrap{
    margin-top: 18px;
  }

  .prevenance-cta-banner__button,
  .prevenance-cta-banner__button--static{
    padding-left: 16px;
    padding-right: 16px;
    min-height: 42px;
  }

  .prevenance-cta-banner__button-icon{
    width: 16px;
    height: 16px;
    min-width: 16px;
  }

  .prevenance-cta-banner__button-icon img{
    width: 16px;
    height: 16px;
  }

  .prevenance-cta-banner__button-text{
    font-size: 14px;
    line-height: 22px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce){
  .prevenance-cta-banner__title,
  .prevenance-cta-banner__description,
  .prevenance-cta-banner__button-wrap{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .prevenance-cta-banner__button,
  .prevenance-cta-banner__button--static{
    transition: none !important;
  }
}