@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Nunito&family=Nunito+Sans&family=Poppins:wght@400;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

a {
	text-decoration: none;
}

p {
	line-height: 1.5em;
}
/*================================*/
.container_wrapper {
	width: 100%;
}
.wrapper {
	display: block;
	max-width: 960px;
	margin: 0 auto;
}
/*---------------------------------*/
.header_bg {
	width: 100%;
	background: url(img/head_bg.png) no-repeat;
	background-size: cover;
}
.logo {
	width: 100%;
	border-bottom: 1px solid #dad5d5;
	display: block;
	padding: 15px 0px;
}
.logo .inner_logo {
	display: block;
	width: 960px;
	margin: 0 auto;
	overflow: hidden;
}
.inner_logo .brand {
	display: inline-block;
	overflow: hidden;
	float: left;
	cursor: pointer;
}
.inner_logo .brand img {
	float: left;
	margin-right: 10px;
}
.inner_logo .brand h2 {
	float: left;
	color: white;
}
/*--------------------------------*/
.inner_logo .call {
	display: inline-block;
	float: right;
	overflow: hidden;
	padding-right: 10px;
}
.inner_logo .call img {
	float: left;
	margin-right: 10px;
}
.inner_logo .call h3 {
	float: left;
	position: relative;
	color: white;
	padding-top: 7px;
	cursor: pointer;
}
.inner_logo .call h3:before {
	content: 'Call us now';
	color: white;
	font-size: 12px;
	font-weight: 400;
	position: absolute;
	left: 0;
	top: -4px;
}
/*=================================*/
header {
	display: block;
	height: 600px;
	position: relative;
}
header .register {
	width: 50%;
	float: right;
	padding: 30px 0px;
	overflow: hidden;
	height: 100%;
	position: absolute;
	right: 0;
	bottom: -50px;
}
header .register p {
	color: white;
	font-size: 30px;
}
header .reg_form {
	width: 350px;
	background-color: #001D8A;
	margin-top: 30px;
	padding: 25px;
	padding-bottom: 2px;
}
header .reg_form h3 {
	color: white;
	font-size: 24px;
	font-weight: 400;
}
header .reg_form p {
	color: white;
	font-size: 12px;
	font-weight: 400;
	margin: 7px 0px;
	margin-bottom: 20px;
}
header .reg_form input[type=name],
header .reg_form input[type=email],
header .reg_form input[type=number] {
	height: 35px;
	border: 1px solid #f9f9f9;
	padding-left: 8px;
	margin-bottom: 6px;
	border-radius: 2px;
}
header .reg_form input[type=name] {
	display: block;
	width: 100%;
}
header .reg_form input[type=email],
header .reg_form input[type=number] {
	width: 49%;
	float: left;
	margin-right: 2%;
}
header .reg_form input[type=number] {
	margin-right: 0%;
}
header .reg_form textarea {
	display: block;
	width: 100%;
	padding: 7px 0px 0px 7px;
	margin-bottom: 10px;
}
header .reg_form input[type=submit] {
	display: inline-block;
	padding: 10px 30px;
	background-color: #ECD407;
	border: none;
	border-radius: 5px;
	font-weight: 700;
	cursor: pointer;
}
header .reg_form input[type=submit]:hover {
	transition: 0.3s all;
	background-color: #CFBB11;
}
header .reg_form .small {
	clear: both;
	margin-top: 10px;
}
/*======================================*/
.history_bg {
	background: url(img/history_bg.png) no-repeat;
	background-size: cover;
}
.history {
	display: block;
	padding: 80px 0px;
	overflow: hidden;
	text-align: center;
}
.single_history {
	width: 25%;
	float: left;
	padding: 30px 0px;
}
.single_history h2 {
	font-size: 28px;
	color: #889eba;
}
hr.yellow {
	border-color: yellow;
	width: 40px;
	margin: 25px auto;
}
.single_history p {
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
}
/*====================================*/
.review_bg {
	background: url(img/review_bg.png) no-repeat;
	background-size: cover;
}
.review_wrapper {
	display: block;
	overflow: hidden;
	padding: 40px 0px;
	text-align: center;
}
.review_wrapper h3 {
	font-size: 30px;
	margin: 20px auto;
	color: #001d8a;
	font-weight: 400;
}
.review_wrapper img {
	display: block;
	margin: 20px auto;
}
.review_wrapper p {
	font-size: 17px;
	width: 80%;
	margin: 0 auto;
	color: #2f2f2f;
}
/*=================================*/
.footer_top_bg {
	background-color: #001C84;
}
.footer_top {
	display: block;
	overflow: hidden;
	padding: 30px 0px;
	text-align: center;
	color: white;
}
.footer_top .divide .col {
	width: 50%;
	float: left;
	overflow: hidden;
	padding: 20px 0px;
}
.footer_top .col:first-of-type .img {
	border-right: 1px solid white;
}
.footer_top > p {
	font-size: 14px;
	font-style: italic;
	font-weight: 300;
	padding: 20px 0px;
	clear: both;
}
/*===================================*/
.footer_bg {
	background-color: #07195C;
}
footer {
	overflow: hidden;
	padding: 15px 0px;
	text-align: center;
	color: white;
	font-style: italic;
	font-weight: 300;
}
footer a {
	color: white;
	text-decoration: underline;
}

/*======== Meda queries ========*/

/*-------- 768px -------*/
@media screen and (max-width: 768px) {
	.logo .inner_logo {
		width: 100%;
		padding-left: 10px;
	}
	header .register p {
		font-size: 24px;
	}
	.footer_top > p {
		padding: 20px 10px;
	}
}

/*---------- 567px ----------*/
@media screen and (max-width: 567px) {
	header .register {
		width: 72%;
		left: 20%;
		top: 0;
		right: unset;
		padding-top: 15px;
	}
	header .register p {
		font-size: 24px;
	}
	header .reg_form h3, header .reg_form p {
		font-size: 20px;
	}
	header .reg_form .small {
		font-size: 20px;
	}
	/*----------------------*/
	.history {
		padding: 20px 0px;
	}
	.history .single_history {
		width: 50%;
		margin: 0 auto;
		float: none;
	}
	hr.yellow {
		margin: 15px auto;
	}
	header .reg_form {
		width: 100%;
		margin-top: 15px;
	}
}

/*---------- 480px ----------*/
@media screen and (max-width: 480px) {
	header .register {
		width: 72%;
		left: 15%;
		top: 0;
		right: unset;
		padding-top: 15px;
	}
	header .register p {
		font-size: 20px;
		text-align: center;
	}
	header .reg_form h3, header .reg_form p {
		font-size: 17px;
	}
	header .reg_form .small {
		font-size: 17px;
	}
}

/*---------- 320px ----------*/
@media screen and (max-width: 320px) {
	header .register {
		width: 90%;
		left: 5%;
		top: 0;
		right: unset;
		padding-top: 15px;
	}
	header .register p {
		font-size: 17px;
		text-align: center;
	}
	header .reg_form h3, header .reg_form p {
		font-size: 14px;
	}
	.inner_logo .call {
		font-size: 11px;
		padding-top: 5px;
	}
	.inner_logo .call img {
		width: 20px;
		height: 20px;
	}
}