.cta-banner {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 98px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  row-gap: 34px;
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 50px 16px;
    margin: 0 10px;
    background-position: center;
    background-size: 300% calc(100% + 400px);
  }
}
.cta-banner .cta-banner-title {
  width: 550px;
  text-align: center;
  font-size: 80px;
  line-height: 72%;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .cta-banner .cta-banner-title {
    width: 100%;
    font-size: 44px;
  }
}
.cta-banner .cta-banner-text {
  color: #FFFFFF;
  width: 550px;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-banner .cta-banner-text {
    width: 100%;
    font-size: 14px;
  }
}
.cta-banner .cta-banner-buttons {
  display: flex;
  align-items: center;
  column-gap: 18px;
}
@media (max-width: 768px) {
  .cta-banner .cta-banner-buttons {
    flex-direction: column;
    row-gap: 14px;
    width: 100%;
  }
}
.cta-banner .cta-banner-buttons .button {
  width: 247px;
  border-radius: 13px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  text-transform: uppercase;
  color: #8DCAD8;
  border: 1px dashed #8DCAD8;
  font-weight: 600;
  transition: border-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 768px) {
  .cta-banner .cta-banner-buttons .button {
    width: 100%;
  }
}
.cta-banner .cta-banner-buttons .button img {
  width: 26px;
  height: 26px;
}
.cta-banner .cta-banner-buttons .button:hover {
  border-color: #17D2FF;
  color: #17D2FF;
}
.cta-banner .cta-banner-buttons .button:active {
  border-color: #8DCAD8;
  color: #8DCAD8;
}
.cta-banner .cta-banner-buttons .button.button-secondary {
  background-color: #00ADD7;
  color: #0A0911;
  border: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.cta-banner .cta-banner-buttons .button.button-secondary:hover {
  background-color: #17D2FF;
  box-shadow: 0px 0px 25px 0px rgba(23, 210, 255, 0.6);
}
.cta-banner .cta-banner-buttons .button.button-secondary:focus {
  background-color: #00ADD7;
}
