/* reset */

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}body{font-family:Barlow,sans-serif}

/* body */

* {
	outline: none !important;
}

/* header */

.header {
	width: 100%;
	height: auto;
	padding-top: 30px;
	padding-bottom: 0;
	background: #0080C9;
}

.header:after {
	content: "";
	display: block;
	width: 100%;
	height: 45vw;
	margin-top: 0;
	margin-bottom: 0;
	background: url('../img/banner.jpg');
	background-position: center top;
	background-size: cover;
	opacity: 0.25;
}

.header-logo {
	width: 150px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.header-logo > img {
	width: 100%;
	height: auto;
	display: block;
}

.header-content {
	margin-top: 60px;
	margin-bottom: 0;
	line-height: 1.5;
	font-size: 15px;
	font-weight: 300;
	color: #FFFFFF;
	text-align: center;
}

.header-content a {
	color: #FFFFFF;
	text-decoration: underline;
}

/* main */

.main {
	width: 100%;
	height: auto;
	padding-top: 90px;
	padding-bottom: 90px;
	background: #b5b9bc;
}

.main-title {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.25;
	font-size: 25px;
	font-weight: 300;
	color: #1A1A1D;
	text-align: center;
}

.main-form {
	margin-top: 60px;
	margin-bottom: 0;
}

.main-field {
	margin-top: 15px;
	margin-bottom: 0;
}

.main-label {
	width: 100%;
	height: auto;
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1;
	font-size: 16px;
	font-weight: 300;
	color: #1A1A1D;
}

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	height: 40px;
	border: 2px solid #FFFFFF;
	margin-top: 15px;
	margin-bottom: 0;
	padding: 7.5px;
	background: #FFFFFF;
	border-radius: 10px;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

textarea {
	height: 80px;
}

input[type="submit"] {
	width: 100%;
	height: 40px;
	border: 2px solid #0080C9;
	background: #0080C9;
	border-radius: 10px;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	line-height: 1;
	font-size: 18px;
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
}

input[type="submit"]:hover {
	border: 2px solid #FFFFFF;
	background: #FFFFFF;
	color: #0080C9;
}

.main-confirmation {
	display: none;
	margin-top: 60px;
	margin-bottom: 0;
	text-align: center;
}

.main-confirmation p {
	line-height: 1;
	font-size: 18px;
	font-weight: 300;
	color: #1A1A1D;
}

/* footer */

.footer {
	width: 100%;
	height: auto;
	padding-top: 45px;
	padding-bottom: 45px;
	background: #1A1A1D;
}

.footer-flex {
	margin-top: 30px;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.footer-flex:nth-child(1) {
	margin-top: 0;
}

.footer-title {
	margin-top: 0;
	margin-bottom: 5px;
	line-height: 1;
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
	text-transform: uppercase;
}

.footer-content {
	margin-top: auto;
	margin-bottom: 0;
}

.footer-content p {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 2;
	font-size: 14px;
	font-weight: 300;
	color: #FFFFFF;
}

.footer-marker:before,
.footer-telephone:before,
.footer-email:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
	margin-left: 0;
	margin-right: 15px;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
}

.footer-marker:before {
	background: url('../img/marker.svg');
}

.footer-telephone:before {
	background: url('../img/telephone.svg');
}

.footer-email:before {
	background: url('../img/email.svg');
}

.footer-content a {
	line-height: 1;
	font-size: 14px;
	font-weight: 300;
	color: #FFFFFF;
	text-decoration: underline;
}

.footer-content a:hover {
	color: #0080C9;
}

/* media queries */

@media screen and (min-width: 768px) {
	
	.header-logo {
		width: 200px;
	}
	
	.header-content {
		font-size: 20px;
	}
	
	.main-title {
		font-size: 35px;
	}
	
	.footer-flex:nth-child(2) {
		margin-top: 0;
	}
}

@media screen and (min-width: 992px) {
	
	.header-logo {
		width: 250px;
	}
	
	.header-content {
		font-size: 25px;
	}
	
	.main-title {
		font-size: 45px;
	}
	
	.footer-flex:nth-child(3),
	.footer-flex:nth-child(4) {
		margin-top: 0;
	}
}