.cta-section {
  padding: 50px 0;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cta-section.text .subtitle::before {
  display: none;
}

.cta-section.text .cta-wrapper {
  margin: 0;
}

@media (max-width: 500px) {
  .cta-section.text .cta-wrapper {
    padding: 0;
  }
}
.cta-section .cta-wrapper {
  display: flex;
  flex-direction: column;
  color: white;
  gap: 20px;
  position: relative;
  overflow: hidden;
  margin: 50px;
}

@media (max-width: 500px) {
  .cta-section .cta-wrapper {
    padding: 10px;
    padding-top: 100%;
    margin: 0;
  }
}
.cta-section .cta-wrapper.mode-text-left {
  align-items: start;
}

.cta-section .cta-wrapper.mode-text-right {
  align-items: end;
}

.cta-section .cta-wrapper.mode-text-right .cta {
  align-self: flex-end;
}

.cta-section .cta-wrapper.mode-text-right .title,
.cta-section .cta-wrapper.mode-text-right .description {
  text-align: right;
}

.cta-section .cta-wrapper .subtitle {
  display: flex;
  align-items: center;
  z-index: 1;
  gap: 10px;
  font-size: 1rem;
}

.cta-section .cta-wrapper .subtitle::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: rgb(228, 176, 5);
  border-radius: 50%;
}

.cta-section .cta-wrapper .description,
.cta-section .cta-wrapper .title {
  z-index: 1;
  margin: 0;
}

.cta-section .cta-wrapper .description {
  max-width: 500px;
  font-size: 1.2rem;
}

.cta-section .cta-wrapper .cta {
  z-index: 1;
  color: black;
  padding: 5px 10px;
  background: white;
  border-radius: 20px;
  align-self: flex-start;
  transition: transform 0.2s ease, background 0.2s ease;
  font-size: 1.2rem;
}

.cta-section .cta-wrapper .cta:hover {
  transform: translateY(-3px);
}



/*# sourceMappingURL=cta.css.map */
