.cta {
  position: relative;
  width: 100%;
  height: 100svh;
  background-color: var(--base-500);
}

.cta .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 3rem;
  padding: 6rem 4rem;
  text-align: center;
}

.cta-content h6 {
  font-size: clamp(1.25rem, 1.5vw, 3rem);
}

.cta-content h5 {
  max-width: 580px;
}

.cta-details {
  display: flex;
  gap: 6rem;
}

.cta-circle-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin-top: 1rem;
  aspect-ratio: 1;
}

.cta-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
}

.cta-button-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  color: var(--base-400);
  pointer-events: none;
}

.cta-button span {
  font-family: 'Host Grotesk', sans-serif, sans-serif;
  font-size: 1.25rem;
  color: var(--base-100);
}

.cta-image {
  width: 45%;
  height: 100%;
  max-height: 900px;
  overflow: hidden;
  border-radius: 0.35rem;
}

@media (max-width: 1000px) {
  .cta {
    height: 100%;
  }

  .cta .container {
    flex-direction: column;
  }

  .cta-content h5 {
    max-width: 100%;
  }

  .cta-image {
    width: 100%;
  }
}
