/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
		.section1 {
		font-size: 25px;
	}
	.foto_city {
		width: 45%;
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.mein_menu {
		margin-left: 100px;
		margin-right: 100px;
	}
	.notfall_text {
		float: none;
		padding: inherit;

	}
	.notfall_telefon {
		float: none;
		padding: inherit;
	}
	.section1 {
		padding-top: 10px;
		padding-bottom: 10px;
		line-height: 35px;
		font-size: 25px;
	}
	.leistungen {
		margin-left: 0;
	}
	.section2 img {
		display: block;
		position: absolute;
		right: 40px;
		top: 10px;
	}
	.foto_city {
		width: 27%;
	}


}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.mein_menu {
		margin-top: 5px;	
		margin-left: 0px;
		margin-right: 0px;
	}
	.mein_menu ul {
		display: none;
	} 
	.mein_menu ul li {
		display: block;
	}
	.logo, .header_telefonnnummer {
		float: none;
		padding: 0;
	}
	.foto_city {
		width: 100%;
	}
	.leistungen img {
		width: 120px;
	}

	

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.mein_menu ul {
		display: inline-block !important;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}