/* variables for text */
/* Main Color Palet */
/*
Green Dark: #5bbd80, rgb(91 189 128)
Green light: #c0d72f, rgb(192 215 47)

*/
/* variables for bg */
/* variables for fonts */
/* ================================ Global Mixins =========================== */
/*
** Transition use **
    .foo {
        @include transition(all 0.35s ease-in-out);
    }
*/
/*
** Position use **
    .foo {
        @include position(both);
    }
*/
/*
**clearfix use **
    .foo {
        @include clearfix;
    }
*/
/*
** center-auto **
    .foo {
        @include center-auto;
    }
*/
/*
** placeholder use **
    input,
    textarea {
        @include input-placeholder {
            color: $grey;
        }
    }
*/
/*
** pseudo use **
    div::after {
        @include pseudo;
        top: -1rem; left: -1rem;
        width: 1rem; height: 1rem;
    }
*/
/*
** prefix use **
    div {
       @include css3-prefix(transform, scale3d(2.5, 2, 1.5));
    }
}*/
/* Animation use
**
    @include keyframes(fade-out) {
        0% { opacity: 1; }
        90% { opacity: 0; }
    }
*/
.ln-banner {
  position: relative;
  width: 100%;
  height: 100dvh;
}
.ln-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ln-banner .scroll-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-banner .scroll-down {
    bottom: 2vw;
  }
}
.ln-banner .scroll-down a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  padding-top: 80px;
  font-size: 18px;
  line-height: 1.5;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-banner .scroll-down a {
    padding-top: 5.333vw;
    font-size: 1.2vw;
  }
}
.ln-banner .scroll-down a span {
  position: absolute;
  top: 0;
  left: 50%;
  box-sizing: border-box;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-banner .scroll-down a span {
    width: 2vw;
    height: 3.333vw;
    margin-left: -1vw;
    border-width: 0.133vw;
    border-radius: 3.333vw;
  }
}
.ln-banner .scroll-down a span::before {
  position: absolute;
  left: 50%;
  content: "";
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
  top: 10px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-banner .scroll-down a span::before {
    top: 0.667vw;
    width: 0.4vw;
    height: 0.4vw;
    margin-left: -0.2vw;
  }
}
.ln-banner .scroll-down a span::after {
  position: absolute;
  left: 50%;
  content: "";
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
  bottom: -18px;
  width: 18px;
  height: 18px;
  margin-left: -9px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-banner .scroll-down a span::after {
    bottom: -1.2vw;
    width: 1.2vw;
    height: 1.2vw;
    margin-left: -0.6vw;
  }
}
.ln-banner .scroll-down a:hover {
  opacity: 0.7;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
    @media only screen and (max-width: 1500px) and (min-width: 992px) {
      -webkit-transform: translate(0, 1.333vw);
    }
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
    @media only screen and (max-width: 1500px) and (min-width: 992px) {
      transform: translate(0, 1.333vw);
    }
  }
  100% {
    opacity: 0;
  }
}