html{
	scroll-behavior: smooth;
}
*{
	margin : 0;
	padding : 0;
	font-family: 'Poppins', sans-serif;
}
.header{
	min-height: 100vh;
	width: 100%;
	/*background-image: linear-gradient(rgba(100,120,170,0.4),rgba(4,9,30,0.9)),url(images/backg.jpg);*/
	background-image: linear-gradient(rgba(20,90,108,0.4),rgba(4,9,30,0.6)),url(images/backgBrightSmall.jpg);
	background-position: center;
	background-size: cover;
	position: relative;

}
nav{
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}

nav img{/*logo*/
	width: 600px;

}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: :none ;
	display: inline-block;
	padding: 8px 9px;
	position: relative;
}
.nav-links ul li a{
	/*1227df*/
	/*8D98F3*/
	color: #ffffff;
	text-decoration: none;
	font-size: 20px;

}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 4px;
	background: #e31d00;
	display: block;
	margin: auto;
	transition: 0.7s;
}
.nav-links ul li:hover::after{
	width: 100%;

}

.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 62px;
}
.text-box p{
	margin: 10px 0 40px;
	font-size: 16px;
	color: #fff;
}
.scrlBtn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 12px;
	background: transparent;
	position: relative;
	cursor: pointer;

}
.scrlBtn:hover{
	border: 1px solid #e31d00;
	background: #e31d00;
	transition: 1s;
	position: relative;

}
nav .fa{
	display: none;
}
@media(max-width: 1400px){
	.nav-links ul li{
		display: block;


	}
	.nav-links{
		display: none;
		position: absolute;
		background: #df3339;
		height:100vh;
		width: 0px;
		top: 0;
		right: 0;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .fa{
		display: block;
		color: #ffffff;
		cursor: pointer;
		margin: 10px;
		font-size: 20px;
		position: relative;
	}
	.nav-links ul{
		padding: 30px;
	}
}

@media(max-width: 800px){
	.text-box h1{
	font-size: 20px;
	}
	.nav-links ul li{
		display: block;


	}
	.nav-links{
		display: none;
		position: absolute;
		background: #df3339;
		height:100vh;
		width: 0px;
		top: 0;
		right: 0;
		text-align: left;
		z-index: 1;
		transition: 1s;
	}
	nav img{
		width: 290px;
	}
	nav .fa{
		display: block;
		color: #ffffff;
		cursor: pointer;
		margin: 10px;
		font-size: 20px;
		position: relative;
	}
	.nav-links ul{
		padding: 30px;
	}
}
@media(max-width: 320px){
	nav img{
		width: 220px;
	}
}

/* info  section */

.info{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;	
}
h1{
	font-size: 32px;
	font-weight: 700;
}

.row{
	margin-top: 8%;
	display: flex;
	justify-content: space-between;

}
.infoCol{
	flex-basis: 40%;
	background: #E1E1E1;
	border-radius: 9px;
	margin-bottom: 4%;
	padding: 20px 33px;
	box-sizing: border-box;
	transition: 1s;
}
.infoCol:hover{
	box-shadow: 0 0 8px 0px rgba(0,0,0,0.08);
}
.infoCol ul{
	list-style: none;
	padding: 0;
}
.infoCol li{
	text-align: left;
	padding-left: 0; 
}
.infoCol li:before{
	content: "\2714";
	display: inline-block;
	margin-left: -20px;
	margin-right: 9px;
}
@media (max-width: 800px){
	.row{
		flex-direction: column;
	}
}

.profile{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 9%;
}

.colProfile{
	flex-basis: 40%;
	border-radius: 9px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	transition: 1s;
}
.colProfile img{
	width: 80%;
	height: 80%;
	border-radius: 9px;
	overflow: hidden;
}
.layer{
	background: rgba(0 , 0 , 0 , 0.0);
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 1s;
}
.layer:hover{
	background: rgba(0 , 0 , 0 , 0.7);
}
.layer h3 {
	width: 80%;
	font-weight: 400;
	color: #000000;
	font-size: 24px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	opacity: 1;
	transition: 1s;
}
.layer:hover h3{
	color: #ffffff;
	bottom: 49%;
	opacity: 1;
}
.textNormal{
	width: 92%;
	position: absolute;
	right: 20px;
	text-align: left;
}
.textNormal p{
	font-size: 16px;
}

.product{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 600px;	
}


.row{
	margin-top: 8%;
	display: flex;
	justify-content: space-between;

}
.productCol{
	flex-basis: 42%;
	background: #E1E1E1;
	border-radius: 9px;
	margin-bottom: 7%;
	padding: 20px 33px;
	box-sizing: border-box;
	transition: 1s;
}
.productCol:hover{
	box-shadow: 0 0 8px 0px rgba(0,0,0,0.08);
}
.productCol ul{
	list-style: none;
	padding: 0;
}
.productCol li{
	text-align: left;
	padding-left: 0; 
	padding-top: 8px;
	font-size: 17px;
}
.productCol li:before{
	content: "\2714";
	display: inline-block;
	margin-left: -20px;
	margin-right: 9px;
}

@media (max-width: 800px){
	.product{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 990px;	
}
	.row{
		flex-direction: column;
	}
}



h2{
	text-align: center;
	font-size: 22px;
}

/*services*/

.services{
	width: 80%;
	margin: auto;
	text-align: center;
	padding: 100px;
}
.services p{
	text-align: left;
	padding-top: 100px;
	padding-left: 0px;
}
.services h2{
	text-align: left;
	padding-top: 80px;
	padding-left: 0px;
}
.services li{
	padding-top: 20px;
	text-align: left;
	font-size: 20px;
}
.services ul{
	list-style: none;
	padding: 0;
}
.services li:before{
	content: "\2714";
	display: inline-block;
	margin-left: -20px;
	margin-right: 9px;
	}


.boldLine hr{
	height: 2px;
	background: #e31d00;
	width: 15%;
	position: relative;
	bottom: -4px;
}

.customers {
	text-align: center;
	width: 80%;
	margin: auto;
	padding: 100px;

}

.contact{
	text-align: center;
	width: 80%;
	margin: auto;
	padding: 100px;
}

.contact h2{
	padding-top: 90px;
	text-align: left;
}
.contact p{
	padding-top: 15px;
	text-align: left;
}
/*footer*/
.footer{
	background: #3b3b3b;
	width: 100%;
	text-align: center;
	padding: 28px 0;
	margin: auto;

}
.footer p{
	color:#c2c2c2;
}
.footer h4{
	color: #e4e4e4;
	margin-bottom: 28px;
	margin-top: 22px; 
}
.footer hr{
	margin: auto;
	width: 70%;
	background: #9B9B9B;
}
.fhr hr{
	height: 2px;
	background: #e31d00;
	width: 15%;
	position: relative;
	bottom: 4px;
}