* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'bigsexy';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/BigSexySansRegular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
	font-family: 'icons';
	src: url('fonts/icons/icons.eot?2ppk1h');
	src: url('fonts/icons/icons.eot?2ppk1h#iefix') format('embedded-opentype'),
	url('fonts/icons/icons.ttf?2ppk1h') format('truetype'),
	url('fonts/icons/icons.woff?2ppk1h') format('woff'),
	url('fonts/icons/icons.svg?2ppk1h#icons') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icons' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-button-down:before {
	content: "\e909";
}

.icon-facebook:before {
	content: "\e90a";
}

.icon-instagram:before {
	content: "\e90b";
}

.icon-linkedin:before {
	content: "\e90c";
}

.icon-arrow-right-circle:before {
	content: "\e900";
}

.icon-arrow-right:before {
	content: "\e901";
}


html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 100%;
	overflow-x: hidden;
}

html, body {
	background: #deaed1;
}

body {
	color: #e63421;
	font-size: 25px;
	line-height: 1.3;
	font-family: 'bigsexy', sans-serif;
}

a {
	color: #e63421;
	text-decoration: none;
}

.l-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
	text-align: left;
}

.logo {
	width: 100%;
	height: auto;
	vertical-align: top;
	margin-bottom: 50px;
}

p {
	margin-bottom: 20px;
}

.intro {
	margin-bottom: 50px;
}

@media screen and (min-width: 1024px) {
	body {
		font-size: 35px;
	}

	.l-wrapper {
		padding-top: 100px;
	}

	.intro {
		margin-bottom: 75px;
	}
}