/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------- 6.0/00 - 14-04-2024
/* colors   -> #EE741D | rgba(238,116,29) | hsla(25,86%,53%) */
/* ------------------------------------------------------------------------------ */
/* onscroll4content */
/* link	-> https://codepen.io/yudizsolutions/pen/JjVbVgd */
/* date	-> 14-04-2024 */
/* ------------------------------------------------------------------------------ */
/* ROOT and VARIABLES */

/*
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400&display=swap");
*/

/*font import*/
/*
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap");
*/

body,
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  height: 100vh;
  background-color: #212121;
}

/* slider */
.mainslider {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}
.slider-big {
  margin: 0;
}
.slider-big .slick-track {
  height: 100%;
}
.slider-big .slider-track {
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.slider-big .item {
  padding: 0;
  margin: 0;
  text-align: center;
  display: block;
  text-decoration: none !important;
  position: relative;
}
.slider-big .item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0 0 0 / 25%);
}
.slider-big .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  outline: 0px;
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.slider-big .item.slick-active img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.mainslider .slick-list {
  height: 100vh;
}
.mainslider .slider-thumbs {
  position: absolute;
  bottom: 4vw;
  z-index: 1;
  margin-left: 7.25vw;
}
.mainslider .slider-thumbs .item {
  padding: 0px 9px;
  display: block;
  border: none;
}
.mainslider .slider-thumbs .item:focus {
  outline: none;
}
.mainslider .slider-thumbs .item h6 {
  margin: 0;
  width: 100%;
  display: block;
  width: auto;
  display: inline-flex;
  outline: 0px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.25);
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: "Quicksand";
  border-left: 3px solid transparent;
  padding-left: 20px;
  text-transform: capitalize;
}
.mainslider .slider-thumbs .slick-active.item h6 {
  border-left: 3px solid #ffffff;
  color: #ffffff;
}

/*Line Drop Animation*/
.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100vw;
}
.line {
  height: 100vh;
  width: 1.5px;
  position: absolute;
  content: "";
  background-color: rgb(238 238 238 / 15%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.line:nth-child(1) {
  margin-left: -33.34%;
}
.line:nth-child(2) {
  margin-left: -16.67%;
}
.line:nth-child(3) {
  margin-left: 0;
}
.line:nth-child(4) {
  margin-left: 16.67%;
}
.line:nth-child(5) {
  margin-left: 33.34%;
}
/* animation */
.line::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%; /* height: 138px; */
  height: 15vh;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(75%, #dddddd),
    to(#dddddd)
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #dddddd 75%,
    #dddddd 100%
  );
  -webkit-animation: run 05s 0s infinite;
  animation: run 05s 0s infinite;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-fill-mode: none;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
@keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
@-webkit-keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
.lines .line:nth-child(1)::after {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.lines .line:nth-child(2)::after {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.lines .line:nth-child(3)::after {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.lines .line:nth-child(4)::after {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.lines .line:nth-child(5)::after {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

/* Media */
@media (max-width: 575px) {
  .mainslider .slider-thumbs {
    bottom: 20%;
  }
}


	
/* ------------------------------------------------------------------------------ */
/* END */	
/* ------------------------------------------------------------------------------ */