@font-face {
	font-family: "Montserrat";
	src: url(./../fonts/montserrat-light-webfont.woff) format("woff"),
		url(./../fonts/montserrat-light-webfont.woff2) format("woff2");
	font-weight: 300;
}
@font-face {
	font-family: "Montserrat";
	src: url(./../fonts/montserrat-semibold-webfont.woff) format("woff"),
		url(./../fonts/montserrat-semibold-webfont.woff2) format("woff2");
	font-weight: 600;
}
/* 
=============================
Variables
=============================
 */
:root {
	--backgroundColor: #fff;
	--primaryColor: #013d4a;
	--secondaryColor: #b9a394;
	--accentColor: #5288ce;
	--accentColor-light: #63a3f7;
	--mainBlack: rgb(59, 59, 59);
	--mainWhite: rgb(244, 244, 244);
	--cardWhite: rgb(243, 243, 243);
	/* --mainTransition: all 0.3s linear; */
	--mainSpacing: 0.2rem;
	--mainPadding: 15px;
	--sideMargin: 1rem;
	--followTextMargin: 4rem;
	--sectionSpacer: 20vh;
	--heroImageHeight: 100vh;
	--stepIntroMaxSize: 450px;
	--maxWidth: 1190px;
	--navHeight: 5rem;
}
/* 
=============================
Global Styles
=============================
 */
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	max-width: 100%;
}

body {
	max-width: var(--maxWidth);
	margin: 0 auto;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	background-color: var(--backgroundColor);
	color: var(--primaryColor);
	padding: 0;
}

a {
	text-decoration: none;
	color: var(--accentColor);
	word-wrap: break-word;
	cursor: pointer;
}
a:hover {
	text-decoration: underline;
	color: var(--accentColor-light);
}

p {
	line-height: 1.4;
	font-size: 1rem;
}
.light-text {
	font-weight: 300;
}

img:not(.nav-logo) {
	display: block;
}
h1 {
	font-size: 1.3rem;
	text-transform: capitalize;
}
h2 {
	color: var(--secondaryColor);
	font-size: 1.1rem;
}
h3 {
	font-size: 1.1rem;
	text-transform: uppercase;
}
h4 {
	font-size: 1.05rem;
	text-transform: uppercase;
}

.button {
	display: block;
	text-align: center;
	width: 150px;
	color: white;
	background-color: var(--accentColor);
	font-weight: 600;
	margin: 0 auto;
	padding: 0.6rem;
	border: 2px solid var(--accentColor);
	border-radius: 9999px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.16), -1px 2px 3px rgba(0, 0, 0, 0.16);
	transition: 0.4s;
}

.button-light {
	color: var(--accentColor);
	background-color: var(--mainWhite);
}

.button:hover {
	text-decoration: none;
	color: white;
	border-color: var(--accentColor-light);
	background-color: var(--accentColor-light);
	/* border: 2px solid var(--secondaryColor); */
	/* box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16), -2px 3px 3px rgba(0, 0, 0, 0.16); */
	transition: 0.2s;
}

.checkbox-container {
	display: block;
	margin-top: 10px;
	cursor: pointer;
}
.checkbox-container input {
	cursor: pointer;
}

.checkbox-text::after {
	content: "Disabled";
	color: var(--primaryColor);
}

.checkbox-container input:checked ~ .checkbox-text::after {
	content: "Enabled";
	color: var(--accentColor);
}
.checkbox-required {
	color: var(--accentColor);
}
.checkbox-required::after {
	content: "";
}
.checkbox-container input:disabled ~ .checkbox-text::after {
	content: "Not in use";
	color: var(--secondaryColor);
}

/* 
==========
Navigation
========== 
*/
.nav {
	height: var(--navHeight);
	padding: 0 var(--sideMargin);

	display: grid;
	align-items: center;
	width: 100%;
	max-width: var(--maxWidth);
	position: absolute;
	top: 0;
	z-index: 10;
}

.nav-center {
	max-width: var(--maxWidth);
	width: 100%;
	margin: 0 auto;
}

.headline-link {
	text-decoration: none;
}
.headline-link:hover {
	text-decoration: none;
}
.nav-headline {
	text-transform: uppercase;
	font-size: 1.3rem;
	letter-spacing: 3px;
	color: var(--primaryColor);
}
/* 
==========
Header
========== 
*/
.header {
	height: 100vh;
	position: relative;
}

.hero {
	position: relative;
}

.hero-image-container {
	display: grid;
	justify-content: center;
	overflow-x: hidden;
	overflow-y: hidden;
	max-height: 100vh;
}

.hero-image {
	width: auto;
	height: 100vh;
}

