html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong {
	font-weight: bold;
}


@font-face {
    font-family: "Calibri";

    src: 
    	 url("../fonts/calibri/proxima-nova.eot") format("embedded-opentype"),
    	 url("../fonts/calibri/proxima-nova.woff") format("woff"),
	     url("../fonts/calibri/proxima-nova.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face{
	font-family: "CalibriBold";
	src: 
		 url("../fonts/calibri/Calibri-Bold.eot") format("embedded-opentype"),
		 url("../fonts/calibri/Calibri-Bold.woff") format("woff"),
		 url("../fonts/calibri/Calibri-Bold.ttf") format("truetype");
	font-weight:700;
	font-style:normal;
}


*{
	box-sizing: border-box;
}

/* @group Общий стиль */
html,
body {
	width: 100%;
	/*height: 100%;*/
}
body{
	/*background: #fff url(../images/bg1.png) no-repeat center fixed;*/
	background-size: 100% auto; 
	color: #000;
	font: 16px 'Calibri', Verdana, Tahoma, Arial, Helvetica, Geneva, sans-serif;
	font-weight: 300;
}
a{
	color: #fff;
	border-bottom: 2px solid #89c297;
	text-decoration: none;
}
a:hover{
	color: #e0e0e0;
}
.bg_white{
	background: #fff;
}
.bg1{
	background: #f8f8f8;
}
.b3 .main_width{
	padding: 20px 0;
	border: 1px dashed #aaa;
}
.qout{
	position: relative;
	margin: 15px 0 25px;
	padding: 0 30px;
	color: #222;
	line-height: 1.3;
}
.qout::before {
    content: '”';
    background: #89c297;
    border-radius: 50%;
    color: #fff;
    font-family: 'Georgia','Times New Roman';
    font-size: 50px;
    line-height: 1;
    text-align: center;
    position: absolute;
    left: -18px;
    top: 0;
    width: 36px;
    height: 29px;
    padding: 7px 0 0;
}
.qout strong{
	font-weight: 700;
}
.form{
	min-height: 400px;
}
.form .info{
	color: #fff;
}



h1,
.h1{
	color: #222328;
	font-size: 37px;
	line-height: 1.1;
	font-weight: 900;
	padding: 0 0 40px;
}
h2,
.h2{
	color: #222;
	font-size: 36px;
	font-family: "CalibriBold";
	line-height: 1;
	font-weight: 800;
	padding: 0 0 40px;
	margin: 0;
}
h3,
.h3{
	color: #fff;
	font-size: 32px;
	line-height: 1;
	padding: 0 0 20px;
}
h4,
.h4{
	color: #222;
	font-size: 26px;
	line-height: 1;
	padding: 0 0 15px;
}
p{
	margin-bottom: 20px;
}
p:last-child{
	margin-bottom: 0;
}
hr{
	border: none;
	border-top: #ccc 1px solid;
	margin: 30px 0;
}
.text_center{
	text-align: center;
}

.nowrap{
	white-space: nowrap;
}
.lh_2{
	line-height: 2;
}

[data-tooltip]{
	position: relative;
}
[data-tooltip]:before {
    content: attr(data-tooltip);
    background: #000;
	color: #fff;
	font-size: 12px;
	line-height: 1.1;
	white-space: nowrap;
	text-align: center;
	text-transform: none;
	position: absolute;
	left: -9000px;
	bottom: 100%;
	opacity: 0;
	transform: translate(-50%, -30px);
	transition: opacity .5s, transform .5s;
	padding: 5px 10px;
}
[data-tooltip]:hover:before{
	left: 50%;
	opacity: 1;
	transform: translate(-50%, -10px);
}
[data-tooltip]:after{
	content: '';
	border: 8px solid transparent;
	border-top: #000 8px solid;
	position: absolute;
	left: -9000px;
	bottom: 100%;
	opacity: 0;
	transform: translate(-50%, -14px);
	transition: opacity .5s, transform .5s;
}
[data-tooltip]:hover:after{
	left: 50%;
	opacity: 1;
	transform: translate(-50%, 4px);
}

.fx{
	display: flex;
	flex-direction: row;
}
.fx.v{
	flex-direction: column;
}
.fx.c{
	justify-content: center;
}
.fx.w{
	flex-wrap: wrap;
}
.fx.vc{
	align-items: center;
}

.fx.ch2 > *{
	width: calc((100% / 2) - 15px);
	padding-right: 30px;
	box-sizing: content-box;
}
.fx.ch2 > *:last-child{
	padding-right: 0px;
}

.fx.ch3 > *{
	width: calc(100% / 3);
	padding: 0 20px;
	box-sizing: border-box;
}

.fx.ch4 > *{
	width: calc(100% / 4);
	padding-right: 20px;
	box-sizing: border-box;
}
.fx.ch4 > *:last-child{
	padding-right: 0px;
}

.w100{
	width: 100%;
}
.w70{
	width: 70%;
}
.w60{
	width: 60%;
}
.w50{
	width: 50%;
}
.w40{
	width: 40%;
}
.w30{
	width: 30%;
}
.w20{
	width: 20%;
}
.w800px{
	width: 800px;
	max-width: 100%;
}
.main_width{
	width: calc(100% - 100px);
	max-width: 1100px;
	margin: 0 auto;
}
.main_width.v2{
	max-width: 900px;
}

.check_list,{
	list-style: none;
}
.check_list.column2,{
	list-style-position: inside;
	-moz-column-count: 2; /* Firefox */
	-webkit-column-count: 2; /* Safari and Chrome */
	column-count: 2;
}
.check_list.column2 li{
	padding-right: 20px;
}
.check_list li{
	display: inline-block;
	min-height: 30px;
	position: relative;
	padding: 15px 10px 15px 38px;
	padding-right: 10px;
	margin: 0 10px 20px;
	font-size: 16px;
	background: #edf4f7;
}
.check_list li:before{
	content: "";
	display: block;
	position: absolute;
	top: 18px;
	left: -5px;
	width: 26px;
	height: 14px;
	border: 3px solid #2aee9f;
	border-top: none;
	border-right: none;
	transform: rotate(-50deg);
}

.clear{
	clear: both;
}

.header{
	overflow: hidden;
	padding: 0; 
}
.header .logo{
	float: left;
	position: relative;
	width: 100px;
	padding: 15px 0;
}

.header.top{
	position: relative;
}
.show_menu{
	display: none;
	float: right;
	cursor: pointer;
	margin: auto 0;
}
.icon_menu{
	width: 30px;
	height: 30px;
	transition: .3s;
}
.header .icon_menu{
	fill: #fff;
}
.header .icon_menu:hover{
	fill:#f5f5f5;
}
.header .button1{
	font-size: 16px;
	float: right;
	margin: 8px 0;
}

.header.fixed .logo_agrohub{
	opacity: .65;
}
.header .main_width{
	display: flex;
}

.menu{
	display: flex;
	margin: auto auto;
}
.menu li{
	padding: 0 12px;
	list-style: none;
	border-right: 1px solid #ccc;
}
.menu li:last-child{
	border-right: none;
}
.menu li a{
	border-bottom: none;
}
.menu li a:hover{
	border-bottom: 2px solid #89c297;
}
.header .menu{
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
}
.header .menu li a{
	white-space: nowrap;
}

.header .title{
	font-size: 21px;
	font-family: "CalibriBold";
	float: left;
	margin: 15px 0 0;
}

.top_block .content{
	text-align: center;
	padding: 130px 0 150px;
}
.top_block .content .title{
	color: #fff;
	font-family: "CalibriBold";
	font-size: 70px;
}
.top_block .content .txt{
	margin: 0 auto;
	font-size: 22px;
	font-weight: 100;
}
.top_block .content .txt span{
	white-space: nowrap;
}
.top_block .info_line{
	border-top: rgba(255,255,255,.7) 1px solid;
	border-bottom: rgba(255,255,255,.7) 1px solid;
	justify-content: center;
	margin: 80px 0 80px;
}
.top_block .info_line .item{
	border-right: rgba(255,255,255,.7) 1px solid;
	font-size: 24px;
	line-height: .8;
	text-align: left;
	padding: 20px 30px;
}
.top_block .info_line .item:first-child{
	padding-left: 0;
}
.top_block .info_line .item:last-child{
	border: none;
	padding-right: 0;
}
.top_block .info_line .item > div{
	position: relative;
	padding: 9px 0 0 50px;
}
.top_block .info_line .item span{
	font-size: 16px;
}
.top_block .info_line .item > div:before{
	content: '';
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
	width: 34px;
	height: 34px;
}
.top_block .info_line .item .date:before{
	background-image: url(../images/calendar.svg);
}
.top_block .info_line .item .time:before{
	background-image: url(../images/clock.svg);
}
.top_block .info_line .item .loc:before{
	background-image: url(../images/map-flag.svg);
	top: 7px;
}
.top_block .button1{
	font-size: 26px;
	padding: 14px 30px 12px;
}

.content_block{
	padding: 50px 0;
}
.b1{
	color: #fff;
	position: relative;
	background: url(../images/background.jpg) no-repeat 0/cover;
}
.b1:before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(49, 77, 96, .8);
    z-index: 1;
}
.b1 > *{
	position: relative;
	z-index: 2;
}

