/* Preloader Styles */

#preloader {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 99999;
background-color: black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

#preloader-logo {
width: 0px;
height: auto;
}

#preloader-quote {
margin-top: 50px;
width: 90%;
text-align: center;
font-size: 30px;
color: #d6d6d6;
max-width: 800px;
opacity: .7;
font-family: 'TTFirsNeue', Arial, sans-serif;
letter-spacing: 0px;
font-weight: 500;
}

#preloader-quote {
position: relative;
overflow: hidden;
background: linear-gradient(90deg, #000, #FFFFFF, #000);
background-repeat: no-repeat;
background-size: 80%;
animation: animate 3s linear infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
0% {
background-position: -300%;
}

100% {
background-position: 300%;
}
}
