/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

	header {
		text-align: center;
		padding: 6px 0;
	}

	.headbox {
		text-align: center;
		padding: 6px 0;
	}

	footer {
		text-align: center;
		padding: 20px 0;
	}

	.mainlogo, .mainphone {
		text-align: center;
	}
	
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

	.zakaz h1 {
		font-size: 18px;
	}
	.zakaz h2, .zakaz h3, .zakaz h4, .zakaz h5 {
		font-size: 16px;
	}
	.zakaz p {
		font-size: 16px;
	}


	header .mainphone {
		font-size: 12px;
	}
	header .mainphone a {
		font-size: 12px;
	}
	header .mainphone a b {
		font-size: 12px;
	}

	
}

/* 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) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}