/* bis zu iPhone 4s */
@media all and (device-width: 320px) and (device-height: 480px) and (orientation:portrait) {
	.body-bg {
		height: 357px; 
	}
}

/* iPhone 5, 5s, 5c */
@media all and (device-width: 320px) and (device-height: 568px) and (orientation:portrait) {
	.body-bg {
		height: 445px; 
	}
}

/* iPhone 6 */
@media all and (device-width: 375px) and (device-height: 667px) and (orientation:portrait) {
	.body-bg {
		height: 544px; 
	}
}

/* iPhone 6Plus */
@media all and (device-width: 414px) and (device-height: 736px) and (orientation:portrait) {
	.body-bg {
		height: 613px; 
	}
}

/* iPad (alle) */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
	.body-bg {
		height: 901px; 
	}
}

/* MacBook Pro */
@media all and (device-width: 1280px) and (device-height: 800px) {
	#c1, #carousel-1, .carousel-inner, .container .carousel-inner > .item {
		height: 82vh !important;
	}
	
	#content .container {
		padding-bottom: 0;
	}
}