/*==========  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{
		position: fixed;
		width: 100%;
		top:0px;
		left: 0px;
		z-index: 10000;
	}

	div.top{
		display: none;
	}
	div.menu{
		display: none;
	}

	div.mob{
		display: block;
	}

	div.mob img{
		width: 200px;
		margin: 5px;
	}
	div.mob img.buter{
		width: 30px;
		float: right;
		margin: 12px;
	}
	div.menu_mob{
		display: none;
		width: 100%;
		position: fixed;
		z-index: 11000;
		background-color: #fff;
		text-align: center;
	}



	div.menu_mob ul.inf{
		text-align: center;
		list-style-type: none;
		padding: 0px;
		margin:13px 0px;
		color: #7e00e1;
	}
	div.menu_mob ul.inf li.info{
		font-size: 25px;
		color: #de5908;
		line-height:25px;
		padding-bottom: 10px;
	}


	div.menu_mob div.soc{
		text-align: center;
		width: 100%;
		margin: 0px 0px;
		background-color: #f00;
	}
	div.menu_mob div.soc img{
		display: inline-block;
		width: 40px;
		margin-left: 10px;
	}


	div.menu_mob ul.mnu{
		list-style-type: none;
		background: #6eb300;
		margin: 0px;
		padding:20px 0px;
		color: #fff;
	}
	div.menu_mob ul.mnu li{
		margin: 5px 0px;
	}
	div.menu_mob ul.mnu img{
		width: 40px;
	}
	div.menu_mob div.close{
		padding: 10px 0px;
		background-color: #000;
		color: #fff;
		text-transform: uppercase;
	}

	img.triger{
		margin: 40px 0px;
	}

h1{
	font-size: 25px;
	line-height: 45px;
	text-align: center;
	margin: 0px;
	padding: 80px 0px 20px 0px;
	background-color: #578b34;
	color: #fff;
	font-family: "ModernHBold";
}


#slider-wrap{
	display: none;
}


table.form{
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100vh;
	display: none;
	background-color: #fff;
}

table.form tr td{
	width: 100%;
	height: 45vh;
	text-align: center;
	display: block;
}


table.form tr td div.forms{
	padding: 10px;
	min-width:100%;
}

table.form p.info{
	font-size: 12px;
}
table.form p.politika{
	font-size: 10px;
	margin-top: 80px;
}

table.form tr td div.forms button{
	font-size: 15px !important;
}
table.form tr td div.forms div.info input{
	font-size: 15px;
}

}

/* 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) {

	
	div.top{
		display: block;
	}
	div.menu{
		display: block;
	}
	div.mob{
		display: none;
	}
	.main_mob{
		display: none;
	}
 

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}