.cta-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  background-size: cover;
  border-radius: 24px;
  padding: 40px 0 40px 30px;
}
.cta-bottom > div {
  flex: 0 50%;
}
.ctabottom-img img {
  width: 100%;
}
.ctabottom-text {
  text-align: left;
  color: var(--white);
}
.ctabottom-text h2 {
  font-size: 45px;
  margin-bottom: 10px;
 color: var(--white) !important;
}
.ctabottom-text span {
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  font-size: 22px;
}
.ctabottom-text p {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .ctabottom-text h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .cta-bottom {
    flex-direction: column;
    padding: 40px 0 40px 0px;
  }
  .ctabottom-text {
    padding: 0 20px;
  }
}