.hero-text-container {
	max-width: 80vw;
	margin-left: var(--sideMargin);
	background-color: var(--cardWhite);
	position: absolute;
	bottom: 15%;
	padding: var(--mainPadding);
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.16), -1px 2px 3px rgba(0, 0, 0, 0.16);
}
.hero-text {
	font-size: 1.4rem;
	line-height: 1.35;
	text-align: left;
	text-transform: capitalize;
}
/* 
==========
Main
========== 
*/
.section {
	max-width: var(--maxWidth);
	position: relative;
}
.section-image-container {
	justify-content: center;
	display: grid;
	justify-content: center;
	position: sticky;
	top: 0px;
	overflow-x: hidden;
	overflow-y: hidden;
	max-height: 100vh;
}

.section-image {
	width: auto;
	height: 100vh;
	max-height: var(--maxWidth);
}
.section-text-container {
	position: relative;
	background-color: var(--cardWhite);
	margin-top: calc(-2 * var(--sectionSpacer));
	margin-left: calc(2 * var(--sideMargin));
	margin-right: calc(2 * var(--sideMargin));
	/* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16), 0 2px 3px rgba(0, 0, 0, 0.16); */
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.16), -1px 2px 3px rgba(0, 0, 0, 0.16);
	padding: var(--mainPadding);
}
/* .section-text {
} */
.section-spacer {
	position: relative;
	height: var(--sectionSpacer);
}

.followText {
	margin-top: var(--followTextMargin);
}

.footer {
	max-width: var(--maxWidth);
	padding: var(--mainPadding);
	background-color: var(--secondaryColor);
	color: var(--mainWhite);
	font-weight: 300;
	font-size: 0.8rem;
	text-transform: capitalize;
	text-align: center;
}
.footer-links a {
	color: var(--mainWhite);
}
.footer-copyright {
	margin-top: calc(0.5 * var(--mainPadding));
	font-size: 0.6rem;
}
.contact-container {
	position: relative;
}
.ctnt {
	height: auto;
}
.overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
}
.overlay img {
	height: 100%;
	width: 100%;
}
.no-shadow {
	box-shadow: none;
}
/* Support Section */
.support-container {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.share-buttons-container {
	text-align: center;
}

.share-buttons-container img {
	width: 35px;
	padding: 5px;
	border: 0;
	box-shadow: 0;
	display: inline;
}
.share-buttons-container a:hover {
	text-decoration: none;
}
.mobile-share {
	display: none;
}
.visible {
	display: inline;
}
/* Cookies used table */
.cookie-table {
	display: grid;
	row-gap: 10px;
}

.cookie-table-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	font-weight: 300;
	text-align: left;
}
.cookie-table-row-title {
	font-weight: 600;
}
.cookie-table-row div {
	background-color: white;
	text-align: left;
	padding: 2px 4px;
	word-break: break-all;
	font-size: 0.8rem;
}
/* 
==========
Cookie Consent
========== 
*/
.cookie-consent {
	position: fixed;
	bottom: 0;
	max-width: var(--maxWidth);
	width: 100vw;
	height: auto;
	background-color: rgba(0, 0, 0, 0.7);
	display: grid;
	justify-content: center;
	align-content: center;
	font-size: 0.8rem;
}
.cookie-consent-center {
	margin: 30px;
	padding: 30px;
	width: 100vw;
	max-width: var(--maxWidth);
	max-width: 500px;
	height: auto;
	max-height: 500px;
	background-color: white;
}
.cc-choose {
	margin-top: 20px;
	text-align: center;
	font-size: 0.9rem;
}
.cc-text-container {
	max-height: 15vh;
	overflow-y: scroll;
}
.cc-links {
	margin-top: 10px;
	display: flex;
	justify-content: space-evenly;
}
.cc-buttons-container {
	margin-top: 20px;
	display: flex;
	justify-content: space-evenly;
}
.cc-hide {
	display: none;
}

/* 
==========
Media Queries
========== 
*/
@media screen and (orientation: landscape) {
	.header {
		height: auto;
	}
	.hero-image {
		width: 100%;
		max-width: var(--maxWidth);
		height: auto;
	}

	.hero-text-container {
		bottom: 10%;
	}
	.section-image {
		width: 100%;
		max-width: var(--maxWidth);
		height: auto;
	}
}

@media screen and (min-width: 800px) {
	.header {
		height: auto;
	}

	.nav {
		padding: 0 calc(2 * var(--sideMargin));
	}
	.nav-headline {
		font-size: 1.6rem;
		letter-spacing: 5px;
	}
	.hero-image {
		width: 100%;
		max-width: var(--maxWidth);
		height: auto;
	}
	.hero-text-container {
		margin-right: calc(2 * var(--sideMargin));
		max-width: 50%;
	}
	.section-text-container {
		margin-right: 40%;
	}

	.section-spacer {
		height: calc(2 * var(--sectionSpacer));
	}
	.support-container {
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
	}
	/* .section-text-container {
		margin-top: -10%;
	}
	.followText {
		margin-top: var(--followTextMargin);
	} */
	/* .section-image {
		width: 100%;
		max-width: var(--maxWidth);
		height: auto;
	}
	.section {
		height: auto;
	} */
}
