@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/Poppins-Light.ttf');
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-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: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 30px;
  	line-height: 46px;
	margin-bottom: 30px;
	color:#000;
}

h2{
	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 30px;
  	line-height: 46px;
	margin-bottom: 40px;
	color:#000;
}

h3{
  	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 22px;
  	line-height: 36px;
	margin-top: 40px;
	color:#000;
}

h4{
  	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 19px;
  	line-height: 33px;
	color:#000;
}

p, strong{
  	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 19px;
  	line-height: 32px;
	color:#3C3C3B;
}

a {
  	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 19px;
  	line-height: 32px;
	text-decoration:none;
	color:#3C3C3B;
}

a:hover {
	text-decoration: underline;
	color:#004519;
}


b{
  	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	letter-spacing: 0.5px;
	color:#000;
}

ol.out { 
	list-style-position: outside;
	list-style-type: disc;
}

li {
  	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 19px;
  	line-height: 32px;
	color:#3C3C3B;
	margin-left: 20px;
}

::marker {
	color: #004519;
	
}

spam {
	color:#004519;
}



i{
	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-style: italic;
	font-size: 25px;
  	line-height: 36px;
	letter-spacing: 0.5px;
	color:#fff;
}

em{
	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-style: italic;
	font-size: 19px;
  	line-height: 32px;
	color:#fff;
}

blockquote {
	margin: 0;
	padding: 28px 70px 60px 75px;
	position: relative;
}

cite {
	display: block;
	text-align: right;
	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 16px;
  	line-height: 26px;
}

blockquote::before, 
blockquote::after {
	position: absolute;
	display: block;
	font-family: "Gotham", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
	font-size: 200px;
	color: #4d7d5e;
}

blockquote::before {
	content: '“';
	left: -0.06em;
	top: -0.2em;
}

blockquote::after {
	content: '”';
	bottom: -0.5em;
	right: -0.05em;
}


@media (max-width: 1600px) {
	
	i{
		font-size: 22px;
  		line-height: 34px;
	}
	
	blockquote {
		margin: 0;
		padding: 23px 50px 50px 57px;
		position: relative;
	}
	
	blockquote::before, 
	blockquote::after {
		font-size: 150px;
	}

	blockquote::before {
		left: -0.05em;
		top: -0.2em;
	}
	
}

@media (max-width: 768px) {
	
	
	h1{
		font-size: 28px;
  		line-height: 38px;
		margin-bottom: 40px;
	}

	h2{
		font-size: 24px;
  		line-height: 34px;
	}
	
	h3{
		font-size: 20px;
  		line-height: 30px;
	}
	
	h4{
		font-size: 17px;
  		line-height: 27px;
	}

	p, strong, b, a, li, em {
		font-size: 16px;
  		line-height: 26px;
	}
	
	li {
		margin-left: 17px;
	}
	
	i{
		font-size: 20px;
  		line-height: 30px;
		margin-bottom: 40px;
	}

	cite {
		font-size: 14px;
  		line-height: 24px;
	}

	

	

}





.wrapper {
  height: 100vh;
  width: 100vw;
  
}




/******************** Top ********************/

.top {
	position:fixed;
	width: 100%;
	height: 40px;
	background-color: #000;
	margin-top: 0;
	padding: 0;
	z-index:9999;

	-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;
}

.top .container {
  	width: 90%;
	}

.top .container .left{
	float: left;
	padding: 7px 0;
}

.top .container .left p,
.top .container .left a{
	font-size: 15px;
  	line-height: 25px;
	color: #fff;
}

.top .container .right{
	float: right;
	padding: 7px 0;
}

.top .container .right img{
	height: 21px;
	margin-right: 3px;
}


@media (max-width: 768px) {
	
	
	.top .container .left{
		padding: 8px 0;
	}
	
	.top .container .left p,
	.top .container .left a{
		font-size: 12px;
  		line-height: 24px;
	}
	
	.top .container .right{
		padding: 9px 0;
	}
	
	.top .container .right img{
		height: 20px;
		margin-right: 1px;
	}

	
}

/******************** Header ********************/

header {
	position:fixed;
	width: 100%;
	height: 100px;
	background: #fff;
	margin-top: 40px;
	padding: 15px 0;
	z-index:8888;
	
	box-shadow: 0 0 6px #918D8B;

	-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;
}


header .container {
  	width: 90%;
	}
	
	
/******************** Header - Logo ********************/

.logo{
	float: right;
}

.logo img{
	width:auto;
	height:70px;
}


/******************** Header - Navigation ********************/


.toggle,
[id^=drop] {
	display: none;
}

nav { 
	margin:0;
	padding: 0;
}

nav:after {
	content:"";
	display:table;
	clear:both;
}

nav ul {
	float: left;
	padding:0;
	margin:0;
	margin-top: 20px;
	list-style: none;
	position: relative;
}
	
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	padding:10px 23px 5px 0;
	list-style-type: none;
}

nav ul li .selected,
nav ul li ul li .selected {
	color:#004519;
	text-decoration: underline;
}
	
nav ul li a {
	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 17px;
  	line-height: 34px;
	text-decoration:none;
	color:#3C3C3B;
	display:block;
}

nav ul li a:hover { 
	color:#004519;
	text-decoration: underline;
}

nav ul li ul li:hover { 
	color:#004519;
	text-decoration: underline;
}

nav ul ul {
	display: none;
	position: absolute; 
	top: 30px; 
	background-color: #fff;
	margin-left: -24px;
}
	
nav ul li:hover > ul {
	display:inherit;
}
	
nav ul ul li {
	width:250px;
	float:none;
	display:list-item;
	position: relative;
	list-style:none;
	border-bottom: 1px solid #f6f6f6;
	padding:8px 0 8px 24px;
}

nav ul ul li a {
	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 16px;
  	line-height: 32px;
	text-decoration:none;
	color:#3C3C3B;
	display:block;
}

nav ul ul li {
	list-style-type: none;
}

nav ul ul li::marker {
	color: #004519;
	content: none;
}


@media all and (max-width : 1200px) {
	
	header {
		height: 60px;
		margin-top: 40px;
		padding: 7px 0;
	}
	
	.logo img{
		width:auto;
		height:46px;
	}
	
	nav {
		margin: 0;
	}

	.toggle + a,
	.menu {
		display: none;
	}
	
	.menu {
		margin-top: -7px;
		float: left;
		width: 100%;
		padding: 0 30px;
	}

	.toggle {
		font-family: 'Poppins-SemiBold', sans-serif; 
		font-weight:500;
		font-size: 18px;
  		line-height: 34px;
		text-decoration:none;
		color:#3C3C3B;
		display: block;
		border:none;
	}
	
	.toggle span{
		font-family:'Gothic A1', sans-serif;
		font-weight:600;
		font-size:35px;
		float:left;
		margin-top: 7px;
	}

	.toggle:hover {
		color:#004519;
	}

	[id^=drop]:checked + ul {
		display: block;
	}
	
	nav ul {
		background-color:#fff;
		margin-top: 2px;
	}

	nav ul li {
		display: block;
		width: 100%;
		border-bottom: 1px solid #f6f6f6;
		padding-top: 3px;
		padding-bottom: 3px;
	}
	
	nav ul ul {
		margin-left: 0px;
	}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul li ul li .toggle,
	nav ul ul a{
		padding: 2px 20px 1px 20px;	
		color:#FFF;
	}

	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
	}
		
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	nav ul ul li {
		display: block;
		width: 100%;
		padding-left: 20px;
		border-top: 1px solid #f6f6f6;
		border-bottom: 0;
		padding:0;
	}

}


@media screen and (max-width: 768px) {
	

	nav ul li {
		padding-top: 1px;
		padding-bottom: 1px;
	}
	
	.toggle span{
		font-size:27px;
	}
	
	nav ul ul a {
		padding-top: 1px;
		padding-bottom: 1px;
	}
	
	.toggle,
	nav ul li a{
		font-size: 15px;
	}
	
	nav ul ul li a{
		font-size: 14px;
	}

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}







/* Imagebild + Text*/

.home{  
    position: relative;
    overflow: hidden;
} 

.home .container{
    min-height: 100%; 
    height: 100vh;
    width: 100vw;
    padding:0;
    margin: 0;
    position: relative;
	background-color: #000;
}

.video {
  	width: 100vw;
  	height: 100vh;
  	object-fit: cover;
  	left: 0;
  	right: 0;
  	top: 0;
  	bottom: 0;
 	opacity:0.5;
  	z-index: -1;
}

.home .container .box {
    width: 100%; 
    height: 100%;
    position: absolute; 
    top: 0; 
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	
	text-align:center;
}

