/* ===========================
LOADER
=========================== */

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#021128;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

transition:.5s;

}

.loader-content{

text-align:center;

}

.loader-content img{

width:100px;

margin:auto;

margin-bottom:20px;

}

.loader-content h2{

color:#fff;

margin-bottom:20px;

}

.loader-content span{

display:block;

width:70px;

height:4px;

margin:auto;

background:#C69235;

border-radius:20px;

animation:loading 1.2s infinite;

}

@keyframes loading{

0%{

width:30px;

}

50%{

width:90px;

}

100%{

width:30px;

}

}


/* ===========================
MOBILE MENU
=========================== */

.mobile-menu{

position:fixed;

top:85px;

right:-100%;

width:280px;

background:#021128;

padding:30px;

border-radius:20px;

transition:.4s;

z-index:9999;

box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.mobile-menu.show{

right:20px;

}

.mobile-menu a{

display:block;

padding:15px 0;

border-bottom:1px solid rgba(255,255,255,.08);

color:white;

font-weight:500;

transition:.3s;

}

.mobile-menu a:hover{

color:#C69235;

padding-left:10px;

}

.nav-links a.active{

color:#C69235;

}