:root 
{
	--theme: #224386;
	--lighttheme: #5185d6;
	--light: #f0f2f7;
	--dark: #171819;
}

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

body 
{
	font-size: 1.2em;
	color: var(--dark);
	font-family: 'Jost';
	font-weight: 400;
	line-height: 1.7;
	overflow-x: hidden;
}

::selection 
{
	background-color: var(--theme);
 	color: #fff; 
}

::-moz-selection 
{
  	background-color: var(--theme);
 	color: #fff;
}

h1, h2, h3
{
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.25;
	font-size: 3.3em;
	color: var(--theme);
}

h3
{
	font-size: 1.2em;
}

h1 + p
{
	font-size: 1.5em;
	margin-top: 1em;
}

h3 + p, h3 + ul
{
	margin-top: 1em;
}

p + p
{
	margin-top: 1em;
}

.wrap
{
	max-width: 1100px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	position: relative;
}

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	text-align: center;
	transition: background-color 0.2s;
}

#header.scrolled
{
	background-color: var(--light);
}

#logo
{
	height: 130px;
	padding: 50px 0px 0px;
	margin-bottom: -10px;
	transition: all 0.2s;
}

#header.scrolled #logo
{
	height: 100px;
	padding: 20px 0px;
}

.text-center
{
	text-align: center;
}

.text
{
	margin: 100px 0px;
}

#pattern
{
	position: fixed;
	width: 100%;
	height: 90vh;
	background-image: url(pattern.svg);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -10;
	left: 0;
	bottom: 0;
	opacity: 0.07;
}

.divider
{
	width: 180px;
	height: 6px;
	background-color: var(--theme);
	display: block;
	margin: -15px auto;
}

.text p a, .text ul a, form a, #cookieNotice a
{
	color: var(--dark);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
}

.text p a:hover, .text ul a:hover, form a:hover, #cookieNotice a:hover
{
	color: var(--theme);
	border-bottom: 1px solid var(--theme);
}

#footer
{
	padding: 40px 0px;
	background-color: var(--theme);
	color: #fff;
	text-align: center;
	text-align: center;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

@media all and (max-width: 750px){
	.divider
	{
		width: 100px!important;
	}

	h1
	{
		font-size: 1.8em!important;
	}

	h3
	{
		font-size: 1.1em!important;
	}

	h1 + p
	{
		font-size: 1.2em!important;
	}

	#logo
	{
		height: 100px!important;
	}

	#header.scrolled #logo
	{
		height: 85px!important;
	}

	#pattern
	{
		height: 75vh!important;
	}
}

@media all and (max-width: 1050px){
	.text
	{
		margin: 60px 0px;
	}

	.divider
	{
		width: 140px;
		height: 4px;
		margin-top: -5px auto;
	}

	#footer
	{
		padding: 25px 0px;
	}

	h1
	{
		font-size: 2.5em;
	}

	h3
	{
		font-size: 1.15em;
	}

	h1 + p
	{
		font-size: 1.3em;
	}

	#logo
	{
		height: 110px;
		padding: 40px 0px 0px;
	}

	#header.scrolled #logo
	{
		height: 90px;
		padding: 20px 0px;
	}

	#pattern
	{
		height: 85vh;
	}
}