/* section and background */
.cta-section {
  position: relative;
  height: 600px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
  margin: auto;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 230, 210, 0.7);
  z-index: 1;
}
.cta-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.cta-mobile {
  display: none;
}
/* Content */
.cta-section .cta-content {
  position: relative;
  z-index: 2;
  max-width: 646px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  color: var(--black1);
}

.cta-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
/* responsive */
@media (max-width: 652px) {
  .cta-section {
    height: 100vh;
    padding: 0 16px;
  }

  .cta-title-wrapper {
    gap: 16px;
  }

  .cta-section .cta-content {
    gap: 24px;
  }
  .cta-mobile {
    display: block;
  }
  .cta-desktop {
    display: none;
  }
}
