/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/
 
 
/*==========  Mobile First Method  ==========*/
 
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
	
	.menuzord-brand img {
	  max-height: 50px; /**/
	}
	
	.menuzord-brand {
		margin-top:0px;
		margin-left:-30px;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
	
	.menuzord-brand img {
	  max-height: 50px; /**/
	}
	
	.menuzord-brand {
		margin-top:0px;
		margin-left:0px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	
	.menuzord-brand img {
	  max-height: 50px; /**/
	}
	
	.menuzord-brand {
		margin-top:5px;
		margin-left:0px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	
	.menuzord-brand img {
	  max-height: 65px; /**/
	  margin-top:-15px;
	}
	
	.menuzord-brand {
		margin-top:20px;
		margin-left:0px;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	
	.menuzord-brand img {
	  max-height: 65px; /**/
	  margin-top:-15px;
	}
	
	.menuzord-brand {
		margin-top:20px;
		margin-left:0px;
	}
}


/*==========  Non-Mobile First Method  ==========*/
 
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
}

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

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

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