.b1 .h1{
	color: #fff;
}

.list1{
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
}
.center{
	text-align: center;
}
.list1 p{
	font-size: 17px;
	position: relative;
	
	margin-bottom: 20px;
}
.list1 li{
	font-size: 17px;
	position: relative;
	padding-left: 28px;
	margin-bottom: 20px;
	list-style-type: none;
}
.list1 li:before{
	content: "";
	display: block;
	background: #89c297;
	border-radius: 50px;
	position: absolute;
	top: 6px;
	left: 0;
	width: 12px;
	height: 12px;
	
}

.block{
	padding-bottom: 50px;
}
.block.b1{
	padding-bottom: 40px;
	margin-bottom: 50px;
}


.b2{
	padding: 100px 0;
	position: relative;
	background: url(../images/background.jpg) no-repeat 0/cover;
}
.b2:before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
    z-index: 1;
}

.b2 .list1{
	position: relative;
	z-index: 2;
	margin-top: 50px;
}
.b2 .list1 p {
	color: #fff;
	font-style: italic;
	text-align: center;
	margin-bottom: 0;
}

.img img{
	object-fit: cover;
	height: 100%;
}

.b2 .fx.ch2{
	position: relative;
	z-index: 2;
}
.fx.ch2 .img{
	min-height: 340px;
}

