/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */

/* #Font-Face
================================================== */
@font-face {
	font-family: 'Viking Squad';
	src: url('../fonts/VikingSquad.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Viking Squad';
	src: url('../fonts/VikingSquadItalic.woff2') format('woff2');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Viking Squad';
	src: url('../fonts/VikingSquadBold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Viking Squad';
	src: url('../fonts/VikingSquadBoldItalic.woff2') format('woff2');
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Viking Squad Condensed';
	src: url('../fonts/VikingSquadCondensedItalic.woff2') format('woff2');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Viking Squad Condensed';
	src: url('../fonts/VikingSquadCondensed.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}


/* #Site Styles
================================================== */
:root {
	--page-bg: #fff;
	--width-base: 1260px;
	--gutter-base: 20px;
	--gutter-top: 0;
	--gutter-right: var(--gutter-base);
	--gutter-bottom: var(--gutter-base);
	--gutter-left: var(--gutter-base);
	--gutter-side: 20px;
	--primary-color: #17b1e8;
	--secondary-color: #252525;
	--dark-color: #282828;
	--info-color: #0077b7;
	--white-color: #fff;
	--black-color: #000;
	--red-color: #ef0000;
	--light-color: rgba(224, 242, 254, 0.5);
	--input-height: 62px;
	--w-100: 100%;
	--h-100: 100%;
	--max-width: var(--width-base);
	--base-duration: 0.25s;
	--base-timing: ease-in-out;
	--link-decoration-base: none;
	--link-hover-decoration-base: underline;
	--font-family-base: 'Source Sans Pro', Arial, Helvetica, sans-serif;
	--font-size-base: 20px;
	--font-color-base: var(--secondary-color);
	--font-size-h1: 70px;
	--font-size-h2: 50px;
	--font-size-h3: 35px;
	--font-size-h4: 25px;
	--font-size-h5: 18px;
	--font-size-h6: 16px;
	--line-height-base: 1.5;
	--heading-margin: 0 0 20px 0;
	--heading-font-family: 'Viking Squad', sans-serif;
	--heading-font-weight: 400;
	--heading-line-height: .8;
	--heading-color: inherit;
}


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

html,
body {
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--font-color-base);
}

body {
	background: var(--page-bg);
}

select,
textarea,
input:not([type=radio]),
input:not([type=checkbox]),
input:not([type=button]),
input:not([type=submit]) {
	padding: 10px 25px;
	width: var(--w-100);
	height: var(--input-height);
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	color: var(--dark-color);
	border: 1px solid var(--light-color);
	border-radius: 0;
	background-color: var(--white-color);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	border: 0;
}

ul,
li {
	list-style: none;
}

a {
	display: inline-block;
	text-decoration: none;
}

p {
	margin-bottom: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	margin: var(--heading-margin);
	font-family: var(--heading-font-family);
	line-height: var(--heading-line-height);
	color: var(--dark-color);
}

h1 {
	font-size: var(--font-size-h1);
}

h2 {
	font-size: var(--font-size-h2);
}

h3 {
	font-size: var(--font-size-h3);
}

h4 {
	font-weight: bold;
	font-family: var(--font-family-base);
	font-size: var(--font-size-h4);
	line-height: var(--line-height-base);
}

h5 {
	font-weight: bold;
	font-family: var(--font-family-base);
	font-size: var(--font-size-h5);
	line-height: var(--line-height-base);
}

h6 {
	font-weight: bold;
	font-family: var(--font-family-base);
	font-size: var(--font-size-h6);
	line-height: var(--line-height-base);
}

:focus {
	outline: none;
}

/* ### global classes ### */
.clear {
	visibility: hidden;
	clear: both;
	height: 0;
	line-height: 0;
}

.container {
	padding-right: calc((100% - var(--width-base)) / 2);
	padding-left: calc((100% - var(--width-base)) / 2);
}

.button {
	border: 0;
	color: var(--white-color);
	border-radius: 50px 50px 50px 50px;
	background: var(--primary-color);
	padding: 17px 40px;
	line-height: 1.2;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
	text-transform: uppercase;
	transition: var(--base-duration);
}

.button:hover {
	background-color: var(--info-color);
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.form-col {
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 30px;
}

/* ### wrapper ### */
.wrapper {
	position: relative;
	display: block;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}

/* ### header container ### */
.header {
	padding-top: 20px;
	padding-bottom: 20px;
	width: 100%;
	position: relative;
	background: var(--light-color);
}

.header .logo {
	width: 100%;
	display: block;
	max-width: 350px;
}

.header .logo img {
	width: 100%;
	height: auto;
	mix-blend-mode: darken;
}

/* ### intro box ### */
.introBox {
	width: 100%;
	color: var(--white-color);
	font-size: var(--font-size-h4);
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
	background: var(--primary-color);
}

.introBox h1 {
	color: inherit;
}

/* ### content box ### */
.contentBox {
	width: 100%;
	margin-top: 50px;
	margin-bottom: 50px;
}

.contentBox p,
.contentBox ul,
.contentBox ol {
	margin-bottom: 30px;
}

.contentBox ul,
.contentBox ol {
	margin-left: 20px;
}

.contentBox ul li {
	list-style: disc;
}

.contentBox ol li {
	list-style: decimal;
}

/* ### connect box ### */
.connectBox {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
	background: var(--light-color);
}

/* ### form box ### */
.formBox {
	padding-top: 50px;
	padding-bottom: 50px;
	background: var(--light-color);
}

/* ### footer container ### */
.footer {
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	color: var(--white-color);
	background: var(--primary-color);
}

.footer a {
	color: inherit;
}

.footer a:hover {
	color: inherit;
	text-decoration: underline;
}

/* #Media Queries
================================================== */

@media only screen and (max-width: 1920px) {

}

@media only screen and (max-width: 1300px) {
	.container {
		padding-right: var(--gutter-side);
		padding-left: var(--gutter-side);
	}
}

@media only screen and (max-width: 992px) {
	:root {
		--font-size-h1: 60px;
		--font-size-h2: 45px;
		--font-size-h3: 30px;
		--font-size-h4: 22px;
	}
}

@media only screen and (max-width: 780px) {
	:root {
		--font-size-base: 18px;
		--font-size-h1: 50px;
		--font-size-h2: 40px;
		--font-size-h3: 28px;
		--font-size-h4: 20px;
	}

	.form-col {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
}
