* {
	margin: 0px;
	padding: 0px;
	list-style: none;
	border: none;
	text-decoration: none;
	outline: none;
	font-family: 'Lato';
}
::-webkit-input-placeholder {
 color:inherit;
 opacity:1;
}
:-ms-input-placeholder {
 color:inherit;
 opacity:1;
}
::placeholder {
 color:inherit;
 opacity:1;
}
html, body {
	height: 100%;
}
.container-fluid {
	max-width: 1900px;
	width: 100%;
}
.container {
	max-width: 1170px;
	width: 100%;
}
/*** ### Header ### ***/
header {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	border-radius: 0;
	background-color: #c0c0c0;
	box-shadow: 0 2px 4px rgba(0,0,0,.4);
	z-index: 10000;
}
.navigation {
	position: relative;
}
.navigation nav ul {
	margin: 0px;
	padding: 0px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
}
.navigation nav ul li {
	position: relative;
	flex: 1;
	margin: 0px;
	padding: 0px;
	width: 100%;
}
.navigation nav ul li a {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	color: rgba(64,64,64,.91);
	font-size: 15px;
	font-weight: 400;
	outline: none;
	text-transform: uppercase;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	min-height: 46px;
	text-align: center;
	z-index: 1;
}
.navigation nav ul li a::before {
	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	background: #f00;
	/*transition: all ease-in 0.2s;*/
	z-index: -1;
}
.navigation nav ul li a:hover::before {
	opacity: 1;
}
.navigation nav ul li a:hover, .navigation nav ul li a.active {
	color: #FFFFFF;
}
.navigation nav ul li a.active::before {
	opacity: 1;
}
.device-nav {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	cursor: pointer;
	color: #FFFFFF;
	display: none;
	z-index: 1000;
}
.device-nav span.icon {
	position: relative;
	display: inline-block;
	vertical-align: top;
	border-radius: 50%;
	color: #f00;
	font-size: 25px;
	text-align: center;
}
@media (max-width: 991px) {
.device-nav {
	display: block;
}
.navigation {
	min-height: 45px;
}
.navigation nav {
	margin: 0px 0px 0px 0px;
}
.navigation nav {
	-o-transform: translate(100%);
	-o-transform-origin: 0 0;
	-o-transition: -o-transform .5s cubic-bezier(.77, .2, .05, 1);
	-webkit-font-smoothing: antialiased;
	-webkit-transform: translate(100%);
	-webkit-transform-origin: 0 0;
	-webkit-transition: -webkit-transform .5s cubic-bezier(.77, .2, .05, 1);
	height: calc(100% + 100px);
	top: 45px;
	left: 0;
	list-style-type: none;
	position: fixed;
	right: 0;
	transform: translate(100%);
	transform-origin: 0 0;
	transition: -webkit-transform .5s cubic-bezier(.77, .2, .05, 1);
	transition: transform .5s cubic-bezier(.77, .2, .05, 1);
	transition: transform .5s cubic-bezier(.77, .2, .05, 1), -webkit-transform .5s cubic-bezier(.77, .2, .05, 1), -o-transform .5s cubic-bezier(.77, .2, .05, 1);
	background-color: #c0c0c0;
}
.navigation nav.reveal {
	opacity: 1;
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	background: #c0c0c0;
}
.navigation nav, .navigation nav ul, .navigation nav ul li, .navigation nav ul li a {
	display: block;
	width: 100%;
}
.navigation nav ul {
	text-align: center;
	margin: 0px;
	padding: 0px 0px;
}
.navigation nav ul li {
	width: 100%;
	text-align: center;
	margin: 0px;
	padding: 0px 10px;
}
.navigation nav ul li a {
	text-decoration: none;
	width: 100%;
	display: block;
	padding: 10px 15px;
	font-size: 16px;
	margin: 0px;
}
}
/*** ### Hero Section ### ***/
.hero-section {
	position: relative;
	background-position: center center !important;
	background-size: cover !important;
	background: url(../images/hero-bg.webp) no-repeat;
	background-attachment: fixed;
	background-size: cover !important;
	border-bottom: 10px solid #f00;
}
.hero-section .container {
	position: relative;
	height: 100vh;
	min-height: 620px;
	max-height: 1024px;
	padding-top: 45px;
}
.hero-section .iner {
	position: absolute;
	top: 0px;
	left: 15px;
	bottom: 0px;
	width: 100%;
	max-width: 414px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	text-align: center;
	background: rgba(255,255,255,0.92);
}
.hero-section .iner .logo {
	position: relative;
	text-align: center;
}
.hero-section .iner .logo a {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 100%;
}
.hero-section .iner .logo img {
	display: block;
	margin: auto;
	max-height: 198px;
}
.hero-section .iner h1 {
	color: #000000;
	font-size: 47px;
	font-weight: 400;
	margin: 0px;
	padding: 0px;
}
.hero-section .iner h2 {
	color: #000000;
	font-size: 25px;
	font-weight: 300;
	margin: 0px;
	padding: 0px;
}
.hero-section .iner p {
	color: #000000;
	font-size: 21px;
	font-weight: 300;
	margin: 0px;
	padding: 0px;
}
.hero-section .iner p a {
	color: inherit;
	text-decoration: none;
	outline: none;
}
.hero-section .iner .spacer {
	height: 30px;
	position: relative;
	display: block;
}
@media (max-width:1199px) {
.hero-section {
	border-bottom: 5px solid #f00;
}
.hero-section .container {
	min-height: 575px;
	max-height: 768px;
}
.hero-section .iner {
	max-width: 375px;
}
.hero-section .iner .logo img {
	max-height: 175px;
}
.hero-section .iner h1 {
	color: #000000;
	font-size: 40px;
}
.hero-section .iner h2 {
	font-size: 20px;
}
.hero-section .iner p {
	font-size: 18px;
}
.hero-section .iner .spacer {
	height: 20px;
}
}
@media (max-width:991px) {
.hero-section .container {
	min-height: 550px;
	max-height: 650px;
	padding-top: 45px;
}
.hero-section .iner {
	max-width: 320px;
}
.hero-section .iner .logo img {
	max-height: 150px;
}
.hero-section .iner h1 {
	color: #000000;
	font-size: 35px;
}
.hero-section .iner h2 {
	font-size: 18px;
}
.hero-section .iner p {
	font-size: 16px;
}
.hero-section .iner .spacer {
	height: 20px;
}
}
@media (max-width:767px) {
.hero-section {
	background-attachment: scroll;
}
.hero-section .container {
	min-height: 600px;
	height: auto;
	max-height: inherit;
	padding: 10px 30px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
}
.hero-section .iner {
	position: relative;
	width: 100%;
	top: 25px;
	left: auto;
	bottom: auto;
	right: auto;
	max-width: 320px;
	padding: 0px 0px 20px 0px;
}
.hero-section .iner .logo img {
	max-height: 150px;
}
.hero-section .iner h1 {
	color: #000000;
	font-size: 35px;
}
.hero-section .iner h2 {
	font-size: 18px;
}
.hero-section .iner p {
	font-size: 16px;
}
.hero-section .iner .spacer {
	height: 20px;
}
}
/*** ### Section One ### ***/
.section-one {
	position: relative;
	padding: 50px 0px;
	background: #FFFFFF;
	text-align: center;
}
.section-one p {
	color: #000000;
	font-size: 24px;
	font-weight: 300;
	margin: 0px;
	padding: 0px;
}
.section-one p a {
	color: inherit;
	text-decoration: none;
	outline: none;
}
@media (max-width:1199px) {
.section-one {
	padding: 50px 0px;
}
.section-one p {
	font-size: 20px;
}
}
@media (max-width:991px) {
.section-one {
	padding: 50px 0px;
}
.section-one p {
	font-size: 18px;
}
}
@media (max-width:767px) {
.section-one {
	padding: 30px 0px;
}
.section-one p {
	font-size: 16px;
}
}
/*** ### Section Two ### ***/
.section-two {
	position: relative;
	padding: 50px 0px;
	background: #FFFFFF;
	text-align: center;
}
.section-two h2 {
	color: #000000;
	font-size: 53px;
	font-weight: 900;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}
