@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Lato', sans-serif;
	scroll-behavior: smooth;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

/*main wrapper styling*/
.main-wrapper {
	position: relative;
	width: 100%;
	min-height: 100%;
	background: url('images/main-bg.jpeg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}

/* .section{
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
} */
body {
	background-color: #fdfdfd;
}

.header {
	position: sticky;
	top: 0;
	padding: 0px 20px;
	height: auto;
	width: 100%;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fdfdfd;
	transition: 0.2s ease-in-out;
}

.header.sticky {
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

.header img.sticky {
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

.header>div {
	display: flex;
	align-items: center;
}

.header img {
	width: 100px;
	align-self: flex-start;
	/* margin-top: 30px; */
}

.main-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px 15px;
	padding-top: 0px;
	position: sticky;
	top: 0;
	margin-bottom: 20px;
	width: 100%;
}

.main-header .logo-wrapper {
	margin-left: 25px;
}

.para {
	font-size: 16px;
	font-weight: 400;
	color: #303030;
	margin-bottom: 25px;
	margin-top: 0;
}
.sub-head{
	font-size: 24px !important;
	color: #1f1f1f;
	margin-top: 5px;
}
.head {
	font-size: 32px;
	color: #1f1f1f;
	margin-bottom: 20px;
}

.text-wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 20px 25px;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(5px) !important;
	-webkit-backdrop-filter: blur(3px);
	-moz-backdrop-filter: blur(3px);
}

.head span {
	color: #2aa7eb !important;
}

.bottom-strip {
	width: 100%;
	padding: 0px 0px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.bottom-strip p span {
	color: #2aa7eb;
	font-weight: 700;
	display: block;
}

.bottom-strip p {
	border-right: 1px solid rgba(32, 32, 32, 0.3);
}

.bottom-strip p:last-child {
	border-right: none;
}

.cta-strip {
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-cta {
	padding: 15px 45px;
	color: white;
	margin-top: 25px;
	margin-bottom: 65px;
	text-align: center;
	border-radius: 8px;
	background: #4f2222;
	font-weight: 500;
	font-size: 16px;
	outline: none;
	border: none;
	cursor: pointer;
}

.bottom-strip p {
	flex: 1;
	margin: 15px 15px;
	min-width: 250px;
	max-width: 450px;
}

@media(max-width: 720px) {
	.bottom-strip p {
		margin-top: 10px;
		margin-left: 0;
	}
	.hero{
		max-height: 250px !important;
	}
	.head {
		font-size: 24px;
	}

	.para {
		font-size: 14px;
	}

	.main-header .logo-wrapper {
		width: 80px;
		margin-left: 0px;
	}

	.logo-wrapper img {
		width: 100%;
	}

	.nav-head {
		display: none;
	}

	.header {
		height: auto;
	}

	.nav-list {
		padding-bottom: 25px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.nav-list li a {
		display: inline-block;
		margin: 5px 0px !important;
	}

	.header img {
		margin-top: 0;
		margin-left: -20px;
	}
	.sub-head{
		font-size: 18px !important;
	}

	/* .header{
		padding-left: 0px;
	} */
	.bottom-strip {
		padding: 10px 10px;
		padding-left: 0;
	}
	.pt-mob-50{
		padding-top: 50px !important;
	}
	.bottom-strip p {
		margin-top: 3px;
		margin-bottom: 10px;
		border: none;
	}

	.bottom-strip .email {
		margin-top: 8px;
		margin-bottom: 5px;
	}

	.btn-cta {
		margin-top: 0px !important;
		margin-bottom: 200px;
	}

	.text-wrapper {
		padding: 10px;
		margin-top: 25px;
		margin-bottom: 25px;
	}

	.popup-footer .copy {
		font-size: 12px;
	}
}

.bottom-strip .email a {
	color: #4f2222;
}

.bottom-strip .email a:hover {
	text-decoration: underline;
}

.bottom-strip .email {
	margin: 15px 15px;
	margin-left: 0;
}

.popup {
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	overflow-y: auto;
}

.popup-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.popup-dialog {
	background: white;
	width: 95%;
	max-width: 600px;
	border-radius: 12px;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 20px;
}

.popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.popup-header span,
.popup-header h1 {
	margin: 0;
}

.popup-header span i {
	font-size: 20px;
	margin-right: 15px;
}

.popup-header span {
	cursor: pointer;
}

.popup-body {
	padding: 18px 15px;
}

.popup-body p:last-child {
	margin-bottom: 0;
}

.popup.active {
	display: block;
}

.popup-footer {
	padding: 24px 15px;
	border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.copy {
	font-size: 14px;
	color: white;
	font-weight: 500;
	padding: 15px 15px;
	background-color: #2aa7eb;
}

.nav-head {
	color: #2aa7eb;
	margin: 0;
	margin-left: 20px;
	padding: 0;
	font-size: 22px;
	text-transform: uppercase;
}

.nav-list {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.nav-list li {
	margin: 0px 0px;
	cursor: pointer;
}

.nav-list li a {
	color: #202020;
	padding: 8px 20px;
	margin: 0;
	transition: 0.1s ease-in-out;
	font-size: 14px;
}

.nav-list li:hover a {
	background: #2aa7eb;
	border-radius: 3px;
	color: white;
}

.nav-list li.nav-item a.active-li {
	background: #2aa7eb;
	border-radius: 3px;
	color: white;
}

.p-0 {
	padding: 0 !important;
}

.container {
	max-width: 1100px;
	width: 100%;
	padding: 0px 0.3em;
	margin: 0 auto;
}

.hero {
	width: 100%;
	height: 60vh;
	background: url('images/main-bg.jpeg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	max-height: 500px;
}

.hero:after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(42, 167, 235, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	mix-blend-mode: screen;
}

.sec-content {
	padding: 45px 15px;
}

hr {
	background-color: #202020;
	opacity: 0.3;
	height: 1px;
	margin: 15px auto;
}

.text-center {
	text-align: center !important;
}
