*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}
.header{
	min-height: 60vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/banner.jpeg);
	background-position: center;
	background-size: cover;
	position: relative;
}
nav{
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img{
	padding: 2%;
	max-width: 130px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height:2px;
	background: #fff432;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.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: 36px;
}
.text-box p{
	margin: 10px 0 40px;
	font-size: 16px;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn:hover{
	border: 1px solid #f33534;
	background: #f33534;
	transition: 1s;
}
nav .fa{
	display: none;
}
.service{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 10px;
	}
h1{
		margin-bottom: 20px;
		font-size: 36px;
		font-weight: 600;
	}
p{
	color: #777;
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
	}

.row{
	margin-top: 2%;
	display: flex;
	padding: 1px;
	justify-content:space-between;
}
.service-col{
	flex-basis: 22%;
	background: #fff3f3;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px 100px 20px;
	box-sizing:border-box ;
	transition: 0.5s;
}
.service-col img{
	display: block;
	height: 100%;
	max-width: 200px;
	border-radius: 30px;
	padding: 20px 12px;
}

h3{
	text-align: center;
	font-weight: 600;
	
}
.service-col: hover{
	box-shadow:0 0 20px 0px rgba(0,0,0,0.2);	
}
.footer{
	min-height: 50vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.5));
	background-position: center;
	background-size: cover;
	position: relative;
}
 .footer .nav-links{
	flex: 1;
	text-align: center;
	font-weight: 800;

}
.footer p{
	text-align: center;
	color: #fff;
	padding: 5px;
}

/*----------------about us page-----------------*/
.sub-header{
	height: 50vh;
	width: 100%;
	background-image:linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)),url(images/remodel.jpg);
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #fff;
}

.sub-header h1{
	margin-top: 100px;
}
.about-us{
	width: 80%;
	margin: auto;
	padding-top: 80px;
	padding-bottom: 50px;
}
.about-col{
	flex-basis: 48%;
	padding: 30px 2px;
}
.about-col h1{
	padding: 0;
}
.about-col p{
	padding: 15px 0 25px;
}
.red-btn{
	border: 1px solid #f44336;
	background: transparent;
	color: #f44336;
}
.red-btn:hover{
	color: #fff;
}
.about-col img{
	width: 100%;

}


/*-----------------------------contact page---------------------------------*/
.location {
	width: 100%;
	margin: auto;
}

iframe {
	width: 80%;
	padding: 20px;
}


.contact-col {
	flex-basis: 48%;
	margin: auto;
}

.contact-col div {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.contact-col div .fa {
	font-size: 28px;
	color: #ff523b;
	margin: 10px 30px;
	
}

.contact-col div p {
	padding: 0;
}

.contact-col div h5 {
	font-size: 20px;
	margin-bottom: 5px;
	color: #555;
	font-weight: 400;
}


/*-----------------------------project page---------------------------------*/

.project-col{
	display: block;
	padding: 10px 20px;
	margin: 5%;
}
.project-col h1{
	text-align: center;
	margin-bottom: 10px;
}






/*---------------media query for less than 700 screen size------------*/
@media (max-width: 700px) {
	nav img{
	padding: 2%;
	margin-top: 15%;
	max-width: 100px;
}
	.text-box h1{
	font-size: 20px;
	}
	.nav-links ul li{
		display: block;
	}
	.nav-links{
		position: absolute;
		background: #134fff;
		height: 30vh;
		width: 200px;
		top: 0;
		right:-200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .fa{
		display: block;
		color: #fff;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.row{
		flex-direction: column;
	}
	.service-col{
	padding: 10px 2px 10px 2px;
	
}
	.service-col img{
		margin: auto;
		max-height:200px ;
	}
	

	.footer .nav-links{
		margin-top:20%;
		position: absolute;
		background: transparent;
		height: 60vh;
		width: 100%;
		top: 30;
		right:0px;
		text-align: center;
		z-index: 2;
		transition: 1s;
	}
	.footer .nav-links ul li{
		margin:5px 0px;
		list-style: none;
		display: inline-block;
		padding: 4px 6px;
		position: relative;
	
}
	.footer p{
		font-size: 10px;

	}
}