.section-two p {
	color: #000000;
	font-size: 24px;
	font-weight: 300;
	margin: 0px;
	padding: 0px;
}
.section-two p a {
	color: inherit;
	text-decoration: none;
	outline: none;
}
.section-two .boxes {
	position: relative;
	padding: 30px 0px;
	text-align: center;
}
.section-two .boxes .image-box {
	position: relative;
}
.section-two .boxes .image-box img {
	display: block;
	margin: auto;
	max-height: 100px;
}
@media (max-width:1199px) {
.section-two {
	padding: 50px 0px;
}
.section-two h2 {
	font-size: 40px;
}
.section-two p {
	font-size: 20px;
}
.section-two .boxes {
	padding: 20px 0px;
}
.section-two .boxes .image-box img {
	max-height: 75px;
}
}
@media (max-width:991px) {
.section-two {
	padding: 50px 0px;
}
.section-two h2 {
	font-size: 35px;
}
.section-two p {
	font-size: 18px;
}
}
@media (max-width:767px) {
.section-two {
	padding: 30px 0px;
}
.section-two h2 {
	font-size: 30px;
}
.section-two p {
	font-size: 16px;
}
}
/*** ### Section Three ### ***/
.section-three {
	position: relative;
	padding: 0px 0px 30px 0px;
	background: #FFFFFF;
}
.section-three .spacer {
	position: relative;
	display: block;
	height: 50px;
}
.section-three h2 {
	color: #000000;
	font-size: 32px;
	font-weight: 300;
	margin: 0px 0px 15px 0px;
	padding: 0px;
	text-align: center;
}
.section-three h3 {
	color: #404040;
	font-size: 24px;
	font-weight: 400;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}
