@font-face {
    font-family: 'Optima';
    src: url('../fonts/Optima Medium.ttf');
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

body {
	background-color:#fff;
  }



h1{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	
	font-size: 40px;
  	line-height: 50px;
	color:#E30016;
	text-align: center;
}

h2{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	
	font-size: 30px;
	line-height: 36px;
	color:#E30016;
	
	text-align: center;
	margin-bottom: 30px;
}

h3{
  	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
	
	font-size: 20px;
  	line-height: 30px;
	color:#392628;
	
	text-align: center;
	margin-bottom: 10px
}

h4{
  	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	
	font-size: 25px;
  	line-height: 35px;
	color:#392628;
}

h5, p, a, strong, li{
  	font-family: "ff-dax-pro", sans-serif; 
	font-weight: 400;
	font-style: normal;
	
	font-size: 17px;
  	line-height: 30px;
	color:#392628;
}

a {
	text-decoration:none;
}

a:hover {
	text-decoration: underline;
	color:#E30016;
}

b{
  	font-family: "ff-dax-pro", sans-serif;
	font-weight: 700;
	font-style: normal;
	
	color:#392628;
}

ul {
    position: relative;
    padding-left: 17px;
}

@media only screen and (max-width: 1300px) {
	
	h1, h2{
		font-size: 32px;
		line-height: 42px;
	}
	
	h3{
		font-size: 20px;
  		line-height: 30px;
	}
	
	h4{
		font-size: 24px;
  		line-height: 36px;
	}

}

@media (max-width: 768px) {
	
	h1,
	h2{
		font-size: 27px;
		line-height: 37px;
	}
	
	h3{
		font-size: 21px;
  		line-height: 30px;
	}
	
	h4{
		font-size: 21px;
  		line-height: 30px;
		margin-bottom: 0;
	}
	


}

:target:before {
	content: "";
	display: block;
	height: 200px; /* same as your fixed header height */
	margin: -200px 0 0; /* negative fixed header height */
}



.wrapper {
  height: 100vh;
  width: 100vw;
  
}

/********************* button  *********************/


.button{
	text-align: center;
	background-color: #E30016;
	
	border-radius: 30px;
	margin: 30px 0 0 0;
  	padding: 8px 25px;
	display: inline-block;
}

.button:hover{
	color: #392628;
  	background-color:#000;
	text-decoration: none;
}

.button a{
  	color: #fff;
	text-decoration: none
}

.button a:hover{
	text-decoration: underline;
}


.button-white{
	text-align: center;
	background-color: #fff;
	
	border-radius: 30px;
	margin: 30px 0 0 0;
  	padding: 8px 25px;
	display: inline-block;
}

.button-white:hover{
  	background-color:#fff;
	text-decoration: none;
}

.button-white a{
  	color: #E30016;
	text-decoration: none
}

.button-white a:hover{
	text-decoration: underline;
}


/******************** Header ********************/

header {
	position:fixed;
	width: 100%;
	height: 120px;
	background: #fff;
	padding: 15px 0;
	z-index:8888;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}


header .container {
  	width: 60%;
	}
	
	
/******************** Header - Logo ********************/

header .container .logo{
	float: left;
}

header .container .logo img{
	width:auto;
	height:90px;
}

/******************** Header - Navigation ********************/



.toggle,
[id^=drop] {
    display: none;
}

nav {
    margin: 0;
    padding: 0;
}

nav:after {
    content: "";
    display: table;
    clear: both;
}

nav ul {
    float: right;
    padding: 0;
    margin: 0;
    margin-top: 40px;
    list-style: none;
    position: relative;
}

nav ul li {
    margin: 0;
    display: inline-block;
    float: left;
    padding: 10px 0 5px 30px;
}

nav ul li .selected,
nav ul li ul li .selected {
    color: #E30016;
    text-decoration: none;
}

nav ul li a {
    font-family: "ff-dax-pro-condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    color: #392628;
    text-decoration: none;
    display: block;
}

nav ul li a:hover {
    color: #E30016;
    text-decoration: none;
}

nav ul li ul li:hover {
    color: #E30016;
    text-decoration: none;
}


nav ul ul {
    display: none;
    position: absolute;
	width: 250px;
    top: 5px;
    left: 105px;
	background-color: rgba(255, 255, 255, 1); /* Leicht transparenter Hintergrund */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Schatten für die Navigation */
	border: none;
}

nav ul li:hover > ul {
    display: block; /* Zeigt die Unternavigation beim Hover an */
}

nav ul ul li {
    display: block;
    width: 100%;
    padding: 10px 20px; /* Gleiche Abstände wie die Hauptnavigation */
    border-bottom: 1px solid #e8dcd5; /* Trennlinie zwischen den Untermenüpunkten */
}

nav ul ul li:last-child {
    border-bottom: none; /* Entfernt die Trennlinie beim letzten Untermenüpunkt */
}

nav ul ul li a {
    font-family: "ff-dax-pro-condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    color: #392628; /* Gleiche Schriftfarbe wie die Hauptnavigation */
    text-decoration: none;
    display: block;
    padding: 5px 10px; /* Innenabstand für bessere Lesbarkeit */
}

nav ul ul li a:hover {
    color: #E30016; /* Hover-Farbe für die Unternavigation */
}


@media all and (max-width: 1300px) {
	
    header {
        height: 100px;
        background: #fff;
        padding: 15px 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Schatten für den Header */
    }

    header .container {
        width: 85%;
    }

    header .container .logo img {
        height: 70px;
    }

    nav {
        margin: 0;
    }

    .toggle + a,
    .menu {
        display: none;
    }

    .menu {
        margin-top: 6px;
        float: left;
        width: 120%;
		margin-left: -10%;
		padding: 0 10%;
    }

    .toggle {
        font-family: "ff-dax-pro-condensed", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 20px;
        line-height: 30px;
        color: #392628;
        text-decoration: none;
        display: block;
    }

    .toggle span {
        font-family: "ff-dax-pro-condensed", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 40px;
        float: right;
        margin-top: 20px;
        color: #E30016;
        margin-bottom: 0;
    }

    .toggle:hover {
        color: #E30016;
    }

    [id^=drop]:checked + ul {
        display: block;
        background-color: rgba(255, 255, 255, 1); /* Leicht transparenter Hintergrund */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Schatten für die Navigation */
    }

    nav ul {
        margin-top: 10px;
        background-color: transparent;
    }

    nav ul li {
        display: block;
        width: 100%;
        padding: 8px 0px;
        border-bottom: 1px solid #e8dcd5;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        font-family: "ff-dax-pro-condensed", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 20px;
        line-height: 30px;
        color: #392628;
        text-decoration: none;
        display: block;
    }

    nav ul li a:hover {
        color: #E30016;
    }

    nav ul ul {
        float: none;
        position: static;
        color: #392628;
    }

    nav ul ul li {
        display: block;
        width: 100%;
        padding-left: 0px;
        border-bottom: 0px;
		padding: 5px;
    }
	
	nav ul ul li:first-child {
  	 	margin-top: 5px;
	}
	
	nav ul ul li:last-child {
  	 	margin-bottom: 10px;
	}

    nav ul ul li a {
        padding: 0px 10px;
        font-size: 18px;
        line-height: 24px;
    }

    nav ul ul li:hover > ul,
    nav ul li:hover > ul {
        display: none;
    }
}


@media screen and (max-width: 768px) {
	
	header {
		height: 80px;
        padding: 10px 0;
    }

    header .container {
        width: 90%;
    }

    header .container .logo img {
        height: 60px;
    }
	
	.menu {
        margin-top: 1px;
    }


}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}



