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

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
.what .right {
	margin-left: 0;
}
.menu {
		display: none;

	}
.top_menu ul li {
		position: relative;
		width: 300px;
		float: right;
		padding: 10px 10px;
		display: block;
	}
.top_menu .home {
  float: left;
  padding-left: 10px;
}
.top_menu .home li{
	width: 200px;
}
	

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
.top .switch {
	display: none;
}
.two_item {
	display: none;
}
.mail_box {
  margin-right: 5px;
}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
.logo img{
	width: 70px;
}
.discr h1 {
	font-size: 38px;
	line-height: 42px;
}
.item-tabs .tab {
	padding: 10px 10px;
}
.stroy .item2 {
	display: none;
}
.clients {
	display: none;
}
.foot h3{
	font-size: 18px;
}
.foot .logo {
	margin-bottom: 25px;
}
	body section {
		overflow-y: hidden;
	}
}

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


}

@media (min-height: 680px) and (min-width : 1400px) {

}


/*==========  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) {
	body section {
		overflow-y: hidden;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	

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

}