.cta {
  padding: 40px 0;
}
.cta-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("./../images/bg-cta.png");
  background-size: cover;
  background-position: top;
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem 4rem 2rem;
  max-width: 60%;
}
.cta-content .btn {
  border: 1px solid #fff;
}

.cta-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-black);
  font-size: 60px;
  line-height: 1.05;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.cta-description {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 500px;
  width: 100%;
}

@media (max-width: 1024px) {
  .cta-title {
    font-size: 45px;
  }

  .cta-description {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .cta-wrapper {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("./../images/bg-cta.png");
  }

  .cta-content {
    padding: 30px 20px;
    max-width: 100%;
    text-align: center;
  }

  .cta-title {
    font-size: 32px;
  }

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

@media (max-width: 480px) {
  .cta-title {
    font-size: 26px;
  }
}
