/*====================
Cta css 
======================*/

.cta-area {
  background: #8eb866b3;
  position: relative;
  padding: clamp(60px, 4.166667vw, 80px) 0 clamp(30px, 4.166667vw, 80px) 0;
  z-index: 1;
}

.cta-area::before {
  content: "";
  position: absolute;
  background-image: url(./pics/shape-5.png);
  background-repeat: repeat-x;
  width: 100%;
  height: 40px;
  left: 0;
  top: 0;
  z-index: -1;
}



.cta-area .mb-20 {
  margin-bottom: 20px;
}

.cta-text h2 {
  color: #fff;
  font-size: clamp(24px, 2.30vw, 44px);
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.cta-text p {
  color: #fff;
  font-size: clamp(14px, 0.94vw, 18px);
}

.cta-number {
  font-size: 32px;
  color: #fff !important;
  font-weight: 700;
}

.cta-number i {
  font-size: 32px;
  margin-right: 15px;
}

.cta-btn .theme-btn {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  padding: 14px 25px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--color-second);
  font-family: var(--title-font-family);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.cta-btn .theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.cta-btn .theme-btn:hover {
  color: var(--text-color);
}

.cta-btn .theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.cta-btn .theme-btn i {
  margin-left: 5px;
}

.cta-btn .theme-btn span {
  margin-right: 5px;
}

.cta-divider {
  position: relative;
  padding-right: 15%;
}

.cta-divider::before {
  position: absolute;
  content: close-quote;
  width: 2px;
  bottom: 0;
  background-color: #fff;
  right: 0;
  top: 0;
}

.cta-divider:after {
  width: 0px;
  position: absolute;
  content: close-quote;
  height: 0px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #fff;
  top: 50%;
  transform: translateY(-50%);
  right: -6px;
}

@media (max-width: 992px) {
  .cta-divider:before,
  .cta-divider:after {
    display: none;
  }
  .cta-divider {
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
}


@media screen and (max-width: 992px) {

  .cta-area .container .cta-btn{margin-top:20px}
}
