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

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {
	header .search input[type=text]{
		width: 89%;
	}
	footer form input[type=text]{
		margin-right: 0;
		display: block;
		margin-bottom: 20px;
	}
	footer form input[type=submit]{
		display: block;
		margin: 0 auto;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	header .search input[type=text] {
	    width: 96%;
	}
	header .logo img{
		display: block;
		margin: 0 auto;
	}
	header .info {
	    width: 220px;
	    margin: 0 auto;
	}
	.navigation nav{
		width: 100%;
	}
	.navigation nav ul{
		display: none;
	}

	.navigation nav ul li{
		margin-right: 0;
		display: block;
		text-align: center;
		margin-bottom: 10px;
	}
	.navigation nav ul li:last-child{
		margin-bottom: 0;
	}
	#pull{
		text-transform: uppercase;
	    color: #000;
	    font-size: 17.5px;
	    font-family: 'HelveticaNeueCyr-Roman';
	    display: block;
	    text-align: center;
	    margin-top: 20px;
	}
	.categories .cat-block{
		margin-bottom: 40px;
	}
	.footer-menu{
		margin-bottom: 20px;
	}
	.footer-menu .title p{
		text-align: center;
	}
	footer .footer-menu ul li a{
		display: block;
		text-align: center;
	}
	footer .subscribe{
		float: none;
		margin: 0 auto;
	}
	footer .sub-title p{
		text-align: center;
	}
	footer form input[type=text]{
		margin: 0 auto 20px auto;
	}
}

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

	/*Disable Animation on Mobile Devices*/
	.animated {
		/*CSS transitions*/
		-o-transition-property: none !important;
		-moz-transition-property: none !important;
		-ms-transition-property: none !important;
		-webkit-transition-property: none !important;
		transition-property: none !important;
		/*CSS transforms*/
		-o-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-webkit-transform: none !important;
		transform: none !important;
		/*CSS animations*/
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}

}
@media only screen and (max-width : 576px) {
	header .search input[type=text]{
		width: 95%;
	}
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

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

}