.cta-banner {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
}
.cta-banner .main_title{
  color: #fff;
}
.cta-banner__media,
.cta-banner__image {
  width: 100%;
  height: 100%;
}

.cta-banner__media {
  position: absolute;
  inset: 0;
}

.cta-banner__image {
  object-fit: cover;
  object-position: center;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 45, 114, 0.7),
    rgba(0, 45, 114, 0.7)
  );
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 507px;
  padding: 100px 15px;
}

.cta-banner__inner {
  max-width: 830px;
}

.cta-banner__title {

  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
}

.cta-banner__description p{
  color: #fff;
  font-weight: 400;
}

.cta-banner__link {
  margin-top: 36px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.cta-banner__actions .cta-banner__link {
  margin-top: 0;
}

.cta-banner__email {
  display: inline-block;
  margin-top: 24px;
  color: #ffb81c;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: underline;
}

.cta-banner__email:hover,
.cta-banner__email:focus-visible {
  color: #ffb81c;
}

.cta-banner--center .cta-banner__content {
  justify-content: center;
}

.cta-banner--center .cta-banner__inner {
  margin-inline: auto;
  text-align: center;
}

.cta-banner--center .cta-banner__actions {
  justify-content: center;
}

.cta-banner--dual-actions .cta-banner__interactive {
  display: grid;
  gap: 36px;
}

.cta-banner--dual-actions .cta-banner__panels {
  display: grid;
  width: 100%;
}

.cta-banner--dual-actions .cta-banner__panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cta-banner--dual-actions .cta-banner__panel .main_title {
  margin: 0 0 24px;
}

.cta-banner--dual-actions .cta-banner__panel .cta-banner__description {
  margin: 0;
}

.cta-banner--dual-actions .cta-banner__panel .cta-banner__description p {
  margin: 0;
}

.cta-banner--dual-actions:not(:has(.cta-banner__link:hover)):not(:has(.cta-banner__link:focus-visible)) .cta-banner__panel:first-child {
  opacity: 1;
  visibility: visible;
}

.cta-banner--dual-actions:has(.cta-banner__link:hover) .cta-banner__panel,
.cta-banner--dual-actions:has(.cta-banner__link:focus-visible) .cta-banner__panel {
  opacity: 0;
  visibility: hidden;
}

.cta-banner--dual-actions:has(.cta-banner__actions > .cta-banner__link:nth-child(1):hover) .cta-banner__panel:nth-child(1),
.cta-banner--dual-actions:has(.cta-banner__actions > .cta-banner__link:nth-child(1):focus-visible) .cta-banner__panel:nth-child(1),
.cta-banner--dual-actions:has(.cta-banner__actions > .cta-banner__link:nth-child(2):hover) .cta-banner__panel:nth-child(2),
.cta-banner--dual-actions:has(.cta-banner__actions > .cta-banner__link:nth-child(2):focus-visible) .cta-banner__panel:nth-child(2) {
  opacity: 1;
  visibility: visible;
}

.cta-banner--dual-actions .cta-banner__actions {
  margin-top: 0;
}

.cta-banner--center.cta-banner--dual-actions .cta-banner__interactive {
  justify-items: center;
}

.cta-banner--center.cta-banner--dual-actions .cta-banner__panels {
  max-width: 830px;
}



@media (max-width: 1500px) {
  .cta-banner__content {
    min-height: 480px;
    padding: 80px 15px;
  }
}

@media (max-width: 1200px) {
  .cta-banner__inner {
    max-width: 720px;
  }
}

@media (max-width: 1160px) {
  .cta-banner__content {
    min-height: 450px;
    padding: 70px 15px;
  }
}

@media (max-width: 992px) {
  .cta-banner__content {
    min-height: 420px;
    padding: 60px 15px;
  }

  .cta-banner__title {
    margin-bottom: 20px;
  }

  .cta-banner__description {
    font-size: 16px;
  }

  .cta-banner__link {
    margin-top: 28px;
  }

  .cta-banner__actions {
    margin-top: 28px;
  }

  .cta-banner--dual-actions .cta-banner__interactive {
    gap: 28px;
  }

  .cta-banner--dual-actions .cta-banner__panel .main_title {
    margin-bottom: 20px;
  }

  .cta-banner__email {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .cta-banner__content {
    min-height: 350px;
    padding: 50px 15px;
  }
  .cta-banner__description p br{
    display: none;
  }
  .cta-banner__email {
    font-size: 17px;
    line-height: 20px;
    margin-top: 20px;
}
}
