html{
	height: 100%;
}

body{ 
	min-height:100%; 
	padding:0; margin:0; 
	position:relative; 
	background: #000 !important;
}

body::after{ 
	content:''; 
	display:block;
	height:100px; 
}

@font-face
{
	font-family:adelya;
	src:url(../fonts/Adelya.ttf);
}

@font-face
{
	font-family:adelya;
	src:url(../fonts/Adelya.otf);
}

/* Preloader */

#loader-wrapper { 
	position: fixed; 
	top: 0; left: 0; 
	width: 100%; 
	height: 100%; 
	z-index: 2000; 
}
#loader { 
	display: block; 
	position: relative; 
	left: 50%; 
	top: 50%; 
	width: 150px; 
	height: 150px; 
	margin: -75px 0 0 -75px; 
	border-radius: 50%; 
	border: 3px solid transparent; 
	border-top-color: #ffffff; 
   	animation: spin 2s linear infinite;  
   	z-index: 2001; 
   }
#loader:before { 
	content: ""; 
	position: absolute; 
	top: 5px; 
	left: 5px; 
	right: 5px; 
	bottom: 5px; 
	border-radius: 50%; 
	border: 3px solid transparent;
   	border-top-color: #ffffff; 
   animation: spin 3s linear infinite;  
}
#loader:after { 
	content: "";
    position: absolute; 
    top: 15px; 
    left: 15px; 
    right: 15px; 
    bottom: 15px; 
    border-radius: 50%; 
    border: 3px solid transparent;
	border-top-color: #ffffff; 
	animation: spin 1.5s linear infinite;  
}

@keyframes spin {
	0%   { 
		transform: rotate(0deg); 
	}
	100% { 
		transform: rotate(360deg);  
	}
}

#loader-wrapper .loader-section { position: fixed; top: 0; width: 51%; height: 100%; background: #000; z-index: 2000;  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */ transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */}

#loader-wrapper .loader-section.section-left { left: 0; }

#loader-wrapper .loader-section.section-right { right: 0; }

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {  
	transform: translateX(-100%);    
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right { 
	transform: translateX(100%);   
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
	opacity: 0;  
	transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
	visibility: hidden;  
	transform: translateY(-100%);    
	transition: all 0.3s 1s ease-out;
}

/*Intro*/
.pics{
	text-align: center;
}

.pics .all .logo{
	width: 447px;
	height: auto;
}

.pics .commingup{
	margin-top: 30px; 
}

.pics .commingup p{
	font-family: adelya;
	color: #fff;
	font-size: 45px;
}

.pics .all{
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}


/***Footer***/
footer{
	text-align: center;
	position:absolute; 
	bottom:10px; 
	width:100%; 
}

footer a:hover{
	opacity: 0.7;
}

footer a img{
	width: 24px;
	height: auto;
	display: inline-block;
	margin-bottom: 10px;
}

footer p{
	font-size: 13px;
	color: #fff;
	margin: 0;

}

footer p a,
footer .copy a{
	text-decoration: none;
	color: #fff;
}

