@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');


/* ---------------- DEF ---------------- */

html, body {
	width: 100%;
	margin: 0px;
	padding: 0px;
	background: #fff; /* Old browsers */
}

* {
	margin: 0px;
	padding: 0px; 
	box-sizing: border-box; 
}
        
h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans', Helvetica Neue, sans-serif;
}

a, p, label, article, li, span {
	font-family: 'Open Sans', Helvetica Neue, sans-serif;
}

a, p, label, article, li {
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.25px;
}

a {
	color: #000;
	text-decoration: none;
}
            
a:hover {
	color: #000;
	text-decoration: underline;
}
                      
a:link {
	text-decoration: none;
}
            
a:visited {
	text-decoration: none;
}

strong {
	font-weight: 700;
}

img {
	width: 100%;
}

.clear {
	clear: both;	
}

::selection {
	background: #000;
	color: #fff;
}

::-moz-selection {
	background: #000;
	color: #fff;
}



/* ---------------- STYLE UEBERGANGSSEITE ---------------- */

section {
	width: 100%;
	height: auto;
	position: relative;
}

section.flex {
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.content {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 40px 30px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.logo {
	display: block;
	width: 100%;
	max-width: 200px;
	float: left;
}

.logo img {
	margin-bottom: 0px;
}

.bg-img .content h1, .bg-img .content h2, .bg-img .content h3,
.bg-img .content p {
	color: #000;
}

.kontakt {
	display: block;
	width: calc(100% - 225px);
	margin-left: 25px;
	align-self: flex-end;
}

.kontakt p {
	text-align: right;
}

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

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

.content h3 {
	font-family: 'Open Sans', Helvetica Neue, sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 700;
	-webkit-font-smoothing: grayscale;
	-moz-osx-font-smoothing: grayscale;
	line-height: 100%;
	margin-bottom: 10px;
}

.content p, .content a, .content p a {
	font-family: 'Open Sans', Helvetica Neue, sans-serif;
	font-size: 14px;
	font-weight: 200;
	color: #000;
	-webkit-font-smoothing: grayscale;
	-moz-osx-font-smoothing: grayscale;
	line-height: 20px;
}

.content p {
	margin-bottom: 12px;
}

.content p:last-of-type {
	margin-bottom: 0px;
}

.content a, .content p a {
	color: #000;
	padding: 3px 2px 1px 2px;
	margin-bottom: 3px -2px -2px -2px;
	transition: all 0.5s ease;
}

.content a:hover, .content p a:hover,
.content a:focus, .content p a:focus {
	background: #000;
	color: #fff;
}

@media (max-width: 525px) {
	
	.logo {
		max-width: 175px;
	}
	
}

@media (max-width: 505px) {
	
	.content {
		display: block !important;
	}
	
	.logo {
		display: block;
		float: none;
		width: 100% !important;
		max-width: none;
		margin-bottom: 25px;
	}
	
	.logo img {
		max-width: 175px;
		float: right;
	}
	
	.kontakt {
		float: none !important;
		display: block !important;
		width: 100%;
		margin-left: 0px;
	}
	
	section.flex {
		min-height: 100vh;
		display: flex;
		align-items: flex-end;
	}

	
}