html {
  /* 1 */
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  background: #fff;
  color: #666;
}

.nav {
	position: absolute;
/*	top: 15px; */
	z-index: 99;
	left: 0;
	right: 0;
}
.uk-sticky-placeholder {
	height: 0 !important;
}
.top-wrap::before, .overlay-wrap::before {
	position: absolute;
	top:0;
	right:0;
	left: 0;
	bottom: 0;
	content: '';
	z-index: 1;
	background-color: rgba(0,0,0,0.5);
}
.top-wrap-height {
	height: 80vh;
	min-height: 460px;
	transition: height 0.25s;
}
.uk-subnav-pill > * > :first-child {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.04);
}
.top-container {
	z-index: 2;
}

}
.uk-logo img {
	height: 38px;
}
.subtitle-text {
	font-size: 1.2em;
	opacity: 0.7;
	font-weight: 300;
}
.logos-grid img {
	display: block;
	width: 60px;
	margin: 0 auto;
	filter:  grayscale(100%);
	transition: filter 0.25s;
}
.logos-grid img:hover {
	display: block;
	width: 60px;
	margin: 0 auto;
	filter:  grayscale(0);
}



/*======================

	19. Loading Screen

========================*/



#loader-wrapper{

	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	overflow: hidden;
}


/* Loader Logo
-------------------------*/


.loader-img img{

	display: block;
	position: absolute;
	left: 32%;
	bottom: 40%;
	width: 334px;
	height: auto;
	z-index: 1002;
	-webkit-transition: all 0.2s;
	transition: all 0.2s 0.2s;
}

@media (max-width: 486px){
 .loader-img img{
	left: 3%;
 }
}


/* Loader Animation
-------------------------*/


#loader-wrapper .loader-section{

	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #fff;
	background: #fff;
	color: rgba(0, 0, 0, 0.9);
	z-index: 1000;
}

#loader-wrapper .loader-section.section-left{

	left: 0%;
}

#loader-wrapper .loader-section.section-right{

	right: 0%;
}



/* After Loading
-------------------------*/


.loaded #loader-wrapper .loader-section.section-left{

	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s 0.4s;
}

.loaded #loader-wrapper .loader-section.section-right{

   opacity: 0;
	-webkit-transition: all 0.4s 0.4s;
	transition: all 0.4s 0.4s;
}

.loaded #loader{

	opacity: 0;
}

.loaded #loader-wrapper{

	visibility: hidden;
	opacity: 1;
}

.loaded .loader-img img{
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.2s;
	transition: all 0.2s 0.2s;
}

/*========================

	12. Go to top icon

==========================*/

#return-to-top{

	position: fixed;
	bottom: 40px;
	right: 40px;
	background: #000;
	z-index: 999;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 2px solid gray;
	line-height: 50px;
	text-align: center;
	display: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;

}
#return-to-top span{

	color: #fff;


}
#return-to-top:hover{

	opacity: 0.6;


}


#return-to-top:hover span{

	color: #fff !important;

}


