@font-face {
	font-family: Open-sans-Regular;
	src: url('../fonts/open-sans.regular.ttf')  format('truetype');
}
@font-face {
	font-family: Open-sans-Bold;
	src: url('../fonts/open-sans.bold.ttf') format('truetype');
}
@font-face {
	font-family: Open-sans-Light;
	src: url('../fonts/open-sans.light.ttf')  format('truetype');
}
@font-face {
	font-family: Open-sans-ExtraBold;
	src: url('../fonts/open-sans.extrabold.ttf')  format('truetype');
}
@font-face {
	font-family: Open-sans-SemiBold;
	src: url('../fonts/open-sans.semibold.ttf')  format('truetype');
}
* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	outline: none;
	list-style: none;
}
body,
html{
	width: 100%;
	min-width: 100%;
	height: 100%;
	font-size: 16px;
	color: #000;
	font-family: Open-sans-Regular;
	box-sizing: border-box;
	font-weight: 400;
}
body{
	position: relative;
	background-color: #fff;
	transition: all .4s ease-in-out;
}
a{
	color: #000;
}
.conteiner{
	width: 95%;
	margin: 0 auto;
	max-width: 1200px;
	min-width: 300px;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
}
.flex-conteiner{
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	justify-content: space-between;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	align-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
}
header .conteiner{
	padding-top: 30px;
    padding-bottom: 30px;
	border-bottom: 1px solid #cacaca;
	overflow: visible;
}
header .lang{
	margin-right: 20px;
	cursor: pointer;
}
header .left img{
	width: 100%;
}
header .lang img{
	width: 22px;
    height: 22px;
}
/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
  text-transform: uppercase;
  font-size: 14px;
  margin-left: 5px;
}
.custom-select-wrapper select {
    display: none;
}
.custom-select {
    position: relative;
    display: inline-block;
    width: 40px;
    text-align: center;
}
.custom-select-trigger {
    position: relative;
    display: block;
    cursor: pointer;
    background-color: white;
     transition: all .4s ease-in-out;
}
.opened .custom-select-trigger {
    position: relative;
    display: block;
    cursor: pointer;
    background-color: #000;
    color: #666;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 8px 8px 0 0;
     transition: all .4s ease-in-out;
}
.custom-options {
    position: absolute;
    display: block;
    top: 100%; 
    left: 0; 
    /*right: -1px;*/
    min-width: 100%;
    box-sizing: border-box;
    background: #000;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .4s ease-in-out;
    z-index: 100;
    border-radius: 0 0 8px 8px;

}
.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.custom-option {
    position: relative;
    display: block;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px;
}
.custom-option.selection {
 	display: none;
}
.custom-option:before {
   content: '';
   display: block;
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
    width: 59%;
    margin: auto;
    height: 2px;
   background-color: #fff;
}
/*.custom-option:hover,
.custom-option.selection {
    color: white;
    background: black;
}*/
/*end-select*/


