@import url(https://fonts.googleapis.com/css?family=Istok+Web);


/* BASICS
-----------------------------------------------------------------------------*/

*{
	box-sizing: border-box;
}

html, body{
}

body{
	font-family: 'Istok Web', sans-serif;
	color: #fff;
	background-color: #254a85;
	line-height: 1.4;
}

a{
	color: #fff;
}

.container-fluid{
	max-width: 960px;
	padding: 0 8%;
	margin: 0 auto;
}

#wrap{
	background-image: url(../img/stripes.png);
}


/* HEADER
-----------------------------------------------------------------------------*/

#header{
}

#header .row{
	padding-top: 1em;
	padding-bottom: 1em;
	background-image: url(../svg/160712_Stadt_Silhouette.svg);
	background-size: 40% auto;
	background-position: right bottom;
	background-repeat: no-repeat;
}

#header img{
	width: 50%;
	height: auto;
	max-width: 80%;
	margin-left: -7.5%;
}


/* CONTENT
-----------------------------------------------------------------------------*/

#content{
	font-size: 1.125rem;
	border-top: 10px solid #fff;
	padding: 1em 0 2em 0;
	margin-top: -7px;
}

#content h2{
	font-size: inherit;
	margin: 2em 0 0;
	font-weight: normal;
}

#content h2 + p{
	margin-top: 0;
}



/* MEDIA QUERIES
-----------------------------------------------------------------------------*/


/*
--------------------------------------------
--- 768 max
--------------------------------------------
*/

@media (max-width: 768px) {

	#content{
		margin-top: -3px;
	}

}


/*
--------------------------------------------
--- 480 max
--------------------------------------------
*/

@media (max-width: 480px) {

	#content{
		font-size: 1rem;
		margin-top: -2px;
	}

}