
body {
	font-family: 'open_sans', Helvetica, Arial, sans-serif; 
	font-weight: 300;
	color: #252525;
	font-size: 16px;
	line-height: 1.6em;
	background: white;
	margin: 0;
	padding: 0;
}

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

/*-----------------------------------------------------------------------------------*/
/*  Header
/*-----------------------------------------------------------------------------------*/

#header {
	height: 100px;
	width: 100%;
}

#header .header-top{
    display: block;
    width: 100%;
    height: 25px;
    margin-bottom: 24px;
    background-color: #f2f2f2;
}

#header .header-top .logo {
	display: flex;
	justify-content: center;
}

#header .header-top .logo img {
	width: 200px;
	height: 100px;
}

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

@media (min-width: 575px) {

	#header {
		height: 180px;
	}
	
	#header .header-top{ 
		height: 40px;
	}
	#header .header-top .logo img {
		width: 280px;
		height: auto;
	}

}

/*-----------------------------------------------------------------------------------*/
/*  Content
/*-----------------------------------------------------------------------------------*/

#pagewrap { 
	width: 100%; 
	padding: 30px; 
	background: white;
	margin: 0 auto; 
}

.layout {
	display: block;
}

.layout > div {
	width: 100%;
}

.layout-2col .col:first-child {
	margin-bottom: 30px;
}



.layout.vertical-center {
	align-items: center;
}
.layout.horizontal-center {
	justify-items: center;
}

.layout.box {
	padding: 20px;
	background: #f9f9f9;
	box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
}

article {
	margin-bottom: 30px;
}

@media (min-width: 575px) {
	#pagewrap {
		width: 640px;
	}

	.layout {
		display: flex;
	}

	.layout-2col > div {
		width: 50%;
	}


	.layout-2col .col:first-child {
		margin-bottom: 0px;
	}
}

/*-----------------------------------------------------------------------------------*/
/*  Typo and Base-Elements
/*-----------------------------------------------------------------------------------*/
a {
    color: #004f9d;
    text-decoration: none;
}

a:focus, a:active {
    text-decoration: none;
}

a:hover {
    color: #00003b;
}

h1 {
	font-size: 1.5em;
	line-height: 1.25em;
	color: #555;
	border-bottom: 1px solid #ccc;
	margin-bottom: 40px;
	padding-bottom: 20px;
	text-align: center;
}

.center {
	text-align: center;
}

strong {
	color: #444;
}

.logo {
	text-align: center;
	margin-bottom: 40px;
}

.logo svg {
	margin: 0 auto;
}

@media (min-width: 575px) {
	h1 {
		font-size: 1.75em;
	}	
}

/*-----------------------------------------------------------------------------------*/
/*  Button
/*-----------------------------------------------------------------------------------*/

.button {
	display: inline-block;
	padding: 8px 16px;
	margin: 0;
	background: #004f9d;
	color: white;
	transition: 0.3s all ease-in-out;
	font-weight: 500;
}

.button:hover {
	color: whitesmoke;
	background: rgb(5, 61, 117);
}