/*Menu*/
nav ul{
	display: flex;
    justify-content: center;
    align-items: center;
}
nav ul .sub-menu, nav ul .main-submenu-2{
	display: none;
}
nav .menu-adapted {
    display: none;
}
nav ul li{
	margin-right: 30px;
}
nav ul li a{
	position: relative;
	color: #666;
	transition: all .4s ease-in-out;
	font-size: 14px;
	white-space: nowrap;
}
nav ul li a.active, nav ul li a:hover{
	transition: all .4s ease-in-out;
}
nav ul li a:hover{
	color: #fe0002;
}
nav ul li a:after{
	display: block;
    content: '';
    position: absolute;
    bottom: -55px;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    background-color: #fe0002;
    transition: opacity .4s ease-in-out;
}
nav ul li a.active:after, nav ul li a:hover:after, nav ul li.open > a:after{
		opacity: 1;
	 transition: opacity .4s ease-in-out;
}
/*btn*/
.btn{
	padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    border-radius: 18px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
    font-family: Open-sans-Bold;
    min-width: 162px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: all .4s ease-in-out;
     border: 1px solid transparent;
         line-height: 1;
}
.btn-red{
	background-color: #fe0002;
    color: #fff;
}
.btn-red:hover{
    background-color: #fff;
    color: #fe0002;
    border: 1px solid #fe0002;
    transition: all .4s ease-in-out;
}
.btn-black:hover{
	transition: all .4s ease-in-out;
	background-color: #fff;
	color: #3d3d3d;
	border: 1px solid #3d3d3d;
}
.btn-black{
	background-color: #3d3d3d;
	color: #fff;
}
.btn-white{
	background-color: #fff;
	color: #000;
}
.btn-white:hover{
	transition: all .4s ease-in-out;
	background-color: #3d3d3d;
	color: #fff;
	border: 1px solid #000;
}
.title{
	font-family: Open-sans-Light;
	font-size: 48px;
	color: #000;
	text-transform: uppercase;
	line-height: 1.1;
	font-weight: 100;
	position: relative;
}
.title span{
	color: #fe0002;
}
.main-slider{
	padding-top: 30px;
    padding-bottom: 75px;
}
.slider{

}
.slide-item{
	position: relative;
}
.slide-item .images-slide{
	width: 67%;
}
.images-slide-2 {
    width: 100%;
}
.slide-desc{
	position: absolute;
	top: 23.5%;
	right: 0;
	width: 53.5%;
	font-family: Open-sans-Light;
	font-weight: 100;
	padding-bottom: 17%;
}
.slide-desc > span{
	font-size: 18px;
	color: #2d2d2d;
	display: block;
	position: absolute;
	right: 32%;
	bottom: 40%;
}
.page-id-370 .slide-desc > span{
	right: 35%;
}
.slide-desc .read-more{
	text-align: center;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 29%;
}
.slide-desc .dots{
	transform: rotate(90deg);
}
.slide-desc img{
	margin: auto;
}
.slide-desc .read-more span{
	font-family: Open-sans-Bold;
    padding-top: 20px;
    padding-bottom: 10px;
    display: block;
}
.slide-title{
	font-size: 26px;
	color: white;
	text-transform: uppercase;
	position: relative;
}
.slide-title .black{
	background-color: #000;
	padding: 23px 33px;
	line-height: 1.1;
}
.slide-title .red{
	position: absolute;
    bottom: -19%;
    right: 4%;
    font-size: 36px;
    background-color: #fe0002;
    padding: 0px 10px;
}
.slide-title .red span{
	font-family: Open-sans-Bold;
    font-size: 12px;
    vertical-align: top;
    display: inline-block;
    padding-left: 7px;
    padding-top: 4px;
}
.dots-slider{
	width: 100%;
	border-top: 1px solid #cacaca;
	border-bottom: 1px solid #cacaca;
	margin-top: 2%;
}
.dot{
	width: 33%;
	justify-content: flex-start;
	cursor: pointer;
	transition: all .4s ease-in-out;
}
.dots-slider .dot:first-child .dot-img{
	display: flex;
	background-color: #f3eeee;
}
.dots-slider .dot:first-child img{
	width: 60px;
	height: 73px;
	margin: auto;
}
.dot-img{
	width: 100px;
	height: 100px;
	margin-right: 35px;
	position: relative;
}
.dot-img .border{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.active .dot-img .border, .dot:hover .dot-img .border{
	border: 2px solid #fe0002;
}
.dot-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slide-dot-info{

}
.dot-title{
	font-size: 14px;
	font-family: Open-sans-Bold;
	display: block;
	margin-bottom: 4%;
}
.dot-desc{
	color: #5f5f5f;
	font-size: 12px;
	font-family: Open-sans-Regular;
	line-height: 1.2;
    display: block;
    
}
.offer {
	background-image: url('../images/bg-offer.jpg');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding-top: 100px;
}
.offer .title img{
	display: block;
    position: absolute;
    bottom: -15%;
    left: 0;
    width: 100%;
}
.offer .title {
	color: #fff;
}
.offer .title-block{
	display: inline-block;
}
.offer-content{
	width: 72%;
	position: relative;
	margin: auto;
	padding-top: 30px;
    padding-bottom: 40px;
}
.offer-content .offer-item{
	width: 44%;
	background-color: #fff;
	text-align: center;
}
.offer-content .offer-item-title{
	font-size: 36px;
	color: #000;
	padding-top: 10%;
	display: block;
}
.offer-content .offer-item-title span{
	font-size: 16px;
	display: block;
	margin-top: 4%;
}
.offer-conteiner{
	width: 80%;
    margin: auto;
}
.offer-conteiner p{
	color: #313131;
	font-size: 12px;
	padding-top: 10%;
    padding-bottom: 10%;
    line-height: 1.6;
}
.offer-conteiner .btn{
	margin-bottom: 10%;
	display: inline-block;
}
.offer-red{
	font-size: 59px;
	color: #fe0002;
	font-family: Open-sans-Bold;
}
.offer-red span{
	font-size: 16px;
	color: #000;
	display: block;
}
.offer-red .first{
	font-size: 16px;
    color: #fe0002;
    display: inline-block;
    margin-right: 10px;
    text-transform: uppercase;
    line-height: 1.3;
    vertical-align: middle;
}
.offer-red p{
	font-size: 12px;
	color: #313131;
}
.offer-bold{
	font-size: 14px;
	font-family: Open-sans-Bold;
}
.offer-content img{
	width: 100%;
/*	height: 100%;
	object-fit: cover;*/
}
.offer-content .offer-img{
	width: 100%;
	/*height: 180px;*/
	padding-top: 5%;
    padding-bottom: 2%;
}
.params-item{
	width: 46%;
	border: 1px solid #dfdfdf;
	line-height: 1.6;
    padding-bottom: 2%;
}
.params-item span{
	color: black;
	font-size: 12px;
	font-family: Open-sans-Bold;
	text-transform: uppercase;
}
.params-item span span{
	display: block;
	color: #6f6f6f;
	font-family: Open-sans-Regular;
}
.offer-params{
	margin-top: 5%;
    margin-bottom: 9%;
}
.bridg{
	position: absolute;
    top: 22%;
    left: 50%;
    margin-left: -16.6%;
    width: 33%;
    padding: 3% 0;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 11.2px 1.8px rgba(0, 0, 0, 0.25);
}
.bridg .offer-bold{
    white-space: nowrap;
    margin-left: 25px;
    line-height: 1.2;
}
.bridg .offer-bold:before{
   	content: '';
    display: inline-block;
    width: 13px;
    height: 3px;
    background-color: #fe0002;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
}
.bridg .dot{
	width: 30px;
	padding: 0;
}
.bridg .arrows-right{
	width: 25px;
    padding: 0;
    margin-right: 25px;
}
.gallary-item{
	width: 25%;
    height: 265px;
    margin: auto;
}
.gallary-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.chart{
	background-color: #e0e0e0;
	position: relative;
	padding-bottom: 50px;
    padding-top: 50px;
}
.chart > .conteiner{
	padding-bottom: 118px;
}
.chart .cycle{
	width: 112px;
    height: 120px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/cycle.png);
	display: flex;
	justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2%;
    margin-top: 2%;
}
.chart .cycle span{
	font-size: 18px;
	color: #fe0002;
	font-family: Open-sans-Bold;
}
.chart-content{

}
.chart-content .chart-img{
	width: 100%;
}
.point{
	text-align: center;
	position: absolute;
	font-family: Open-sans-SemiBold;
	font-size: 14px;
}
.point > span{
	display: block;
	margin-top: 15px;
	font-family: Open-sans-Bold;
}
.point .year{
	width: 55px;
	height: 55px;
	background-image: url(../images/figure.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	color: #fff;
	margin: auto;
}
.point .year span{
	padding-top: 6px;
    display: block;
    box-sizing: border-box;
}
.point1{
	top: 52.5%;
    left: 5%;
}
.point2{
	top: 40%;
    left: 29.7%;
}
.point3{
	top: 33%;
    right: 27.5%;
}
.point4{
	top: 19%;
    right: 0.4%;
}
.point ul{
	color: #2d2d2d;
	font-size: 12px;
	position: relative;
	line-height: 1.6;
}

.point ul li{}
.point ul li span{
}
.point ul li i{
    color: #fe0002;
    padding-right: 10px;
}
.point1 ul{
	margin-top: 45px;
}
.point2 ul{
	margin-top: 145px;
}
.point3 ul{
	margin-top: 200px;
}
.point4 ul{
	margin-top: 320px;
}
.clients{
	padding-top: 73px;
}
.clients .conteiner{
	border-bottom: 1px solid #cacaca;
	 padding-bottom: 85px;
}
.clients .title{
	/*margin-bottom: 5%;*/
	margin-bottom: 145px;
	display: block;
}
.clients .flex-conteiner{
	flex-wrap: wrap;
}
.clients .client-item{
	width: 18%;
}
.clients .client-item img{
	width: auto;
    max-height: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    margin: auto;
}
.offer-desc{
	font-family: Open-sans-Bold;
	color: #fff;
	font-size: 14px;
	margin-top: 11%;
}
.offer-desc img{
	
}
.news-and-events{
    position: relative;
}
.news-and-events > .flex-conteiner{
	align-items: flex-start;
	padding-top: 150px;
	 padding-bottom: 70px;
}
.news-and-events .left{
	margin-top: -84px;
	width: 24%;
}
.news-and-events .left img{
	width: 100%;
    margin-top: 50px;
    margin-left: -13px;
}
.page-id-370 .news-and-events .title span,
.news-and-events .title{
	min-height: 117px;
    	display: block;
}

.news-and-events .center{
	width: 35%;
}
.news-and-events .center .buttons{
	margin-top: 12%;
}
.news-and-events .center .buttons .btn{
	min-width: 181px;
	display: inline-block;
}
.news-and-events .center .buttons .btn.btn-black {
	color: #fff;
}
.news-and-events .center .buttons .btn.btn-black:hover {
	color: #3d3d3d;
}
.news-and-events .center .buttons .btn-white{
	margin-right: 20px;
}
.news-and-events .right{
	width: 21%;
}
.news-and-events .right > .news-item-small:first-child{
	margin-bottom: 50px;
}
.news-and-events .grey-bg{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 62.3%;
    background-color: #d2d2d4;
    min-height: 612px;
}
.news-item .news-item-img img{
	width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}
.news-item .news-item-img{
	width: 100%;
	min-height: 400px;
	position: relative;
}
.news-item-small .news-item-img{
    min-height: 150px;
}
.news-item .news-date{
	color: #3d3d3d;
	font-size: 12px;
	display: block;
	margin-top: 6%;
    margin-bottom: 5%;
    line-height: 1;
}
.news-item .news-title{
	font-size: 24px;
	color: #3d3d3d;
	display: block;
	margin-bottom: 6%;
	line-height: 1.3;
	font-family: Open-sans-Bold;
}
.news-item a{
	color: #3d3d3d;
}
.news-item .news-tag{
	display: block;
	color: #3d3d3d;
	text-decoration: underline;
	text-transform: uppercase;
}
.news-item-small .news-title{
	font-size: 16px;
	font-family: Open-sans-Bold;
}
.desc-left-line{
	min-width: 200px;
	padding-left: 20px;
	line-height: 22px;
	align-self: flex-start;
	position: relative;
}
.desc-left-line:before{
	content: '';
	display: block;
	background-color: #ff0000;
	width: 3px;
	position: absolute;
	top: 4%;
    bottom: 4%;
	left: 0;
}

.form .topic span{
	color: #404040;
	font-family: Open-sans-Bold;
}
.form .topic span span{
	font-family: Open-sans-Light;
	font-weight: 100;
}
.form .flex-conteiner{
	flex-wrap: wrap;
	align-items: stretch;
}
.form .topic{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 25px;
	border: 1px solid #e1e1e1;
	box-sizing: border-box;
	cursor: pointer;
	/*max-width: 330px;*/
	align-items: center;
}
.form .left > .topic{
	margin-bottom: 11%;
}
.form .left{
	width: 34%;
	margin-left: 10%;
}
.form .left .wpcf7-form-control-wrap:last-child .input-text {
	margin-bottom: 0;
}
.form .right{
	width: 50%;
}
.form .right .wpcf7-form-control-wrap {
	height: 100%;
}
.form .bottom{
	width: 100%;
    margin-top: 4%;
    justify-content: flex-end;
    align-items: center;
}
.form .bottom span{
	margin-right: 25px;
}
.form textarea{
	width: 100%;
	height: 100%;
	padding-left: 25px;
	padding-top: 25px;
	resize: none;
	font-size: 16px;
	color: #404040;
	box-sizing: border-box;
	font-family: Open-sans-Light;
	font-weight: 100;
	border: 1px solid #e1e1e1;
	background:  transparent;
}
.input-text{
	max-width: 330px;
	width: 100%;
	display: block;
	font-size: 24px;
	border: none;
	border-bottom: 2px solid #686868;
	font-family: Open-sans-Light;
	font-weight: 100;
	padding-bottom: 10px;
	margin-bottom: 11%;
	transition: all .4s ease-in-out;
	color: #000;
	background:  transparent;
}
.input-text:focus{
	transition: all .4s ease-in-out;
	border-bottom: 2px solid #ff0000;
}
.annotation{
	display: block;
	position: relative;
}
.annotation:before{
	content: '';
    display: block;
    position: absolute;
    top: 33%;
    left: -4%;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: #fe0002;
}
.bottom-form{
    padding-top: 95px;
    padding-bottom: 71px;
}
.bottom-form .conteiner > .flex-conteiner{
	margin-top: 7%;
}
footer .conteiner{
	padding-top: 30px;
	padding-bottom: 30px;
	 border-top: 1px solid #cacaca;
}
.chart-img-mob{
	display: none;
}


h1, .sub-title-bt-line{
	font-size: 48px;
	display: block;
	font-family: Open-sans-Light;
	margin-bottom: 30px;
	font-weight:  100;
}
h2{
    font-size: 36px;
    display: block;
    font-weight: 300;
   font-family: Open-sans-Light;
}
h3{
    font-size: 32px;
    display: block;
    font-weight: 300;
   font-family: Open-sans-Light;
}
article{
	padding-top: 50px;
    padding-bottom: 50px;
}
article p{
	color: #383737;
	font-size: 14px;
	line-height: 1.8;
	padding-top: 10px;
	padding-bottom: 10px;
}
h1:after, h2:after, .sub-title-bt-line:after, h3:after{
	display: block;
	content: '';
	width: 35px;
	height: 4px;
	background-color: #fe0002;
}
h1.no-line:after, h2.no-line:after, .sub-title-bt-line.no-line:after, h3.no-line:after{
	display: none;
}
.products-section,  .opendoc-section{
	padding-top: 50px;
    padding-bottom: 50px;
}
.products-section h1{
    margin-bottom: 30px;
}
.products-section article p:first-child{
    padding-top: 40px;
}
.column2{
	align-items: flex-start;
}
.column2 .left{
	width: 263px;
}
.column2 .right{
	width: 72%;
}
.category-menu{
	margin-top: 20px;
}

.category-menu li{
	color: #2d2d2d;
	font-size: 12px;
	text-transform: uppercase;
}

.category-menu li.submenu-item{
	background-color: #a5a5a5;
}
.category-menu li.submenu-item > a, .category-menu li.submenu-item > span > a{
	color: #fff;
	padding-left: 45px;
}
.category-menu li.submenu-item > a, .category-menu li.submenu-item > span > i{
	color: #fff;
}
.category-menu li .name{
	line-height: 20px;
	border-top: 1px solid #cacaca;
	display: block;
	padding-bottom: 25px;
	padding-top: 25px;
	padding-left: 15px;
	transition: all .4s ease-in-out;
}
.category-menu li:last-child .name{
	 border-bottom: 1px solid #cacaca; 
}
.category-menu .open .name a, .category-menu .name:hover, .category-menu .open .name i{
	color: #fe0002;
	transition: all .4s ease-in-out;
}
.submenu{
	background: #f4f4f4;
    display: none;
    overflow: hidden;
}
.submenu > li > a, .submenu > li > span{
	padding-top: 25px;
	padding-bottom: 0;
	position: relative;
	padding-right: 15px;
}
.submenu > li.has-sub > span, .submenu > li > span{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.category-menu > li > .name{
   	padding-right: 15px;
   	display: flex;
   	justify-content: space-between;
   	align-items: center;
}
/*.category-menu li.has-sub i:after{
   	content: '+';
   	display: block;
   	margin-left: 10px;
   	font-size: 16px;
   	font-weight: 400;
   	line-height: 1;
   	cursor: pointer;
}*/
.submenu-item.has-sub span{
	display: flex;
	justify-content: space-between;
   	align-items: center;
}

/*nextend menu*/

.show_comb,
.show_innov{
	display: block;
	line-height: 20px;
	border-top: 1px solid #cacaca;
	display: block;
	padding-bottom: 25px;
	padding-top: 25px;
	padding-left: 15px;
	padding-right: 15px;
	transition: all .4s ease-in-out;
}
.show_innov a,
.show_comb a{
	color: #fe0002;
	transition: all .4s ease-in-out;
	font-size: 12px;
	text-transform: uppercase;
}
.nextend-accordion-menu-inner-container{
	background-color: #a5a5a5;
}

.sec_menu_wr .nextend-accordion-menu-inner-container{
	background-color: #fff;
}
.sec_menu_wr .nextend-accordion-menu-inner-container a{
	text-transform: uppercase;
}
dl.level1 dt.active a span{	
	font-family: Open-sans-Regular!important;
}

dl.level1 dt.first.parent.opened span.inner,
dl.level1 dt.parent.opened span.inner,
dl.level1 dt.last span.inner{
	padding-bottom: 25px!important;
}
dl.level1 dd.first .level2 span.inner,
dl.level1 dd .level2 span.inner,
dl.level1 dd.last .level2 span.inner{
	padding-bottom: 0px!important;
}

.left .nextend-accordion-menu-inner-container dd.level1.opened dl.level2 .parent.first a{
	padding: 25px 0 25px 25px!important;
    	margin-bottom: 0!important;
}
.left .nextend-accordion-menu-inner-container dd.level1.opened dl.level2 .parent.first a span{
	color: #fff!important;
	font-size: 14px!important;
    	padding-left: 25px!important;
}
/*
.nextend-accordion-menu-inner-container dd.level1.opened dl.level2 .parent.first{
	background-color: #a5a5a5;
	margin-bottom: 25px!important;
}
.nextend-accordion-menu-inner-container dd.level1.opened dl.level2{
	padding-top: 0!important;
}
*/
dl.level1 dt .inner:before,
dd.level1.opened dl.level2 .parent.first:before,
dl.level1 dt.parent .inner:before{
	content: '';
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: 15px;
	background: #e5e5e5;
	transition: all .4s ease-in-out;
	position: absolute;
	top: 30px;
	left: 20px;
}
.sec_menu_wr dl.level1 dt .inner:before,
.sec_menu_wr dd.level1.opened dl.level2 .parent.first:before,
.sec_menu_wr dl.level1 dt.parent .inner:before,
dl.level2 dt .inner:before,
dl.level1 dl.level2  dt.parent .inner:before{	
	display: none!important;
}
dl.level1 dt .inner:hover:before,
dd.level1.opened dl.level2 .parent.first:hover:before,
dl.level1 dt.parent .inner:hover:before{
    background-color: #fe0002;
}
.left dd.level1.opened dl.level2 .parent.first:hover a,
.left dd.level1.opened dl.level2 .parent.first:hover a span{
	text-decoration: none!important;
}

dl.level1 dd.parent.opened > dl{
    padding-top: 25px!important;
    padding-bottom: 25px!important;
    background: #e5e5e5;
}

dl.level2 dt a{
	margin-bottom: 15px!important;
}
dl.level1 dd .level2.last span.inner a{
	margin-bottom: 0!important;
}


/*.category-menu li.has-sub.open i:after{
   	content: '−';
}*/
.submenu > li:last-child > a, .submenu > li.has-sub.open > a, .submenu > li:last-child > span, .submenu > li.has-sub.open > span{
	padding-bottom: 25px;
}
.submenu li a{
	display: block;
	color: #3e3e3e;
	font-size: 14px;
	transition: all .4s ease-in-out;
	text-transform: none;
	padding-left: 20px;
}
.submenu li a:before{
	content: '';
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: 15px;
	/*background-color: #9b9b9b;*/
	background: #e5e5e5;
	transition: all .4s ease-in-out;
	content: '';
	position: absolute;
	top: 30px;
	left: 20px;
	display: inline-block;
	width: 9px;
	height: 9px;
	/* margin-right: 15px; */
	/* background-color: #9b9b9b; */
	background: #e5e5e5;
	transition: all .4s ease-in-out;
}
.submenu > li > a:hover, .submenu > .open > a , .submenu > li > span:hover a, .submenu > .open span > a {
	/*font-weight: 600;*/
	transition: all .4s ease-in-out;
}
.category-submenu-2 li a:hover, .category-submenu-2 .open a{
	
	color: #fe0002;
	text-decoration: underline;
	transition: all .4s ease-in-out;
}
.submenu > li > a:hover:before, .submenu > .open > a:before, .submenu > li > span:hover a::before, .submenu > .open > span a:before{
	background-color: #fe0002;
}
.category-submenu-2{
	padding-top: 25px;
    padding-bottom: 25px;
    /*background: #f4f4f4;*/
    background: #e5e5e5;
    display: none;
   /* box-shadow: 0 0 30px 10px #cacaca;*/
}
.category-submenu-2 li{
	margin-left: 0;
	margin-bottom: 15px;
}
.category-submenu-2 li:last-child{
	margin-bottom: 0;
}
.category-submenu-2 li a{
	font-size: 12px;
}
.category-submenu-2 li a:before{
	display: none;
}
.products h2{
	padding-top: 45px;
    padding-bottom: 45px;
}
.products .flex-conteiner{
	flex-wrap: wrap;
}
.product-item{
	width: 49%;
    position: relative;
    background-color: #f1eeee;
    margin-bottom: 20px;
    display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 105px;
	align-content: flex-start;
}
.products-row .product-item:first-child{
	/*margin-right: 20px;*/
}
.product-item .product-img{
	width: 100%;
	height: 230px;
}
.product-item .product-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-item .product-name{
	font-size: 28px;
	padding-top: 20px;
	padding-bottom: 20px;
	display: block;
	line-height: 1.2;
}
.product-item p{
	color: #383737;
	font-size: 14px;
	line-height: 1.8;
	height: 20%;
}
.product-item .btn{
	width: 141px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    min-width: 141px;
}
.product-item .product-conteiner{
	margin-left: 30px;
    margin-right: 30px;
}
.manufacturing .right > .flex-conteiner{
	flex-wrap: wrap;
}
.products-row{
	width: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}
.product-item{

}
.product-grid .products-row:last-child .product-item{
	 margin-bottom: 0;
}
.manufacturing{
	padding-top: 70px;
	padding-bottom: 70px;
	background-image: url(../images/bg-manuf.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.manufacturing h2{
	color: #fff;
	margin-bottom: 30px
}
.slider-for{

}
.for-item{}
.for-item img{
	width: 100%;
    max-width: 100%;
    display: block;
    margin: auto;
}
.slider-nav{
	width: calc(100% + 5px);
	padding-top: 7px;
	padding-bottom: 23px;
	border-bottom: 1px solid #cacaca;
}
.nav-item{
	padding-right: 5px;
}
.nav-item div{
	height: 120px;
    position: relative;
    overflow: hidden;
}
.nav-item div div{
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
}
.nav-item div img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	box-sizing: border-box;
	
}
.opendoc-section  .right{
	width: 72.8%;
}
.nav-btn{
	width: 35px;
	height: 49px;
	background-color: #fe0002;
	position: absolute;
	top: 28%;
	border: none;
	left: 0;
	z-index: 100;
}
.nav-btn img{
	width: 16px;
    margin: auto;
    height: 30px;
    object-fit: contain;
    display: block;
}
.nav-next{
	left: initial;
	right: 5px;
}
.nav-next img{
	transform: rotate(180deg);
}
.slide-nav-block{
	position: relative;
}
.slider-nav .slick-current div div{
	border: 4px solid #fe0002;
}

article h2{
	padding-top: 20px;
	padding-bottom: 20px;
}
article h3{
	padding-top: 20px;
	padding-bottom: 20px;
}
article a{
	color: #fe0002;
}
article a:hover{
	text-decoration: underline;
}
article ul{
	padding-top: 20px;
	padding-bottom: 20px;
}
article ul li{
	font-size: 14px;
	font-family: Open-sans-SemiBold;
	padding-left: 35px;
	margin-bottom: 15px;
	background-image: url(../images/hexagon.png);
	background-size: 13px 15px;
	background-repeat: no-repeat;
	background-position: left center;
}
article ul li:last-child{
	margin-bottom: 0;
}
article span.sub-title{
	font-size: 16px;
	display: block;
	padding-left: 65px;
	padding-bottom: 20px;
	padding-top: 20px;
	background-image: url(../images/list.png);
	background-repeat: no-repeat;
	background-position: left center;
	font-family: "Open-sans-Bold";
}
.opendoc-2 article > .first-p{
	padding-top: 32px;
	border-top: 1px solid #cacaca;
}
.opendoc-2 article > .first-p p:first-child {
	padding-bottom: 0;
}
.download-file{
	width: 240px;
	display: inline-flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 50px;
}
.wpcf7-form-control-wrap {
	width: 100%;
	display: inline-block;
}
span.wpcf7-not-valid-tip {
	position: absolute;
	bottom: 10px;
}
.download-file .type{
	width: 68px;
    height: 80px;
    text-transform: uppercase;
    border: 1px solid #cacaca;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 12px;
   font-family: Open-sans-ExtraBold;
}
.download-file .type img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.download-file .type{
	width: 66px;
    height: 80px;
    border: 1px solid #cacaca;
    margin-right: 30px;
}
.download-file .info a{
	font-family: Open-sans-Bold;
}
.download-file .info .file-name{
	text-transform: uppercase;
	color: #8c8c8c;
	font-size: 12px;
	display: block;
}
.download-file .info{
	font-size: 14px;
}
.opendoc-2-img-block{
	position: relative;
	width: 100%;
	height: 470px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.opendoc-2-img-block img{
	width: 100%;
	height: 100%;

}
 .opendoc-2 .title-block{
	position: absolute;
    top: 44px;
    left: 0;
    width: 431px;
    padding-left: 30px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 30px;
   /* height: 165px;*/
    box-sizing: border-box;
    background-color: #fff;
}
.title-block p{
	font-size: 12px;
	line-height: 1.4;
}
.title-block h1{
	margin-bottom: 20px;
}
.file-block{
	margin-bottom: 20px;
	margin-top: 20px;
	border-top: 1px solid #cacaca;
	border-bottom: 1px solid #cacaca;
}
.opendoc-2-slider{
	position: relative;
	margin-bottom: 20px;
	margin-top: 20px;
}
.opendoc-2-slider .slick-list{
	padding: 0 113px !important;
}
.opendoc-2-slider .slick-slide div{
	/*width: 360px;*/
	height: 234px;
}
.opendoc-2-slider div img{
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-btn-op2{
	width: 113px;
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0%;
	bottom: 0%;
	border: none;
	left: 0;
	z-index: 100;
	display: flex;
	cursor: pointer;
	transition: all .4s ease-in-out;
}
.nav-btn-op2:hover{
	background-color: rgba(165, 5, 7, 0.75);
	transition: all .4s ease-in-out;
}
.nav-btn-op2 img{
	width: 30px;
    margin: auto;
    height: 30px;
    object-fit: contain;
    display: block;
}
.nav-next-op2{
	left: initial;
	right: 0;
}
.nav-next-op2 img{
	transform: rotate(180deg);
}
.nav-btn-step{
	width: 45px;
	height: 45px;
	position: absolute;
	top: 50%;
	margin-top: -22.5px;
	border: none;
	left: 0;
	z-index: 100;
	cursor: pointer;
	display: flex;
	opacity: 1;
	transition: all .4s ease-in-out;
	background-color: rgba(0, 0, 0, 0.6);
}
.step-slider:hover .nav-btn-step{
	opacity: 1;
	transition: all .4s ease-in-out;
}
.nav-btn-step img{
	width: 25px;
    height: 25px;
    display: block;
    margin: auto;
}
.nav-next-step{
	left: initial;
	right: 0;
}
.nav-next-step img{
	transform: rotate(180deg);
}
.steps-block{
	padding-top: 20px;
	padding-bottom: 20px;
}
.steps-block .step-item:first-child{
    margin-bottom: 0;
}
.step-item{
	display: flex;
	justify-content: center;
	height: 366px;
	width: 100%;
	
}
.step-item .item-left{
	width: auto;
	min-width: 37%;
	position: relative;
	background-color: #fe0002;
	display:  flex;
	align-items: flex-start;
	box-sizing: border-box;
	/* margin-bottom:  30px; */
	overflow: hidden;
}
.step-item .step-desc{
	width: 100%;
	position: relative;
	/* bottom: 0; */
	/* left: 0; */
	height: auto;
	color: #fff;
}
.step-item .item-left {
	width: 100%;
	max-height: 62vh;
	margin-bottom:;
	padding-bottom: 25px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
}
.step-item .step-title{
	font-size: 72px;
	margin-bottom: 15px;
	text-transform: uppercase;
	line-height: 1;
	display: block;
}
.step-item .step-title span{
	font-size: 30px;
	display: block;
}
.step-item p{
	font-size: 12px;
	color: #fff;
	padding-top:  0;
	padding-bottom: 0;
}
.step-item .step-slider{
	
}

.step-item .step-slider div{
	height: 366px;
}
.step-item .step-slider div img{
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.step-slider{
	width: auto;
	min-width:  63%;
}
.opendoc-2 article{
	padding-top: 0;
	padding-bottom: 0;
}
.opendoc-2{
    padding-bottom: 25px;
}
.about-head{
	background-image: url(../images/about/about-head.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-top: -1px;
	position: relative;
    z-index: 1;
}
.contact-us{
	background-image: url('../images/contacts-bg.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 75px;
	padding-bottom: 125px;
	margin-top: -1px;
	position: relative;
    z-index: 1;
}
.contact-us .title{
	color: #fff;
}

.contact-us .desc-left-line{
	color: #fff;
	font-size: 16px;
	font-family: Open-sans-Light;
	font-weight: 100;
}

.contact-us .desc-left-line span{
	display: block;
}

.contact-us .desc-left-line span.red-span,
.contact-us .desc-left-line span.red-span a{
	color: #fe0002;
	padding: 20px 0;
}

.contact-us .desc-left-line:before {
  top: 1%;
  bottom: 1%;
}

.contact-us .flex-conteiner{
	margin-top: 75px;
	align-items: unset;
}
.contact-us .desc-left-line span strong{
	font-family: Open-sans-Bold;
	font-weight: normal;
}

.contact-us .desc-left-line a{
	color: #fff;
}

.meet-us{
	padding-top: 122px;
  padding-bottom: 108px;
  background-color: #f2f2f2;
}
.meet-us .desc-left-line{
	margin-top: 70px;
	min-width: 281px;
}

.meet-us-item{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 20px;
}

.meet-us-item .logo{

	width: 50%;
	max-width: 350px;
	margin-right: 6%;
}

.meet-us-item .logo img{
	margin: auto;
	max-width: 100%;
	max-height: 100%;
	width: auto;

}
.meet-us .flex-conteiner{
	justify-content: flex-start;
}

.meet-us-items{
	margin-left: 14%;
}

.meet-us-item .desc > span{
	display: block;
}

.meet-us-item .desc > span.info{
	font-size: 12px;
	font-family: Open-sans-Bold;
	line-height: 1;
	color: #000;
}

.meet-us-item .desc > span.info span{
	color: #fe0002;
}

.meet-us-item .desc > span.name{
	color: #000;
	font-family: Open-sans-Regular;
	font-size: 24px;
	line-height: 1;
	position: relative;
} 

.meet-us-item .desc > span.name:before{
	content: '';
	position: absolute;
	width: 56px;
	height: 3px;
	background-color: #fe0002;
	bottom: -12px;
	left: 0;
}

.contact-left{
	width: 40%;
}

.contact-right{
	width: 56%;
	font-size: 0;
}

.contact-right .maps{
	width: 100%;
}
#saretco{
	width: 100%;
	height: 100%;
}
.gm-style-mtc > div,
.gmnoprint > div,
.gm-svpc {
  display: none !important;
}
.slider-contact{
	max-width: 480px;
	margin-top: 45px;
}

.slider-contact .nav-btn{
	content: '';
	height: 100%;
	width: 6px;
	top: 0;
	background-color: #000;
	cursor: pointer;
}

.slider-contact .nav-btn img{
	background-color: #000;
	padding: 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.slider-contact .nav-btn:hover,
.slider-contact .nav-btn:hover img{
	background-color: #fe0002;
}

.slider-contact .nav-btn.nav-next{
	right: 0;
}

.slider-contact .nav-btn.nav-prev img{
	left: 5px;
}

.slider-contact .nav-btn.nav-next img{
	right: 5px;
	transform: translateY(-50%) rotate(180deg);
}

.about-head-info{
	padding-top: 105px;
	padding-bottom: 130px;
	color: #fff;
	width: 486px;
}
.about-head-info .title{
	padding-bottom: 100px;
	color: #fff;
	display: block;
	text-shadow: 0 2px 5.2px rgba(0, 0, 0, 0.19);
}
.about-head-info .about-head-desc{
	font-size: 16px;
	font-family: "Open-sans-Bold";
	padding-bottom: 35px;
	display: block;
} 
.about-head-info p{
	font-size: 14px;
	/*text-indent: 1em;*/
	line-height: 1.8;
}
.about-head-info .desc-bottom-line{
	position: absolute;
	top: 113px;
	right: 20px;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: rgba(255, 255, 255, 0.54);
	color: #000;
	font-size: 14px;
	font-family: "Open-sans-Bold";
	line-height: 1.6;
}
.about-head-info .desc-bottom-line span{
	display: block;
}
.about-head-info .desc-bottom-line span:after{
	display: block;
	content: '';
	width: 50%;
	height: 3px;
	margin-top: 10px;
	background-color: #fe0002;
}
.piramida{
	background: linear-gradient(#fff, #e0e0e0);
}
.piramida .piramida-block{
	width: 100%;
	max-width: 980px;
	padding-top: 100px;
	padding-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	position: relative;
}
.piramida .piramida-block img{
	width: 100%;
}
.piramida .piramida-block > span{
	display: block;
	position: absolute;
	color: #3a3a3a;
	font-size: 36px;
	font-family: "Open-sans-Light";
	font-weight: 100;
	text-transform: uppercase;
}.piramida .piramida-block > .left{
	display: block;
    bottom: 14%;
    left: 1%;
    transform: rotate(-54deg);
	
}.piramida .piramida-block > .center{
	display: block;
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
}.piramida .piramida-block > .right{
	display: block;
    bottom: 17%;
    right: -1%;
    transform: rotate(54deg);
}
.piramida-desc{
	position: absolute;
	bottom: 14%;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	text-align: center;
	font-family: "Open-sans-Bold";
}
.piramida-desc .cycle{
	width: 183px;
	height: 183px;
	font-size: 72px;
	display: flex;
	border-radius: 50%;
	border: 6px solid #fff;
	margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    margin-bottom: 5.2%;
}
.piramida-desc .cycle span{
	margin: auto;
}
.piramida-title{
	font-size: 24px;
	display: block;
	text-transform: uppercase;
	margin-bottom: 9%;
}
.piramida-label{
	font-size: 18px;
	display: block;
	text-transform: uppercase;
	margin-bottom: 5%;
}
.piramida-desc p{
	font-family: "Open-sans-Regular";
	font-size: 14px;
	display: block;
	width: 90%;
    margin: auto;
}
/*Hexagon*/
.hexagon {
	width: 180px;
	height: 100px;
	position: relative;
	margin-right: 50px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.hexagon:before {
	content: "";
    position: absolute;
    top: -55px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-bottom: 55px solid red;
}
.hexagon:after {
	content: "";
	position: absolute;
	bottom: -55px;
	left: 0;
	width: 0;
	height: 0;
	border-left: 90px solid transparent;
	border-right: 90px solid transparent;
	border-top: 55px solid red;
}
.mission img{
	width: 68%;
    display: block;
    margin-left: auto;
    margin-right: 20px;
}
.vision img{
	width: 68%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.values img{
	width: 53%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.hexagon.mission{
	background-color: #fe0002;
}
.hexagon.mission:after {
	border-top: 55px solid #fe0002;
}
.hexagon.mission:before {
	border-bottom: 55px solid #fe0002;
}
.hexagon.vision{
	background-color: #696969;
}
.hexagon.vision:after {
	border-top: 55px solid #696969;
}
.hexagon.vision:before {
	border-bottom: 55px solid #696969;
}
.hexagon.values{
	background-color: #000;
}
.hexagon.values:after {
	border-top: 55px solid #000;
}
.hexagon.values:before {
	border-bottom: 55px solid #000;
}
.goals .conteiner{
	padding-top: 125px;
    padding-bottom: 150px;
    margin-bottom: 70px;
    background-image: url(../images/about/sa-bg.png);
    background-repeat: no-repeat;
    background-position: 46% 46%;
    background-size: 56%;
}
.goals .conteiner .goals-item:last-child {
	margin-bottom: 0;
}
.goals-item{
	width: 61%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 70px;
}
.goals-item p{
	color: #373737;
	font-size: 14px;
	line-height: 1.8;
}
.goals-item-right{
	flex-direction: row-reverse;
    margin-left: auto;
    text-align: right;
}
.goals-item-right .hexagon{
	margin-right: 0;
	margin-left: 50px;
}
.goals-item-right .sub-title-bt-line{
	display: inline-block;
}
.goals-desc{
	max-width: 490px;
	width: 67%;
}
.president{
	background-color: #a7a6a6;
}
.president-desc .position{
	display: block;
	margin-top: 10px;
	margin-bottom: 45px;
	font-family: "Open-sans-Light";
	font-weight: 100;
	font-size: 16px;
}
.president-desc .sub-title-bt-line{
	margin-bottom: 0;
}
.president-desc p{
	font-size: 14px;
	line-height: 1.8;
}
.president .conteiner{
	
	overflow: visible;
}
.president-desc{
	color: #fff;
	width: 46%;
	margin-top: 54px;
	margin-bottom: 95px;
	margin-right: 12%;
}
.president-img {
    position: relative;
    width: 29%;
    margin-right: 13%;
    min-width: 200px;
    /* margin-bottom: 0%; */
    align-self:  flex-end;
}
.president-img img {
    width: 100%;
    /* height: 100%; */
    /* position:  absolute; */
    font-size: 0;
    transform: scale(1.2) translateY(-7.1%);
    /* margin-top: -54%; */
    /* margin-bottom: 11%; */
}
.logistics{
	position:  relative;
	background-image: url(../images/about/logistic-bg2.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.logistics .conteiner{
	padding-top: 128px;
	padding-bottom: 160px;
}
.logistics-desc{
	width: 35%;
	color: #fff;
}
.logistics-desc .title{
	color: #fff;
	display: block;
	margin-bottom: 60px;
	line-height: 1;
}
.logistics-desc p{
	margin-bottom: 40px;
	font-size: 14px;
	line-height: 1.8;
}
.logistics-desc a{
	display: inline-block;
}
.logistics-img{
	width: 55%;
}
.logistics-img img{
	width: 100%;
}
.coverage .conteiner{
	padding-top: 100px;
	padding-bottom: 90px;
	border-bottom: 1px solid #cacaca;
}
.coverage .title{
	width: 40%;
    display: block;
}
.numbers-item .count{
	font-size: 124px;
	line-height: 1.1;
	font-family: "Open-sans-Light";
	font-weight: 100;
	margin-right: 24px;
}
.numbers-item .count:after {
    content: '';
    display: block;
    width: 97%;
    margin: auto;
    height: 4px;
    background-color: #fd1010;
}
.numbers-item .numbers-desc{
	font-size: 18px;
}
.numbers .numbers-item:last-child{
	
} 
.numbers .numbers-item:last-child .count:after {
	
} 
.numbers{
	margin-top: 85px;
	margin-bottom: 50px;
}
.numbers-item{
	align-items: center;
}
.coverage-map img{
	width: 100%;
}
.radio{
	display: flex;
	flex-wrap: wrap;
	margin-left: 10%;
	width: 100%;
	margin-bottom: 50px;
	display: none;
}
.radio .radio-title{
	display: block;
	width: 100%;
	margin-bottom: 15px;
	cursor: pointer;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 55px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-right: 10px;
    cursor: pointer;
    display: block;
    width: 33.3%;
    color: #666;
    font-size: 16px;
    box-sizing: border-box;
    box-shadow: 1px 0 0 0 #cacaca, 0 1px 0 0 #cacaca, 1px 1px 0 0 #cacaca, 1px 0 0 0 #cacaca inset, 0 1px 0 0 #cacaca inset;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    display: block;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 100%;
     -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:before {
   background: #fff;
    border: 1px solid #ddd;
}
[type="radio"]:checked + label:before {
    background: #fe0002;
    border: 1px solid #fe0002;
}








@-moz-document url-prefix() {
	.form .bottom {
    	margin-top: 40px;
	}
	.point > span {
    	margin-top: 9px;
	}
	/*test*/
	.offer .title img {
   	 width: 93%;
	}
}

/*events*/

.events-section .submenu li:first-child a {
   padding-top: 15px;
}
.events-section .submenu > li > a{
	padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
	/*box-shadow: inset 0px -27px 21px -14px #cacaca;*/
}
.events-section .submenu > li:last-child > a, .events-section .submenu > li.has-sub.open > a{
	padding-bottom: 15px;
}
.events-section{
	margin-top: 50px;
}
.events {
	margin-top: 50px;
    padding: 50px 0;
    background-color: #f2f2f2;
}

.events .meet-us-items{
	margin-left: 0;
	padding: 0 5%;
	box-sizing: border-box;
}

.events .meet-us-item .logo {
    width: 40%;
    max-width: 350px;
    margin-right: 6%;
}

.events .meet-us-item .desc > span {
    display: inline-block;
    width: 100%;
}
.custom-select-form{
	/*display: none;*/
}
/** Custom Select **/
.custom-select-wrapper-form {
  position: relative;
  display: inline-block;
  user-select: none;
  font-size: 14px;
  width: 100%;
}
.custom-select-wrapper-form select {
    display: none;
}
.custom-select-form {
    position: relative;
    /*display: inline-block;*/
    width: 100%;
    text-align: left;
    margin-bottom: 7%;
}
.custom-select-trigger-form {
    position: relative;
    display: block;
    cursor: pointer;
    background-color: white;
     transition: all .4s ease-in-out;
}
.opened .custom-select-trigger-form {
    position: relative;
    display: block;
    cursor: pointer;
    /*background-color: #000;*/
    color: #666;
   /* padding-top: 5px;
    padding-bottom: 5px;*/
    /*border-radius: 8px 8px 0 0;*/
     transition: all .4s ease-in-out;
}
.custom-options-form {
    position: absolute;
    display: block;
    top: 100%; 
    left: 0; 
    /*right: -1px;*/
    min-width: 100%;
    box-sizing: border-box;
    background: #838383;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .4s ease-in-out;
    z-index: 100;
   /* border-radius: 0 0 8px 8px;*/

}
.custom-select-form.opened .custom-options-form {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.custom-option-form {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 15px;
    transition: all .4s ease-in-out;
}
.custom-option-form:hover {
    background-color: #fe0002;
    transition: all .4s ease-in-out;
}
.custom-option-form.selection:before {
   content: '';
   display: block;
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 95%;
   margin: auto;
   height: 1px;
   background-color: #fff;
}
.custom-options .lang-item {
	position: relative;
	display: block;
	cursor: pointer;
	padding-top: 5px;
	padding-bottom: 5px;
}
.custom-options .lang-item.current-lang {
	display: none; 
}
.custom-options .lang-item a {
	color: #fff;
}
.custom-options .lang-item a:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 59%;
	margin: auto;
	height: 2px;
	background-color: #fff;
}
.not-found{
	background-color: #e0e0e0;
	position: relative;
	min-height: 100vh;
	box-sizing: border-box;
	display: flex;
	padding: 30px;
	justify-content: center;
	align-items: center;
}
.not-found .conteiner{
	text-align: center
}

.not-found h1 {
    text-transform: uppercase;
    display: block;
	font-family: Open-sans-Bold;
	font-size: 195px;
    line-height: 200px;
    color: #fe0002;
	letter-spacing: -0.5px;
	margin: 0;
   
}

.not-found h2 {
    font-family: Open-sans-Bold;
    font-size: 36px;
    line-height: 46px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.4px;
}


.not-found h1:after, .not-found h2:after{
	content: none;
}

.not-found .red{
	color: #fe0002;
}
.not-found .txt a,
.not-found .txt{
	font-size: 18px;
	color: #000;
}

.not-found .txt a:hover{
	text-decoration: underline;
	color: #fe0002;
}

.not-found .btn {
    display: inline-block;
    margin: 26px;
    font-size: 18px;
    line-height: 24px;
    border-radius: 35px;
    padding: 15px 24px;
}

.not-found  .btn-red:hover {
    background-color: transparent;
}

.not-found  .next {
    background-color: #fe0002;
    font-family: 'OpenSans-Bold', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24px;
	color: #fff;
	font-family: Open-sans-Bold;
    text-decoration: none;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: -0.2px;
    border: 3px solid #fe0002;
    padding: 20px 69px 22px 21px;
    margin: 26px 0 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0s 0s;
    -webkit-transition: all 0s 0s;
}

.not-found .next:before {
    -webkit-animation: 1s ease-in-out 0s alternate none infinite running nextAnim;
    -moz-animation: 1s ease-in-out 0s alternate none infinite running nextAnim;
    -ms-animation: 1s ease-in-out 0s alternate none infinite running nextAnim;
    -o-animation: 1s ease-in-out 0s alternate none infinite running nextAnim;
    animation: 1s ease-in-out 0s alternate none infinite running nextAnim;
}

.not-found .next:before {
	background-image: url('../images/arrow-point-to-right.svg');
	background-position: center;
    background-size: cover;
    width: 21px;
    height: 36px;
    margin-top: -18px;
    position: absolute;
    top: 50%;
    right: 16px;
    content: '';
}

.president-piramida{
	position: absolute;
	bottom: 0;
	left: -58.8%;
	/* transform: translateX(-32%); */
	width: 98%;
	/* min-width: 250px; */
	/* height: 67%; */
	z-index: 10;
	background-image: url('../images/about/piramida-small.png');
	background-repeat:  no-repeat;
	background-size:  100% 100%;
	/* display:  flex; */
	/* flex-wrap:  wrap; */
	color:  #fff;
	font-family: Open-sans-Bold;
}
.old-exp{
	background-image: url('../images/about/small-pir-year.png');
	/*background-image: url('../images/about/small-pir-year2.png'), url('../images/about/small-pir-year2.png');*/
	background-repeat:  no-repeat;
	background-size: 100% 100%;
	margin: auto;
	width: 46%;
	text-align:  center;
	font-size: 58px;
	font-weight:  700;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 39%;
	margin-bottom: 7%;
	position:  relative;
}
.old-exp .arr{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 41%;
}
.president-piramida span{
	display: block;
	width: 100%;
	font-size: 18px;
	text-align:  center;
	margin-bottom: 6%;
}
.old-exp .arr-right{
	left: inherit;
	right: 0;
	transform: rotate(180deg);
}

@-webkit-keyframes nextAnim {
  0% {
    -webkit-transform: translateX(-5px);
  }
  100% {
    -webkit-transform: translateX(5px);
  }
}
@-moz-keyframes nextAnim {
  0% {
    -moz-transform: translateX(-5px);
  }
  100% {
    -moz-transform: translateX(5px);
  }
}
@-o-keyframes nextAnim {
  0% {
    -o-transform: translateX(-5px);
  }
  100% {
    -o-transform: translateX(5px);
  }
}
@keyframes nextAnim {
  0% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(5px);
  }
}
@supports (-ms-ime-align: auto) {
	.form .bottom {
		margin-top: 40px;
	}
	.point > span {
		margin-top: 9px;
	}
	.offer .title img {
		width: 93%;
	}
}
.gallary .gallary-item a {
	pointer-events: none;
}
.lang-item-de {
	display: none !important;
}

.about-coverage {
	padding-top: 100px;
}
.about-coverage .title{
	width: 40%;
	display: block;
}.about-coverage .title:after {
    content: '';
    display: block;
    width: 25%;
    height: 4px;
    margin-top: 10%;
    background-color: #fd1010;
}
.map-about {
    margin-top: 75px;
    margin-bottom: 50px;
}
.map-about .about-map{
    width: 100%;
    margin-top: 50px;
    margin-bottom: 20px;
}
.map-item{
    display:  flex;
    color: #fff;
}
.map-item.last{
    margin-left: auto;
    float:  right;
}
.map-item .left{
    background-color: #000;
    padding-bottom: 2px;
}
.map-item .left span{
    font-size:  60px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1;
    font-weight:  300;
    font-family: Open-sans-Light;
}
.map-item .right{
    background-color: #fd1010;
    display:  flex;
    align-items:  center;
    justify-content:  center;
    position:  relative;
}
.map-item .right div{
    margin: auto;
    padding-left: 30px;
    padding-bottom: 5px;
    padding-right: 25px;
}
.map-item .right div > span{
    display:  block;
    width: 100%;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    font-family: Open-sans-semiBold;
}
.map-item .right div > span:last-child{
	font-size: 14px;
	text-transform: uppercase;
}
.clear{
	clear: both;
}
.projects-continents{
    display:  flex;
    align-items:  flex-start;
    padding-bottom: 65px;
    border-bottom: 1px solid #cacaca;
}
.projects-continents .projects-item:first-child .projects-title{
    padding-left: 30px;
}
.projects-continents .projects-item:first-child .projects-title:before {
    left: 30px;
}
.projects-continents .projects-item:first-child .project-list {
    padding-left: 70px;
}
.projects-continents .projects-item:first-child .project-list ul:nth-child(2){
    max-width: 155px;
}
.projects-item .projects-title{
    display:  block;
    font-family: Open-sans-Bold;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}
.projects-title-block{
	border-bottom: 1px solid #cacaca;
	border-top: 1px solid #cacaca;
	padding-left: 40px;
	height: 60px;
	display:  flex;
	align-items:  center;
	position:  relative;
}
.projects-item .projects-title:before{
	display: block;
	content: '';
	width:  20px;
	height: 30px;
	background-image: url(../images/about/marker-about.png);
	position:  absolute;
	left: 0;
	top: 22%;
	background-repeat:  no-repeat;
	background-size:  contain;
	background-position: center;
}
.projects-item .project-list{
    padding-left: 40px;
    display:  flex;
    padding-right: 50px;
}
.projects-item ul{
    padding-right: 45px;
    margin-top: 15px;
}
.projects-item ul li{}
.projects-item ul li span{
    font-size: 14px;
}
.projects-item ul li span span{
    font-weight:  700;
    font-family: Open-sans-Bold;
    color: #fd1010;
    margin-left: 5px;
}
.projects-progress{
    margin-top: 50px;
    margin-bottom: 50px;
}
.projects-item{
    position:  relative;
}
.progress-item{
    display:  flex;
    width: 100%;
    margin-bottom: 2%;
}
.projects-progress .progress-item:last-child{
    margin-bottom: 0;
}
.progress-item .left{
    display:  flex;
    align-items:  center;
}
.progress-item .left img{
    width: 30px;
    margin-left: 17px;
}
.progress-item .left span{
    font-size: 72px;
    font-weight: 300;
    font-family: Open-sans-light;
    margin-right: 30px;
    margin-left: 30px;
}
.progress-item .right{
	position: relative;
	display:  flex;
	align-items:  center;
	color:  #fff;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	background: linear-gradient(to right, #000, #fd1010);
}
.progress-item .right:before{
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fd1010;
}
.progress-item .right .progress-title{
    width: 50%;
    margin-right: 120px;
    max-width: 400px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}
.progress-item .right .progress-desc{
    width: 50%;
    font-size: 14px;
}
.progress-item .right .progress-desc span{
    font-family:  Open-sans-Bold;
    font-weight:  700;
}
.become-a-partners{
    background-color: #e9e9e9;
    padding-top:  60px;
    padding-bottom:  60px;
    margin-bottom: 30px;
}
.become-a-partners .conteiner{
    display:  flex;
    align-items:  center;
    justify-content:  space-between;
}
.become-a-partners .desc-left-line{
    align-self:  center;
    font-size: 18px;
    margin-bottom: 5px;
}
.become-a-partners article{
    padding: 0;
}
.become-a-partners article ul{
    display:  inline-block;
    padding-top: 0;
    padding-bottom: 0;
}
.become-a-partners article ul li {
    padding-left: 30px;
    margin-bottom: 8px;
}
.become-a-partners article ul:first-child{
    margin-right: 45px;
}
.partners-button{
    padding-left: 90px;
    padding-right: 90px;
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
}
.partners-button:before, .partners-button:after{
   content: "";
   display: block;
   width: 4px;
   height: 100%;
   background-color: #fe0002;
   position: absolute;
   top: 0;
   left: 0;
}
.partners-button:after{
	left: inherit;
	right: 0;
}
.partners-button .btn-red{
   width: 256px;
   display: block;
   border-radius: 18px;
   font-size: 17px;
   padding-top: 15px;
   padding-bottom: 15px;
}
.about-coverage .slick-slider{
	width: 100%;
	max-width:  100%;
	display:  none;
	margin-bottom: 60px;
	border-bottom: 1px solid #cacaca;
}
.about-coverage .for-item .projects-item{
    text-align:  center;
}
.about-coverage .for-item .projects-item .projects-title-block{
    padding-left: 0 !important;
    text-align:  center;
}
.about-coverage .for-item .projects-item .projects-title{
    padding-left: 0 !important;
    text-align:  center;
    display:  block;
    width: 100%;
    position:  relative;
}
.about-coverage .for-item .projects-item .projects-title:before{
    left: -2%;
    position: relative;
    display:  inline-block;
    vertical-align:  middle;
}
.about-coverage .for-item .projects-item .project-list{
    padding-left: 0;
    padding-right: 0;
    display:  block;
}
.about-coverage .for-item .projects-item .project-list ul{
	padding-right: 0;
	width: 100%;
	margin-bottom: 15px;
	display:  block;
}

.hide-menu {display: none ;}


/*Video News*/
.news-video{
	padding-top: 93px;
	padding-bottom: 50px;
	position: relative;
}
.news-video .desc-left-line {
   font-size: 24px;
   font-family: Open-sans-Bold;
   line-height: 27px;
}
.news-video .grey-bg {
    top: 0;
    bottom: inherit;
    max-height: 420px;
    height: 82%;
    min-height: auto;
}
.news-video .title{
	display: block;
	margin-bottom: 45px;
}
.news-video .left-news-video{
	width: 35%;
	margin-right: 5%;
	margin-top: 3%;
}
.news-video .right-news-video{
	width: 65%;
	max-height: 420px;
}
.news-video .right-news-video .video{
	width: 100%;
	height: 100%;
}
/*--------*/
.news-video .right-news-video .video img{
	width: 100%;
	height: 100%;
}
/*--------*/
.video-news-item{
	position: relative;
}
.video-news-item .conteiner{
	display: flex;
}
.video-news-item p{
	font-size: 18px;
	padding-bottom: 40px;
	padding-top: 40px;
	line-height: 28px;
}
.red-cart{
	background: #fe0002;
    padding: 6% 7%;
    padding-right: 19%;
    font-size: 18px;
    line-height: 30px;
}
.red-cart span{
	color: #fff;
}
.red-cart .title-red-cart{
   font-family: Open-sans-Light;
	display: block;
    padding-bottom: 30px;
}
.red-cart a{
	display: block;
	font-family: Open-sans-Bold;
}