.home .container .box h2{
	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 54px;
  	line-height: 70px;
	letter-spacing: 0.5px;
	color:#fff;
}

.home .container .box h3{
	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 20px;
  	line-height: 30px;
	margin-bottom: 25px;
	letter-spacing: 0.5px;
	color:#fff;
}

.home .container .box b{
	color:#fff;
}

.home .container .box img{
	width: 200px;
	margin-bottom: 30px;
}




@media (max-width: 1200px) {
	

	.home .container .box{
		margin: 0 auto 0 auto;
		padding: 0 50px;
	}

}


@media screen and (max-width: 768px) {


	.home .container .box h2,
	.home .container .box b{
		font-size: 40px;
  		line-height: 50px;
	}
	.home .container .box h3{
		font-size: 20px;
  		line-height: 30px;
	}
	
	.home .container .box img{
		width: 150px;
		margin-bottom: 30px;
	}


}







.headerunternehmen{
	background: url('../img/header/unternehmen-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerportrait{
	background: url('../img/header/portrait-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headergeschichte{
	background: url('../img/header/geschichte-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerqualitaet{
	background: url('../img/header/qualitaetsanspruch-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerleitbild{
	background: url('../img/header/leitbild-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerabteilungen{
	background: url('../img/header/abteilunge-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}


.headerleistungen{
	background: url('../img/header/leistungen-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerstueckgut{
	background: url('../img/header/stueckgut-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerladungsverkehr{
	background: url('../img/header/ladungsverkehr-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerluftfracht{
	background: url('../img/header/luftfracht-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerseefracht{
	background: url('../img/header/seefracht-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headertransport{
	background: url('../img/header/transport-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerlagerlogistik{
	background: url('../img/header/lagerlogistik-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerzoll{
	background: url('../img/header/zoll-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headercharterverkehr{
	background: url('../img/header/charterverkehr-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}


.headerkarriere{
	background: url('../img/header/karriere-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerausbildung{
	background: url('../img/header/ausbildung-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerausbildungkaufmann{
	background: url('../img/header/ausbildung-speditionskaufmann-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerausbildunglager{
	background: url('../img/header/ausbildung-lagerlogistik-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerausbildunglagerist{
	background: url('../img/header/ausbildung-fachlagerist-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerausbildungfahrer{
	background: url('../img/header/ausbildung-berufskraftfahrer-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerausbildunginformatiker{
	background: url('../img/header/ausbildung-fachinformatiker-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerstellenangebote{
	background: url('../img/header/stellenangebote-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headertransportunternehmer{
	background: url('../img/header/bewerbung-transportunternehmer-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}




.headererfahrung{
	background: url('../img/header/erfahrung-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrungauskauffrau{
	background: url('../img/header/erfahrung-ausbildung-speditionskauffrau-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrungauslager{
	background: url('../img/header/erfahrung-ausbildung-lagerlogistik-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrungausfahrer{
	background: url('../img/header/erfahrung-ausbildung-berufskraftfahrer-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrungauslagerist{
	background: url('../img/header/erfahrung-ausbildung-fachlagerist-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrunglager{
	background: url('../img/header/erfahrung-lagerlogistik-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrungkaufmann{
	background: url('../img/header/erfahrung-kaufmann-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrungkaufsped{
	background: url('../img/header/erfahrung-speditionskauffrau-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrungkauffrau{
	background: url('../img/header/erfahrung-kauffrau-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrungdisponent{
	background: url('../img/header/erfahrung-disponent-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headererfahrungkauffrausl{
	background: url('../img/header/erfahrung-kauffrau-spedition-logistikdienstleistung-spedition-zobel-wetter-nrw-deutschland.jpg') no-repeat center center;
}

.headererfahrungkaufmannsl{
	background: url('../img/header/erfahrung-kaufmann-spedition-logistikdienstleistung-spedition-zobel-wetter-nrw-deutschland.jpg') no-repeat center center;
}

.headererfahrungkaufmanntom{
	background: url('../img/header/erfahrung-tom-kaufmann-spedition-logistikdienstleistung-spedition-zobel-wetter-nrw-deutschland.jpg') no-repeat center center;
}

.headererfahrungkauffrausul{
	background: url('../img/header/erfahrung-ausbildung-zur-kauffrau-fuer-spedition-und-logistikdienstleistungen-spedition-zobel-wetter-nrw.jpg') no-repeat center center;
}

.headererfahrungauslagerlogistik{
	background: url('../img/header/erfahrung-ausbildung-fachkraft-fuer-lagerlogistik-spedition-zobel-wetter-nrw-deutschland.jpg') no-repeat center center;
}




.headeransprechpartner{
	background: url('../img/header/ansprechpartner-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headernachhaltigkeit{
	background: url('../img/header/nachhaltigkeit-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.headerkontakt{
	background: url('../img/header/kontakt-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}



.headerwellfair{
	background: url('../img/header/wellfair-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}



.headerunternehmen,
.headerportrait,
.headergeschichte,
.headerqualitaet,
.headerleitbild,
.headerabteilungen,
.headerleistungen,
.headerstueckgut,
.headerladungsverkehr,
.headerluftfracht,
.headerseefracht,
.headertransport,
.headerlagerlogistik,
.headerzoll,
.headercharterverkehr,
.headerkarriere,
.headerausbildung,
.headerausbildungkaufmann,
.headerausbildunglager,
.headerausbildunglagerist,
.headerausbildungfahrer,
.headerausbildunginformatiker,
.headerstellenangebote,
.headertransportunternehmer,

.headererfahrung,
.headererfahrungauskauffrau,
.headererfahrungauslager,
.headererfahrungausfahrer,
.headererfahrungauslagerist,
.headererfahrunglager,
.headererfahrungkaufmann,
.headererfahrungkaufsped,
.headererfahrungkauffrau,
.headererfahrungdisponent,
.headererfahrungkauffrausl,
.headererfahrungkaufmannsl,
.headererfahrungkaufmanntom,
.headererfahrungkauffrausul,
.headererfahrungauslagerlogistik,

.headeransprechpartner,
.headernachhaltigkeit,
.headerkontakt,

.headerwellfair{
	width: 100%;
	height: 800px;
  	background-size: cover;
  	background-position: center;
	
  	-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;
}

@media (max-width: 1200px) {
	
.headerunternehmen,
.headerportrait,
.headergeschichte,
.headerqualitaet,
.headerleitbild,
.headerabteilungen,
.headerleistungen,
.headerstueckgut,
.headerladungsverkehr,
.headerluftfracht,
.headerseefracht,
.headertransport,
.headerlagerlogistik,
.headerzoll,
.headercharterverkehr,
.headerkarriere,
.headerausbildung,
.headerausbildungkaufmann,
.headerausbildunglager,
.headerausbildunglagerist,
.headerausbildungfahrer,
.headerausbildunginformatiker,
.headerstellenangebote,
.headertransportunternehmer,

.headererfahrung,
.headererfahrungauskauffrau,
.headererfahrungauslager,
.headererfahrungausfahrer,
.headererfahrungauslagerist,
.headererfahrunglager,
.headererfahrungkaufmann,
.headererfahrungkaufsped,
.headererfahrungkauffrau,
.headererfahrungdisponent,
.headererfahrungkauffrausl,
.headererfahrungkaufmannsl,
.headererfahrungkaufmanntom,
.headererfahrungkauffrausul,
.headererfahrungauslagerlogistik,

.headeransprechpartner,
.headernachhaltigkeit,
.headerkontakt,
	
.headerwellfair{
	width: 100%;
	height: 600px;
  	background-size: cover;
  	background-position: center;
	
  	-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;
	}
	
}	
	

@media (max-width: 768px) {
	

.headerunternehmen{
	background: url('../img/header/unternehmen-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerportrait{
	background: url('../img/header/portrait-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headergeschichte{
	background: url('../img/header/geschichte-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerqualitaet{
	background: url('../img/header/qualitaetsanspruch-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}
	
.headerleitbild{
	background: url('../img/header/leitbild-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerabteilungen{
	background: url('../img/header/abteilunge-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}


.headerleistungen{
	background: url('../img/header/leistungen-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerstueckgut{
	background: url('../img/header/stueckgut-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerladungsverkehr{
	background: url('../img/header/ladungsverkehr-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerluftfracht{
	background: url('../img/header/luftfracht-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerseefracht{
	background: url('../img/header/seefracht-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headertransport{
	background: url('../img/header/transport-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerlagerlogistik{
	background: url('../img/header/lagerlogistik-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerzoll{
	background: url('../img/header/zoll-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headercharterverkehr{
	background: url('../img/header/charterverkehr-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}


.headerkarriere{
	background: url('../img/header/karriere-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerausbildung{
	background: url('../img/header/ausbildung-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}
	
.headerausbildungkaufmann{
	background: url('../img/header/ausbildung-speditionskaufmann-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerausbildunglager{
	background: url('../img/header/ausbildung-lagerlogistik-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerausbildunglagerist{
	background: url('../img/header/ausbildung-fachlagerist-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerausbildungfahrer{
	background: url('../img/header/ausbildung-berufskraftfahrer-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}
	
.headerausbildunginformatiker{
	background: url('../img/header/ausbildung-fachinformatiker-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerstellenangebote{
	background: url('../img/header/stellenangebote-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}
	
.headertransportunternehmer{
	background: url('../img/header/bewerbung-transportunternehmer-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}
	
	
.headererfahrung{
	background: url('../img/header/erfahrung-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrungauskauffrau{
	background: url('../img/header/erfahrung-ausbildung-speditionskauffrau-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrungauslager{
	background: url('../img/header/erfahrung-ausbildung-lagerlogistik-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrungausfahrer{
	background: url('../img/header/erfahrung-ausbildung-berufskraftfahrer-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrungauslagerist{
	background: url('../img/header/erfahrung-ausbildung-fachlagerist-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrunglager{
	background: url('../img/header/erfahrung-lagerlogistik-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrungkaufmann{
	background: url('../img/header/erfahrung-kaufmann-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrungkaufsped{
	background: url('../img/header/erfahrung-speditionskauffrau-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrungkauffrau{
	background: url('../img/header/erfahrung-kauffrau-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrungdisponent{
	background: url('../img/header/erfahrung-disponent-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}
	
.headererfahrungkauffrausl{
	background: url('../img/header/erfahrung-kauffrau-spedition-logistikdienstleistung-spedition-zobel-wetter-nrw-deutschland-mobil.jpg') no-repeat center center;
}

.headererfahrungkaufmannsl{
	background: url('../img/header/erfahrung-kaufmann-spedition-logistikdienstleistung-spedition-zobel-wetter-nrw-deutschland-mobil.jpg') no-repeat center center;
}	

.headererfahrungkaufmanntom{
	background: url('../img/header/erfahrung-tom-kaufmann-spedition-logistikdienstleistung-spedition-zobel-wetter-nrw-deutschland-mobil.jpg') no-repeat center center;
}	
	
.headererfahrungkauffrausul{
	background: url('../img/header/erfahrung-ausbildung-zur-kauffrau-fuer-spedition-und-logistikdienstleistungen-spedition-zobel-wetter-nrw-mobil.jpg') no-repeat center center;
}
	
.headererfahrungauslagerlogistik{
	background: url('../img/header/erfahrung-ausbildung-fachkraft-fuer-lagerlogistik-spedition-zobel-wetter-nrw-deutschland-mobil.jpg') no-repeat center center;
}
	
	
.headeransprechpartner{
	background: url('../img/header/ansprechpartner-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headernachhaltigkeit{
	background: url('../img/header/nachhaltigkeit-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

.headerkontakt{
	background: url('../img/header/kontakt-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}

	
	
.headerfellwair{
	background: url('../img/header/wellfair-spedition-zobel-wetter-nordrhein-westfalen-deutschland-mobil.jpg') no-repeat center center;
}
	
.headerunternehmen,
.headerportrait,
.headergeschichte,
.headerqualitaet,
.headerleitbild,
.headerabteilungen,
.headerleistungen,
.headerstueckgut,
.headerladungsverkehr,
.headerluftfracht,
.headerseefracht,
.headertransport,
.headerlagerlogistik,
.headerzoll,
.headercharterverkehr,
.headerkarriere,
.headerausbildung,
.headerausbildungkaufmann,
.headerausbildunglager,
.headerausbildunglagerist,
.headerausbildungfahrer,
.headerausbildunginformatiker,
.headerstellenangebote,
.headertransportunternehmer,
	
.headererfahrung,
.headererfahrungauskauffrau,
.headererfahrungauslager,
.headererfahrungausfahrer,
.headererfahrungauslagerist,
.headererfahrunglager,
.headererfahrungkaufmann,
.headererfahrungkaufsped,
.headererfahrungkauffrau,
.headererfahrungdisponent,
.headererfahrungkauffrausl,
.headererfahrungkaufmannsl,
.headererfahrungkaufmanntom,
.headererfahrungkauffrausul,
.headererfahrungauslagerlogistik,
	
.headeransprechpartner,
.headernachhaltigkeit,
.headerkontakt,
	
.headerfellwair{
	width: 100%;
	height: 400px;
  	background-size: cover;
  	background-position: center;
	
  	-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;

}



}



/********************* Header Kontakt: Google maps  *********************/

.maps {
	width: 100%;
	margin: 0 ;
}

.maps iframe{
  	width: 100%;
	height: 700px;
}


@media (max-width: 768px) {
	
	.maps iframe{
		padding-top: 100px;
		height: 400px;
	}

}


/********************* Kopf in Grün  *********************/


.head{
	width: 100%;
	padding: 140px 0 20px 0;
	background-color:#004519;
}

.head .container {
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.head .container h1,
.head .container h2{
	font-size: 50px;
  	line-height: 66px;
	color: #fff;
}

.head .container p,
.head .container strong{
	font-size: 22px;
  	line-height: 44px;
	color: #fff;
	padding-top: 20px;
	padding-bottom: 120px;
}


@media only screen and (max-width: 1200px) {
	
	.head{
		padding: 110px 0 20px 0;
	}

	.head .container{
		width: 85%;
	}


}

@media (max-width: 768px) {
	
	.head{
		padding: 100px 0 20px 0;
	}
	
	.head .container{
		width: 90%;
	}
	
	.head .container h1,
	.head .container h2{
		font-size: 28px;
  		line-height: 38px;
		color: #fff;
	}


	
	.head .container p,
	.head .container strong{
		font-size: 20px;
  		line-height: 35px;
		padding-bottom: 60px;
}

	
}


/********************* Kopf in Schwarz  *********************/


.head-black{
	width: 100%;
	padding: 140px 0 110px 0;
	background-color:#000;
}

.head-black .container {
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.head-black .container h1,
.head-black .container h2{
	font-size: 50px;
  	line-height: 66px;
	color: #fff;
}


@media only screen and (max-width: 1200px) {
	
	.head-black{
		padding: 110px 0 80px 0;
	}

	.head-black .container{
		width: 85%;
	}


}

@media (max-width: 768px) {
	
	.head-black{
		padding: 100px 0 60px 0;
	}
	
	.head-black .container{
		width: 90%;
	}
	
	.head-black .container h1,
	.head-black .container h2{
		font-size: 28px;
  		line-height: 38px;
		color: #fff;
	}
	
}


/********************* Anfangstext  *********************/


main{
	width: 100%;
	margin: 140px 0 140px 0;
	background-color:#FFF;
}

main .container {
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:left;
}

main .container .img {
	width: 300px;
	text-align:left;
}

main .container .img2 {
	width: auto;
	margin: 60px 0 30px 0;
}

main .container .img img,
main .container .img2 img{
	width: 100%;
}

main .container .img3 {
	width: 50%;
	margin: 100px auto 0 auto;
}

main .container .img3 img{
	width: 100%;
}

main .container .part{
	width: 100%;
	margin: 0 auto 0 auto;
	
	-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 img{
	margin: 20px 30px 20px 0;
}

main .container .part .one {
	width: 22%;
}

main .container .part .one img{
	width: 100%;
}



main .container hr{
	height: 1px; 
	border: none;
	background: #707070;
	margin: 20px 0;
}

main .container .part .two {
	width: 80%;
}

main .container .part .three {
	width: 20%;
}

main .container .part .two h3{
	margin: 13px 0 0 0;
}

main .container .part .three .button-green {
	float: right;
	margin: 0px;
}

main .container .part-gray{
	width: 100%;
	margin: 60px 0;
	padding: 60px;
	background-color: #f1f1f1;

	-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;
}

main .container .part-gray .left{
	width: 40%;
}

main .container .part-gray .left img{
	width: 100%;
}
main .container .part-gray .right{
	width: 50%;
	text-align:left;
}

main .container .part-gray .right i{
	color:#000;
}



@media only screen and (max-width: 1200px) {
	
	main{
		margin: 110px 0 110px 0;
	}

	main .container{
		width: 85%;
	}
	
	main .container .img3 {
		width: 70%;
		margin: 80px auto 0 auto;
	}


}

@media (max-width: 768px) {
	
	main{
		margin: 80px 0 80px 0;
	}
	
	main .container{
		width: 90%;
	}
	
	main .container .img {
		width: 200px;
	}
	
	main .container .img3 {
		width: 100%;
		margin: 60px auto 0 auto;
	}
	
	main .container .part .one {
		width: 50%;
		margin-bottom: 30px;
	}
	
	main .container .part .one img{
		height: 40px;
		width: auto;
	}
	
	main .container hr{
		margin: 10px 0;
	}
	
	main .container .part .two {
		width: 100%;
	}

	main .container .part .three {
		width: 100%;
	}
	
	main .container .part .three .button-green {
		float: left;
		margin: 10px 0 15px 0;
	}
	
	main .container .part-gray{
		padding: 45px;
		
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	
	main .container .part-gray .right{
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	
	main .container .part-gray .left{
		width: 100%;
		margin-bottom: 20px;
	}

	main .container .part-gray .right{
		width: 100%;
	}
}


	



/********************* Impressum, Datenschutz  *********************/

.main{
	width: 100%;
	margin: 0 0 140px 0;
	padding-top: 240px;
	background-color:#FFF;
}

.main .container {
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.main .container p {
	margin-bottom: 30px;
}

.main .container li{
	margin-left: 20px;
}

@media only screen and (max-width: 1200px) {
	
	.main{
		margin: 0 0 110px 0;
		padding-top: 110px;
	}

	.main .container{
		width: 85%;
	}

}

@media (max-width: 768px) {
	
	.main{
		margin: 0 0 80px 0;
		padding-top: 120px;
	}
	
	.main .container{
		width: 90%;
	}
	
}

/********************* Kopf in Grün  *********************/


.green{
	width: 100%;
	padding: 120px 0 120px 0;
	background-color:#004519;
}

.green .container {
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:center;
}

.green .container h2,
.green .container p,
.green .container b{
	color: #fff;
	margin-bottom: 10px;
}


@media only screen and (max-width: 1200px) {
	
	.green{
		padding: 110px 0 110px 0;
	}

	.green .container{
		width: 85%;
	}


}

@media (max-width: 768px) {
	
	.green{
		padding: 100px 0 100px 0;
	}
	
	.green .container{
		width: 90%;
	}

}


/********************* Mittelgrün  *********************/


.medium-green{
	width: 100%;
	padding: 120px 0 120px 0;
	background-color:#2c6f46;
}

.medium-green .container {
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:center;
}

.medium-green .container h2,
.medium-green .container p,
.medium-green .container b{
	color: #fff;
	margin-bottom: 10px;
}


@media only screen and (max-width: 1200px) {
	
	.medium-green{
		padding: 110px 0 110px 0;
	}

	.medium-green .container{
		width: 85%;
	}


}

@media (max-width: 768px) {
	
	.medium-green{
		padding: 100px 0 100px 0;
	}
	
	.medium-green .container{
		width: 90%;
	}

}


/********************* Hellgrün  *********************/


.light-green{
	width: 100%;
	padding: 120px 0 120px 0;
	background-color:#a5bfa8;
}

.light-green .container {
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:center;
}

.light-green .container h2,
.light-green .container p,
.light-green .container b{
	color: #fff;
	margin-bottom: 10px;
}


@media only screen and (max-width: 1200px) {
	
	.light-green{
		padding: 110px 0 110px 0;
	}

	.light-green .container{
		width: 85%;
	}


}

@media (max-width: 768px) {
	
	.light-green{
		padding: 100px 0 100px 0;
	}
	
	.light-green .container{
		width: 90%;
	}

}
/********************* Artikel Bild - Grün *********************/


.article-green{
	width: 100%;
}

.article-green .container-right{
	width: 100%;
	margin: 0 auto 0 auto;

	-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;
}

.article-green .container-right {
	background-color: #004519;
}

.article-green .container-right .img0{
	background: url('../img/content/beispielbild.jpg') no-repeat center center;
}


.article-green .container-right .img1{
	background: url('../img/content/stueckgutverkehr-transportunternehmen/stueckgutverkehr-transportunternehmen-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img2{
	background: url('../img/content/ladungsverkehr-guetertransport-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img2-1{
	background: url('../img/content/guetertransport-ladungsverkehr-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img3{
	background: url('../img/content/luftfrachtspedition-luftfracht-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img4{
	background: url('../img/content/seefrachtspedition-seefracht-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img5{
	background: url('../img/content/multimodaler-transport-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img6{
	background: url('../img/content/lagerlogistik-logistikdienstleister-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img6-1{
	background: url('../img/content/lagerlogistik-logistikdienstleister-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img7{
	background: url('../img/content/zoll-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img8{
	background: url('../img/content/charterverkehr-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img9{
	background: url('../img/content/multimodaler-transport-2-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img10{
	background: url('../img/content/karriere-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img11{
	background: url('../img/content/stellenangebote-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img12{
	background: url('../img/content/ausbildung/erfahrungsbericht-ausbildung-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img13{
	background: url('../img/content/ausbildung/erfahrungsbericht2-ausbildung-berufskraftfahrer-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img14{
	background: url('../img/content/ausbildung/erfahrungsbericht-ausbildung-speditionskauffrau-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img15{
	background: url('../img/content/ausbildung/erfahrungsbericht-ausbildung-lagerlogistik-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img16{
	background: url('../img/content/ausbildung/luisa-zobel-ausbildung-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}

.article-green .container-right .img17{
	background: url('../img/content/ausbildung/erfahrungsbericht-ausbildung-fachlagerist-spedition-zobel-wetter-nordrhein-westfalen-deutschland.jpg') no-repeat center center;
}


.article-green .container-right .img19{
	background: url('../img/content/spediteur-speditionsunternehmen-zobel-philip-christian-nordrhein-westfalen.jpg') no-repeat center center;
}

.article-green .container-right .img20{
	background: url('../img/content/spedition-zobel-logistikunternehmen-nordrhein-westfalen.jpg') no-repeat center center;
}

.article-green .container-right .img21{
	background: url('../img/content/spedition-zobel-nachhaltigkeit-logistikunternehmen-nordrhein-westfalen.jpg') no-repeat center center;
}

.article-green .container-right .img22{
	background: url('../img/content/leitbild/leitbild-philip-und-christian-zobel-geschaeftsfuehrung-spedition-zobel.jpg') no-repeat center center;
}



.article-green .container-right .img-wellfair{
	background: url('../img/content/wellfair-spedition-zobel-nordrhein-westfalen.jpg') no-repeat center center;
}

.article-green .container-right .img-wellfair2{
	background: url('../img/content/wellfair2-spedition-zobel-nordrhein-westfalen.jpg') no-repeat center center;
}

.article-green .container-right .img0,
.article-green .container-right .img1,
.article-green .container-right .img2,
.article-green .container-right .img2-1,
.article-green .container-right .img3,
.article-green .container-right .img4,
.article-green .container-right .img5,
.article-green .container-right .img6,
.article-green .container-right .img6-1,
.article-green .container-right .img7,
.article-green .container-right .img8,
.article-green .container-right .img9,
.article-green .container-right .img10,
.article-green .container-right .img11,
.article-green .container-right .img12,
.article-green .container-right .img13,
.article-green .container-right .img14,
.article-green .container-right .img15,
.article-green .container-right .img16,
.article-green .container-right .img17,
.article-green .container-right .img19,
.article-green .container-right .img20,
.article-green .container-right .img21,
.article-green .container-right .img22,
.article-green .container-right .img-wellfair,
.article-green .container-right .img-wellfair2{
	width: 57%;
  	background-size: cover;
  	background-position: center;
	
  	-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;
}

.article-green .container-right .img0 img,
.article-green .container-right .img1 img,
.article-green .container-right .img2 img,
.article-green .container-right .img2-1 img,
.article-green .container-right .img3 img,
.article-green .container-right .img4 img,
.article-green .container-right .img5 img,
.article-green .container-right .img6 img,
.article-green .container-right .img6-1 img,
.article-green .container-right .img7 img,
.article-green .container-right .img8 img,
.article-green .container-right .img9 img,
.article-green .container-right .img10 img,
.article-green .container-right .img11 img,
.article-green .container-right .img12 img,
.article-green .container-right .img13 img,
.article-green .container-right .img14 img,
.article-green .container-right .img15 img,
.article-green .container-right .img16 img,
.article-green .container-right .img17 img,
.article-green .container-right .img19 img,
.article-green .container-right .img20 img,
.article-green .container-right .img21 img,
.article-green .container-right .img22 img,
.article-green .container-right .img-wellfair img,
.article-green .container-right .img-wellfair2 img{
	width: 100%;
}

.article-green .container-right .text{
	width: 43%;
	margin: 0 auto 0 auto;
	text-align:left;
	
	-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;
}

.article-green .container-right .text h2,
.article-green .container-right .text p{
	margin-bottom: 40px;
	color: #fff;
}

.article-green .container-right .text h3{
	margin-bottom: 20px;
	color: #fff;
}

.article-green .container-right .text a,
.article-green .container-right .text b,
.article-green .container-right .text li{
	color: #fff;
}

.article-green .container-right .text li::marker {
	color: #fff;
	content: "▸ ";
}

.article-green .container-right .text .middle .button-white a{
	color: #004519;
}

.article-green .container-right .text .middle{
	margin: 170px 0 150px 0;
	padding: 0 100px;
}

.article-green .container-right .text .middle .img{
	width: 250px;
	margin-bottom: 40px;
}

.article-green .container-right .text .middle .img img{
	width: 100%;
}

.article-green .container-right .text .middle-left{
	margin: 180px 0;
	padding: 0 100px;
	text-align: left;
}

.article-green .container-right .text .middle-left li{
	color: #fff;
	margin-left: 20px;
}

.article-green .container-right .text .middle-left b{
	color: #fff;
}
	


@media only screen and (max-width: 1400px) {
	

	.article-green .container-right{
		width: 100%;
	}
	
	.article-green .container-right{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.article-green .container-right .img0,
	.article-green .container-right .img1,
	.article-green .container-right .img2,
	.article-green .container-right .img2-1,
	.article-green .container-right .img3,
	.article-green .container-right .img4,
	.article-green .container-right .img5,
	.article-green .container-right .img6,
	.article-green .container-right .img6-1,
	.article-green .container-right .img7,
	.article-green .container-right .img8,
	.article-green .container-right .img9,
	.article-green .container-right .img10,
	.article-green .container-right .img11,
	.article-green .container-right .img12,
	.article-green .container-right .img13,
	.article-green .container-right .img14,
	.article-green .container-right .img15,
	.article-green .container-right .img16,
	.article-green .container-right .img17,
	.article-green .container-right .img19,
	.article-green .container-right .img20,
	.article-green .container-right .img21,
	.article-green .container-right .img22,
	.article-green .container-right .img-wellfair,
	.article-green .container-right .img-wellfair2{
		width: 100%;
		height: 650px;
	}

	.article-green .container-right .text{
		width: 100%;
		text-align:left;
		
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	
	.article-green .container-right .text .middle,
	.article-green .container-right .text .middle-left{
		margin: 100px 0;
		padding: 0 7%;
	}
	
}

@media (max-width: 768px) {
	
	.article-green .container-right .img0,
	.article-green .container-right .img1,
	.article-green .container-right .img2,
	.article-green .container-right .img2-1,
	.article-green .container-right .img3,
	.article-green .container-right .img4,
	.article-green .container-right .img5,
	.article-green .container-right .img6,
	.article-green .container-right .img6-1,
	.article-green .container-right .img7,
	.article-green .container-right .img8,
	.article-green .container-right .img9,
	.article-green .container-right .img10,
	.article-green .container-right .img11,
	.article-green .container-right .img12,
	.article-green .container-right .img13,
	.article-green .container-right .img14,
	.article-green .container-right .img15,
	.article-green .container-right .img16,
	.article-green .container-right .img17,
	.article-green .container-right .img19,
	.article-green .container-right .img20,
	.article-green .container-right .img21,
	.article-green .container-right .img22,
	.article-green .container-right .img-wellfair,
	.article-green .container-right .img-wellfair2{
		width: 100%;
		height: 450px;
	}
	
	.article-green .container-right .text p{
		margin-bottom: 20px;
	}
	
	.article-green .container-right .text .middle{
		margin: 60px 0;
		padding: 0 5%;
	}
	
	.article-green .container-right .text .middle-left{
		margin: 60px 0;
		padding: 0 5%;
	}
	
	.article-green .container-right .text .middle .img{
		width: 200px;
		margin-bottom: 40px;
	}
	
}







/********************* Artikel grauer Hintergrund  *********************/


.article-gray{
	width: 100%;
	padding: 140px 0 140px 0;
	background-color: #f1f1f1;
}

.article-gray-2{
	width: 100%;
	padding: 140px 0 0 0;
	background-color: #f1f1f1;
}

.article-gray .container,
.article-gray-2 .container{
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.article-gray .container .headline,
.article-gray-2 .container .headline {
	width: 100%;
	margin: 0 auto 80px auto;
	text-align:left;
}

.article-gray .container .headline h2,
.article-gray-2 .container .headline h2{
	margin-bottom: 30px;
}

.article-gray .container .headline .part,
.article-gray-2 .container .headline .part{
	width: 100%;
	margin: 20px auto 0 auto;
	
	-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;
}

.article-gray .container .headline .part .one{
	width: 22%;
}

.article-gray .container .headline .part .one img{
	width: 100%;
}


.article-gray-2 .container .headline .part .one{
	height: 60px;
	width: auto;
	margin: 30px;
}

.article-gray-2 .container .headline .part .one img{
	width: 100%;
}


.article-gray .container .img {
	width: 50%;
	margin: 0 auto 0 auto;
}

.article-gray .container .img img{
	width: 100%;
}


.article-gray .container .article,
.article-gray .container .article2,
.article-gray-2 .container .article,
.article-gray-2 .container .article2{
	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;
}

.article-gray .container .article2,
.article-gray-2 .container .article2{
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.article-gray .container .article .two,
.article-gray .container .article2 .two,
.article-gray-2 .container .article .two,
.article-gray-2 .container .article2 .two,
.article-gray .container .article .two-100,
.article-gray .container .article2 .two-100,
.article-gray-2 .container .article .two-100,
.article-gray-2 .container .article2 .two-100{
	width: 45%;
}

.article-gray .container .article .two img,
.article-gray .container .article2 .two img,
.article-gray-2 .container .article .two img,
.article-gray-2 .container .article2 .two img{
	width: 75%;
	margin-bottom: 20px;
}

.article-gray .container .article .two-100 img,
.article-gray .container .article2 .two-100 img,
.article-gray-2 .container .article .two-100 img,
.article-gray-2 .container .article2 .two-100 img{
	width: 100%;
	margin-bottom: 20px;
}

.article-gray .container .article .two h2,
.article-gray .container .article2 .two h2,
.article-gray-2 .container .article .two h2,
.article-gray-2 .container .article2 .two h2{
	margin-bottom: 30px;
}

.article-gray .container .article .two h3,
.article-gray .container .article2 .two h3,
.article-gray-2 .container .article .two h3,
.article-gray-2 .container .article2 .two h3{
	margin-top: 0px;
	margin-bottom: 15px;
}

.article-gray .container .article .two .img,
.article-gray .container .article2 .two .img,
.article-gray-2 .container .article .two .img,
.article-gray-2 .container .article2 .two .img{
	margin-bottom: 10px;
}

.article-gray .container .article .two .img img,
.article-gray .container .article2 .two .img img,
.article-gray-2 .container .article .two .img img,
.article-gray-2 .container .article .two .img svg,
.article-gray-2 .container .article2 .two .img img{
	width: 250px;
}

.article-gray .container .article .three {
	width: 31%;
	background-color: #fff;
	margin-bottom: 45px;
}

.article-gray .container .article .four {
	width: 24%;
	background-color: #fff;
}

.article-gray .container .article .three img,
.article-gray .container .article .four img{
	width: 100%;
}

.article-gray .container .article .three h4,
.article-gray .container .article .four h4{
	margin-top: 30px;
	padding: 0 30px;
}

.article-gray .container .article .three p,
.article-gray .container .article .four p{
	padding: 0 30px;
}

.article-gray .container .article .three .button-green,
.article-gray .container .article .four .button-green{
	margin: 20px 0 40px 30px;
}


@media only screen and (max-width: 1500px) {
	
	
	.article-gray .container .article .three {
		width: 49%;
		margin-bottom: 50px;
	}
	
	.article-gray .container .article .four {
		width: 49%;
		margin-top: 50px;
	}
	

}


@media only screen and (max-width: 1200px) {
	
	.article-gray{
		padding: 110px 0 110px 0;
	}
	
	.article-gray-2{
		padding: 110px 0 0 0;
	}

	.article-gray .container,
	.article-gray-2 .container{
		width: 85%;
	}
	
	.article-gray .container .img {
		width: 70%;
		margin: 0 auto 0 auto;
	}
	

}

@media (max-width: 768px) {
	
	.article-gray{
		padding: 80px 0 80px 0;
	}
	
	.article-gray-2{
		padding: 60px 0 0 0;
	}
	
	.article-gray .container,
	.article-gray-2 .container{
		width: 90%;
	}
	
	.article-gray .container .img {
		width: 100%;
		margin: 0 auto 0 auto;
	}
	
	.article-gray .container .article,
	.article-gray .container .article2,
	.article-gray-2 .container .article,
	.article-gray-2 .container .article2{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	
	.article-gray .container .article2,
	.article-gray-2 .container .article2{
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	
	.article-gray .container .article .two,
	.article-gray .container .article2 .two,
	.article-gray-2 .container .article .two,
	.article-gray-2 .container .article2 .two,
	.article-gray .container .article .two-100,
	.article-gray .container .article2 .two-100,
	.article-gray-2 .container .article .two-100,
	.article-gray-2 .container .article2 .two-100{
		width: 100%;
		margin: 20px 0;
	}
	
	.article-gray .container .article .three {
		width: 100%;
		margin-bottom: 50px;
	}
	
	.article-gray .container .article .four {
		width: 100%;
	}
	
	.article-gray .container .headline .part .one{
		width: 50%;
		margin-bottom: 50px;
	}
	
	.article-gray .container .headline .part .one img{
		height: 40px;
		width: auto;
	}
	
	
}






/********************* Artikel weißer Hintergrund  *********************/


.article-white{
	width: 100%;
	margin: 140px 0 140px 0;
	background-color:#FFF;
}

.article-white .container{
	width: 65%;
	margin: 0 auto 0 auto;
}

.article-white .container .center{
	text-align: center;
}

.article-white .container .center .img {
	width: 70%;
	margin: 0 auto 0 auto;
}

.article-white .container .center .img img{
	width: 100%;
}

.article-white .container .center .img2 {
	width: 40px;
	margin: 0 auto -30px auto;
}

.article-white .container .center .img2 img{
	width: 100%;
}

.article-white .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;
}

.article-white .container .article .two{
	width: 45%;
}

.article-white .container .article .two img{
	width: 75%;
	margin-bottom: 20px;
}

.article-gray .container .article .two h2{
	margin-bottom: 30px;
}

.article-gray .container .article .two h3{
	margin-top: 0px;
	margin-bottom: 15px;
}



@media only screen and (max-width: 1200px) {
	
	.article-white{
		margin: 110px 0 110px 0;
	}

	.article-white .container{
		width: 85%;
	}


}

@media (max-width: 768px) {
	
	.article-white{
		margin: 80px 0 80px 0;
	}
	
	.article-white .container{
		width: 90%;
	}
	
	.article-white .container .article{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	
	.article-white .container .center .img {
		width: 100%;
		margin: 0 auto 0 auto;
	}
	
	.article-white .container .center .img2 {
		width: 30px;
	}
	
	.article-white .container .article .two{
		width: 100%;
		margin: 20px 0;
	}

}



/********************* Artikel schwarzer Hintergrund  *********************/


.article-black{
	width: 100%;
	padding: 140px 0 140px 0;
	background-color: #000;
}

.article-black .container{
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.article-black .container .headline {
	width: 100%;
	margin: 0 auto 80px auto;
	text-align:left;
}

.article-black .container .headline h2{
	color: #fff;
	margin-bottom: 30px;
}

.article-black .container .headline p{
	color: #fff;
	margin-bottom: 30px;
}

.article-black .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;
}

.article-black .container .article .two {
	width: 46%;
	background-color: #fff;
	margin-bottom: 80px;
}

.article-black .container .article .two img{
	width: 100%;
}

.article-black .container .article .two h4{
	margin-top: 30px;
	padding: 0 30px;
}

.article-black .container .article .two p{
	padding: 0 30px 30px 30px;
}



@media only screen and (max-width: 1200px) {
	
	.article-black{
		padding: 110px 0 110px 0;
	}
	
	.article-black .container{
		width: 85%;
	}
	
	.article-black .container .article .two {
		margin-bottom: 60px;
	}
	
}

@media (max-width: 768px) {
	
	.article-black{
		padding: 80px 0 80px 0;
	}

	.article-black .container{
		width: 90%;
	}
	
	.article-black .container .article{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	
	.article-black .container .article .two {
		width: 100%;
		margin-bottom: 30px;
	}
	
	.article-black .container .article .two h4{
		margin-top: 20px;
		padding: 0 20px;
	}

	.article-black .container .article .two p{
		padding: 0 20px 20px 20px;
	}

	
}



/********************* Artikel Bild - Grün *********************/


.article-black-img{
	width: 100%;
}

.article-black-img .container-right{
	width: 100%;
	margin: 0 auto 0 auto;

	-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;
}

.article-black-img .container-right {
	background-color: #000;
}

.article-black-img .container-right .img1{
	background: url('../img/content/berufskraftfahrer/geschaeftsfuehrung-philip-christian-zobel-spedition-zobel-wetter-ruhr-nordrhein-westfalen.jpg') no-repeat center center;
}

.article-black-img .container-right .img2{
	background: url('../img/content/berufskraftfahrer/erfahrungsbericht-berufskraftfahrer-spedition-zobel-nrw.jpg') no-repeat center center;
}


.article-black-img .container-right .img1,
.article-black-img .container-right .img2{
	width: 50%;
  	background-size: cover;
  	background-position: center;
	
  	-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;
}

.article-black-img .container-right .img1 img,
.article-black-img .container-right .img2 img{
	width: 100%;
}

.article-black-img .container-right .text{
	width: 50%;
	margin: 0 auto 0 auto;
	text-align:left;
	
	-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;
}

.article-black-img .container-right .text h2,
.article-black-img .container-right .text p{
	margin-bottom: 40px;
	color: #fff;
}

.article-black-img .container-right .text a,
.article-black-img .container-right .text b{
	color: #fff;
}

.article-black-img .container-right .text .middle{
	margin: 170px 0 150px 0;
	padding: 0 100px;
}

.article-black-img .container-right .text .middle blockquote::before, 
.article-black-img .container-right .text .middle blockquote::after {
	color: #004519;
}


@media only screen and (max-width: 1400px) {
	

	.article-black-img .container-right{
		width: 100%;
	}
	
	.article-black-img .container-right{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.article-black-img .container-right .img1,
	.article-black-img .container-right .img2{
		width: 100%;
		height: 650px;
	}

	.article-black-img .container-right .text{
		width: 100%;
		text-align:left;
		
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	
	.article-black-img .container-right .text .middle{
		margin: 100px 0;
		padding: 0 7%;
	}
	
}

@media (max-width: 768px) {
	

	.article-black-img .container-right .img1,
	.article-black-img .container-right .img2{
		width: 100%;
		height: 450px;
	}
	
	.article-black-img .container-right .text p{
		margin-bottom: 20px;
	}
	
	.article-black-img .container-right .text .middle{
		margin: 60px 0;
		padding: 0 5%;
	}

	
}





/********************* button  *********************/


.button-white,
.button-green{
	visibility:visible;
	display: inline-block;
	
	margin-top: 40px;
  	padding: 10px 20px 7px 20px;
  	text-align: center;
	text-decoration: none;
	
	z-index:9888;
}

.button-white{
	background-color: #fff;
}

.button-green{
	background-color: #004519;
}

.button-white a,
.button-green a{
  	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 14px;
  	line-height: 26px;
	text-decoration:none;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.button-white a {
  	color: #004519;
}

.button-green a {
	color: #fff;
}

.button-white a:hover,
.button-green a:hover{
	text-decoration: underline;
}


@media (max-width: 768px) {
	
	.button-white,
	.button-green{
		margin-top: 15px;
  		padding: 8px 20px;
	}
	
	.button-white a,
	.button-green a{
		font-size: 13px;
  		line-height: 26px;
	}

	
}



/********************* Service  *********************/


.service{
	width: 100%;
	margin: 180px 0 200px 0;
	background-color:#FFF;
}

.service .container{
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.service .container .headline{
	width: 100%;
	margin: 0 auto 80px auto;
	text-align: left;
}

.service .container .headline img{
	margin-right: 50px;
}

.service .container .headline .center{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align: center;
}

.service .container .headline .center img{
	margin: 30px 30px 0 30px;
}

.service .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;
}

.service .container .article .three {
	width: 31%;
	padding: 50px 30px;
	text-align: center;
	outline-style: solid;
	outline-width: 1px;
	outline-color: #3C3C3B;
	margin-bottom: 50px;
}

.service .container .article .four {
	width: 22%;
	padding: 50px 30px;
	text-align: center;
	outline-style: solid;
	outline-width: 1px;
	outline-color: #3C3C3B;
	margin-bottom: 50px;
}

.service .container .article .five {
	width: 18%;
	padding: 50px 30px;
	text-align: center;
	outline-style: solid;
	outline-width: 1px;
	outline-color: #3C3C3B;
	margin-bottom: 50px;
}

.service .container .article .three h4,
.service .container .article .four h4,
.service .container .article .five h4{
	hyphens: auto;
}

.service .container .article .three img,
.service .container .article .four img,
.service .container .article .five img{
	height: 80px;
	width: auto;
	margin-bottom: 30px;
}

.service .container .article .facts {
	width: 25%;
	text-align: center;
	margin-bottom: 100px;
}

.service .container .article .facts-3 {
	width: 33%;
	text-align: center;
	margin-bottom: 100px;
}

.service .container .article .facts spam,
.service .container .article .facts-3 spam{
	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 65px;
  	line-height: 46px;
	margin-bottom: 20px;
}

.service .container .article .facts h4,
.service .container .article .facts-3 h4{
	margin-top: 10px;
	line-height: 30px;
}

@media only screen and (max-width: 1600px) {
	
	
	.service .container .article .facts {
		width: 50%;
	}
	
}

@media only screen and (max-width: 1500px) {
	

	.service .container .article .three,
	.service .container .article .four,
	.service .container .article .five{
		width: 47%;
		margin-bottom: 40px;
	}

}


@media only screen and (max-width: 1200px) {
	
	.service{
		margin: 110px 0 110px 0;
	}

	.service .container{
		width: 85%;
	}
	
	.service .container .headline{
		margin: 0 auto 40px auto;
	}
	
}

@media (max-width: 768px) {
	
	.service{
		margin: 80px 0 80px 0;
	}
	
	.service .container{
		width: 90%;
	}
	
	.service .container .article .three,
	.service .container .article .four,
	.service .container .article .five{
		width: 100%;
		margin-bottom: 30px;
	}
	
	.service .container .article .facts,
	.service .container .article .facts-3{
		width: 100%;
		margin-bottom: 65px;
	}
	
	.service .container .article .facts spam,
	.service .container .article .facts-3 spam{
		font-size: 55px;
	}

}



/********************* Service auf Grau  *********************/


.service-gray{
	width: 100%;
	padding: 180px 0 200px 0;
	background-color:#f1f1f1;
}

.service-gray .container{
	width: 65%;
	margin: 0 auto 0 auto;
	text-align:left;
}

.service-gray .container .headline{
	width: 100%;
	margin: 0 auto 80px auto;
	text-align: left;
}

.service-gray .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;
}

.service-gray .container .article .four {
	width: 22%;
	padding: 50px 30px;
	text-align: center;
	outline-style: solid;
	outline-width: 1px;
	outline-color: #3C3C3B;
	margin-bottom: 50px;
	background-color: #fff;
}

.service-gray .container .article .four h4{
	hyphens: auto;
}

.service-gray .container .article .four img{
	height: 80px;
	width: auto;
	margin-bottom: 30px;
}


@media only screen and (max-width: 1500px) {
	

	.service-gray .container .article .four{
		width: 47%;
		margin-bottom: 40px;
	}

}


@media only screen and (max-width: 1200px) {
	
	.service-gray{
		padding: 110px 0 110px 0;
	}

	.service-gray .container{
		width: 85%;
	}
	
	.service-gray .container .headline{
		margin: 0 auto 40px auto;
	}
	
}

@media (max-width: 768px) {
	
	.service-gray{
		padding: 80px 0 80px 0;
	}
	
	.service-gray .container{
		width: 90%;
	}
	
	.service-gray .container .article .four{
		width: 47%;
		padding: 30px 15px 25px 15px;
		margin-bottom: 30px;
	}
	
	.service-gray .container .article .four img{
		height: 60px;
		margin-bottom: 10px;
	}
	

}


/********************* Referenzen  *********************/

.benefits {
	width: 100%;
	margin: 140px 0 140px 0;
}

.benefits-2 {
	width: 100%;
	margin: 0;
}

.benefits .headline,
.benefits-2 .headline{
	width: 65%;
	margin: 0 auto 0 auto;
	text-align: center;
}

.benefits .headline img{
	width: 300px;
	margin: 0 auto 40px auto;
	text-align: center;
}

.benefits .container {
	width: 100%;
	margin: 140px auto 0 auto;
	
	-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;
}

.benefits-2 .container {
	width: 100%;
	margin: 0 auto 0 auto;
	
	-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;
}


.benefits .container .image-4,
.benefits-2 .container .image-4{ 
   	position: relative; 
   	width: 25%; /* for IE 6 */
	overflow: hidden;
	
  	text-align: center;
  	color: white;
}

.benefits .container .image-6 { 
   	position: relative; 
   	width: 16.66%; /* for IE 6 */
	overflow: hidden;
	
  	text-align: center;
  	color: white;
}

.benefits .container .image-8 { 
   	position: relative; 
   	width: 12.5%; /* for IE 6 */
	overflow: hidden;
	
  	text-align: center;
  	color: white;
}

.benefits .container .image-4 img,
.benefits-2 .container .image-4 img,
.benefits .container .image-6 img,
.benefits .container .image-8 img{ 
   	width: 100%;
	height: 100%;
	transition: transform .5s ease;
}

.benefits .container .image-4:hover img,
.benefits-2 .container .image-4:hover img,
.benefits .container .image-6:hover img,
.benefits .container .image-8:hover img{ 
	transform: scale(1.1);
}

.benefits .container .image-4 .text,
.benefits .container .image-6 .text,
.benefits .container .image-8 .text{ 
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
}

.benefits .container .image-4 .text a,
.benefits .container .image-6 .text a,
.benefits .container .image-8 .text a{
	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 30px;
  	line-height: 46px;
	color:#fff;
	text-decoration:none;
}



@media only screen and (max-width: 1200px) {
	
	.benefits{
		margin: 110px 0 110px 0;
	}

	.benefits .container{
		margin: 110px auto 0 auto;
	}
	
	.benefits .container .image-4,
	.benefits-2 .container .image-4,
	.benefits .container .image-6, 
   	.benefits .container .image-8{  
   		width: 25%;
	}
	
	.benefits .container .image-4 .text a,
	.benefits .container .image-6 .text a,
	.benefits .container .image-8 .text a{
		font-size: 18px;
  		line-height: 25px;
	}	


}

@media (max-width: 768px) {
	
	.benefits{
		margin: 80px 0 80px 0;
	}
	
	.benefits .container{
		margin: 80px auto 0 auto;
	}
	
	.benefits .container .image-4,
	.benefits-2 .container .image-4,
	.benefits .container .image-6, 
   	.benefits .container .image-8{ 
   		width: 50%;
	}
	
	.benefits .container .image-4 .text a,
	.benefits .container .image-6 .text a,
	.benefits .container .image-8 .text a{
		font-size: 17px;
  		line-height: 24px;
	}

}





/********************* accordion  *********************/

.accordion {
    width: 100%;
    margin: 140px 0 140px 0;
    background-color: #FFF;
}

.accordion .container {
    width: 65%;
    margin: 0 auto 0 auto;
    text-align: left;
}

.accordion .container .logo-img{
    width: 100%;
	height: auto;
	margin-bottom: 30px;
}

.accordion .container .logo-img img{
    width: 200px;
	height: auto;
}

.accordion .container .image{
    width: 100%;
	height: auto;
	margin-top: 60px;
}

.accordion .container .image img{
    width: 100%;
	height: auto;
}

.accordion .container .panel {
    width: auto;
    margin: 0 0 0 36px;
    padding: 0 20px 0 0;
    height: 0;
    overflow: hidden;
    color: rgba(0, 0, 0, 0);
    background-color: hsla(0, 0%, 100%, 0);
    box-sizing: border-box;
    transition: 0.5s;
}

.accordion .container label {
    cursor: pointer;
    display: flex; /* Flexbox für Ausrichtung */
    align-items: center; /* Vertikale Ausrichtung */
    justify-content: space-between; /* Platz zwischen Text und Symbol */
    width: 100%;
    margin-top: 1px;
    padding: 12px 0 8px 0;
    border-top-style: solid;
    border-color: #dadada;
    border-width: 1px;
}



.accordion .container input {
    display: none;
}

.accordion .container input:checked+label {
    color: #000;
}

.accordion .container input:checked+label:before {
    transition: 0.5s;
}

.accordion .container input:checked~.panel {
    height: auto;
    color: #000;
    padding: 0;
    transition: 0.5s;
}

.accordion .container label:before { 
    content: " + "; 
    font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
    font-size: 25px;
    color: #004519;
    margin-left: auto;
    order: 2;
}

.accordion .container input:checked+label:before { 
    content: " – "; 
    font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
    font-size: 25px;
    color: #004519;
    margin-left: auto;
    order: 2;
}

.accordion .container label img.accordion-icon {
    width: 25px;
    height: auto;
    margin-right: 10px;
    order: 0;
}

.accordion .container label h3 {
	font-family: 'Poppins-Regular', sans-serif;
	font-size: 19px;
	
    margin: 0; /* Entferne Standardabstände */
    flex-grow: 1; /* Lasse die Überschrift den verfügbaren Platz einnehmen */
    order: 1; /* Überschrift in die Mitte setzen */
}

.accordion .container .panel h3 {
	font-size: 22px;
	line-height: 32px;
	margin-top: 25px;
	margin-bottom: 25px;
}

.accordion .container .panel h4 {
	font-size: 19px;
	margin-top: 25px;
}

.accordion .container .panel p {
    margin: 5px 0px 20px 0px;
}

.accordion .container .panel ul {
    display: block; 
    list-style-type: disc; 
    padding-left: 20px; 
}

@media only screen and (max-width: 1200px) {
    .accordion {
        margin: 110px 0 110px 0;
    }

    .accordion .container {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .accordion {
        margin: 80px 0 80px 0;
    }

    .accordion .container {
        width: 90%;
    }
	
	.accordion .container label h3 {
		font-size: 16px;
		line-height: 25px;
	}
	
	.accordion .container .panel {
    	margin: 0 0 0 0px;
	}

	.accordion .container .panel h3 {
		font-size: 19px;
		line-height: 28px;
		margin-top: 25px;
		margin-bottom: 20px;
	}

	.accordion .container .panel h4 {
		font-size: 17px;
		margin-top: 24px;
	}
	
	.accordion .container .panel li {
		margin-left: 22px;
	}
}


/********************* Softgarden  *********************/

.softgarden{
	width: 100%;
	padding: 140px 0 0 0;
	background-color: #f1f1f1;
}

.softgarden .headline {
	width: 100%;
	margin: 0 auto 80px auto;
	text-align: center;
}

.softgarden .container {
	width: 65%;
	margin: 0 auto 0 auto;
	padding: 50px 0;
	text-align:left;
	background-color: #fff;
}

.softgarden .container iframe {
	margin: 0;
   	padding: 0 20px;
   	border: none; 
	width: 100%;
	height: 900px;
}




@media only screen and (max-width: 1200px) {
	
	.softgarden{
		padding: 110px 0 0 0;
	}
	
	.softgarden .container {
		width: 85%;
	}
	
	.softgarden .container iframe {
		height: 1200px;
	}


}

@media (max-width: 768px) {
	
	.softgarden{
		padding: 80px 0 0 0;
	}
	
	.softgarden .container {
		width: 90%;
		padding: 20px;
	}
	
	.softgarden .container iframe {
  		padding: 0 5px;
		height: 1600px;
	}

}

/********************* Kontakt  *********************/


.contact{
	width: 100%;
	margin: 140px 0 140px 0;
}

.contact .container {
	width: 65%;
	margin: 0 auto 0 auto;
	text-align: center;
}

.contact .container img {
	width: 100px;
	margin: 10px;
}

@media only screen and (max-width: 1200px) {
	
	.contact{
		margin: 110px 0 110px 0;
	}

	.contact .container{
		width: 85%;
	}

}

@media (max-width: 768px) {
	
	.contact{
		margin: 80px 0 80px 0;
	}
	
	.contact .container{
		width: 90%;
	}
	
	.contact .container img {
		width: 70px;
		margin: 5px;
	}

	
}



/********************* Bereich mit Link  *********************/


.link{
	width: 100%;
	margin: 100px 0 140px 0;
}

.link .container {
	width: 65%;
	margin: 0 auto 0 auto;
	text-align: center;
}


@media only screen and (max-width: 1200px) {
	
	.link{
		margin: 70px 0 110px 0;
	}

	.link .container{
		width: 85%;
	}

}

@media (max-width: 768px) {
	
	.link{
		margin: 65px 0 80px 0;
	}
	
	.link .container{
		width: 90%;
	}
	
}




/********************* Kontaktformular  *********************/

.form{
	width: 100%;
	margin: 140px 0 140px 0;
}

.form .container {
	width: 65%;
	margin: 0 auto 0 auto;
}

.form label {
	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 19px;
  	line-height: 33px;
	color:#3C3C3B;
	
  	display: inline-block;
  	margin: 0 0;
  	padding: 25px 0 5px 0;
  	border: 1px solid transparent;
}

textarea.form-control {
    height: auto;
}

.form label a {
	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 17px;
  	line-height: 33px;
	text-decoration:none;
	color:#3C3C3B;
 }
  
.form label a:hover {
	text-decoration: underline;
	color:#004519;
}

.form-radio {
	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 15px;
  	line-height: 30px;
	text-decoration:none;
	color:#3C3C3B;
}

.form li {
	color: #b70e0c;
	margin-left: 20px;
}

.form .btn {
	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight:500;
	font-size: 14px;
  	line-height: 26px;
	text-decoration:none;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	
	visibility:visible;
	display: inline-block;
	background-color: #004519;
	
	margin-top: 40px;
  	padding: 10px 20px 7px 20px;
  	text-align: center;
  	border: none;
}

.form .btn:hover {
  	text-decoration: underline;
}

.form-control {
    display: block;
    width: 100%;
    height: 35px;
    padding: 10px;
	
	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 15px;
  	line-height: 30px;
	color:#706f6f;
	
    background-color: #fff;
    background-image: none;
    border: 1px solid #706f6f;
}

textarea {
    font-family: inherit;
	overflow: auto;
	margin: 0;
	font: inherit;
}


@media only screen and (max-width: 1100px) {
	
	.form {
		margin: 110px 0 110px 0;
  	}

}

@media (max-width: 768px) {
	
	.form {
		margin:  80px 0 80px 0;
  	}
	
	.form .container{
		width: 90%;
	}
	
	.form .container .btn{
		font-size: 15px;
  		line-height: 26px;
  	}
	
	.form label,
	.form label a{
		font-size: 15px;
  		line-height: 25px;
  	}

}


/********************* Footer  *********************/

.footer{
	width: 100%;
	padding: 100px 0 100px 0;
	background-color: #000;
}

.footer .container {
	width: 90%;
	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 .item-1 {
	width: 20%;
}

.footer .container .item-1 img{
	width: 80%;
	margin: 0 auto 0 auto;
	padding-bottom: 30px;
}

.footer .container .item-2 {
	width: 20%;
}

.footer .container .item-1 hr,
.footer .container .item-2 hr {
	color:#fff;
	margin: 10px 0;
}

.footer .container .item-1 b,
.footer .container .item-2 b {
  	font-family: 'Poppins-SemiBold', sans-serif; 
	font-weight: 500;
	font-size: 15px;
  	line-height: 27px;
	color:#fff;
}

.footer .container .item-1 p,
.footer .container .item-2 p,
.footer .container .item-1 a,
.footer .container .item-2 a {
  	font-family: 'Poppins-Light', sans-serif;
	font-weight:300;
	font-size: 15px;
  	line-height: 27px;
	color:#fff;
}



@media only screen and (max-width: 1200px) {
	.footer {
		padding: 80px 0 20px 0;
	}

	.footer .container {
		width: 85%;
	}
	
	.footer .container .item-1,
	.footer .container .item-2{
		width: 45%;
		margin-bottom: 60px;
	}
}

@media (max-width: 768px) {
	
	.footer{
		padding: 60px 0 30px 0;
	}
	
	.footer .container {
		width: 90%;
		
		display: -webkit-flex;
    	-webkit-flex-wrap: wrap;
    	display: flex;  
    	flex-wrap: wrap;
		
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	
	.footer .container .item-1 img{
		width: 50%;
	}
	
	.footer .container .item-1,
	.footer .container .item-2{
		width: 100%;
		margin-bottom: 30px;
	}
	
	.footer .container .item-1 b,
	.footer .container .item-2 b {
		font-size: 16px;
  		line-height: 28px;
	}

	.footer .container .item-1 p,
	.footer .container .item-1 a,
	.footer .container .item-2 a {
		font-size: 15px;
  		line-height: 25px;
	}



}
