/* =========================================
   HOME CTA
========================================= */

.wlt-home-cta{
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

/* Background */
.wlt-home-cta__bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wlt-home-cta__video,
.wlt-home-cta__image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.wlt-home-cta__bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* Overlay */
.wlt-home-cta__overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #00000033 0%, #00000085 100%);
}

/* Content */
.wlt-home-cta__inner{
  position: relative;
  z-index: 2;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* Heading */
.wlt-home-cta__heading{
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform:capitalize;
}

/* Description */
.wlt-home-cta__description{
  margin: 0;
  max-width: 720px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #DDDDDD;
}

/* Button */
.wlt-home-cta__button{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 20px;
  border-radius: 50px;
  background: #FFFFFF;
  text-decoration: none;

  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #000000;
}

/* Icon circle */
.wlt-home-cta__icon{
  width: 34px;
  height: 34px;
  background: #DB8629;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make icon WHITE */
.wlt-home-cta__icon img{
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  transform-origin: center center;
}

/* Hover ONLY on button */
.wlt-home-cta__button:hover .wlt-home-cta__icon img{
  transform: rotate(45deg);
}

/* Animation */
.wlt-home-cta__heading,
.wlt-home-cta__description,
.wlt-home-cta__button{
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.wlt-home-cta.is-visible .wlt-home-cta__heading{
  opacity: 1;
  transform: translateY(0);
}

.wlt-home-cta.is-visible .wlt-home-cta__description{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.wlt-home-cta.is-visible .wlt-home-cta__button{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 1024px){
  .wlt-home-cta{
    height: 400px;
  }

  .wlt-home-cta__heading{
    font-size: 40px;
    line-height: 52px;
  }
}

@media (max-width: 767px){
  .wlt-home-cta{
    height: 340px;
  }

  .wlt-home-cta__inner{
    padding: 0 20px;
  }

  .wlt-home-cta__heading{
    font-size: 30px;
    line-height: 40px;
  }
}