.section-three p {
	color: #000000;
	font-size: 20px;
	font-weight: 300;
	margin: 0px;
	padding: 0px;
}
.section-three p a {
	color: inherit;
	text-decoration: none;
	outline: none;
}
.section-three ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.section-three li {
	position: relative;
	display: block;
	color: #000000;
	font-size: 20px;
	font-weight: 300;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 0px 15px;
}
.section-three li:last-child {
	margin-bottom: 0px;
}
.section-three li::before {
	position: absolute;
	content: "•";
	top: 0px;
	left: 0px;
}
.section-three .text-box {
	position: relative;
	padding: 0px;
}
.section-three .image-box {
	position: relative;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
	-webkit-filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
	-moz-filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
	-ms-filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
	-o-filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
	will-change: filter;
	height: 400px;
	padding: 0px;
}
.section-three .image-box img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
@media (max-width:1199px) {
.section-three .spacer {
	height: 30px;
}
.section-three h2 {
	font-size: 28px;
}
.section-three h3 {
	font-size: 20px;
}
.section-three p {
	font-size: 18px;
}
.section-three li {
	font-size: 18px;
	padding: 0px 0px 0px 12px;
}
.section-three .image-box {
	height: 375px;
}
}
@media (max-width:991px) {
.section-three h2 {
	font-size: 25px;
}
.section-three h3 {
	font-size: 18px;
}
.section-three p {
	font-size: 16px;
}
.section-three li {
	font-size: 16px;
	padding: 0px 0px 0px 10px;
}
.section-three .image-box {
	height: 350px;
}
}
@media (max-width:767px) {
.section-three .text-box {
	padding: 30px 15px;
}
.section-three .image-box {
	height: 320px;
	padding: 0px 15px;
}
}
/*** ### Section Foure ### ***/
.section-foure {
	position: relative;
	padding: 30px 0px;
	background: #FFFFFF;
}
.section-foure .spacer {
	position: relative;
	display: block;
	height: 50px;
}
.section-foure h2 {
	color: #000000;
	font-size: 32px;
	font-weight: 300;
	margin: 0px 0px 15px 0px;
	padding: 0px;
	text-align: center;
}
.section-foure h3 {
	color: #000000;
	font-size: 18px;
	font-weight: 300;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}
