/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.separator{
	position: absolute;
	top: -75px;
}
/* -------------- Navbar ---------------*/
.navbar{
	position: fixed;
	top: 0;
	width: 100%;
	height: 75px;
	padding: 5px 1%;
	background-color: #ecedef;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex; 
	-webkit-box-align: center; 
	    -ms-flex-align: center; 
	        align-items: center;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	z-index: 100;
	opacity: 0.9;
}
.nav-content{
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin:0 ;
	padding: 0;
}
.nav-item{
	position: relative;
	padding: 10px;
	font-size: .9rem;
	font-weight: bold;
	text-transform: uppercase;
}
.nav-item:hover{
	font-weight: normal;
}
.nav-item::after{
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: #2196f3;
	position: absolute;
	margin-top: 5px;
	left:0;
}
.nav-item:hover::after{
	width: 100%;
	-webkit-transition: all ease .35s;
	-o-transition: all ease .35s;
	transition: all ease .35s;
}





/* ------------ Main --------------*/
.main{
	position: relative;
	width: 100%; 
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	background-image: url("../images/backgroundH.png");
	background-size : cover;
	background-repeat: no-repeat;

}
.main-title{
	width: 65%;
	font-size: 3.2rem;
	padding-left: 5%;
	font-weight: bold;
	color: #3e336b;
}
.main-slogan{
	position: relative;
	margin-top: 15px;
	padding-left: calc(10% + 100px);
	width: 100%;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 3px;
	font-style: italic;
	color: #000;
}
.main-slogan::before{
	content: "";
	position: absolute;
	top: 56%;
	left: 8%;
	display: block;
	background-color: #2196f3; 
	width: 100px; 
	height: 2px;
}

.info-section{
	padding: 5px 40px;
	background-color: #09081f;
	color: #fff;
	bottom: 10px;
	position: absolute;
	-webkit-transition: all ease 1s;
	-o-transition: all ease 1s;
	transition: all ease 1s;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 1.1rem;
}



/* --------- About us ------*/
.about{
	width: 100%;
	background-color: #0b0a1f;
}
.about-title{
	font-size: 1.6rem; 
	color: #fff;
	text-transform: uppercase;
	font-weight: 400;
}
.about-title::after{
	content: "";
	display: block;
	background-color: #fff;
	height: 1px;
	width: 80px;
	margin: 6px 0;
}
.about-text{
	color: #b1b0b0;	
	text-align: justify;
	padding: 0 20px;
	font-weight: 300;
	font-size: 1.2rem;
}



/* ------- Services -------*/
.services{
	background-color: #04031b;
}
.services-title{
	text-align: center; 
	font-size: 1.4rem; 
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
}
.services-title::after{
	content: "";
	display: block;
	background-color: #0c72c3;
	height: 1px;
	width: 80px;
	margin: 10px auto;
}
.services-item{
	width: 100%;
	height: 100%;
	border-radius: 5px;
	padding: 20px 10px;
	background-color: #0a081f;
}
.services-item:hover{
	background-color: #04031b;
}
.services-item img{
	display: block;
	margin: 0 auto;
	border-radius: 50rem;
}	
.ss-item-content{
	margin-top: 10px;
	text-transform: uppercase;
	font-weight: 400;	
	text-align: center;
	color: #b1b0b0;
}	




/* ------- Brands  --------*/

.brand-title{
	text-align: center; 
	font-size: 1.4rem; 
	text-transform: uppercase;
	font-weight: 700;
	color: #04031b;
}
.brand-title::after{
	content: "";
	display: block;
	background-color: #0c72c3;
	height: 1px;
	width: 80px;
	margin: 10px auto;
}
.brand .row{
	margin-top: 30px ;
}
.brand img{
	display: block;
	margin: 0 auto;
}



/* ------ Footer -----*/
.footer{
	position: relative;
	background-image: url("../images/footer.png");
	background-size: cover; 
	background-repeat: no-repeat;
	margin-top:50px;
	padding: 20px 40px 0;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.f-contact-title{
	color: #fff;
	text-transform: uppercase;
	font-size: 1.4rem; 
	font-weight: bold;
}
.f-contact-text{
	color: grey;
}
.f-item{
	text-align: center;
	padding: 10px 0;
}
.f-item i{
	font-size: 3rem;
	display: block;
}
.f-item-title{
	color: #418daf;
	font-weight: 300; 
	margin-top: 20px;
	text-transform: uppercase;
}
.f-item-text{
	color: #ecedef;
	font-size: 1rem;
	margin-top: 10px;
}
.f-item-text span{
	display: block;
}
.f-item-text::before{
	content: "";
	display: block;
	height: 1px;
	width: 10%;
	background-color: grey;
	margin: 2px auto;
}
.f-item-blue{
	color: #2196F3 !important;
}
.f-item-green{
	color: #8bc34a !important;
}
.f-item-red{
	color: #f44336!important;
}

.footer-bottom{
	margin-top: 10px;
	border-top: 1px solid #696969;
	padding: 5px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
	text-align: center;
}
.f-bottom-text{
	font-weight: 300;
}
.f-bottom-social i{
	font-size: 1.5rem;
	margin-right: 5px;
	cursor: pointer;
}


/* ------ Contact Button ----*/
.contact  {
	background-color: #08375d;
	color: #fff;
	position: fixed;
	z-index: 200;
	right: 10px;
	bottom: 50px;
	border-radius:  5rem;
	border-bottom: 3px solid grey;
	cursor: pointer;
	padding: 5px 10px;
}

.contact:hover{
	border: 0;
}



/*------- Media --------*/
@media (min-width: 651px){
	.footer .f-col:nth-child(1),.footer .f-col:nth-child(2){
		border-right: 1px solid #696969;
	}
}

@media (min-width: 651px) and (max-width: 899px){
	.footer{
		padding: 20px 20px 0;
	}
	.main-title{
		font-size: 2.6rem;
	}
}

@media (max-width: 650px){
	.nav-item span{
		display: none;
	}
	.main-slogan::before{
		display: none;
	}
	.nav-item{
		font-size: 1.3rem;
		color: #3e336b;
		padding: 12px;
	}
	.main{
		background-image: url("../images/backgroundV.png")
	}
	.main-title{
		width: 100%; 
		font-size: 2rem;
	}
	.main-slogan{
		padding-left: 5%;
		font-size: 1.3rem;
		text-align: center;
	}
	.info-section{
		padding: 5px 10px; 
		border-radius: 0;
		font-size: 1rem;
	}
	.services-item{
		padding:10px;
	}
	.footer{
		padding: 20px 15px 0;
	}
	.f-item-title{
		margin-top: 5px;
	}
	.footer-bottom{
		padding: 5px;
	}

}