*{
	margin: 0;
	padding: 0;
    font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

.header{
	min-height: 50vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.1), rgba(4,9,30,0.1)), url(../Images/Quote.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
	overflow: hidden
}

nav{
	background-color: rgb(255, 245, 245);
	position: fixed;
	width: 100%;
	line-height: 50px;
	z-index: 100;
}

nav ul{
	float: right;
	margin: 0;
	padding-right: 42px;
}

.logo{
	height: 48px;
	float: left;
	margin: 16px 18px;
}

nav.black{
	background: rgb(148, 171, 221);
}

.nav-links{
	flex: 1;
	text-align: right;
}

.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 16px 32px;
	position: relative;
}

.nav-links ul li a{
	color: black;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
}

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #940e05;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after{
	width: 100%;
} 

.titleBox{
    background-color: transparent;
	height: 40%;
	width: 70%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.titleBox h1{
	font-size: 61px;
	font-weight: 600;
	padding-top: 15%;
}

.titleBox h3{
	font-size: 30px;
	color: #fff;
	font-weight: 600;
	line-height: 22px;
	padding: 10px;
}

.titleBox hr{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
	border: 1px solid #940e05;
}

.heroBtn{
	display: inline-block;
	text-decoration: none;
	color: black;
	border: 1px solid black;
	padding: 12px 34px;
	font-size: 13px;
	background: white;
	position: relative;
	cursor: pointer;
}

.heroBtn:hover{
	border: 1px solid #940e05;
	background: #940e05;
	transition: 0.5s;
}

nav .fa{
	display: none;
}

h1{
	font-size: 36px;
	font-weight: 600;
	text-align: center;
}

h3{
	color: #777;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
	text-align: center;
}

hr{
    width: 10%;
    margin-left: auto;
    margin-right: auto;
	border: 1px solid #940e05;
}

 
.formStyle{
	width: 90%;
	margin: auto;
	align-items: center;
}

.contactCol{
	flex-basis: 50%;
	margin-bottom: 30px;
}
.contactCol div{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.contactCol div .fa{
	font-size: 28px;
	color: #f44336;
	margin: 10px;
	margin-right: 30px;
}

.contactCol div p{
	padding: 0;
}
.contactCol div h5{
	font-size: 20px;
	margin-bottom: 5px;
	font-weight: 400;
}

input, textarea{
	width: 80%;
	padding: 15px;
	margin-bottom: 17px;
	outline: none;
	border: 1px solid black;
}


.required:after {
    content:" *";
    color: red;
}


.contactCol button{
	float: right;
}

.contactUs h3{
	color: black;
}

/* -----Footer Section----- */

.footer{
	width: 100%;
	text-align: center;
	padding: 30px 0;
}

.icons .fa{
	color: #f44336;
	margin: 0 13px;
	cursor: pointer;
	padding: 18px 0;
}

.fa-copyright{
	color: #f44336;
}

 /* -----media query section----- */
 
@media(max-width: 700px){

	.titleBox{
		top: 40%;
	}
	.titleBox h1{
		font-size: 25px;
	}
	.titleBox h3{
		font-size: 12px;
	}
	hr{
		width: 64%;
	}
	.buttonBox{
		height: 4%;
		width: 46%;
		top: 70%;
		flex-direction: column;
	}
	
	.heroBtn{
		margin-top: 1.5%;
	}

	.nav-links ul li{
		display: block;
	}
	
	.nav-links{
		position: absolute;
		background: #c9bdbd;
		height: 100vh;
		width: 200px;
		top: -1000px;
		right: 0;
		text-align: left;
		z-index: 101;
		transition: 1s;
	}

	nav .fa{
		display: block;
		color: black;
		margin: 20px;
		font-size: 22px;
		cursor: pointer;
		text-align: right;
	}

	.nav-links ul{
		padding-top: 0;
		padding-right: px;
		padding-bottom: 0;
	}

	.nav-links ul li{
		padding: 0;
	}

}