/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.logo_block a{
		font-size: 48px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.main_mnu_button{
		display: block;
		font-size: 19px;
		padding: 3px 0 3px;
	}
	.main_mnu ul{
		background-color: #f6a276;	
		display: none;
		position: absolute;
		margin-top: 0px;
		z-index: 99;
	}
	.main_mnu ul li{
		display: block;
		font-size: 15px;
	}
	.logo_block a{
		font-size: 32px;
	}
	h1{
		font-size: 1.17em;
	}
	h2{
		font-size: 1.1em;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.logo_block a{
		font-size: 22px;
	}
}

/* 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) {
	.main_mnu ul{
		display: block !important;
		font-size: 20px;
	}
	.main_mnu_button{
		display: none;
		font-size: 26px;
		padding: 10px 0 10px;
	}
	h1{
		font-size: 2em;
	}
	h{
		font-size: 1.5em;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
