rtfgvbhtml, body
{height:100%;}

::-webkit-scrollbar 
{width:7px; height:3px;}

::-webkit-scrollbar-track 
{background:#f1f1f1;}
 
::-webkit-scrollbar-thumb 
{background:#888; border-radius:20px;}

::-webkit-scrollbar-thumb:hover 
{background:#555;}



/*animation*/
.reveal
{overflow: hidden;}

.reveal .image-wrap {
  transition: 1s ease-out;
  transition-delay: 0.2s;
  position: relative;
  width: auto;
  overflow: hidden;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  visibility: hidden;
}

.reveal .image-wrap img {
  transform: scale(1.3);
  transition: 2s ease-out;
}

.reveal.animated .image-wrap {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  visibility: visible;
  transform: skewY(0);
}

.reveal.animated img {
  transform: scale(1);
  transition: 4s ease-out;
}


.wordSplit span
{position:relative; opacity: 0; transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);}

.wordSplit span:nth-child(1)
{animation-delay:0.1s; -webkit-animation-delay:0.1s;}
.wordSplit span:nth-child(2)
{animation-delay:0.15s; -webkit-animation-delay:0.15s;}
.wordSplit span:nth-child(3)
{animation-delay:0.2s; -webkit-animation-delay:0.2;}
.wordSplit span:nth-child(4)
{animation-delay:0.25s; -webkit-animation-delay:0.25s;}
.wordSplit span:nth-child(5)
{animation-delay:0.3s; -webkit-animation-delay:0.3s;}
.wordSplit span:nth-child(6)
{animation-delay:0.35s; -webkit-animation-delay:0.35s;}
.wordSplit span:nth-child(7)
{animation-delay:0.4s; -webkit-animation-delay:0.4s;}
.wordSplit span:nth-child(8)
{animation-delay:0.45s; -webkit-animation-delay:0.45s;}
.wordSplit span:nth-child(9)
{animation-delay:0.5s; -webkit-animation-delay:0.5s;}
.wordSplit span:nth-child(10)
{animation-delay:0.55s; -webkit-animation-delay:0.55s;}
.wordSplit span:nth-child(11)
{animation-delay:0.6s; -webkit-animation-delay:0.6s;}
.wordSplit span:nth-child(12)
{animation-delay:0.65s; -webkit-animation-delay:0.65s;}
.wordSplit span:nth-child(13)
{animation-delay:0.7s; -webkit-animation-delay:0.7s;}
.wordSplit span:nth-child(14)
{animation-delay:0.75s; -webkit-animation-delay:0.75s;}
.wordSplit span:nth-child(15)
{animation-delay:0.8s; -webkit-animation-delay:0.8s;}
.wordSplit span:nth-child(16)
{animation-delay:0.85s; -webkit-animation-delay:0.85s;}
.wordSplit span:nth-child(17)
{animation-delay:0.9s; -webkit-animation-delay:0.9s;}
.wordSplit span:nth-child(18)
{animation-delay:0.95s; -webkit-animation-delay:0.95s;}
.wordSplit span:nth-child(19)
{animation-delay:1s; -webkit-animation-delay:1s;}
.wordSplit span:nth-child(20)
{animation-delay:1.05s; -webkit-animation-delay:1.05s;}
.wordSplit span:nth-child(21)
{animation-delay:1.15s; -webkit-animation-delay:1.15s;}


.animated span
{animation: slideLeft 1s forwards;}


@keyframes slideLeft {
  from {
    opacity: 0;
    left: 60px;
  } 
  to {
    opacity: 1;
    left: 0;
  }
}

.fadeUp
{transform: translate3d(0px, 100px, 0px) scale3d(1, 1, 1) rotateX(16deg) rotateY(16deg) rotateZ(0deg) skew(0deg, 0deg); opacity: 0; transition: 1s cubic-bezier(.4,.47,.17,.98); transition-delay: 0.5s; -webkit-transition-delay: 0.5s;}

.fadeUp.animated 
{transform:initial; opacity: 1;}


@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
     opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  to {
     opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
     opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  to {
     opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}


@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}



@-webkit-keyframes fadeInFlip {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes fadeInFlip {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.fadeInFlip {
  -webkit-animation-name: fadeInFlip;
  animation-name: fadeInFlip;
}


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



/* toggle menu style */
.clear-menu-btn
{position:relative; z-index:999; top:0; padding:0;}

.clear-menu-btn 
{
  width:58px;
  height:58px;
  z-index:999999; background: #fff; border-radius: 50%;
  -webkit-transition:.4s; -moz-transition:.4s; -khtml-transition:.4s; -o-transition:.4s;
}

.clear-menu-btn .menu_tglbtn_checkbox 
{
  filter: alpha(opacity=0);
  opacity: 0;
  width: 100%;
  height: 100%;
}

.clear-menu-btn .menu_tglbtn_checkbox:hover 
{cursor: pointer;}

.clear-menu-btn .menu_tglbtn_checkbox_check ~ .top, .clear-menu-btn .menu_tglbtn_checkbox_check ~ .bottom 
{top: 28px;}

.clear-menu-btn .menu_tglbtn_checkbox_check ~ .top 
{
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.clear-menu-btn .menu_tglbtn_checkbox_check ~ .bottom 
{
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.clear-menu-btn .menu_tglbtn_checkbox_check ~ .middle 
{
  filter: alpha(opacity=0);
  opacity: 0;
}

.clear-menu-btn .menu_tglbtn_checkbox_check ~ .circle 
{
  filter: alpha(opacity=100);
  opacity: 0;
}

.clear-menu-btn span {
  position: absolute;
  display: block;
  width:25px;
  height:2px;
  background-color: #0a0a0a;
  z-index: -1;
  left:16px;
  top:0;
  transition: .4s cubic-bezier(.4,.47,.17,.98);
}

.clearmenubtn_active span
{background-color: #fff;}

.clear-menu-btn .top 
{top: 20px; background: #211813;}

.clear-menu-btn .middle 
{top: 29px; background: #211813;}

.clear-menu-btn .bottom 
{top: 38px; background: #211813;}

.clear-menu-btn .circle 
{
  display: block;
  position:absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: alpha(opacity=0);
  opacity: 0;
  width:28px;
  height:16px;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  left:14px;
  top:10px;
}



/*silk slider start*/
.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{outline: none;}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after
{display: table; content: '';}
.slick-track:after
{clear: both;}
.slick-loading .slick-track
{visibility: hidden;}
.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{float: right;}
.slick-slide img
{display: block;}
.slick-slide.slick-loading img
{display: none;}
.slick-slide.dragging img
{pointer-events: none;}
.slick-initialized .slick-slide
{display: block;padding: 0 15px 0 15px;}
.slick-loading .slick-slide
{visibility: hidden;}
.slick-vertical .slick-slide
{display: block; height: auto;border: 1px solid transparent;}
.slick-arrow.slick-hidden 
{display: none;}
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #ffbc01;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    z-index: 99;
    overflow: hidden;

}

.slick-prev.slick-disabled,
.slick-next.slick-disabled
{opacity: 0; visibility: hidden;}

.slick-prev
{left: -160px;}

.slick-prev:before
{content: ""; width: 0; height: 100%; position: absolute; top: 0; left: auto; right: 0; transition: var(--transition); background: #ffbc01; border-radius: 50%;}

.slick-prev:hover
{border: 2px solid transparent;}

.slick-prev:hover:before
{width:100%; left:0; right:auto;}

.slick-prev:hover:after
{border-color: #fff;}

.slick-prev:after
{content: ""; height: 16px; width: 16px; border-top: 2px solid #ffbc01; border-right: 2px solid #ffbc01; position: absolute; top: 20px; left: 24px; transform: rotate(-135deg); transition: var(--transition);}

.slick-next
{right: -160px;}

.slick-next:before
{content: ""; width: 0; height: 100%; position: absolute; top: 0; left: auto; right: 0; transition: var(--transition); background: #ffbc01; border-radius: 50%;}

.slick-next:hover
{border: 2px solid transparent;}

.slick-next:hover:before
{width:100%; left:0; right:auto;}

.slick-next:hover:after
{border-color: #fff;}

.slick-next:after
{content: ""; height: 16px; width: 16px; border-top: 2px solid #ffbc01; border-right: 2px solid #ffbc01; position: absolute; top: 20px; left: 17px; transform: rotate(45deg); transition: var(--transition);}

.slick-dotted.slick-slider
{margin-bottom: 0;}
.slick-dots
{
    position: absolute;
    bottom: -50px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button
{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid #fff;
  cursor: pointer;
  color: transparent;
  outline: none;
  transition: .4s cubic-bezier(.4,.47,.17,.98);
}
.slick-dots li.slick-active button
{background: #fff !important;}



/*main slider*/
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100vw;
}

.slider-container h1 {
  color: #fff;
  font-size: 100px;
  letter-spacing: 5px;
  position: relative;
  z-index: 100;
  text-align: center;
}

.slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: opacity 3s ease;
}

.slide.active {
  animation: grow 8s linear forwards;
  opacity: 1;
}

@keyframes grow {
  0%, 20% {
    transform: scale(1.15);
  }
  
  75%, 100% {
    transform: scale(1);
  }
}

.controls-container {
  position: absolute;
  top: 50%;
  right: 10px;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
  z-index: 2;
  display: none;
}

.control {
  background-color: #fff;
  cursor: pointer;
  opacity: 0.5;
  margin: 6px;
  height: 40px;
  width: 5px;
  transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}

.control.active, .control:hover {
  background-color: #fff;
  opacity: 1;
  transform: scale(1.2);
}