.cta-banner {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 767.98px) {
  .cta-banner {
    padding: 40px 0;
  }
}
.cta-banner .container {
  position: relative;
}
.cta-banner__wrapper {
  display: flex;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.cta-banner__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #33b5dd 37.31%, #1fa1d8 100%);
  z-index: 1;
}
.cta-banner__wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../images/flowers_pattern.png") center/cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.1;
  z-index: 2;
}
.cta-banner__wrapper > * {
  position: relative;
  z-index: 3;
}
@media (max-width: 991.98px) {
  .cta-banner__wrapper {
    flex-direction: column;
  }
}
.cta-banner__image {
  max-width: 520px;
  border-radius: 16px 0 400px 16px;
  box-shadow: 0 0 0 8px #fff;
  overflow: hidden;
  position: relative;
}
.cta-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cta-banner__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 208px;
  max-height: 281px;
  background-image: var(--mascot-image);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  right: -15%;
  bottom: -15%;
}
@media (max-width: 991.98px) {
  .cta-banner__image::before {
    right: 0;
    left: -5%;
    bottom: -20%;
  }
}
[data-mascot-image] .cta-banner__image::before {
  opacity: 1;
}
@media (max-width: 991.98px) {
  .cta-banner__image {
    max-width: 100%;
    border-radius: 16px 16px 200px 0;
    height: 280px;
  }
}
@media (max-width: 575.98px) {
  .cta-banner__image {
    height: 260px;
  }
}
.cta-banner__content {
  display: flex;
  padding: 40px 80px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}
@media (max-width: 991.98px) {
  .cta-banner__content {
    padding: 24px 16px;
    gap: 16px;
  }
}
.cta-banner__content h2 {
  margin: 0;
  color: #ffffff;
}
.cta-banner__content p {
  margin: 0;
}
@media (max-width: 991.98px) {
  .cta-banner__content p {
    font-size: 17px;
  }
}
.cta-banner__content .btn {
  font-size: 24px;
  line-height: normal;
}
@media (max-width: 991.98px) {
  .cta-banner__content .btn {
    font-size: 20px;
  }
}
.cta-banner--right .cta-banner__wrapper {
  flex-direction: row-reverse;
}
@media (max-width: 991.98px) {
  .cta-banner--right .cta-banner__wrapper {
    flex-direction: column;
  }
}
.cta-banner--right .cta-banner__image {
  border-radius: 16px 0 16px 400px;
}
@media (max-width: 991.98px) {
  .cta-banner--right .cta-banner__image {
    border-radius: 16px 16px 200px 0;
  }
}
.cta-banner--left .cta-banner__image::before {
  background-position: left center;
}