body #loader {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: fixed;
height: 100vh;
width: 100vw;
background: #FFFFFF;
z-index: 999999; }
body #loader .loading {
font-weight: 800;
font-size: 1.5em;
text-transform: uppercase;
color: #ACACAC;
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
body #loader .loading .txt {
opacity: 0;
}
body #loader .loading .progress {
opacity: 0;
height: 4px;
width: 200px;
background: rgba(0, 0, 0, 0.1);
margin-top: 20px;
position: relative;
}
body #loader .loading .progress .bar-loading {
content: "";
height: 4px;
width: 0;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #00A8E3 !important;
}
body #loader.pr__dark {
background: #101010;
}
body #loader.pr__dark .progress {
background: rgba(255, 255, 255, 0.2);
}
body #site-wrapper {
position: relative;
top: 100px;
}
@-webkit-keyframes scaleTop {
from {
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
to {
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
}
@keyframes scaleTop {
from {
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
to {
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
}
[data-aos="reveal"]>* {
display: block;
width: 100%;
height: 50px;
-webkit-animation-name: slideTop;
animation-name: slideTop;
-webkit-transition: 1000ms cubic-bezier(0.17, 0.67, 0, 1.01);
-o-transition: 1000ms cubic-bezier(0.17, 0.67, 0, 1.01);
transition: 1000ms cubic-bezier(0.17, 0.67, 0, 1.01);
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
transform: translateY(100%);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: relative;
z-index: -1;
overflow: hidden;
opacity: 0;
}
[data-aos="reveal"]>*:before {
content: "";
display: block;
position: absolute;
height: 50px;
width: 100%;
top: 0;
bottom: 0;
background: #101010;
z-index: 1;
-webkit-transition: 1000ms cubic-bezier(0.17, 0.67, 0, 1.01);
-o-transition: 1000ms cubic-bezier(0.17, 0.67, 0, 1.01);
transition: 1000ms cubic-bezier(0.17, 0.67, 0, 1.01);
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
transform: translateY(100%);
}
[data-aos="reveal"].aos-animate>* {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
[data-aos="reveal"].aos-animate>*:before {
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%);
}