/********************* Imagebild + Text  *********************/


.home {
	width: 100%;
	height: 100vh;
	background: url('../img/header/header-seniorenbetreuung-nild-ronge-wetter-ruhr-witten-herdecke-hagen-nrw-deutschland.jpg') no-repeat center center;
  	background-size: cover;
  	background-position: center;
	z-index:7777;
	
  	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;
	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	align-items: flex-end;
}

.home .container{
	width: 65%;
	margin: 0 auto 100px auto;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;
	
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}


.home .container .box {
	width: auto;
	padding: 30px 40px 40px 40px;
	background-color: #E30016;
}

.home .container .box h5{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	
	font-size: 45px;
  	line-height: 55px;
	
	color:#fff;
	text-align: left;
}



@media (max-width: 1300px) {
	

	.home .container{
		width: 85%;
	}
	
	
}


@media screen and (max-width: 768px) {
	
	.home{
		width: 100%;
		height: 100vh;
		background: url('../img/header/header-mobil-seniorenbetreuung-nild-ronge-wetter-ruhr-witten-herdecke-hagen-nrw-deutschland.jpg') no-repeat center center;
		background-size: cover;
  		background-position: center;
		z-index:7777;
	
  		-webkit-display: flex;
		-moz-display: flex;
		-ms-display: flex;
		display: flex;
	
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
	
		-webkit-align-items: flex-end;
		-moz-align-items: flex-end;
		-ms-align-items: flex-end;
		align-items: flex-end;
	}
	
	.home .container{
		width: 90%;
		margin: 0 auto 120px auto;
	}
	
	.home .container .box {
		width: 100%;
		padding: 20px;
	}
	
	.home .container .box h5{
		font-size: 28px;
  		line-height: 36px;
	}


}



/********************* Anfangstext  *********************/


main{
	width: 100%;
	margin: 140px 0 140px 0;
	background-color:#FFF;
}

main .container {
	width: 60%;
	margin: 0 auto 0 auto;
	text-align: center;
}

main .container .headline{
	width: 100%;
	margin: 0 auto 30px auto;
}

main .container .article p{
	margin-bottom: 30px;
}




@media only screen and (max-width: 1300px) {
	
	main{
		margin: 110px 0 110px 0;
	}

	main .container{
		width: 85%;
	}

}

@media (max-width: 768px) {
	
	main{
		margin: 80px 0 80px 0;
	}
	
	main .container{
		width: 90%;
	}	
	
}



/********************* Anfangstext Unterseiten  *********************/



.main{
	width: 100%;
	margin: 0 0 140px 0;
	padding-top: 250px;
	background-color:#FFF;
}

