@charset "utf-8";
/* CSS Document */

html,
body { 
	margin: 0;
	font-size: 16px;
	color: #111;
	font-family: "Poppins", sans-serif;
	font-optical-sizing: auto;
}

body.bg-image::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #2967d7; 
	background-image: url("images/sebastiaan-stam-ui8-Eysg3d8-unsplash.jpg"); 
	background-size: cover; 
	background-position: center center;
	background-repeat: no-repeat;
	background-blend-mode: lighten;
	z-index: -1;
}

.fc-white {
	color: white;
}

.fc-blue {
	color: #305ebe;
}

.bgc-white {
	background-color: #fff;
}

.bgc-blue {
	background-color: #0b57d0;
}

h1 {
	color: #2967d7;
	font-size: 2.5rem;
	line-height: 2.6rem;
	margin-bottom: 0;
}

h2 {
	color: #2967d7;
	font-size: 1.5rem;
	line-height: 2rem;
	margin-bottom: 5px;
}

h3 {
	color: #2967d7;
	margin-bottom: 5px;
}

a {
	font-weight: 500;
	color: #305ebe;
	transition: all .3s;
}

a:hover {
}

.sticky {
	display: flex;
	position: sticky;
	top: 0;
}

.header {
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;
	background: #fff;
	height: 80px;
}

.header > .container {
	display: flex;
	flex: 1;
	flex-direction: row;
	align-items: center;
	max-width: 1440px;
	margin: 0 20px;
}

.header div.logotype a {
	text-decoration: none;
}

.header div:nth-of-type(2) {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: right;
}

.header .logotype a {
	opacity: 1;
	font-size: 1.6rem;
	letter-spacing: -2px;
	font-weight: 700;
	display: flex;
	margin-top: -3px;
}

.header a {
	text-decoration: none;
	opacity: 1;
}

.header a:hover {
	opacity: .7;
}

.page {
	display: flex;
	flex: 1;
	justify-content: center;
}

.page.start {
	margin-top: 120px;
}

.container {
	display: flex;
	flex: 1;
	flex-direction: column;
	max-width: 1440px;
	margin: 0 20px;
}

.box {
	display: flex;
	flex-direction: column; 
	flex: 1;
	width: 100%;
	max-width: 500px;
	box-sizing: border-box;
	padding: 40px;
}


.disclaimer {
	font-size: .8rem;
	padding: 15px 0;
}

@media (max-width: 1024px) {
	body {
		font-size: .9rem;
	}
	
	.page.start {
		margin-top: 100px;
	}
	
	.box {
		padding: 30px;
	}

}
	