/* section-cta css */
.section-cta {
	padding-inline: 1.5rem;
	padding-bottom: 10rem;
	padding-top: 10rem;
}
.cta-wrap {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 5.2rem;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  background-color: var(--black);
  min-height: 30rem;
}
.cta-wrap::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(var(--black-rgb), 0.78);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: 3.2rem;
  margin-bottom: 3.5rem;
}
.cta-text {
  margin-bottom: 3.5rem;
}
@media (max-width: 1050px) {
  .section-cta {
	 padding-top: 7rem;
    padding-bottom: 6rem;
  }
	.cta-wrap {
		border-radius: 1.2rem;
	}
}
@media (max-width: 767px) {
  .section-cta {
    padding-bottom: 4rem;
  }
  .cta-wrap {
    min-height: 100%;
    padding: 5.2rem 2rem;
	border-radius: 0.8rem;
  }
  .cta-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .cta-text {
    margin-bottom: 2rem;
  }
}