/*
style {
    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap');
}
*/


html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.loader {
    position: fixed;
    z-index: 910;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.loader-bg-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #151515;
}
.loader-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


.logo-wrapper {
    position: absolute;
    width: 115px;
    height: 130px;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.logo-frame-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.logo-wrapper .logo-l-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo-wrapper .logo-l-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
/*    background-color: bisque;*/
    -webkit-clip-path: polygon(0% 0%, 0% 135%, 110% 0%);
    clip-path: polygon(0% 0%, 0% 135%, 110% 0%);
}

.logo-wrapper .logo-r-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo-wrapper .logo-r-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
/*    background-color: aquamarine;*/
/*    -webkit-clip-path: polygon(115px 11px, 27px 130px, 115px 130px);*/
    -webkit-clip-path: polygon(100% 10%, 20% 100%, 100% 100%);
    clip-path: polygon(100% 10%, 20% 100%, 100% 100%);
}

.logo-frame-wrapper .cls-1, .logo-frame-wrapper .cls-3 {
  stroke-dasharray: 245;
  stroke-dashoffset: 245;
  animation-name: dashoffset;
  animation-duration: 1.7s;
  animation-delay: 2.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.75, 0, 0.25, 1);
}

@keyframes dashoffset {
  to {
    stroke-dashoffset: 0;
  }
}

.slide-in-l {
    visibility: hidden;
    animation-name: slide-in-l;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-timing-function: cubic-bezier(0.74,-0.01, 0.29, 0.99);
    animation-duration: 2.5s;
}
.slide-in-r {
    visibility: hidden;
    animation-name: slide-in-r;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-timing-function: cubic-bezier(0.74,-0.01, 0.29, 0.99);
    animation-duration: 2.5s;
}
@keyframes slide-in-r {
  0% {
    transform: translateX(-100%);
      visibility: visible;
  }
  50% {
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0%);
    visibility: visible;
  }
}
@keyframes slide-in-l {
  0% {
    transform: translateX(100%);
      visibility: visible;
  }
  50% {
    transform: translateX(100%);
      visibility: visible;
  }
  100% {
    transform: translateX(0%);
    visibility: visible;
  }
}



.UI-slider-overley {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #c8ad73;
}
.UI-slider-overley .slider_item {
}

.UI-slider-container {
    width: 100%;
    height: 100%;  
}
.UI-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.UI-slider > div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}
.UI-slider > p {
    display: none;
}



.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    
    filter: brightness(0.7);
}
.video-wrapper video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Bottom & horizontal */
/*
.UI-controls-container {
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 10px;
    left: 0;
    z-index: 2;
}
.UI-controls-container ul.controls {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
*/

/* Right & vertical */
.UI-controls-container {
    position: fixed;
    width: 50px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.UI-controls-container ul.controls {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.UI-controls-container ul.controls li {
    list-style: none;
    cursor: pointer;
    margin: 12px;
    width: 9px;
    height: 9px;
    color: #FFF;
    background-color: transparent;
    border: 1px solid #EECE7B;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: all 0.35s;
}
.UI-controls-container ul.controls li.active {
    color: #000;
    background-color: #EECE7B;
    background-color: rgba(238, 206, 123, 0.7);
}
.UI-controls-container ul.controls li:hover {
    background-color: rgba(238, 206, 123, 0.99);
}

.slider-content-wrapper {
    position: absolute;
/*    z-index: 1;*/
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #FFF;
}
.slider-title {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
	text-align: center;
    color: #fff;
}
.slider-small {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 300;
}
.slider-content-wrapper a {
    text-decoration: none;
    color: #FFF;
}




@keyframes overley-in {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.overley-in {
    animation-name: overley-in;
    animation-duration: 0.45s;
    animation-fill-mode: both;
    transform-origin: bottom left;
    animation-timing-function: cubic-bezier(1, .01, 1, 1);
}

@keyframes overley-out {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
.overley-out {
    animation-name: overley-out;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    transform-origin: top left;
    animation-timing-function: cubic-bezier(0, 0, .58, 1.01);
}


.overley-in-reverse {
    animation-name: overley-in;
    animation-duration: 0.45s;
    animation-fill-mode: both;
    transform-origin: top left;
    animation-timing-function: cubic-bezier(1, .01, 1, 1);
}

.overley-out-reverse {
    animation-name: overley-out;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    transform-origin: bottom left;
    animation-timing-function: cubic-bezier(0, 0, .58, 1.01);
}


@keyframes loader-bg-out {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
.loader-bg-out {
    animation-name: loader-bg-out;
    animation-duration: 0.75s;
    animation-fill-mode: both;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
/*    animation-delay: 2s;*/
    animation-delay: 0.2s;
}

@keyframes loader-logo-out {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(-350px);
    opacity: 0;
  }
}
.loader-logo-out {
    animation-name: loader-logo-out;
    animation-duration: 0.75s;
    animation-fill-mode: both;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
/*    animation-delay: 1.9s;*/
}

@keyframes loader-logo-in {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.loader-logo-in {
    animation-name: loader-logo-in;
    animation-duration: 2.0s;
    animation-fill-mode: both;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
/*    animation-delay: 2s;*/
}


@keyframes animation-pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.animation-pulsar {
    animation-name: animation-pulsar;
    animation-duration: 2.0s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.zoom-out {
    animation-name: zoom-out;
    animation-duration: 1.0s;
}

@keyframes zoom-out {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1.0);
    opacity: 1;
  }
}


/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575px) {
 
.UI-controls-container {
    width: 30px;
}
    
}