.section-foure p {
	color: #000000;
	font-size: 16px;
	font-weight: 300;
	margin: 0px;
	padding: 0px;
}
.section-foure p a {
	color: inherit;
	text-decoration: none;
	outline: none;
}
.section-foure .main-box {
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
}
.section-foure .boxes {
	position: relative;
	flex: 1;
	min-width: 20%;
	max-width: 20%;
	width: 20%;
	margin-top: 30px;
	text-align: center;
}
.section-foure .image-box {
	position: relative;
	height: 195px;
	border: 1px solid #FFFFFF;
}
.section-foure .image-box img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
@media (max-width:1199px) {
.section-foure .spacer {
	height: 0px;
}
.section-foure h2 {
	font-size: 28px;
}
.section-foure h3 {
	font-size: 16px;
}
.section-foure p {
	font-size: 15px;
}
.section-foure .boxes {
	min-width: 20%;
	max-width: 20%;
	width: 20%;
}
.section-foure .image-box {
	height: 175px;
}
}
@media (max-width:991px) {
.section-foure h2 {
	font-size: 25px;
}
.section-foure h3 {
	font-size: 16px;
}
.section-foure p {
	font-size: 15px;
}
.section-foure .boxes {
	min-width: 33.33%;
	max-width: 33.33%;
	width: 33.33%;
}
.section-foure .image-box {
	height: 150px;
}
}
@media (max-width:767px) {
.section-foure h2 {
	font-size: 25px;
}
.section-foure h3 {
	font-size: 14px;
}
.section-foure .image-box {
	height: 150px;
}
}
@media (max-width:576px) {
.section-foure h2 {
	font-size: 25px;
}
.section-foure h3 {
	font-size: 12px;
}
.section-foure .boxes {
	min-width: 50%;
	max-width: 50%;
	width: 50%;
}
.section-foure .image-box {
	height: 150px;
}
}
/*** ### Fixed Background ### ***/
.fixed-background {
	position: relative;
	height: 100vh;
	max-height: 697px;
	background-image: url(../images/gettyimages-1401321707-1600.webp);
	background-size: cover !important;
	background-attachment: fixed !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}
.fixed-background.one {
	background-image: url(../images/gettyimages-929029342-170667a-1600.webp) !important;
	background-size: cover !important;
}
.fixed-background.two {
	background-image: url(../images/gettyimages-1401321707-1600.webp) !important;
	background-size: cover !important;
}
@media (max-width:767px) {
.fixed-background {
	max-height: 576px;
	background-attachment: scroll !important;
}
}
/*** ### Kontakt ### ***/
.kontakt-section {
	position: relative;
	padding: 50px 0px;
}
.kontakt-section h2 {
	color: #000000;
	font-size: 32px;
	font-weight: 300;
	margin: 0px 0px 15px 0px;
	padding: 0px;
	text-align: center;
}
.kontakt-section h3 {
	color: rgba(64,64,64,.91);
	font-size: 24px;
	font-weight: 400;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}
.kontakt-section p {
	color: #000000;
	font-size: 20px;
	font-weight: 300;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}
