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

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.maus img,
	.wespen img,
	.operator img {
		width: 50%;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) { 

	header .col-sm-12 {
		float: none!important;
	}
	.block_logo {
		float: none;
		margin-bottom: 20px;
	}
	.map {
		width: 200px;
		float: none !important;
		display: block;
		margin: 0 auto;
	}	
	.region {
		text-align: center;
		float: none!important;		
	}
	.bewertungen a {
		line-height: initial;
	}
	nav ul {
		text-align: center;
		padding-left: 0px;
	}
	.right_img {
		width: 28%;
		height: initial;
		float: none;
	
	}
	
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
		
	.container {
		margin: initial;
		border: none;
		padding: initial;
   	}
   	.right_img {
		display: none;
	}
	nav ul {
		font-size: 14px;
	}

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
	nav li {
		padding: 3px;
	}
	nav ul {
		padding-left: -15px;
    	padding-right: -15px;
	}

}


/*==========  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) {

}

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

}

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

}