/* CSS Document */
.home-banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 450px;
  max-width: 1920px;
  max-height: 1080px;
  margin: 0 auto;
  padding: 0;
  background-color: #000;
}
.home-banner .slider-wrapper {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  opacity: .95;
}	
.home-banner .slider-wrapper .slick-slide .slick-bnn {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  min-height: 450px;
  height: 100vh;
  max-width: 1920px;
  max-height: 1080px;
  background-color: #000;
}
.home-banner .slider-wrapper .slick-slide .slick-bnn  span.parallax {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.home-banner .slider-wrapper .slick-slide .slick-bnn  span.parallax img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-banner .slider-wrapper .slick-slide .slick-bnn  span.parallax:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  opacity: .8;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+20,0+20,0.65+80,0.95+100 */
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,rgba(0,0,0,0.65) 80%,rgba(0,0,0,0.95) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  transform: rotate(180deg);
}
.home-banner .slider-wrapper .slick-slide .slick-bnn  span.parallax iframe {
  position: absolute;
  height: 56vw;
  width: 100%;
}
@media (max-width: 1500px) {
  .home-banner .slider-wrapper .slick-slide .slick-bnn  span.parallax iframe {
    height: 100%;
    width: 410%;
    left: 50%;
    transform: translate(-50%,0);
  }
}
.home-banner .text {
  position: absolute;
  z-index: 4;
  left: 50px;
  right: 50px;
  bottom: 50px;
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.home-banner.ready .text {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.home-banner .text h1 {
  color: var(--main, #0E385E);
  text-shadow: 0px 0px 58.4px #FFF, 0px 0px 58.4px #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 50px */
  text-transform: uppercase;
  max-width: 500px;
}
.home-banner .text h1 span {
  display: block;
  color: var(--purple, #59253A);
}
.home-banner .text .tag {
  position: relative;
  display: block;
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 30px */
  padding-bottom: 15px;
}
.home-banner .text .tag:after {
  content: '';
  position: absolute;
  top: 100%;
  left: unset;
  right: 0;
  width: 0;
  height: 5px;
  background-color: var(--teal, #0677A1);;
  transition: all .3s ease;
}
.home-banner.ready .slick-current .text .tag:after,
.home-banner .slick-current .text .tag:after {
 left: 0;
 right: unset;
 width: 100%;
 background-color: var(--teal, #0677A1);
 transition: all 3.1s linear;
}

@media (max-width: 1200px) {}
@media (max-width: 991px) {
  .home-banner .slider-wrapper .slick-slide .slick-bnn  span.parallax:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    opacity: .8;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+20,0+20,0.65+80,0.95+100 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,rgba(0,0,0,0.65) 80%,rgba(0,0,0,0.95) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .home-banner .text {
    flex-direction: column;
    gap: 30px;
    /* text-align: center; */
    align-items: start;
    left: 30px;
    right: 30px;
    bottom: 60px;
  }
  .home-banner .text h1,
  .home-banner .text h1 span{
    font-size: 40px;
    margin: 0 0 5px;
  }
}
@media (max-width: 768px) {}
@media (min-width: 1921px) {
  .home-banner {
    border-radius: 0 0 20px 20px;
  }
}
@media (min-width: 1920px) {
  .home-banner .text h1 {
    font-size: 70px;
    max-width: 700px
  }
  .home-banner .text .tag {
    font-size: 40px;
  }
}