.main .container,
.main .container-2{
	width: 60%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.main .container .article{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align:left;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.main .container .article .one{
	width: 45%;
	text-align: left;
	background-color: #fff;
}

.main .container .article .one img{
	width: 100%;
	height: auto;
}

.main .container .article .one h1{
	text-align: left;
	margin-bottom: 20px;
}

.main .container .article .one h2{
	text-align: left;
	margin: 40px 0 35px 0;
}

.main .container .article .one p{
	margin-bottom: 0px;
}

.main .container-2 .headline{
	width: 100%;
	margin: 0 auto 30px auto;
	text-align: center;
}

.main .container-2 .article p{
	margin-bottom: 10px;
	text-align: center;
}

.main .container-2 .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


@media only screen and (max-width: 1300px) {
	
	.main{
		margin: 0 0 110px 0;
		padding-top: 200px;
	}
	
	.main .container,
	.main .container-2{
		width: 85%;
	}
	
	.main .container .article .one h2{
		font-size: 20px;
  		line-height: 30px;
		margin-top: 30px;
		margin-bottom: 0px;
	}

}

@media (max-width: 768px) {
	
	.main{
		margin: 0 0 60px 0;
		padding-top: 140px;
	}
	
	.main .container,
	.main .container-2{
		width: 90%;
	}
	
	.main .container .article{
		margin: 0 auto 0 auto;
	}
	
	.main .container .article .one{
		width: 100%;
		margin-bottom: 40px;
	}
	
}



/********************* 2-spaltig  *********************/

.about{
	width: 100%;
	margin: 0;
	background-color:#FFF;
}

.about .container-1,
.about .container-2,
.about .container-3,
.about .container-4,
.about .container-5,
.about .container-6{
	width: 100%;
	display: flex;
	flex-direction: row;
}

.about .container-1 .image{
	width: 50%;
	height: auto;
	min-height: 650px;
	background: url("../img/seniorenbetreuung-wetter-ruhr/team-seniorenbetreuung-wetter-ruhr-ennepe-ruhr-kreis-nrw-deutschland.jpg") no-repeat center;
	background-size: cover;
}

.about .container-2 .image{
	width: 50%;
	height: auto;
	min-height: 650px;
	background: url("../img/seniorendienst-nils-ronge/philosophie-seniorendienst-nils-ronge-wetter-ruhr-ennepe-ruhr-kreis.jpg") no-repeat center;
	background-size: cover;
}

.about .container-3 .image{
	width: 50%;
	height: auto;
	min-height: 650px;
	background: url("../img/seniorendienst-nils-ronge/geschichte-gruender-nils-ronge-seniorendienst-wetter-ruhr-witten-hagen-herdecke.jpg") no-repeat center;
	background-size: cover;
}

.about .container-4 .image{
	width: 50%;
	height: auto;
	min-height: 650px;
	background: url("../img/pflegeberatung/pflegeberatung-nick-markfeld-seniorenbetreuung-wetter-ruhr.jpg") no-repeat center;
	background-size: cover;
}

.about .container-5 .image{
	width: 50%;
	height: auto;
	min-height: 650px;
	background: url("../img/haushaltshilfe-fuer-senioren/ansprechpartner-haushaltshilfe-fuer-senioren-daniel-engelbrecht.jpg") no-repeat center;
	background-size: cover;
}

.about .container-6 .image{
	width: 50%;
	height: auto;
	min-height: 650px;
	background: url("../img/pflegeberatung/pflegeberatung-nils-ronge-seniorenbetreuung-wetter-ruhr.jpg") no-repeat center;
	background-size: cover;
}

.about .container-1 .text,
.about .container-2 .text,
.about .container-3 .text,
.about .container-4 .text,
.about .container-5 .text,
.about .container-6 .text{
	width: 50%;
	background-color:#e8dcd5;
	padding: 120px 150px;
}

.about .container-1 .text h3,
.about .container-1 .text h2,
.about .container-1 .text p,
.about .container-2 .text h3,
.about .container-2 .text h2,
.about .container-2 .text p,
.about .container-3 .text h3,
.about .container-3 .text h2,
.about .container-3 .text p,
.about .container-4 .text h3,
.about .container-4 .text h2,
.about .container-4 .text p,
.about .container-5 .text h3,
.about .container-5 .text h2,
.about .container-5 .text p,
.about .container-6 .text h3,
.about .container-6 .text h2,
.about .container-6 .text p{
	text-align: left;
}

.about .container-1 .text ul,
.about .container-2 .text ul,
.about .container-3 .text ul,
.about .container-4 .text ul,
.about .container-5 .text ul,
.about .container-6 .text ul{
    position: relative;
    padding-left: 17px;
}

@media only screen and (max-width: 1300px) {
	
	.about .container-1,
	.about .container-3,
	.about .container-5,
	.about .container-6{
		flex-direction: column;
	}
	
	.about .container-2,
	.about .container-4{
		flex-direction: column-reverse;
	}

	.about .container-1 .image,
	.about .container-2 .image,
	.about .container-3 .image,
	.about .container-4 .image,
	.about .container-5 .image,
	.about .container-6 .image{
		width: 100%;
		min-height: 500px;
	}
	
	.about .container-1 .image img,
	.about .container-2 .image img,
	.about .container-3 .image img,
	.about .container-4 .image img,
	.about .container-5 .image img,
	.about .container-6 .image img{
		width: 100%;
	}

	.about .container-1 .text,
	.about .container-2 .text,
	.about .container-3 .text,
	.about .container-4 .text,
	.about .container-5 .text,
	.about .container-6 .text{
		width: 100%;
		padding: 100px 40px;
	}

}

@media (max-width: 768px) {
	
	.about .container-1 .image,
	.about .container-2 .image,
	.about .container-3 .image,
	.about .container-4 .image,
	.about .container-5 .image,
	.about .container-6 .image{
		width: 100%;
		min-height: 350px;
	}
	
	.about .container-1 .text,
	.about .container-2 .text,
	.about .container-3 .text,
	.about .container-4 .text,
	.about .container-5 .text,
	.about .container-6 .text{
		padding: 80px 20px;
	}

}



/********************* Team (3-spaltig)  *********************/


.team{
	width: 100%;
	padding: 140px 0 60px 0;
	background-color:#E8DCD5;
}

.team .container{
	width: 60%;
	margin: 0 auto 0 auto;
}

.team .container .headline{
	width: 100%;
	margin: 0 auto 100px auto;
}

.team .container .article{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align:center;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.team .container .article .one{
	width: 30%;
	text-align: left;
	margin-bottom: 80px;
	background-color: #fff;
	padding: 20px;
}

.team .container .article .one img{
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.team .container .article .one h4{
	color: #E30016;
	margin-bottom: 5px;
}





@media only screen and (max-width: 1300px) {
	
	.team{
		padding: 110px 0 10px 0;
	}
	
	.team .container{
		width: 85%;
	}
	
	.team .container .headline{
		margin: 0 auto 80px auto;
	}
	
	.team .container .article{
		margin: 0 auto 80px auto;
	}
	
	.team .container .article .one{
		width: 45%;
		margin-bottom: 70px;
	}

}


@media (max-width: 768px) {
	
	.team{
		padding: 80px 0 40px 0;
	}
	
	.team .container{
		width: 90%;
	}
	
	.team .container .headline{
		margin: 0 auto 80px auto;
	}
	
	.team .container .article{
		margin: 0 auto 0px auto;
	}
	
	.team .container .article .one{
		width: 100%;
		margin-bottom: 40px;
	}


	
}


/********************* Leistungen (2-spaltig)  *********************/


.work{
	width: 100%;
	margin: 140px 0 140px 0;
	background-color:#FFF;
}

.work .container{
	width: 60%;
	margin: 0 auto 0 auto;
}

.work .container .headline{
	width: 100%;
	margin: 0 auto 100px auto;
}

.work .container .headline p{
	text-align: center;
}

.work .container .article{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align:center;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.work .container .article .one{
	width: 45%;
	text-align: left;
	background-color: #fff;
	margin-bottom: 80px;
}

.work .container .article .one img{
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}

.work .container .article .one .icon{
	width: 60px;
	margin-bottom: 10px;
}

.work .container .article .one .icon img{
	width: 100%;
	height: auto;
	margin-bottom: 0px;
}

.work .container .article .one h4{
	color: #E30016;
}

.work .container .article .one h5{
	margin-bottom: 20px;
}

.work .container .article .one .checklist {
    list-style: none;
    padding: 0; 
    margin: 0;
}

.work .container .article .one .checklist li {
    position: relative;
    padding-left: 20px;
}

.work .container .article .one .checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #E30016;
}




@media only screen and (max-width: 1300px) {
	
	.work{
		margin: 110px 0 40px 0;
	}
	
	.work .container{
		width: 85%;
	}
	
	.work .container .headline{
		margin: 0 auto 80px auto;
	}
	
	.work .container .article{
		margin: 0 auto 0 auto;
	}
	
	.work .container .article .one{
		width: 45%;
		margin-bottom: 70px;
	}

}


@media (max-width: 768px) {
	
	.work{
		margin: 80px 0 20px 0;
	}
	
	.work .container{
		width: 90%;
	}
	
	.work .container .headline{
		margin: 0 auto 60px auto;
	}
	
	.work .container .article{
		margin: 0 auto 0 auto;
	}
	
	.work .container .article .one{
		width: 100%;
		margin-bottom: 60px;
	}
	
	.work .container .article .one img{
		margin-bottom: 15px;
	}
	
	.work .container .article .one .icon{
		width: 50px;
		margin-bottom: 5px;
		margin-top: 10px;
	}

	
}


/********************* Ablauf *********************/


.process{
	width: 100%;
}

.process .container{
	width: 100%;
	height: auto;
	padding: 140px 0;
	margin: 0 auto 0 auto;
  	background-size: cover;
  	background-position: center;
	background-color: #E30016;
}

.process .container img{
	width: 100%;
}

.process .container .headline{
	width: 65%;
	margin: 0 auto 100px auto;
	text-align: center;
}

.process .container .headline h2,
.process .container .headline h3{
	color: #fff;
}

.process .container .article{
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:center;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.process .container .article .one{
	width: 30%;
	padding: 30px;
	text-align: left;
	background-color: #fff;
	margin-bottom: 40px;
}

.process .container .article .one h4{
	margin-bottom: 15px;
}

.process .container .article .one .number {
    color: #E30016;
}


.process .container .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


@media only screen and (max-width: 1300px) {
	
	.process .container{
		padding: 110px 0;
	}

	.process .container .headline{
		width: 85%;
		margin: 0 auto 80px auto;
	}
	
	.process .container .article{
		width: 85%;
	}
	
	
}

@media (max-width: 768px) {
	
	
	.process .container{
		width: auto;
		height: 100%;
		padding: 80px 0;
		margin: 0 auto 0 auto;
	}
	
	.process .container{
		padding: 80px 0;
	}	

	.process .container .headline{
		width: 90%;
		margin: 0 auto 60px auto;
	}
	
	.process .container .article{
		width: 90%;
	}
	
	.process .container .article .one{
		width: 100%;
		padding: 25px;
		margin-bottom: 20px;
	}
	
	.process .container .article .one h4{
		margin-bottom: 10px;
	}



}


/********************* Vorteile (4-spaltig)  *********************/


.benefit{
	width: 100%;
	margin: 140px 0 140px 0;
	background-color:#FFF;
}

.benefit .container{
	width: 60%;
	margin: 0 auto 0 auto;
}

.benefit .container .headline{
	width: 100%;
	margin: 0 auto 100px auto;
	text-align:center;
}

.benefit .container .article{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align:center;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.benefit .container .article .one-color{
	width: 90%;
	margin: 0 auto 0 auto;
	text-align:center;
	padding: 40px;
	margin-bottom: 80px;
	background-color: #E8DCD5;
}

.benefit .container .article .two-color{
	width: 40%;
	margin: 0 auto 0 auto;
	text-align:center;
	padding: 40px;
	margin-bottom: 80px;
	background-color: #E8DCD5;
}

.benefit .container .article .three-color{
	width: 28%;
	margin: 0 auto 0 auto;
	text-align:center;
	padding: 40px;
	margin-bottom: 60px;
	background-color: #E8DCD5;
}

.benefit .container .article .four{
	width: 20%;
	margin: 0 auto 0 auto;
	text-align:center;
	margin-bottom: 80px;
}


.benefit .container .article .one-color img,
.benefit .container .article .two-color img,
.benefit .container .article .three-color img,
.benefit .container .article .four img{
	width: 60px;
	height: auto;
	margin-bottom: 10px;
}

.benefit .container .article .one-color h3,
.benefit .container .article .two-color h3,
.benefit .container .article .three-color h3,
.benefit .container .article .four h3{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
}

@media only screen and (max-width: 1300px) {
	
	.benefit{
		margin: 110px 0 110px 0;
	}
	
	.benefit .container{
		width: 85%;
	}
	
	.benefit .container .headline{
		margin: 0 auto 80px auto;
	}
	
	.benefit .container .article{
		margin: 0 auto 80px auto;
	}
	
	
	.benefit .container .article .two-color,
	.benefit .container .article .three-color,
	.benefit .container .article .four{
		width: 45%;
		margin-bottom: 70px;
	}
	
	.benefit .container .article .one-color{
		margin-bottom: 70px;
	}

}


@media (max-width: 768px) {
	
	.benefit{
		margin: 80px 0 80px 0;
	}
	
	.benefit .container{
		width: 90%;
	}
	
	.benefit .container .headline{
		margin: 0 auto 60px auto;
	}
	
	.benefit .container .article{
		margin: 0 auto 0 auto;
	}
	.benefit .container .article .one-color,
	.benefit .container .article .two-color,
	.benefit .container .article .four{
		width: 100%;
		margin-bottom: 40px;
	}
	
	.benefit .container .article .three-color{
		width: 75%;
		margin-bottom: 30px;
	}
	
	.benefit .container .article .one-color,
	.benefit .container .article .two-color{
		padding: 30px 20px;
	}
	
	.benefit .container .article .three-color{
		padding: 25px 30px 20px 30px;
	}
	
	.benefit .container .article .one-color img,
	.benefit .container .article .two-color img,
	.benefit .container .article .three-color img,
	.benefit .container .article .four img{
		width: 50px;
	}

	
}


/********************* Vorteile - Kästchen weiß, Hintergrund Beige  *********************/


.benefit-white{
	width: 100%;
	padding: 140px 0 140px 0;
	background-color:#E8DCD5;
}

.benefit-white .container{
	width: 60%;
	margin: 0 auto 0 auto;
}

.benefit-white .container .headline{
	width: 100%;
	margin: 0 auto 100px auto;
	text-align:center;
}

.benefit-white .container .article{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align:center;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.benefit-white .container .article .two-color{
	width: 40%;
	margin: 0 auto 0 auto;
	text-align:center;
	padding: 40px;
	margin-bottom: 80px;
	background-color: #fff;
}

.benefit-white .container .article .two-color img{
	width: 60px;
	height: auto;
	margin-bottom: 10px;
}

.benefit-white .container .article .two-color h3{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
}

@media only screen and (max-width: 1300px) {
	
	.benefit-white{
		padding: 110px 0 110px 0;
	}
	
	.benefit-white .container{
		width: 85%;
	}
	
	.benefit-white .container .headline{
		margin: 0 auto 80px auto;
	}
	
	.benefit-white .container .article{
		margin: 0 auto 80px auto;
	}
	
	
	.benefit-white .container .article .two-color{
		width: 45%;
		margin-bottom: 70px;
	}


}


@media (max-width: 768px) {
	
	.benefit-white{
		padding: 80px 0 80px 0;
	}
	
	.benefit-white .container{
		width: 90%;
	}
	
	.benefit-white .container .headline{
		margin: 0 auto 60px auto;
	}
	
	.benefit-white .container .article{
		margin: 0 auto 0 auto;
	}
	
	.benefit-white .container .article .two-color{
		width: 100%;
		margin-bottom: 40px;
	}
	
	.benefit-white .container .article .two-color{
		padding: 30px 20px;
	}
	
	.benefit-white .container .article .two-color img{
		width: 50px;
	}

	
}


/********************* Informationen - Hintergrund beige *********************/



.info{
	width: 100%;
	margin: 0;
	background-color: #E8DCD5;
}

.info .container{
	width: 100%;
	margin: 0 auto 0 auto;
	padding: 160px 0;
}

.info .container .headline{
	width: 60%;
	margin: 0 auto 20px auto;
	text-align: center;
}

.info .container .content,
.info .container .content-left{
	width: 60%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.info .container .content p,
.info .container .content li{
	font-size: 20px;
  	line-height: 30px;
	text-align: center;
}

.info .container .content-left p,
.info .container .content-left li{
	font-size: 20px;
  	line-height: 30px;
	text-align: left;
}

.info .container .content .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


@media only screen and (max-width: 1300px) {
	
	.info .container{
		padding: 130px 0;
	}

	.info .container .headline{
		width: 85%;
		margin: 0 auto 80px auto;
	}
	
	.info .container .content,
	.info .container .content-left{
		width: 85%;
	}
	
}

@media (max-width: 768px) {
	

	.info .container{
		padding: 100px 0;
	}	

	.info .container .headline{
		width: 90%;
		margin: 0 auto 30px auto;
	}
	
	.info .container .content-left p,
	.info .container .content-left li{
		font-size: 17px;
  		line-height: 27px;
}


}




/********************* Informationen - Hintergrund weiß  *********************/



.info-white{
	width: 100%;
	margin: 0;
}

.info-white .container{
	width: 100%;
	margin: 140px auto 140px auto;
}

.info-white .container .headline{
	width: 60%;
	margin: 0 auto 40px auto;
	text-align: center;
}

.info-white .container .content{
	width: 60%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.info-white .container .content-left{
	width: 60%;
	margin: 80px auto 0 auto;
	text-align:left;
}

.info-white .container .content p,
.info-white .container .content li{
	font-size: 20px;
  	line-height: 30px;
	text-align: center;
}

.info-white .container .content-left h3{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 700;
	text-align: left;
	margin: 30px 0 0px 0;
}


@media only screen and (max-width: 1300px) {
	
	.info-white .container{
		margin: 110px auto 110px auto;
	}

	.info-white .container .headline{
		width: 85%;
		margin: 0 auto 80px auto;
	}
	
	.info-white .container .content,
	.info-white .container .content-left{
		width: 85%;
	}
	
}

@media (max-width: 768px) {
	

	.info-white .container{
		margin: 80px auto 80px auto;
	}	

	.info-white .container .headline{
		width: 90%;
		margin: 0 auto 30px auto;
	}
	
	.info-white .container .content,
	.info-white .container .content-left{
		width: 90%;
	}
	
	.info-white .container .content-left{
		margin: 40px auto 0 auto;
	}
	
	.info-white .container .content-left p,
	.info-white .container .content-left li{
		font-size: 17px;
  		line-height: 27px;
}


}


/********************* Jobs  *********************/



.job {
	width: 100%;
	margin: 0;
}

.job .container{
	width: 60%;
	margin: -90px auto 140px auto;
}

.job .container section{
	margin: 0px auto 40px auto;
	text-align:left;
}

.job .container section h2{
	text-align: left;
	margin: 0 0 15px 0;
}

.job .container section strong{
  	font-family: "ff-dax-pro", sans-serif;
	font-weight: 600;
	font-style: normal;
	}

.job .container section .article{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align:center;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.job .container section .article .three-color{
	width: 30%;
	margin: 0 auto 0 auto;
	text-align:center;
	padding: 40px;
	margin-top: 40px;
	margin-bottom: 40px;
	background-color: #E8DCD5;
}

.job .container section .article .three-color img{
	width: 60px;
	height: auto;
	margin-bottom: 20px;
}

.job .container section .article .three-color h3{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
	margin-bottom: 0px;
}


@media only screen and (max-width: 1300px) {
	
	.job .container{
		margin: -70px auto 110px auto;
	}

	.job .container{
		width: 85%;
	}
	
	.job .container section .article{
		margin: 0 auto 30px auto;
	}
	
	.job .container section .article .three-color{
		padding: 40px 20px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	
}

@media (max-width: 768px) {
	

	.job .container{
		margin: -60px auto 80px auto;
	}	
	
	.job .container{
		width: 90%;
	}
	
	.job .container section .article{
		margin: 0 auto 0 auto;
	}
	
	.job .container section .article .three-color{
		width: 100%;
		padding: 30px 20px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	.job .container section .article .three-color img{
		width: 50px;
		margin-bottom: 15px;
	}
	

}


/********************* Jobs Übersicht  *********************/



.job-color{
	width: 100%;
	margin: 0 0 140px 0;
	background-color:#FFF;
}

.job-color .headline{
	width: 60%;
	margin: 0 auto 60px auto;
}

.job-color .headline h2{
	text-align: left;
}

.job-color .container{
	width: 60%;
	margin: 0 auto 0 auto;
	padding: 30px;
	text-align:left;
	background-color: #E8DCD5;
}

.job-color .container .article{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align:left;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.job-color .container .article .image{
	width: 40%;
}

.job-color .container .article .image img{
	width: 100%;
	height: auto;
}

.job-color .container .article .text{
	width: 55%;
	text-align: left;
}

.job-color .container .article .text h2{
	text-align: left;
	margin: 10px 0 20px 0;
}

.job-color .container .article .text p{
	margin-bottom: 0px;
}


@media only screen and (max-width: 1300px) {
	
	.job-color{
		margin: 0 0 110px 0;
	}
	
	.job-color .headline,
	.job-color .container{
		width: 85%;
	}
	
	.job-color .headline{
		margin: 0 auto 60px auto;
	}
	


}

@media (max-width: 768px) {
	
	.job-color{
		margin: -20px 0 60px 0;
	}
	
	.job-color .headline,
	.job-color .container{
		width: 90%;
	}
	
	.job-color .headline{
		margin: 0 auto 40px auto;
	}
	
	.job-color .container .article .image{
		width: 100%;
		margin-bottom: 20px;
	}

	.job-color .container .article .text{
		width: 100%;
	}

}


/********************* Accordion  *********************/

.accordion {
    width: 100%;
    margin: 140px 0;
    background-color: #FFF;
}

.accordion .container {
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.accordion .container .headline {
    width: 100%;
    margin: 0 auto 140px;
    text-align: center;
}

.accordion .container .panel {
    width: auto;
    margin: 0;
    padding: 0 40px 0 0;
    height: 0;
    overflow: hidden;
    color: rgba(0, 0, 0, 0);
    background-color: hsla(0, 0%, 100%, 0);
    box-sizing: border-box;
    transition: height 0.5s ease, color 0.5s ease;
}

.accordion .container label {
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 1px;
    padding: 15px 0;
    font-family: "ff-dax-pro-condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    color: #392628;
    border-top: 1px solid #e8dcd5;
}

.accordion .container input {
    display: none;
}

.accordion .container input:checked + label {
    color: #E30016;
}

.accordion .container input:checked + label:before {
    transition: 0.5s;
}

.accordion .container input:checked ~ .panel {
    height: auto;
    color: #000;
    padding: 0;
    transition: height 0.5s ease, color 0.5s ease;
}

.accordion .container label:before {
    content: " + ";
    font-family: "ff-dax-pro-condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    color: #E30016;
    float: left;
    margin-top: -2px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.accordion .container input:checked + label:before {
    content: " – ";
    font-family: "ff-dax-pro-condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    color: #E30016;
    float: left;
    margin-top: 0;
    margin-right: 10px;
    margin-bottom: 25px;
}

.accordion .container .panel p {
    margin: 5px 0 20px;
}

.accordion .container .panel ul {
    position: relative;
    padding-left: 17px;
	margin-bottom: 20px;
}

.accordion .container > div:last-of-type {
    border-bottom: 1px solid #e8dcd5;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1300px) {
    .accordion {
        margin: 110px 0;
    }

    .accordion .container {
        max-width: 85%;
    }

    .accordion .container .headline {
        margin: 0 auto 110px;
    }
}

@media (max-width: 768px) {
    .accordion {
        margin: 80px 0;
    }

    .accordion .container {
        max-width: 90%;
    }

    .accordion .container .headline {
        margin: 0 auto 40px;
    }
}


/********************* Banner mit Kundenbewertung  *********************/


		.banner-container {
            position: relative;
            width: 100%;
            height: auto; /* Höhe des Banners */
            overflow: hidden;
            background-image: url('../img/kundenbewertung/kundenbewertung.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

		.banner-container1 {
            position: relative;
            width: 100%;
            height: auto; /* Höhe des Banners */
            overflow: hidden;
            background-image: url('../img/kundenbewertung/kundenbewertung.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

		.banner-container .headline,
		.banner-container1 .headline{
          	position: absolute;
            top: 100px;
            width: 80%;
            z-index: 2;
        }

		.banner-container .banner,
        .banner-container1 .banner{
            display: flex;
            width: 100%;
            transition: transform 0.5s ease-in-out;
			margin: 260px 0 120px 0;;
        }
		
		.banner-container .banner-item,
        .banner-container1 .banner-item{
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
		
		.banner-container .banner-content,
        .banner-container1 .banner-content{
            width: 60%;
            background: rgba(255, 255, 255, 0.9);
            padding: 40px;
            text-align: left;
            box-sizing: border-box;
        }
		
		.banner-container .arrow,
        .banner-container1 .arrow{
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #fff;
            color: #818689;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 1;
        }
		
		.banner-container .arrow.left,
        .banner-container1 .arrow.left{
            left: 10px;
        }
		
		.banner-container .arrow.right,
        .banner-container1 .arrow.right{
            right: 10px;
        }


@media (max-width: 768px) {
	
		.banner-container {
            position: relative;
            width: 100%;
            height: auto; /* Höhe des Banners */
            overflow: hidden;
            background-image: url('../img/kundenbewertung/kundenbewertung-mobil.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

		.banner-container1 {
            position: relative;
            width: 100%;
            height: auto; /* Höhe des Banners */
            overflow: hidden;
            background-image: url('../img/kundenbewertung/kundenbewertung-mobil.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
	
		.banner-container .headline,
		.banner-container1 .headline{
            top: 60px;
        }
		
		.banner-container .banner,
        .banner-container1 .banner{
			margin: 220px 0 80px 0;;
        }
		
		.banner-container .banner-content,
        .banner-container1 .banner-content{
            width: 80%;
            padding: 20px;
        }
		
		.banner-container .arrow,
        .banner-container1 .arrow{
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #fff;
            color: #818689;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 1;
        }
		
		.banner-container .arrow.left,
        .banner-container1 .arrow.left{
            left: 0;
        }
		
		.banner-container .arrow.right,
        .banner-container1 .arrow.right{
            right: 0;
        }
	
}



/********************* Galerie  *********************/


.gallery{
	width: 100%;
	margin: 0 auto 0 auto;
	background-color:#FFF;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.gallery .image,
.gallery .image-2{
	margin: -4px 0;
	width: 33.33%;
}

.gallery .image img,
.gallery .image-2 img{
	width: 100%;
	height: auto;
}


@media (max-width: 768px) {
	
	.gallery .image{
		margin: -4px 0;
		width: 50%;
	}
	
	.gallery .image-2{
		margin: -4px 0;
		width: 100%;
	}
	
}


/********************* Kontakt (2-spaltig übereinander)  *********************/


.contact{
	width: 100%;
	margin: 140px 0 140px 0;
	background-color:#FFF;
}

.contact .container{
	width: 60%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.contact .container .article{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align:left;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.contact .container .article .one{
	width: 45%;
	text-align: left;
	background-color: #fff;
}

.contact .container .article .one img{
	width: 100%;
	height: auto;
}

.contact .container .article .one h2,
.contact .container .article .one h3{
	text-align: left;
}

.contact .container .article .one p{
	margin-bottom: 25px;
}

.contact .container .article .one ul {
    position: relative;
    padding-left: 17px;
}

.contact .container .article .one .button{
	margin: 15px 0 0 0;
}

@media only screen and (max-width: 1300px) {
	
	.contact{
		margin: 110px 0 110px 0;
	}
	
	.contact .container{
		width: 85%;
	}

}

@media (max-width: 768px) {
	
	.contact{
		margin: 80px 0 40px 0;
	}
	
	.contact .container{
		width: 90%;
	}
	
	.contact .container .article{
		margin: 0 auto 0 auto;
	}
	
	.contact .container .article .one{
		width: 100%;
		margin-bottom: 40px;
	}
	
}



/********************* Kontakt Button *********************/

.contact-widget {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #E30016;
    color: white;
    padding: 3px 20px 3px 5px;
    border-radius: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 1000;
    transition: background-color 0.3s;
}

.contact-widget:hover {
    background-color: #392628;
	text-decoration: none;
}

.contact-image {
    width: 55px;
    height: 55px;
    margin-right: 12px;
    border-radius: 50%;
}

.contact-text {
    font-weight: bold;
    color: white;
    text-align: left;
    line-height: 22px;
}


/********************* Popup-Overlay *********************/

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
	z-index: 9999;
}

.popup-content {
    background: white;
    padding: 30px 20px 30px 20px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.popup-content .contact-buttons .button{
	margin: 5px 0px 10px 0px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
}

.popup-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.popup-content h2 {
	margin-bottom: 15px;
}

.popup-content p {
	margin-bottom: 20px;
}




/********************* Footer  *********************/

.footer{
	width: 100%;
	padding: 100px 0 100px 0;
	background-color: #E30016;
}

.footer .container {
	width: 60%;
	margin: 0 auto 0 auto;
	text-align:left;
	
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;  
    flex-wrap: wrap;
}

.footer .container .one {
	width: 30%;
}

.footer .container .one-last {
	width: 10%;
}

.footer .container .one img{
	width: 80%;
}

.footer .container .one h4,
.footer .container .one-last h4{
	font-size: 20px;
	color: #fff;
	margin-bottom: 5px;
}

.footer .container .one b,
.footer .container .one p,
.footer .container .one a,
.footer .container .one-last a{
	color: #fff;
	text-align: left;
}


@media only screen and (max-width: 1300px) {
	
	.footer {
		padding: 80px 0 20px 0;
	}

	.footer .container {
		width: 85%;
	}
	
	.footer .container .one {
		width: 45%;
		margin-bottom: 60px;
	}

	.footer .container .one-last {
		width: 45%;
		margin-bottom: 60px;
	}

}

@media (max-width: 768px) {
	
	.footer{
		padding: 60px 0 25px 0;
	}
	
	.footer .container {
		width: 90%;
	}
	
	.footer .container .one,
	.footer .container .one-last{
		width: 100%;
		margin-bottom: 35px;
	}
	
	.footer .container .one img{
		width: 235px;
	}

}




/********************* Impressum, Datenschutz  *********************/

.imprint{
	width: 100%;
	margin: 0 0 140px 0;
	padding-top: 250px;
	background-color:#FFF;
}

.imprint .container {
	width: 60%;
	margin: 0 auto 0 auto;
}

.imprint .container .headline{
	width: 100%;
	margin: 0 auto 60px auto;
}

.imprint .container .headline h1{
	text-align: left;
}

.imprint .container .article h4{
	text-align:left;
	margin-bottom: 5px;
}

.imprint .container .article p{
	text-align:left;
	margin-bottom: 30px;
}

.imprint .container .article li{
	margin-left: 20px;
}

.imprint .container .article a:hover {
	color: #E30016;
}


@media only screen and (max-width: 1300px) {
	
	.imprint{
		margin: 0 0 110px 0;
		padding-top: 200px;
	}

	.imprint .container{
		width: 85%;
	}
	
}

@media (max-width: 768px) {
	
	.imprint{
		margin: 0 0 80px 0;
		padding-top: 140px;
	}
	
	.imprint .container{
		width: 90%;
	}
	
	.imprint .container .headline{
		margin: 0 auto 50px auto;
	}
	
}

/********************* kontaktformular *********************/


.form li{
	color:#392628;
	margin-left: 20px;
}

.form .btn{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
  	line-height: 30px;

	color: #fff;
	text-align: center;
	background-color: #E30016;
	text-decoration:none;
	
	border: none;
	border-radius: 30px;
	margin: 30px 0 0 0;
  	padding: 8px 25px;
	display: inline-block;
}

.form .btn:hover{
  	color: #fff;
  	background-color:#392628;
	text-decoration: none;
}

.form label{
  	display: inline-block;
  	margin: 0 0;
  	padding: 15px 0 5px 0;
  	border: 1px solid transparent;
}

.form label h4{
	text-align: left;
	color:#E30016;
	margin-top: 20px;
}

.form label a{
	text-decoration: underline;
 }
  
.form label a:hover{
	text-decoration: none;
}


.form-control {
    display: block;
    width: 100%;
    height: 35px;
    padding: 10px;
	
	font-family: "Tahoma", "Trebuchet MS", sans-serif;
	font-weight: normal;
	font-style: normal;
	
	font-size: 17px;
  	line-height: 27px;
	color: #392628;
	letter-spacing: 0;
	
    background-color: #fff;
    background-image: none;
    border: 1px solid #392628;
    border-radius: 0px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.form-radio,
.form-checkbox{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
  	line-height: 30px;
	color: #392628;
	margin-top: 10px;
}



.form label small{
	font-family: "ff-dax-pro-condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
  	line-height: 26px;
	color: #392628;
	}


textarea {
    font-family: inherit;
	overflow: auto;
	margin: 0;
	font: inherit;
}

textarea.form-control {
    height: auto;
}

.alert {
	margin-top: 100px;
}



@media only screen and (max-width: 1300px) {

	.alert {
		margin-top: 80px;
	}

}

@media (max-width: 768px) {
	
	.form label h4{
		margin-top: 10px;
	}
	
	.form .btn{
		font-size: 16px;
  		line-height: 26px;
	}
	
	.form-control {
		font-size: 16px;
  		line-height: 26px;
	}
	
	.alert {
		margin-top: 60px;
	}


}


