:root 
{
	--blue: #203266;
	--lightblue: #2097b6;
	--light: #e4e8f2;
	--dark: #161719;
}

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

body 
{
	font-size: 1.3em;
	color: var(--dark);
	font-family: 'Lato';
	font-weight: 300;
	line-height: 1.7;
	overflow-x: hidden;
}

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

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

h1, h2, h3
{
	font-family: 'Spectral';
	font-weight: 700;
	color: var(--blue);
	text-transform: uppercase;
	line-height: 1.15;
	font-size: 3em;
}

h2
{
	font-size: 2.2em;
}

h3
{
	font-size: 1.5em;
}

.text.big p, .text.big ul
{
	font-size: 1.3em;
}

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

h2 + p, h2 + ul
{
	margin-top: 0.8em;
}

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

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

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

.text
{
	margin: 80px 0px;
}

#header
{
	position: fixed;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: #fff;
	text-align: center;
	padding: 85px 0px;
	transition: all 0.4s;
}

#header.scrolled
{
	padding: 30px 0px;
}

#header #logo
{
	height: 120px;
	margin-bottom: -10px;
	transition: all 0.4s;
}

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

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

strong
{
	font-weight: 700;
}

#header + .text
{
	margin-top: 290px;
}

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

#footer
{
	padding: 80px 0px;
	background-color: var(--blue);
	color: #fff;
	text-align: center;
}

#footer h3
{
	color: #fff;
}

@media all and (max-width: 700px){
	.divider
	{
		width: 120px!important;
		height: 4px!important;
	}

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

	h2
	{
		font-size: 1.5em!important;
	}

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

	.text.big p, .text.big ul
	{
		font-size: 1em!important;
	}
}

@media all and (max-width: 1050px){
	h1
	{
		font-size: 2.5em;
	}

	h2
	{
		font-size: 1.8em;
	}

	h3
	{
		font-size: 1.2em;
	}

	.text.big p, .text.big ul
	{
		font-size: 1.2em;
	}

	.divider
	{
		width: 180px;
		height: 5px;
	}

	.text
	{
		margin: 60px 0px;
	}

	#footer
	{
		padding: 60px 0px;
	}

	#header
	{
		padding: 65px 0px;
	}

	#header.scrolled
	{
		padding: 25px 0px;
	}

	#header #logo
	{
		height: 90px;
	}

	#header.scrolled #logo
	{
		height: 65px;
	}

	#header + .text
	{
		margin-top: 222px;
	}

	body
	{
		font-size: 1.25em;
	}
}