@charset "UTF-8";



html, body {
	height: 100%;
	font-size: 18px;
}

.stopScroll {
	overflow: hidden;
}

/* use bigger font for high resolution Smartphones */
@media only screen and (max-width: 1080px) and (-webkit-min-device-pixel-ratio: 2){
	html, body {
		font-size: 36px;
	}
}
  

body {
	margin: 0;
	padding: 0;
	
	background-color: #eeeeee;
	display: flex;
	flex-flow: column;
	
	font-family: 'Montserrat', sans-serif;
}

/* legacy classes*/
.content {
	margin: auto;
	margin-top: 40px;
	width: calc(100% - 80px);
	max-width: 1000px;
	
	border-radius: 3px;
	background-color: white;
	box-shadow: grey 0 0 5px;
	
	padding: 20px;
}

.imgContainer {
	margin: 10px;
	padding: 10px;
	background-color: #eeeeee;
	border-radius: 3px;

	box-shadow: inset 0 0 5px grey;
	text-align: center;
	font-style: italic;

	/*display: flex; 
    justify-content: center; 
    align-items: center;*/
}
/* end legacy classes */



.fullSize {
	background-color: white;

	position: relative;
}

.titleContainer {
	position: relative;

	margin: 4rem;
	text-align: center;

	font-family: Anton, sans-serif;
	font-size: 3rem;
}
.titleContainer::after {
	position: absolute;

	bottom: 0;
	left: 100px;
	right: 100px;

	height: 8px;

	content: ' '; 
	background: linear-gradient(to right, #4c00ff , #2f89ff);
}

.infoContainer {
	margin: 3rem;
	text-align: center;
	vertical-align: middle;
	line-height: 1.25em;

	font-style: bold;
	font-size: 1.5rem;
}

.textContainer {
	width: calc(100% - 80px);
	max-width: 1200px;
	text-align: justify;

	margin: auto;
	margin-bottom: 3rem;
	margin-top: 3rem;

	line-height: 1.5em;
}

.frontText {
	position: absolute;
	display: flex;
	flex-wrap: wrap;

	top: 100px;
	left: 10%;
	right: 10%;
}

.fullImg {
	width: 100%;

	object-fit: cover;
}

.logoImg {
	max-width: 540px;

	object-fit: contain;
}



.container {
	width: 100%;
	box-sizing: border-box;

	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
}


.tile {
	flex: 1;
	min-width: 500px;
	box-sizing: border-box;
}



.blueBox {
	background-image: linear-gradient(to right, #4c00ff , #2f89ff);
}
.grayBox {
	background-color: #2c2c2c;
}
.whiteBox {
	background-color: white;
}

.blueText {
	background: linear-gradient(to right, #4c00ff , #2f89ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	/* fallback */
	color: #2f89ff;
}
.grayText {
	color: #2c2c2c;
}
.whiteText {
	color: white;
}



.document {
	height: 100%;
	width: 100%;
	flex-grow: 100%;
}


.whiteButton, .darkButton {
	cursor: pointer;
	font-family: Anton, sans-serif;
	font-size: 1.5rem;
	margin: 30px;
	padding: 5px;
	padding-left: 30px;
	padding-right: 30px;

	background: transparent;
	transition: 0.4s;
}

.whiteButton {
	color: white;
	border: 4px solid white;
}
.whiteButton:hover {
	background: white;
	color: #2c2c2c;
}

.darkButton {
	color: #2c2c2c;
	border: 4px solid #2c2c2c;
}
.darkButton:hover {
	background: #2c2c2c;
	color: white;
}



@media only screen and (max-width: 1080px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 540px) {
	.textContainer {
		text-align: left;
	}
}