@font-face {
	font-family: 'headline';
	src: url('../fonts/headline.woff2') format('woff2'), url('../fonts/headline.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'bold';
	src: url('../fonts/bold.woff2') format('woff2'), url('../fonts/bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'regular';src: url('../fonts/regular.woff2') format('woff2'), url('../fonts/regular.woff') format('woff');font-weight: normal;font-style: normal;
}

html {
	-webkit-text-size-adjust: 100%;
	height: 100%;
	padding: 0;
}

html, body {
	margin: 0;
	line-height: 1.2em;
}

body {
	min-height: 100%;
	box-sizing: border-box;
	position: relative;
	font-family: "regular", Helvetica, arial, sans-serif;
	background-color: #F4A9BE;
	color: #0056A4;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

strong {
	font-family: "bold", Helvetica, arial, sans-serif;
	font-weight: bold;
}

a {
	color: #0056A4;
	text-decoration: none;
	display: block;
	margin: 5px auto;
	font-size: 18px;
	text-align: center;
	transition: all .25s ease;
}

a:hover, a:focus {
	text-decoration: underline;
}

h1 {
	font-family: "headline", Helvetica, arial, sans-serif;
	font-size: 65px;
	font-weight: 400;
	line-height: 112px;
	margin: 0;
}

h2 {
	font-size: 22px;
	line-height: 47px;
	margin-top: 0;
}

main {
	width: 100%;
	min-height: 450px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

main section {
	width: 48%;
	height: 100%;
	box-sizing: border-box;
	display: block;
	float: left;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 5% auto;
	position: relative;
}

.logo-wrapper {
	max-height: 450px;
	max-width: 356px;
	overflow: hidden;
	box-sizing: border-box;
}

.logo-wrapper .logo {
	height: 100%;
	max-width: 100%;
}

.socials {
	margin-bottom: 45px;
}

.socials h3 {
	display: inline-block;
	margin: 0 5px;
}

.socials a:before {
	content: ' ';
	display: block;
	width: 48px;
	height: 48px;
}

.socials a.fb:before {
	content: url(../img/facebook.svg);
}

.socials a.insta:before {
	content: url(../img/insta.svg);
}

.socials a.bnb:before {
	content: url(../img/airbnb.svg);
}

.copyright a.sas:before {
	content: url(../img/sas-communication.svg);
	display: inline-block;
	width: 115px;
	height: 20px;
}

@media screen and (max-width: 979px) {
	main section {
		width: 96%;
	}

	h1 {
		font-size: 40px;
		line-height: 56px;
	}

	h2 {
		font-size: 33px;
		line-height: 23px;
	}
}

@media screen and (min-width: 980px) {
	main section:first-of-type:after {
		content: ' ';
		display: block;
		height: 200%;
		width: 2px;
		background-color: #0056A4;
		position: absolute;
		right: -2.5%;
		top: -44%;
	}

	.text-wrapper {
		padding: 0 5%;
	}
}