.b2 .h3{
	position: relative;
	padding: 20px 0 0 20px;
	line-height: 1.3;
	display: inline-block;
}
.b2 .h3:before{
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 20px;
	width: calc(100% - 20px);
	height: 5px;
	background: #fff;
}

.b2 .logo{
	position: absolute;
	bottom: 10px;
	left: 20px;
	width: 120px;
}



.form{
	background: rgba(0,0,0,.4);
	border: 1px dashed #efefef;
    padding: 20px 60px 15px;
    max-width: 100%;
}
.form input, .form textarea {
    background: rgba(255,255,255,.9);
    border: none;
    outline: none;
    border-radius: 5px;
    color: #111;
    font-size: 13px;
    width: 100%;
    height: 32px;
    transition: .3s;
    padding: 10px;
    margin: 0 0 15px;
}
.select_block select{
	background: rgba(255,255,255,.9);
    border: none;
    outline: none;
    border-radius: 5px;
    color: #777 !important;
    font-size: 13px;
    width: 100%;
    height: 32px;
    transition: .3s;
	padding: 5px 9px;
}
.select_block select *{
	background: rgba(255,255,255,.9);
    border: none;
    outline: none;
    border-radius: 5px;
    color: #111 !important;
    font-size: 13px;
    width: 100%;
    transition:  .3s;
    padding: 0px !important;
    padding-inline-start: 0px !important;
}
.form .h4{
	color: #fff;
	margin-bottom: 8px;
}


.select_block {
    position: relative;
    background: rgba(255,255,255,.9);
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

.select_block:before {
    content: '';
    position: absolute;
    top: 27%;
	right: 15px;
	display: block;
	width: 9px;
	height: 9px;
    border: 2px solid #555;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.select_block select {
    background: none;
    border: none;
    outline: none;
    width: calc(100% + 40px) !important;
    padding-right: 37px;
    -webkit-appearance: none;
}

.select_block select * {
    -webkit-appearance: none;
}

.button{
	display: block;
	background: #314f66;
	border-radius: 9px;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	padding: 12px 30px;
	border: none;
	outline: none;
	margin: 0 auto;
	cursor: pointer;
}
/*.button:hover{
	background: #afeeaf;
}
*/
.button1{
	background: #00d692;
	border: 2px solid #00d692;
	border-radius: 50px;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	padding: 11px 20px 9px;
	transition: 0.5s;
}
.button1:hover{
	background: #fff;
	border-color: #00d692;
	color: #222;
}

.footer{
	background: #fff;
}
.footer .top{
	justify-content: space-between;
	padding: 30px 0;
}
.footer .bottom{
	border-top: rgba(0,0,0,.1) 1px solid;
	color: #666;
	font-size: 12px;
	justify-content: space-between;
	padding: 20px 0;
}
.footer .logo{
	display: block;
	float: left;
	width: 180px;
	margin: 0 30px 0 0;
}
.socials{
	float: left;
	margin: 3px 0 0;
}
.socials a{
	background: rgba(0,0,0,.1);
	border: none;
	border-radius: 20px;
	text-align: center;
	float: left;
	width: 36px;
	height: 36px;
	transition: .3s;
	padding: 8px;
	margin: 0 10px 0 0;
}
.socials a img{
	width: 20px;
	height: 20px;
	opacity: .7;
}
.socials a:hover{
	background: #f4dbb2;
}
.footer .contacts{
	margin: 14px 0 0;
}
.footer .contacts a{
	display: inline-block;
	margin: 0 0 0 10px;
}


.id{
	position: relative;
	top: -62px;
}

.right_sidebar_wrapper{
	float: right;
	width: 350px;
}
.right_sidebar{
	width: 100%;
}
.right_sidebar{
	background: #fff;
	position: fixed;
	right: -360px;
	top: 0;
	bottom: 0;
	width: 270px;
	transition: .5s;
	overflow-y: auto;
	z-index: 26;
}
.right_sidebar .menu{
	flex-wrap: wrap;
}

.mob_sidebar_bg,
.right_sidebar_bg{
    background: rgba(0,0,0,.5);
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s;
    z-index: 25;
    box-shadow: 0 4px 6px rgba(0,0,0,.16);
}
#mob_sidebar,
#right_sidebar{
    display: none;
}
#mob_sidebar:checked ~ .mob_sidebar_bg,
#right_sidebar:checked ~ .right_sidebar_bg{
    left: 0;
    opacity: 1;
}
#right_sidebar:checked ~ .right_sidebar{
    right: 0;
}


