.cta {
  background-image: url('../images/back-cta.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6px 16px;
}

@media screen and (min-width: 768px) {
  .cta {
    padding: clamp(40px, 4.44vw, 64px);
  }
}

@media screen and (min-width: 768px) {
  .cta__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    position: relative;
  }
}

.cta__icon-1 {
  position: absolute;
  display: none;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .cta__icon-1 {
    width: clamp(60px, 6.94vw, 100px);
    height: clamp(50px, 5.56vw, 80px);
    top: clamp(20px, 2.08vw, 30px);
    left: clamp(110px, 13.19vw, 190px);
    position: absolute;
    display: block;
  }
}

@media screen and (min-width: 1441px) {
  .cta__icon-1 {
    left: calc((100vw - 1440px) / 2 + 190px);
  }
}

@media screen and (min-width: 768px) {
  .cta__icon-1 {
    display: block;
  }
}

.cta__icon-2 {
  position: absolute;
  display: none;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .cta__icon-2 {
    width: clamp(60px, 6.94vw, 100px);
    height: clamp(50px, 6.94vw, 100px);
    bottom: clamp(15px, 1.39vw, 20px);
    right: clamp(100px, 11.11vw, 160px);
    position: absolute;
    display: block;
  }
}

@media screen and (min-width: 1441px) {
  .cta__icon-2 {
    right: calc((100vw - 1440px) / 2 + 160px);
  }
}

@media screen and (min-width: 768px) {
  .cta__icon-2 {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .cta__content {
    text-align: center;
    color: var(--base-white);
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
  }
}

@media screen and (min-width: 768px) {
  .cta__title {
    font-size: 56px;
    line-height: 1.6;
    font-weight: 500;
  }
}

@media screen and (min-width: 768px) {
  .cta__description {
    font-weight: 700;
    font-size: 22px;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 768px) {
  .cta__description2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}

.cta__buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .cta__buttons {
    margin-top: 12px;
    gap: 20px;
  }
}
