.cta_banner_with_image {
   position: relative;
   overflow: hidden;
}

.cta_banner_with_image::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.8);
   z-index: 1;
}

.cta_banner_with_image .container {
   position: relative;
   z-index: 2;
}

.cta_banner_with_image__inner {
   display: flex;
   flex-direction: column;
}

.cta_banner_with_image__title.h1 {
   margin: 0 0 12px;
   font-weight: 500;
   text-transform: uppercase;
}

.cta_banner_with_image__text {
   font-size: clamp(15px, 28 * (100vw / 1920), 28px);
   line-height: clamp(16px, 32 * (100vw / 1920), 32px);
   font-weight: 400;
   margin: 0;
}

.cta_banner_with_image__text,
.cta_banner_with_image__text * {
   color: inherit;
}

.cta_banner_with_image__text > * {
   margin: 0;
}

.cta_banner_with_image__text > * + * {
   margin-top: 12px;
}

.cta_banner_with_image__cta_wrap {
   margin-top: clamp(62px, 84 * (100vw / 1920), 84px);
}

.cta_banner_with_image__cta {
   display: inline-block;
   border: none;
   background: none;
   padding: 0;
   font-family: inherit;
   font-size: clamp(24px, 56 * (100vw / 1920), 56px);
   line-height: 1;
   font-weight: 500;
   color: #CDFF3A;
   text-transform: uppercase;
   text-decoration: underline;
   text-underline-position: from-font;
   cursor: pointer;
}

.cta_banner_with_image__cta_text--mobile {
   display: none;
}

@media (max-width: 767px) {
   .cta_banner_with_image__cta_text--desktop {
      display: none;
   }

   .cta_banner_with_image__cta_text--mobile {
      display: inline;
   }
}