.right_sidebar .wrapper{
	padding: 20px;
}
.right_sidebar .logo{
	max-width: 80px;
	margin: 10px 0 40px;
}
.right_sidebar .p_logos{
	display: none;
	float: left;
	margin: 10px 0 50px;
}
.right_sidebar .p_logo{
	opacity: 1;
	margin-left: 0;
	margin-right: 20px;
}
.right_sidebar .logo_mhp{
	width: 112px;
}
.right_sidebar .logo_agrohub{
	width: 72px;
}
.right_sidebar .menu{
	list-style: none;
	clear: both;
	margin: 0 0 50px;
}
.right_sidebar .menu li{
	display: block;
	width: 100%;
	border-right: none;
	margin: 0 0 15px;
	padding: 0;
}
.right_sidebar .menu a{
	border: none;
	color: #222;
	font-size: 18px;
	font-weight: 600;
}
.right_sidebar .menu a:hover{
	color: #666;
}
.right_sidebar .contacts{
	margin: 0 0 30px;
}
.right_sidebar .contacts a{
	display: inline-block;
	color: #141f26;
	font-size: 18px;
	margin: 0 0 10px;
}
.right_sidebar .socials{
	margin-bottom: 30px;
}

.hide{
	display: none;
}

.logos a.svg_logo{
	min-width: 42%;
}

@media (max-width: 1000px){
	h1, .h1{
		font-size: 35px;
	}

}
@media (max-width: 900px){
	.main_width{
		width: calc(100% - 50px);
	}
	
}
@media (max-width: 840px){
	.header .menu{
		display: none;
	}
	.header .main_width {
		justify-content: space-between;
	}
	.show_menu{
		display: block;
	}
}

@media (max-width: 660px){
	

	.fx.ch2 > *{
		width: 100%;
		padding-right: 0;
	}
	.fx.ch2 > *:first-child{
		margin-bottom: 30px;
	}
	.b2 .logo {
		float: right;
	    position: static;
	    width: 100px;
	}
	.b2 .h3 {
		font-size: 24px;
	    padding: 20px 0 0 0;
	}
	.b2 .h3:before{
		width: 100%;
		left: 0;
	}
	.form {
	    padding: 20px 30px 15px;
	    width: 400px;
	    margin: 0 auto;
	}
	.list1 li {
	    font-size: 15px;
	}
	.list1 p {
	    font-size: 15px;
	}
}
@media (max-width: 600px){
	h1, .h1 {
	    font-size: 33px;
	}

	h3, .h3 {
    	font-size: 27px;
	}
	.b2 {
	    padding: 40px 0;
	}
}
@media (max-width: 480px){
	.header .logo {
	    width: 85px;
	}
	h1, .h1 {
	    font-size: 27px;
	}
	h2, .h2{
		font-size: 28px;
	}

	.b2 .h3 {
		float: left;
		clear: both;
		margin-bottom: 25px;
	}
	.b2 .logo {
		float: left;
		clear: both;
	    position: static;
	    width: 90px;
	}
	.form .h4 {
	    font-size: 20px;
	}
	h3, .h3 {
	    font-size: 20px;
	}

	.list1 li {
	    font-size: 14px;
	}
	.list1 p {
	    font-size: 14px;
	}
	
}

@media (max-width: 440px){
	h2, .h2{
		font-size: 26px;
	}
	.main_width {
	    width: calc(100% - 34px);
	}
	
	.check_list{
		justify-content: center;
	}
	.fx.ch4 > * {
	    width: 80%;
	    margin-right: 0;
	}
	
	
}