.kontakt-section .text-box {
	position: relative;
	margin-top: 30px;
}
.kontakt-section .map-box {
	position: relative;
	margin-top: 30px;
}
.kontakt-section .map-responsive {
	overflow: hidden;
	padding-bottom: 50%;
	position: relative;
	height: 0;
}
.kontakt-section .map-responsive iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}
@media (max-width:1199px) {
.kontakt-section {
	position: relative;
	padding: 30px 0px;
}
.kontakt-section h2 {
	font-size: 28px;
}
.kontakt-section h3 {
	font-size: 20px;
}
.kontakt-section p {
	font-size: 18px;
}
.kontakt-section .text-box {
	position: relative;
	margin-top: 20px;
}
.kontakt-section .map-box {
	position: relative;
	margin-top: 20px;
}
}
@media (max-width:991px) {
.kontakt-section h2 {
	font-size: 25px;
}
.kontakt-section h3 {
	font-size: 18px;
}
.kontakt-section p {
	font-size: 16px;
}
}
/*** ### Footer ### ***/
footer {
	position: relative;
	border-top: 10px solid #f00;
	background: #c0c0c0;
	padding: 15px 0px;
}
footer .iner {
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
}
footer .iner .items {
	position: relative;
	padding: 25px 0px;
	width: 100%;
}
footer .iner .footer-logo {
	position: relative;
	padding: 15px 0px;
	margin-right: 15px;
}
footer .iner .footer-logo img {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	max-width: 134px;
}
footer h2 {
	color: #000000;
	font-size: 16px;
	font-weight: 900;
	margin: 0px 0px 10px 0px;
	padding: 0px;
	min-height: 20px;
}
footer p {
	color: #000000;
	font-size: 15px;
	font-weight: 400;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}
footer ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
footer ul li {
	position: relative;
	display: block;
	margin: 0px 0px 10px 0px;
	padding: 0px;
	color: #000000;
	font-size: 15px;
	font-weight: 400;
}
footer ul li a {
	position: relative;
	display: inline-block;
	color: inherit !important;
	text-decoration: none !important;
	outline: none;
}
/*** ### Impressum and Datenschutz Hero Section ### ***/
.impressum-datenschutz-hero-section {
	position: relative;
	height: 100vh;
	max-height: 575px;
	min-height: 550px;
	background: url(../images/gettyimages-1367053040-1600-1.webp) center center no-repeat;
	background-size: cover !important;
	border-bottom: 15px solid #f00;
	box-shadow: 0 2px 4px rgba(0,0,0,.4);
}
/*** ### Impressum and Datenschutz ### ***/
.impressum-datenschutz {
	position: relative;
	padding: 30px 0px;
}
.impressum-datenschutz .boxes {
	position: relative;
	padding: 20px 0px;
}
.impressum-datenschutz .title {
	position: relative;
	padding: 0px 0px 10px 0px;
	border-bottom: 2px solid #677a85;
}
.impressum-datenschutz .spacer {
	position: relative;
	display: block;
	height: 20px;
}
.impressum-datenschutz h2 {
	color: #000000;
	font-size: 16px;
	font-weight: 900;
	margin: 0px;
	padding: 0px;
}
.impressum-datenschutz h3 {
	color: #000000;
	font-size: 12px;
	font-weight: 900;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}
.impressum-datenschutz p {
	color: #000000;
	font-size: 12px;
	font-weight: 400;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}
.impressum-datenschutz p a {
	color: inherit;
	text-decoration: none;
	outline: none;
}
.impressum-datenschutz ul {
	margin: 5px 0px 0px 0px;
	padding: 0px;
	list-style: none;
}
.impressum-datenschutz ul li {
	position: relative;
	display: block;
	color: #000000;
	font-size: 12px;
	font-weight: 400;
	margin: 0px;
	padding: 0px;
}
.impressum-datenschutz ul li a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	outline: none;
	color: inherit;
}
@media (max-width:1199px) {
.impressum-datenschutz {
	padding: 20px 0px;
}
.impressum-datenschutz .boxes {
	position: relative;
	padding: 15px 0px;
}
.impressum-datenschutz .spacer {
	height: 15px;
}
}
