div#services { display: none; }
div#services-mobile {
	width: 100%;
	height: auto;
	display: block;

	margin-top: 80px;
	margin-bottom: 80px;
	
}
.picture-wrapper-mobile {
	background: url("../imgs/section4_services.jpg") no-repeat;
	background-size: cover;
	background-position: center center;

	height: 440px;
	width: auto;

	margin-left: 20px;
	margin-right: 20px;

}

/*Anpassung für Tablet*/
@media (min-width: 800px) 	 { 
	.picture-wrapper-mobile {
		height: 820px;
	}
}
@media (min-width: 540px) 	 { 
	.picture-wrapper-mobile {
		height: 680px;
	}
}



/******************************
*********DEKSTOP VIEW**********
******************************/

@media (min-width: 1240px) 	 {

	div#services-mobile { display: none; }

	div#services {
		display: block;
		background-color: white;
		width: 100%;
		height: auto;


		margin-top: 80px;
		margin-bottom: 80px;

	}
	.picture-wrapper-desktop {
		background: url("../imgs/section4_services.jpg") no-repeat;
		background-size: cover;
		background-position: center center;

		height: 1600px;
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}
}