/*
* Main theme css file
*/

@import url('https://fonts.googleapis.com/css2?family=Grandstander:wght@300;400;500;600&display=swap');

.typo {
	font-family: 'Grandstander';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
}
.typo.bold {
	font-weight: 400 !important;
}
.typo.bolder {
	font-weight: 500 !important;
}
.typo.fett {
	font-weight: 600 !important;
}

html, body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

html {
	background-color: #d0d4d8;
	background-image: url('../img/background.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
body {
	background-color: transparent;
	background-image: url('../img/bg-pattern.png');
	background-attachment: fixed;
}

a,
a:visited {
	color: rgba(255,255,255,0.6);
	transition: color 0.25s ease;
}
a:hover,
a:active,
a:focus {
	text-decoration: none;
	color: rgba(255,255,255, 1);
}

/*
* Headline
*/
h1, h2, h3, h4, h5 {
	font-family: 'Grandstander';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
}

.main-frame {
	max-width: 1200px;
	margin: 0 auto;
	bottom: 0;
	position: relative;
	min-height: 100vh;
}
@media (min-width: 478px) {
	.main-frame {
		display: flex;
		flex-direction: column;
		place-content: flex-end;
		height: -webkit-fill-available;
	}
}
.main-frame > .content {
}
.main-frame > .content > .content-inner {
}
.main-frame > .content > .content-inner > .body {
	border: 2px dashed #fff;
	color: #fff;
	text-transform: uppercase;
}
@media (max-width: 479px) {
	.main-frame > .content > .content-inner > .body {
		padding: 25px;
		font-size: 1.2rem;
	}
}
@media (min-width: 480px) {
	.main-frame > .content > .content-inner > .body {
		padding: 45px;
		font-size: 1.6rem;
	}
}
@media (max-width: 1199px) {
	.main-frame > .content > .content-inner {
		margin-right: 30px;
		margin-left: 30px;
	}
	.main-frame > .content > .content-inner > .body {
		text-align: center;
	}
	.main-frame > .content > .content-inner .claim {
		margin-bottom: 30px;
	}
	.main-frame > .content .image {
		margin-top: -75px;
	}
	
}
@media (min-width: 1200px) {
	.main-frame > .content > .content-inner {
		margin-left: 15%;
	}
	.main-frame > .content > .content-inner .body {
		text-align: right;
	}
	.main-frame > .content .image {
		margin-top: -400px;
		margin-right: 30%;
	}
}
.main-frame > .content > .content-inner > .hearts {
	margin-bottom: 15px;
	text-align: center;
}
.main-frame > .content .image {
	position: relative;
	z-index: 99;
	text-align: center;
	transition: all 0.25s ease;
}
.main-frame > .content > .content-inner .branding img,
.main-frame > .content > .content-inner .hearts img,
.main-frame > .content .image img {
	max-width: 100%;
	height: auto;
}

/*
* Other styles
*/
.page-navbar {
	margin-top: 2px;
	text-align: right;
}
@media (max-width: 1199px) {
	.main-frame .page-navbar {
		position: fixed;
		bottom: 15px;
		right: 30px;
		z-index: 1001;
	}
}
.page-navbar a {
	display: inline-block;
	font-family: 'Grandstander';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	color: #fff;
}
.page-navbar a:not(:first-child) {
	margin-left: 2px;
}
.page-navbar a:not(:first-child):before {
	content: '';
	float: left;
	height: 20px;
	line-height: 0;
	width: 2px;
	margin-right: 5px;
	background-color: #fff;
}
/* --- */
.icon-arrow {
	padding: 10px 75px 10px 10px;
	background-image: url('../img/arrow.png');
	background-repeat: no-repeat;
	background-position: 100% 0%;
}
@media (max-width: 1199px) {
	.icon-arrow {
		display: inline-block;
	}
}
@media (max-width: 1200px) {
	.icon-arrow {
		margin-right: 15px;
	}
}
.claim {
	margin-top: 20px;
}


/*
* Main content
*/
.main-content {
	position: relative;
	padding-bottom: 45px;
	z-index: 101;
}
.main-content .branding {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
}
.main-content .branding img {
	max-width: 100%;
	height: auto;
}
.main-content .content-outer {
	padding: 45px;
	background-color: rgba(0,0,0,0.05);
	border: 2px dashed #fff;
	color: #fff;
}
.main-content .content-outer > h1 {
	margin-bottom: 45px;
}