/* =========================================
   HOME HERO SECTION
========================================= */

.wlt-home-hero{
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  background: #000000;
}

/* =========================================
   BACKGROUND MEDIA
========================================= */

.wlt-home-hero__media{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wlt-home-hero__image,
.wlt-home-hero__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================================
   GRADIENT OVERLAY
========================================= */

.wlt-home-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.46) 38%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

/* =========================================
   INNER CONTENT
========================================= */

.wlt-home-hero__inner{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.wlt-home-hero__content{
  width: 100%;
  max-width: 760px;
  padding-top: 80px;
}

/* =========================================
   TEXT
========================================= */

.wlt-home-hero__title{
  margin: 0 0 18px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 64px;
  line-height: 74px;
  font-weight: 300;
  color: #FFFFFF;
  letter-spacing: 0;
}

.wlt-home-hero__description{
  margin: 0 0 20px;
  max-width: 760px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #DDDDDD;
  letter-spacing: 0;
}

/* =========================================
   BUTTON
========================================= */

.wlt-home-hero__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 9px 9px 20px;
  border-radius: 50px;
  background: #FFFFFF;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  text-transform: capitalize;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wlt-home-hero__button:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: #000000;
}

.wlt-home-hero__button-icon{
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  background: #DB8629;
}

.wlt-home-hero__button-icon img{
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  transform-origin: center center;
}

/* Hover on the full hero button */
.wlt-home-hero__button:hover .wlt-home-hero__button-icon img{
  transform: rotate(45deg);
}

/* =========================================
   ENTRANCE ANIMATION
========================================= */

.wlt-home-hero__title,
.wlt-home-hero__description,
.wlt-home-hero__button{
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.wlt-home-hero.is-visible .wlt-home-hero__title{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.wlt-home-hero.is-visible .wlt-home-hero__description{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}

.wlt-home-hero.is-visible .wlt-home-hero__button{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* =========================================
   LAPTOP
========================================= */

@media (min-width: 1025px) and (max-width: 1600px){

  .wlt-home-hero__inner{
    padding-left: 20px;
    padding-right: 20px;
  }

  .wlt-home-hero__video,
  .wlt-home-hero__image{
    object-position: left center;
  }

  .wlt-home-hero__title{
    font-size: 60px;
    line-height: 70px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (min-width: 768px) and (max-width: 1024px){
  .wlt-home-hero{
    height: 720px;
  }
  
  .wlt-home-hero__image,
  .wlt-home-hero__video{
    object-position: left center;
  }

  .wlt-home-hero__inner{
    padding-left: 20px;
    padding-right: 20px;
  }

  .wlt-home-hero__content{
    max-width: 680px;
    padding-top: 70px;
  }

  .wlt-home-hero__title{
    font-size: 44px;
    line-height: 54px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (min-width: 320px) and (max-width: 767px){
  .wlt-home-hero{
    height: 600px;
  }
  
    .wlt-home-hero__image,
  .wlt-home-hero__video{
    object-position: left center;
  }


  .wlt-home-hero__overlay{
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.5) 60%,
      rgba(0, 0, 0, 0.12) 100%
    );
  }

  .wlt-home-hero__inner{
    padding-left: 20px;
    padding-right: 20px;
  }

  .wlt-home-hero__content{
    max-width: 100%;
    padding-top: 70px;
  }

  .wlt-home-hero__title{
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 42px;
  }

  .wlt-home-hero__description{
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 24px;
  }

  .wlt-home-hero__button{
    font-size: 15px;
    line-height: 24px;
  }
}