/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
  padding: 0;
  margin-bottom: 60px;
}

.cta .container {
  padding: 80px;
  background: #3d365f;
  border-radius: 15px;
}

@media (max-width: 992px) {
  .cta .container {
    padding: 60px;
  }
}

.cta .content h3 {
  color: #f5da05;
  font-size: 48px;
  font-weight: 700;
}

.cta .content h3 em {
  font-style: normal;
  position: relative;
}

.cta .content p {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.cta .content .cta-btn {
  color: #181327;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  margin-right: 5px;
  background: #f5da05;
}

.cta .content .cta-btn:hover {
  background: #181327;
  color: #f5da05;
}

.cta .img {
  position: relative;
}

.cta .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}

.cta .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}

.cta .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}