* {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}



.header {
	min-height: 100vh;
	width: 100%;
	background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(banner.png);
	background-position: center;
	background-size: cover;
	position: relative;

}

nav {
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}

nav img {
	width: 350px;

}

.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: 24px;
}

.nav-links ul li::after {
	content: '';
	width: 0%;
	height: 2px;
	background: #156bac;
	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: 62px;
}

.text-box p {
	margin: 10px 0 40px;
	font-size: 20px;
	color: #fff;
}

.hero-btn {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 2px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}

.hero-btn:hover {
	border: 3px solid #ff890e;
	background: #156bac;
	transition: 0.5s;
	font-size: 15px;
}

.orange-btn {
	border: 3px solid #ff890e;
	background: transparent;
	color: #ff890e;
}

nav .fa {
	display: none;
}


/*---- Benefits Section ---*/


.benefits {
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

h1 {
	font-size: 36px;
	font-weight: 600;
}

p {
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}

.row {
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}

.benefits-col {
	flex-basis: 31%;
	background: #156bac;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}

h3 {
	color: #fff;
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}

.benefits-col:hover {
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.7);

}

.tagline {
	font-size: 24px;
	color: #5b5b5b;
	width: 80%;
	margin: auto;
	text-align: center;
	line-height: 32px;
}










/*---- Service Section ---*/


.service {
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
}

.service-col {
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.service-col img {
	width: 100%;
	display: block;
}

.layer {
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
}

.layer:hover {
	background: rgba(0,0,77,0.5);
}

.layer h3 {
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 26px;
	bottom: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%);
	position: absolute;
	opacity: 0;
	transition: 0.5s;
}

.layer:hover h3 {
	bottom: 59%;
	opacity: 1;
}

.layer p {
	width: 90%;
	font-weight: 200;
	color: #fff;
	font-size: 18px;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	position: absolute;
	opacity: 0;
	transition: 0.7s;
}

.layer:hover p {
	bottom: 49%;
	opacity: 1;
}




/*---- Slider Section ---*/


.projects {
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}


.slider {
	box-sizing: border-box;
	height: 100vh;
	width: 80%;
	margin: auto;
	padding-top: 50px;
	position: relative;
}

@keyframes fade {
	0% {
		opacity: 1;
	}

	20% {
		opacity: 0;
	}

	40% {
		opacity: 0;
	}

	60% {
		opacity: 0;
	}

	80% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	animation: fade 25s linear infinite alternate;
}

.slider img:nth-of-type(1) {
	animation-delay: 0s;
}

.slider img:nth-of-type(2) {
	animation-delay: 5s;
}

.slider img:nth-of-type(3) {
	animation-delay: 10s;
}

.slider img:nth-of-type(4) {
	animation-delay: 15s;
}

.slider img:nth-of-type(5) {
	animation-delay: 20s;
}






/*---- Testimonials Section ---*/


.testimonials {
	width: 80%;
	margin: auto;
	padding-top: 100px;
	text-align: center;
}


.testimonial-col {
	flex-basis: 44%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	background: #156bac;
	padding: 25px;
	cursor: pointer;
	display: flex;
}


.testimonial-col img {
	height: 40px;
	margin-left: 5px;
	margin-right: 30px;
	border-radius: 50%;
}

.testimonial-col p {
	padding: 0;
}

.testimonial-col h3 {
	margin-top: 15px;
	text-align: left;

}

.testimonial-col .fa {
	color: #ff890e;
}







/*---- CTA Section ---*/


.cta {
	margin: 100px auto;
	width: 80%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(banner_5.jpg);
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
}

.cta h1 {
	color: #fff;
	margin-bottom: 40px;
	padding: 0;
}




/*---- Footer Section ---*/


.about {
	width: 100%;
	text-align: center;
	padding: 30px 0;

}

.about h4 {
	margin-bottom: 25px;
	margin-top: 20px;
	font-weight: 600;
}



.bottom {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}

 

.footer {
	padding: 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	gap: 3rem;
	background: #1F2937;
	/* position: absolute; */
	left: 0;
	right: 0;
	bottom: 0;
}


.sec-1 img {
	width: 180px;
	height: auto;
}

.sec-1 p {
	max-width: 330px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	margin: 18px 0;
}


.footer-icon i {
	width: 40px;
	height: 40px;
	background: #101725;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 18px;
	border-radius: 50%;
	transition: all .42s;
}


.footer-icon i:hover {
	background: #156bac;
	transform: translateY(-5px);
}


.footer h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}


.footer li a {
	color: #DDD9D9;
	font-weight: 400;
	font-size: 16px;
	line-height: 38px;
	transition: all .42s;
	text-decoration: none;
}






/*---- About Us Page ---*/


.sub-header {
	height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(wh_lighting_1.jpg);
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #FFF;
}

.about-us {
	width: 80%;
	margin: auto;
	padding-top: 80px;
	padding-bottom: 50px;

}

.about-col {
	flex-basis: 48%;
	padding: 30px 2px;
	text-align: center;

}

.about-col img {
	width: 100%;
}


.about-col h1 {
	padding-top: 0;
}


.about-col p {
	padding: 15px 0 25px;
}

.about-col a {

}









.sub-header-service{
	height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(remodel.jpg);
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #FFF;
}






















/*---- Media Queries ---*/


@media(max-width: 700px) {
	.text-box h1 {
		font-size: 40px;
	}

	.nav-links ul li {
		display: block;
	}

	.nav-links {
		position: absolute;
		background: #156bac;
		height: 100vh;
		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;
	}

	.nav-links ul {
		padding: 40px;
	}

	.row {
		flex-direction: column;
	}

	.testimonial-col img {
	margin-left: 0px;
	margin-right: 15px;
	}

	.cta hi {
		font-size: 24px;
	}

	.layer h3 {
		padding-bottom: 20px;
	}

	.text-box h1 {
		padding-bottom: 30px;
	}

}























