/*==========  Non-Mobile First Method  ==========*/

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	#custom-gmaps {
		width: 100% !important;
	}

	.sticky-logo h1 { 
		font-size: 18px; 
		padding: 12px 0px 0px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.sticky-logo h1 { 
		font-size: 36px; 
		padding: 0px;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	.sticky-logo h1 { 
		font-size: 22px; 
		padding: 12px 0px 0px;
	}
}

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