@charset "UTF-8";
/* CSS Document */
html, body, p, li, h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
	color: #063b5a;
	line-height: 1.5em;
}
body {
	background-image: url("../images/jenny-hill-mQVWb7kUoOE-unsplash.jpg");
	background-color: #65739c;
	background-blend-mode: multiply;
	background-size: 150%;
	background-position: 25% 25%;
	background-repeat: no-repeat;
}
.h1, .h2, .h3, .h4, h1, h2, h3, h4, h5, h6 {
    margin-top: 0em;
}
.h1, h1 {
    font-size: 1.75rem;
    line-height: 1em;
	margin-bottom: 0;
	font-weight: 600;
	color: #fff !important;
}
.h2, h2 {
	font-size: 1.5625rem;
    line-height: 1.4em;
	font-weight: bold;
}
.h3, h3 {
    font-size: 1.125rem;
    line-height: 1.5em;
	font-weight: bold;
	color: #fff;
	display: block;
	background: #51b8b8;
	padding: 1% 5%;
	text-transform: uppercase;
}
.h4, h4 {
    font-size: 1.0625rem;
    line-height: 1.5em;
	font-weight: bold;
	color: #51b8b8;
	margin-bottom: 1rem;
}
.h5, h5 {
    font-size: .75rem;
    font-weight: 500;
    margin-bottom: 15px;
	font-style: italic;
}
a {
	color: #fff;
	font-weight: 700;
}
a:hover {
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0,0,0,1);
	text-decoration: none;
}

ul {
	list-style: none; 
	counter-reset: li;
	text-align: left;
}
ul li::before {
	content: counter(li); 
	display: inline-block; 
	margin: .5em .25em 0 -1em;
	padding-right: .15em;
	font-weight: bold;
}
ul li {
	counter-increment: li;
}
.clear {
	clear: both;
}
.btn {
	background: rgb(255,195,96);
	background: linear-gradient(90deg, rgba(255,195,96,1) 0%, rgba(255,138,58,1) 70%);
	color: #fff;
	font-weight: 900;
}

.main-wrap {
	width: 100%;
	height: 100%;
	padding: 75px;
}

.main-header {
	margin-bottom: 40px;
}
.main-header img:first-child {
	width: 20%;
}
.main-header img:last-child {
	width: 40%;
}
.container {
	margin: 0 auto;
    width: 1300px;
	display: block;
}
.main-area {
	width: 85%;
	background: rgba(255,255,255,0.75);
	padding: 25px 50px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	text-align: center;
}
.foot-note {
	margin-top: 50px;
}





/* Media Queries */
@media only screen and (max-width: 1200px) {
	.container {
		max-width: 100%;
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 1000px) {
	body {
		background-size: 200%;
	}
	.main-header img:first-child {
		width: 35%;
	}
	.main-header img:last-child {
		width: 65%;
	}
}
@media only screen and (max-width: 800px) {
	body {
		background-size: auto;
		background-position: 55% 50%;
	}
}
@media only screen and (max-width: 600px) {
	body {
		background-position: 57% 50%;
	}
	.main-wrap {
		padding: 75px 25px;
	}
	.main-header img:first-child {
		width: 50%;
	}
	.main-header img:last-child {
		width: 85%;
	}
}