/** cta **/

.cta-section {
  position: relative;
}

.cta-section:before {
  position: absolute;
  content: '';
  background: #f4f4f4;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.cta-section .auto-container {
  position: relative;
  z-index: 1;
}

.cta-section .inner-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--theme-color);
  border-radius: 10px;
  padding: 45px 50px 37px 50px;
}

.cta-section .inner-container .text h2 {
  display: block;
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  color: #fff;
}

.cta-section .inner-container .btn-box .theme-btn:before {
  background: var(--title-color);
}



/** RTL-CSS **/




/** RESPONSIVE-CSS **/

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1200px) {
  .cta-section .inner-container {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 991px) {
  .cta-section .inner-container .text {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .cta-section .inner-container .text h2 {
    font-size: 26px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {}