@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');


/* Yahoo! CSS Reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset, img {
	border: 0;
	vertical-align: top;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
caption, th {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
q:before, q:after {
	content: '';
}
abbr, acronym {
	border: 0;
}
img,svg{
	max-width:100%;
	outline:none;
	max-height:100%;
}
/* End of Yahoo! CSS Reset */

html {
	height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body {
	height: 100%;
	background: #F5F5F5;
	font-size:14px;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body.hidden{
	overflow: hidden;
    padding-right: 17px;
}
.wrapper {
	margin:0 auto;
	position:relative;
	min-height:100%;
	box-sizing: border-box;
}
.container{
	margin: 0 auto;
	width: 100%;
	max-width: 1340px;
	padding:0 30px;
	box-sizing: border-box;
}

.content{
	min-height: 100%;
}

a:hover{
	text-decoration: none;
}

.field, 
input[type=color], 
input[type=date], 
input[type=datetime-local], 
input[type=datetime], 
input[type=email], 
input[type=month], 
input[type=number], 
input[type=password], 
input[type=phone], 
input[type=search], 
input[type=tel], 
input[type=text],
input[type=time], 
input[type=url], 
input[type=week], 
select, textarea {
    display: block;
    height: 40px;
    padding: 0 20px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    vertical-align: middle;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    -webkit-transition: background-color .24s ease-in-out;
    -o-transition: background-color .24s ease-in-out;
    transition: background-color .24s ease-in-out;
	border:1px solid #F2F4F4;
	background: #fff;
  box-shadow: 0 0 0 1px #fff;
  margin-bottom: 20px;
    box-sizing: border-box;
	color:#181818;
	font-size: 18px;
}
textarea{
	height: 100px;
    padding: 15px 20px;
}
input[type=color]::placeholder, 
input[type=date]::placeholder, 
input[type=datetime-local]::placeholder, 
input[type=datetime]::placeholder, 
input[type=email]::placeholder, 
input[type=month]::placeholder, 
input[type=number]::placeholder, 
input[type=password]::placeholder, 
input[type=phone]::placeholder, 
input[type=search]::placeholder, 
input[type=tel]::placeholder, 
input[type=text]::placeholder,
textarea::placeholder {
  color:#181818
}

input:focus-visible,
textarea:focus-visible{
    box-shadow: 0 0 0 1px #273F87;
	outline: inherit
}


input[type=text]{
	width: 100%;
}
textarea{
	resize: none;
	padding-top: 10px;
}
.btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #273F87;
	font-size: 17px;
	padding:0 20px;
	border-radius: 20px;
	height: 40px;
	border:1px solid #F2F4F4;
	background: #fff;
  box-shadow: 0 0 0 1px #fff;
  margin-bottom: 10px;
    box-sizing: border-box;
  transition: all 0.5s ease; 
}
.btn:hover{
	cursor: pointer;
	color: #fff;
        background: #273F87;
		/*border-color: #273F87;*/
  box-shadow: 0 0 0 1px #273F87;
  transition: all 0.5s ease;
}
a:hover{
-webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.modal-title{
    color: #273F87;
    font-size: 22px;
}


.modal .btn{
	width: 100%;
}
h1{
	font-size: 40px;
	font-weight: 400;
}
.color_orange{
	color: #F15B3A;
}
.title{
	text-align: center;
	font-size: 40px;
	margin-bottom: 30px;
	color: #F15B3A;
	font-weight: 400;
	letter-spacing: 1px;
}
p{
	font-size: 19px;
	margin-bottom: 20px;
}

.blue{
	color:#273F87
}







/* header-top */
header{
	position: relative;
    margin-bottom: 50px;
}
.header__wrapp_top{
	padding:20px 0 10px 0
}
.header-top{
	display: flex;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
    align-items: flex-start;
}
.header__logo{
	margin: 0 60px;
}
.header__title{
    font-size: 52px;
    color: #273F87;
    text-align: center;
    font-weight: 400;
    margin-top: 35px;
	position: relative;
    line-height: 40px;
	padding:5px 0
}
.header__title:after{
	content:'';
	position: absolute;
	top:0;
	right:65px;
	bottom:0;
	left:-60px;
    border: 2px dashed #f3b3a4;
	box-sizing: border-box;	
	z-index: -2;
}
.header__title:before{
	content: '';
	position: absolute;
	top:-2px;
	left:-62px;
	width: 260px;
	bottom:2px;   
	background: #F5F5F5;
	z-index: -1;
}
.header__title span{
	font-size: 42px;
	line-height: 1;
}

/* .header-top__right */
.header-top__right{
	text-align: center;
}
.header__lang{
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
}
.header__lang a {
    font-size: 21px;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    margin: 0 7px;
    font-weight: bold;
}
.header__lang a.header__lang_active,
.header__lang a:hover{
	color: #F15B3A;
}


.btn__callme{
	width: 200px;
	display: flex;
}
.header__phone{
	text-decoration: none;
	color: #333333;
	font-size: 22px;
}
.header__phone:hover{
	color: #F15B3A;
}


/* .header__nav */
.header__nav{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 5px;
	margin-top: 15px;
}
.nav{
	display: flex;
}
.nav li{
	margin-right: 60px;
	position: relative;
}
.nav li a{
	text-decoration: none;
	color:#273F87;
	font-size: 26px;
}
.nav li a:hover,
.nav li .header__nav_active{
	color: #F15B3A;
}
.nav li a:after{
	content: "";
	position: absolute;
	top:50%;
	left:100%;
	width: 30px;
	height: 5px;
    background: url(../img/nav-icon.png) no-repeat center;
	margin:-2px 0 0 15px
}
.nav li:last-child{
	margin-right: 0;
}
.nav li:last-child a:after{
	display: none;
}


.header__baner{
	margin-bottom: 20px;
	text-align: center;
	position: relative;
}

.header__baner_dark:after{
	content:'';
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: linear-gradient(320deg,rgba(51, 51, 51, 1) 0%, rgba(51, 51, 51, 0) 100%);
	z-index: 1;

}



/* catalog-nav */
.catalog-nav{
	margin-bottom: 30px;
    position: relative;
    margin-top: 25px;
}
.catalog-nav ul {
	display: flex;
	justify-content: center;
}
.catalog-nav ul li{
	padding:0 15px;
	width: calc(100%/7);
}
.catalog-nav ul li span{
	margin-bottom: 15px;
}
.catalog-nav ul li a{
	text-decoration: none;
	color:#273F87;
	font-size: 22px;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1;
    flex-direction: column;
    align-items: center;
}
.catalog-nav ul li a:hover,
.catalog-nav ul li a.active{
	color: #F15B3A;
}
.catalog-nav ul li a i{
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	
	border:1px solid #F2F4F4;
	background: #fff;
  box-shadow: 0 0 0 1px #fff;
  padding:15px;
  box-sizing: border-box;
  position: relative;
}
.menu-icon{
	display: none;
}
.catalog-nav__btn{
	display: none;
}

.header__phone.mobile-only{
	display: none;
}


.catalog-nav ul li a i:before{
	content:'';
	width: 80px;
	height: 80px;
	position: absolute;
	top:50%;
	left:50%;
	margin:-40px 0 0 -40px;
        -webkit-transition: all .5s ease 0s;
        -o-transition: all .5s ease 0s;
        transition: all .5s ease 0s;
}
.catalog-nav ul li a i:after{
	content:'';
	width: 80px;
	height: 80px;
	position: absolute;
	top:50%;
	left:50%;
	margin:-40px 0 0 -40px;
	opacity: 0;
        -webkit-transition: all .5s ease 0s;
        -o-transition: all .5s ease 0s;
        transition: all .5s ease 0s;
}
.catalog-nav ul li a:hover i:before,
.catalog-nav ul li a.active i:before{
	opacity: 0;
}
.catalog-nav ul li a:hover i:after,
.catalog-nav ul li a.active i:after{
	opacity: 1;
}


.catalog-nav ul li a.catalog-nav__link_1 i:before{
    background: url(../img/sprite.png) no-repeat 10px 2px;
}
.catalog-nav ul li a.catalog-nav__link_1 i:after{
    background: url(../img/sprite.png) no-repeat 10px -78px;
}


.catalog-nav ul li a.catalog-nav__link_2 i:before{
    background: url(../img/sprite.png) no-repeat -72px 2px;
}
.catalog-nav ul li a.catalog-nav__link_active i:after,
.catalog-nav ul li a.catalog-nav__link_2 i:after{
    background: url(../img/sprite.png) no-repeat -72px -78px;
}


.catalog-nav ul li a.catalog-nav__link_3 i:before{
    background: url(../img/sprite.png) no-repeat -150px 2px;
}
.catalog-nav ul li a.catalog-nav__link_3 i:after{
    background: url(../img/sprite.png) no-repeat -150px -78px;
}


.catalog-nav ul li a.catalog-nav__link_4 i:before{
    background: url(../img/sprite.png) no-repeat -230px 2px;
}
.catalog-nav ul li a.catalog-nav__link_4 i:after{
    background: url(../img/sprite.png) no-repeat -230px -78px;
}


.catalog-nav ul li a.catalog-nav__link_5 i:before{
    background: url(../img/sprite.png) no-repeat -311px 2px;
}
.catalog-nav ul li a.catalog-nav__link_5 i:after{
    background: url(../img/sprite.png) no-repeat -311px -78px;
}


.catalog-nav ul li a.catalog-nav__link_6 i:before{
    background: url(../img/sprite.png) no-repeat -391px 2px;
}
.catalog-nav ul li a.catalog-nav__link_6 i:after{
    background: url(../img/sprite.png) no-repeat -391px -78px;
}


.catalog-nav ul li a.catalog-nav__link_7 i:before{
    background: url(../img/sprite.png) no-repeat -471px 2px;
}
.catalog-nav ul li a.catalog-nav__link_7 i:after{
    background: url(../img/sprite.png) no-repeat -471px -78px;
}









/* equipment */
.equipment{
	padding:50px 0 20px 0;
	overflow: hidden;
}
.equipment__title{
	text-align: center;
}
.equipment__subtitle{
	text-align: center;
	font-size: 26px;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}
.equipment-item__title{
	font-size: 26px;
	color: #273F87;
	display: inline-block;
	padding:0 20px;
	box-sizing: border-box;
	line-height: 1;
	text-decoration: none;
    line-height: 20px;
    letter-spacing: 0.6px;
    z-index: 1;
}
.equipment-item__title:hover{
	color: #F15B3A;
}
.equipment-wrap{
	display: flex;
	flex-wrap: wrap;
}
.equipment-item{
	text-decoration: none;
    display: flex;
    flex-direction: column;
    width: 25%;
	margin-bottom: 90px;
	box-sizing: border-box;
}
.equipment-item .equipment-item__img{
	text-align: center;
}



.equipment-item-1 .equipment-item__title{
	text-align: right;
    margin: -75px 5px 0 0;
}
.equipment-item-1 .equipment-item__img img{
    margin: 5px 0px 0 25px;
}

.equipment-item-2 .equipment-item__title{
	text-align: right;
    margin: -7px 21px 0 0;
}
.equipment-item-2 .equipment-item__img img{
    margin: 5px 0px 0 20px;
}

.equipment-item-3 .equipment-item__title{
    margin: -95px 0 0 5px;
}
.equipment-item-3 .equipment-item__img img{
    margin: -11px 0px 0 -32px;
}

.equipment-item-4{
	padding-top:40px;
}
.equipment-item-4 .equipment-item__title{
    margin: -20px 0 0 -15px;
}
.equipment-item-4 .equipment-item__img img{
    margin: 0 0 0 -25px;
}

.equipment-item-5 .equipment-item__title{
    margin: -45px 0 0 -13px
}
.equipment-item-5 .equipment-item__img img{
    margin: -25px 0 0 -47px;
    width: 438px;
    max-width: none;
}

.equipment-item-6 .equipment-item__title{
    margin: -55px 0 0 42px;
}
.equipment-item-6 .equipment-item__img img{
    margin: 7px 0 0 31px;
    width: 357px;
    max-width: none;
}

.equipment-item-7 .equipment-item__title{
    margin: -70px 30px 0 0px;
	text-align: right;
}
.equipment-item-7 .equipment-item__img img{
    margin: 7px 0 0 7px;
	width: 344px;
	max-width: none;
} 

.equipment-item-8 .equipment-item__title{
    margin: -65px 0 0 35px;
}
.equipment-item-8 .equipment-item__img img{
    margin:9px 0 0 -9px;
} 


.equipment-item-9 .equipment-item__title{
    margin: -69px 15px 0 13px;
}
.equipment-item-9 .equipment-item__img img{
    margin: -8px 60px 0 0px;
} 
.equipment-item-10 .equipment-item__title{
	margin: -63px 17px 0 0px;
	text-align: right;
	padding-right: 0;
}
.equipment-item-10 .equipment-item__img img{
    margin: 0 0 0 50px;
} 
.equipment-item-9,
.equipment-item-10,
.equipment-item-11{
	width: 33.33%;
	margin-bottom: 0px;
    margin-top: -18px;
}
.equipment-item__text{
	text-decoration: none;
	font-size: 19px;
	color:#181818;
	margin-top:20px
}
.equipment-item-10{
	text-align: right;
	padding-right: 50px;
}
.equipment-item-10 .equipment-item__text {
    padding-right: 10px;
}
.equipment-item-11 .equipment-item__title{
	padding:0;
    margin: -36px 0 0 30px;
}
.equipment-item-11 .equipment-item__img img{
    margin: 0 -5px 0 0px;
} 
.equipment-item-11 .equipment-item__text {
    padding-left: 10px;
}

/* advantages */
.advantages{    
	padding-bottom: 30px;
}
.advantages-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
    margin-top: 80px;
}
.advantages__logo{
	position: absolute;
	top:45px;
	left:50%;
	width: 442px;
	height: 442px;
	margin:0 0 0 -221px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;border-radius: 50%;
    box-shadow: 0 0 0 1px #fff;
	z-index: -1;
}
.advantages-item{
	width: 50%;
	margin-bottom: 60px;
	position: relative;
	box-sizing: border-box;
}
.advantages-item__title{
    font-size: 36px;
    margin-bottom: 22px;
    color: #273F87;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.advantages-item__text{
    font-size: 20px;
    line-height: 1.1;
}

.advantages-item-1{
	padding-right: 200px;
	padding-left: 60px;
}
.advantages-item-1 .advantages-item__icon{
	position: absolute;
    top: 37px;
    right: 77px;
}

.advantages-item-2{
	padding-left: 230px;
}
.advantages-item-2 .advantages-item__icon{
	position: absolute;
    top: 46px;
    left: 119px;
}

.advantages-item-3{
	padding-right: 100px;
    padding-left: 15px;
}
.advantages-item-3 .advantages-item__text{
	padding-right:170px
}
.advantages-item-3 .advantages-item__icon{
	position: absolute;
    top: 53px;
    right: 137px;
}

.advantages-item-4{
    padding-left: 248px;
    padding-top: 42px;
}
.advantages-item-4 .advantages-item__icon{
	position: absolute;
    top: 53px;
    left: 137px;
}
.advantages-item-5{
	text-align: center;
	margin-top: -117px;
}






/* work */
.work{
    padding: 20px 0;
}
.work p{
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: 0.7px;
}
.work-wrap{
	display: flex;
    margin-top: 60px;
	padding:0 5%;
	box-sizing: border-box;
}
.work-wrap__left{
	width: 50%;
    box-sizing: border-box;
}
.work-wrap__right{
	width: 50%;
    padding-top: 25px;
    padding-right: 30px;
    box-sizing: border-box;
}
.work-map-block{
	position: relative;
}
.work-map-block__title{
    font-size: 42px;
    font-weight: bold;
    color: #737373;
    position: absolute;
    top: 10px;
    left: 31px;
    /* max-width: 50%; */
    padding: 0px 5% 0 10%;
    box-sizing: border-box;
    line-height: 68px;
    font-weight: bold;
}




/* suppliers */
.suppliers{
	padding:60px 0 30px 0
}
.suppliers-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    margin-top: 65px;
}
.suppliers-item{
	width: 33.33%;
	font-size: 18px;
	text-decoration: none;
	color: #333333;
	border:1px solid #000;
	padding: 20px;
	box-sizing: border-box;
	position: relative;
    border: 3px solid #f9f9f9;
	max-width: 290px;
	margin: 0 20px 20px 20px
}
.suppliers-item.suppliers-item_dark{
	background: #333333;
	color:#fff
}
.suppliers-item__img{
	margin-bottom: 15px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.suppliers-item__text{
    font-size: 19px;
    line-height: 0.85;
    letter-spacing: 0.1px;
}
.suppliers-item__label{
	background: #fff;
	width: 23px;
	height: 23px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top:5px;
	right:5px;
	color:#333333;
	font-size: 12px;
	line-height: 23px;
}


/* contacts */
.contacts{
	padding:20px 0
}


/* footer */
footer{
	padding:25px 0  0 0
}

.footer-form__title{
	text-align: center;
	font-size: 24px;
	margin-bottom: 30px;
	text-transform: uppercase;
}
.footer-form{
	max-width: 370px;
	margin:0 auto;
	text-align: center;
    margin-bottom: 10px;
}
.footer-form .btn{
    margin-top: 10px;
    width: 195px;
}
.footer-bottom{
	display: flex;
	flex-wrap: wrap;
	padding:10px 0;
    font-size: 20px;
	color: #737373;
}
.footer-bottom__col{
	width: 33.33%;
	text-align: center;
}
.footer-bottom a{
	color: #737373;
	text-decoration: none;
}
.footer-bottom a:hover{
	color: #F15B3A;
}











/* aside */
.aside {
    width: 300px;
    box-sizing: border-box;
	margin-right: -1px;
	position: relative;
	padding-bottom: 20px;
}
.content .main {
    width: calc(100% - 300px);
    box-sizing: border-box;
    padding-bottom: 20px;
}

.btn-filter{
	display: none;
}
.accordion-row{
  border:1px solid #DDDDDD;
  margin-bottom: -1px;
}

.accordion__btn{
  color: #444;
  cursor: pointer;
  padding: 5px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 23px;
  transition: 0.4s;
    background: none;
	height: 69px;
	position: relative;
}
.accordion__i-plus {
  position: absolute;
  top:50%;
  margin-top: -10px;
  width:20px;
  height:20px;
  right: 25px;
}
.accordion__btn i  {
	transition: all linear .2s;
}
.accordion__btn.active i  {
	rotate: -45deg;
}
.accordion__i-plus:before,
.accordion__i-plus:after {
  content: "";
  position:absolute;
  background:#273F87;
}

/* the vertical line */
.accordion__i-plus:before {
  left:50%;
  top:4px; /* this defines how much black "border" there should be */
  bottom:4px;
  width:2px;
  transform:translateX(-50%);
}

/* the horizontal line */
.accordion__i-plus:after {
  top:50%;
  left:4px;
  right:4px;
  height:2px;
  transform:translateY(-50%);
}


.accordion__panel {
  padding: 5px 20px;
  display: none;
  overflow: hidden;
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 19px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border:1px solid #BBBBBB;
  border-radius: 3px;
    box-sizing: border-box;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #273F87;
  border-color: #273F87
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
	left: 5px;
    top: 2px;
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}




/* catalog */
.catalog{
	display: flex;
	flex-wrap: wrap;
    padding-top: 10px;
}
.catalog-wrap{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 15px;
}
.catalog-prod{
	width: 33.33%;
	border:1px solid #DCDCDC;
	padding:20px 15px;
	box-sizing: border-box;
	display: block;
	text-decoration: none;
	color:#181818;
	font-weight: 400;
	position: relative;
        margin: 0 -1px -1px 0;
}
.catalog-prod:hover{
	background: #fff;
}
.catalog-prod__img{
	display: flex;
	align-items: center;
	justify-self: center;
	margin-bottom: 35px;
}
.catalog-prod__price{
	margin-top:25px;
	font-weight: 400;
}
.catalog-prod__price_old{
	font-size: 16px;
	color: #737373;
  text-decoration: line-through;
}
.catalog-prod__price_new{
	color: #F15B3A;
	font-size: 26px;
}
.catalog-prod__price_current{
	color: #273F87;
	font-size: 26px;
}
.catalog-prod__price_none{
	font-size: 22px;
	color:#737373;
}

.catalog-prod__labels{
	position: absolute;
    top: 17px;
    left: 17px;
}
.catalog-prod__label{
	width: 68px;
	height: 30px;
	text-transform: uppercase;
	font-weight: bold;
	color:#fff;
	background: #273F87;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}
.catalog-prod__label_sale{
	background-color: #F15B3A;
}
.catalog-prod__label_amount{
	background-color: #F15B3A;
}

.catalog-prod__add{
	position: absolute;
	top:25px;
	right:25px;
    width: 20px;
    height: 20px;
}
.catalog-prod__add i{
	width: 20px;
	height: 20px;
    background: url(../img/heart.svg) no-repeat center;
	display: flex;
}
.catalog-prod__add svg{
	fill:none; 
	stroke:#F15B3A;
}
.catalog-prod__add:hover svg,
.catalog-prod__add.active svg{
	 fill:#F15B3A ;
	 stroke:#F15B3A
}
.catalog-prod__row{
	margin-bottom: 10px;
	font-size: 15px;
}

/* .section-text  */
.section-text{
	font-size: 20px;
    padding-bottom: 45px;
}
.section-text h4{
	font-size: 26px;
    margin-bottom: 5px;
	font-weight: 400;
}
.section-text ul{
	padding-left: 25px;
	margin-bottom: 20px;
}
.section-text ul li{
	list-style: circle;
}





/* product-item */
.product-item{
	padding: 30px 0;
}
.product-item-wrap{
	display: flex;
	flex-wrap: wrap;
    margin-top: 60px;
}
.product-item-left{
	width: 500px;
	padding-right: 20px;
	box-sizing: border-box;
}
.product-item-right{
	width: calc(100% - 500px);
	padding-left:55px;
	box-sizing: border-box;
}

.slider-for{
	margin-bottom: 30px;
}
.slick-slide img{
	max-width: 100%;
}
.slider-nav .slick-slide{
	padding:5px;
	box-sizing: border-box;
}

.product-item .slick-slide img{
	margin:0 auto
}
.product-item .accordion__btn{
	color:#273F87
}
.parameters-table{
	margin-bottom: 30px;
    margin-top: -10px;
}
.parameters-table .tr{

}
.parameters-table td,
.parameters-table th{
	height:72px;
	padding:5px 15px;
	box-sizing: border-box;
	border:4px solid #F5F5F5;
	background: #fff;
	min-width: 245px;
}
.parameters-table th{
	background: #333333;
	color:#fff;
	text-transform: uppercase;
	font-weight: bold;
}



.product-item-right-top{
	display: flex;
	justify-content: flex-end;
	margin-bottom: -1px;
}
.product-item-right_price-wrap{
	height:69px;
	padding:5px 15px;
	box-sizing: border-box;
	border:1px solid #DDDDDD;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 260px;
}
.product-item-right__price{
    font-size: 26px;
	color: #273F87;
}
.product-item-right_raiting{
	height:69px;
	padding:5px 15px;
	box-sizing: border-box;
	border:1px solid #DDDDDD;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 260px;
	margin:0 -1px 0 0;
}
.raiting svg{
	fill:#F15B3A; 
	stroke:#F15B3A;
	width: 22px;
	height: 22px;
}
.raiting svg.feather-star_empty{
	fill:none; 
	stroke:#F15B3A;
}


.raiting__text{
	margin-top: 3px;
}
.raiting svg{
	margin:0 0px;
}


/* text-panel-links */
.text-panel-links{
	display: flex;
	justify-content: flex-end;
	margin:20px 0
}
.text-panel-links a{
	height:69px;
	padding:5px 15px;
	box-sizing: border-box;
	border:1px solid #DDDDDD;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color:#333333;
	font-size: 22px;
}
.text-panel-links a svg{
	margin-right: 5px;
}
.text-panel-links a.link-callme{
	background: #273F87;
	color:#fff;
	border: none;
}
.link-download-book:hover{
	background: #F15B3A;
	color:#fff
}
.text-panel-links a.link-callme:hover{
	background: #F15B3A;
}






/* section-recomendations */
.section-recomendations{

}

.section-recomendations .catalog-prod{
	width: 328px;
}

.title_blue{
	color: #273F87;
}






/* contacts */
.section-contacts{
	padding:30px 0
}
.contacts-row{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
    justify-content: space-between;
}
.contacts-col{
	color:#273F87;
	font-size: 19px;
    text-align: center;
}
.contacts-col__img{
	width: 107px;
	height: 107px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin:0 auto;
	margin-bottom: 15px;
	border:1px solid #F2F4F4;
	background: #fff;
  box-shadow: 0 0 0 1px #fff;
}
.contacts-col__title{
	font-size: 26px;
	margin-bottom: 15px;
}
.contacts-col a{
	color:#273F87;
	text-decoration: none;
}
.contacts-col a:hover{
	color: #F15B3A;
}
.section-contacts-bottom{
	font-size: 26px;
	margin-bottom: 45px;
}
.section-contacts-bottom p{
	margin-bottom: 10px;
	font-size: 26px;
}
.section-contacts-bottom a{
	color: #273F87;
}






.map{
	height: 615px;
	width: 100%;
    margin-bottom: 120px;
}
.map iframe{
	width: 100%;
	height: 100%;
}



/* articles */

.articles-wrap{

}
.articles-item{
	margin-bottom: 35px;
}
.articles-item__img{
	float:left;
	box-sizing: border-box;
}
.articles-item__img img{
	border:2px dashed #DCDCDC;
	padding:5px;
	box-sizing: border-box;
}
.articles-item__content{
    padding-left: 260px;
}
.articles-item__title{
    font-size: 27px;
    margin-bottom: 25px;
  color: #273F87;
}
.articles-item__bottom{
	display: flex;
	justify-content: end;
}
.articles-item__bottom .btn{
	text-decoration: none;
}


.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	font-size: 17px;
    margin-top: 30px;
}
.pagination ul{
	display: flex;
}
.pagination a {
  color: #273F87;
  padding: 8px 16px;
  text-decoration: none;
  border:1px solid #F2F4F4;
  background: #fff;
}

.pagination a.active {
  background-color: #273F87;
  color: white;
  border-color:#273F87
}

.pagination a:hover:not(.active) {
  background-color: #273F87;
  color: white;
  border-color:#273F87
}





/* table */
.table{
	margin:25px 0;
	font-size: 14px;
}
.table th{
	font-weight: normal;
	text-transform: none;
}
table .bg-white{
	background: #fff;
}
table .bg-green{
	background: #CBFFE1;
}
table .bg-yellow{
	background: #FEFFD2;
}
table .bg-red{
	background: #FFE8E2;
}
.table-2{
	max-width: 900px;
}
table td:first-child,
table th:first-child{
	width: 245px;
}
table td:nth-child(2),
table td:nth-child(3),
table th:nth-child(2),
table th:nth-child(3){
	width: 415px;
}

.mobile-banner{
	display: none;
}



.content__baner{
	margin-bottom: 40px;
	margin-top: 35px;
	position: relative;
}
.content__baner:after{
	content:'';
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	background: #333333;
	opacity: .1;
}


/* slider-clients */

.section-clients .container{
    background: url(../img/ukraine-map.png) no-repeat center 200px ;
	background-size: contain;
}
.slider-clients{
	margin:75px 0 90px 0;
	padding:0 60px;
}
.slider-clients-item{
	padding:0 10px;
	box-sizing: border-box;
}
.slider-clients-item>div{
	background: #fff;
	height: 132px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding:10px 0;
	box-sizing: border-box;
}
.section-clients h4{
	margin-bottom: 22px;
}
.accordeon-clients-item__content {
    display: none;
    margin-top: 35px;
}


.slick-arrow {
  color: #273F87;
  text-decoration: none;
  border:1px solid #F2F4F4;
  background: #fff;
  font-size: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slick-arrow:hover{
  background-color: #273F87;
  color: white;
  border-color:#273F87
}
.slick-prev {
	position: absolute;
	top:50%;
	left:0;
	margin-top: -20px;
}
.slick-next{
	position: absolute;
	top:50%;
	right:0;
	margin-top: -20px;
}
.slick-prev:before {
  content: "<";
  color: #273F87;
  font-size: 30px;
}

.slick-next:before {
  content: ">";
  color: #273F87;
  font-size: 30px;
}
.slick-arrow:hover:before{
	color: #fff;
}
ol{
	margin-bottom: 30px;
}
.ol-clients-links li{
	margin-bottom: 22px;
}
.ol-clients-links a{
	color: #273F87;
	font-size: 26px;
}
.ol-clients-list{
	line-height: 1.1;

}






/* section-solutions*/
.section-solutions__top{
	margin-bottom: 25px;
	text-align: center;
	margin-top: 10px;
}
.solution-item{
	margin-bottom: 50px;
}
.solution-item h4{
	color: #273F87;
	text-transform: uppercase;
	margin-bottom: 25px;
    font-size: 28px;
}
.solution-item__top{
	display: flex;
	margin-bottom: 30px;
    width: 100%;
}
.solution-item .btn{
    white-space: nowrap;
	text-decoration: none;
}
.solution-item__content{
	padding-right:60px;
}
.solution-item__right{
	float:right;
}
.section-solutions__top a{
	color: #273F87;
	margin:0 30px;
	font-size: 26px;
}
.solution-table{
	width: auto;
	margin: 0;
}
.solution-table{
	width: 560px;
}
.solution-table td:first-child, 
.solution-table th:first-child {
    width: 70px;
}
.solution-table td:nth-child(2), 
.solution-table th:nth-child(2){
    width: auto;
	font-size: 22px;
	color: #273F87;
} 
.solution-table td:nth-child(3), 
.solution-table th:nth-child(3){
    width: 70px;
	font-size: 14px;
	text-align: center;
}
.solution-table td, 
.solution-table th {
    min-width: auto;
}
.solution-item__bottom{
	display: flex;
	flex-wrap: wrap;
}
.solution-table-wrap{
	width: 50%;
	padding-right: 20px;
	box-sizing: border-box;
}
.solution-table__shena-img{
	width: 50%;
    text-align: right;
	padding-left:20px;
	box-sizing: border-box;
}










/* sol-complete */
.sol-complete{
    background: url(../img/bg-solutions.png) no-repeat center top;
	background-size: contain;
	padding:30px 0
}

.sol-complete-main-circle{
	font-size: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 438px;
	height: 438px;
	border-radius: 50%;
	text-transform: uppercase;
	color: #273F87;
	position: absolute;
	left:50%;
	top:80px;
	margin-left:-219px;
    border: 1px solid #F2F4F4;
    background: #fff;
    box-shadow: 0 0 0 1px #fff;
	z-index: 1;
}
.sol-complete-wrap{
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.sol-complete-col{
	width: 50%;
	box-sizing: border-box;
	margin-bottom: 15px;
}
.sol-complete-item{
	text-align: center;
	max-width: 250px;
	display: inline-block;
}
.sol-complete-item__title{
	font-size: 26px;
	color:#273F87;
	text-transform: uppercase;
	margin-bottom: 15px;
	white-space: nowrap;
}
.sol-complete-item__text{
	text-align: left;
	font-size: 19px;
    line-height: 24px;
}
.sol-complete-item__img{
	margin-bottom: 10px;
}
.sol-complete-item__img-circle{
	width: 107px;
	height: 107px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
    border: 1px solid #F2F4F4;
    background: #fff;
    box-shadow: 0 0 0 1px #fff;
}

.sol-complete-item__img-line{
	border-top: 2px dashed #fff;
	width: 100%;
	position: absolute;
	top:50%;
}




.sol-complete-item-1{
	padding-left: 165px;
}
.sol-complete-item-2{
	padding-left: 230px;
}
.sol-complete-item-3{
    padding-left: 55px;
}
.sol-complete-item-4{
	padding-left: 330px;
}
.sol-complete-item-5{
	padding-left: 280px;
    margin-top: -20px;
}
.sol-complete-item-6{
    padding-left: 120px;
    margin-top: -20px;
}
.sol-complete-item-7{
    padding-left: 90px;
    margin-top: -60px;
}
.sol-complete-item-10{
    padding-left: 290px;
    margin-top: -60px;
}
.sol-complete-item-8{
	padding-left: 200px;
    margin-top: -90px;
	width: 340px;
	max-width: 340px;
	text-align: right;
}
.sol-complete-item-8 .sol-complete-item__text{
	text-align: right;
}
.sol-complete-item-9{
    padding-left: 90px;
    margin-top: -90px;
	text-align: left;
}





.sol-complete-item-1 .sol-complete-item__img-line{
 	width: 292px;
    top: 50%;
    left: 100%;
}
.sol-complete-item-2 .sol-complete-item__img-line{
 	width: 287px;
    height: 2px;
    top: 50%;
    right: 100%;
}
.sol-complete-item-3 .sol-complete-item__img-line{
 	width: 200px;
    top: 50%;
    left: 100%;
}
.sol-complete-item-4 .sol-complete-item__img-line{
 	width: 200px;
    top: 50%;
    right: 100%;
}
.sol-complete-item-5 .sol-complete-item__img-line{
 	width: 165px;
    top: 50%;
    left: 100%;
}
.sol-complete-item-6 .sol-complete-item__img-line{
 	width: 165px;
    top: 50%;
    right: 100%;
}
.sol-complete-item-7 .sol-complete-item__img-line{
 	width: 380px;
    top: 50%;
    left: 100%;
}
.sol-complete-item-10 .sol-complete-item__img-line{
 	width: 150px;
    top: 50%;
    right: 100%;
}
.sol-complete-item-8 .sol-complete-item__img-line{
 	width: 85px;
    top: 50%;
    left: 100%;
}
.sol-complete-item-10 .sol-complete-item__img-line{
 	width: 340px;
    top: 50%;
    right: 100%;
}
.sol-complete-item-9 .sol-complete-item__img-line{
    width: 75px;
    top: 50%;
    right: 100%;
}




.sol-complete-item .sol-complete-item__img-line:after{
	content: '';
    position: absolute;
    z-index: 0;
	border-right:2px dashed #fff
}
.sol-complete-item-1 .sol-complete-item__img-line:after{
    height: 140px;
    top: 50%;
    right: 0;
} 
.sol-complete-item-2 .sol-complete-item__img-line:after{
    height: 140px;
    top: 50%;
    left: 0;
}
.sol-complete-item-5 .sol-complete-item__img-line:after{
    height: 70px;
    bottom: 50%;
    right: 0;
}
.sol-complete-item-6 .sol-complete-item__img-line:after {
    height: 70px;
    bottom: 50%;
    left: 0;
}
.sol-complete-item-7 .sol-complete-item__img-line:after{
    height: 260px;
    bottom: 50%;
    right: 0;
}
.sol-complete-item-10 .sol-complete-item__img-line:after {
    height: 260px;
    bottom: 50%;
    left: 0;
}
.sol-complete-item-8 .sol-complete-item__img-line:after{
    height: 420px;
    bottom: 50%;
    right: 0;
}
.sol-complete-item-9 .sol-complete-item__img-line:after {
    height: 420px;
    bottom: 50%;
    left: 0;
}

.fancybox-image-wrap{
	background: #fff !important;
}

.content-img-right{
	float:right;
	margin:0 0 0px 20px
}
.content-top{
	display: flex;
	align-items: center;
    justify-content: space-between;
}
img.logo-maestrelli{
	width: 266px;
}






@media (max-width: 1400px) {
.sol-complete-wrap{
	width: 1200px;
	margin:0 auto
}
.sol-complete-item-1 .sol-complete-item__img-line {
    width: 250px;
}
.sol-complete-item-2 .sol-complete-item__img-line {
    width: 285px;
}

.sol-complete-item-5 .sol-complete-item__img-line{
 	width: 135px;
}
.sol-complete-item-6 .sol-complete-item__img-line{
 	width: 176px;
}
.sol-complete-item-7 .sol-complete-item__img-line{
 	width: 350px;
}
.sol-complete-item-10 .sol-complete-item__img-line{
 	width: 140px;
}
.sol-complete-item-8 .sol-complete-item__img-line{
 	width: 55px;
}
.sol-complete-item-10 .sol-complete-item__img-line{
 	width: 352px;
}
.sol-complete-item-9 .sol-complete-item__img-line{
    width: 88px;
}











}








@media (max-width: 1240px) {
	.header__logo {
		margin: 0 30px;
	}
	.header__title {
    	font-size: 38px;
	}
	.header__title span{
    	font-size: 30px;
	}
	.nav li a {
		font-size: 22px;
	}

	.catalog-nav ul li a i{
		width: 100px;
		height: 100px;
	}
	.catalog-nav ul li a{
		font-size: 16px;
	}
	.equipment-item {
		width: 33.33%;
	}
	.equipment-item-10, 
	.equipment-item-11 {
		width: 50%;
		margin-bottom: 0px;
	}
	.advantages-item{
		padding: 0;
	}
	.advantages{
		background-color: #fff;
		padding:30px 0
	}
	.advantages .advantages-item__icon{
		position:static;
		margin-right: 20px;
		max-width: 60px;
	}
	.advantages__logo{
        background: none;
        top: auto;
        left: auto;
        bottom: 10%;
        right: 5%;
        z-index: 2;
        opacity: .1;
        width: auto;
        height: auto;
        transform: scale(0.8);
	}
	.advantages-item__top{
		display: flex;
		align-items: center;
		margin-bottom: 20px;
	}
	.advantages-item__title{
		margin-bottom: 0;
	}
	.advantages-item-5{
		margin: 0;
		text-align: left;
	}
	.advantages-wrap{
		justify-content: normal;
	}
	.advantages-item{
		padding-right: 20px;
	}
	.work-map-block__title{
		padding-left: 0;
		font-size: 36px;
		line-height: 50px;
	}
	.work-wrap{
		padding:0
	}
.catalog-prod{
	width: 50%;
}
.btn-filter{
	display: block;
	height: 70px;
	background: #273F87;
	color:#fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	margin:0 auto
}

    .accordion__btn {
        font-size: 14px;
		height:44px;
    }
.checkbox-container {
    font-size: 13px;
}
.product-item-left{
	width: 35%;
	padding-right: 20px;
}
.product-item-right{
	width: 65%;
	padding-left:20px;
}
.product-item-right__price {
    font-size: 18px;
}
.product-item-right_price-wrap,
.product-item-right_raiting{
    height: 43px;
    padding: 5px 15px;
    width: 162px;
}
.raiting{
	line-height: 1;
}
.raiting svg {
    margin: 0;
	max-width: 12px;
	line-height: 1;
	max-height: 12px;
}
.raiting__text {
    margin-top: -2px;
}
.parameters-table td, 
.parameters-table th {
    height: 43px;
    padding: 5px 15px;
    min-width: 153px;
	font-size: 13px;
}
.section-recomendations .catalog-prod {
    width: 250px;
}
.text-panel-links a {
    height: 44px;
    font-size:17px;
}
.text-panel-links a svg{
	max-width: 25px;
}
.accordion__i-plus {
    margin-top: -8px;
    width: 16px;
    height: 16px;
    right: 15px;
}
.product-item-right p {
    font-size: 14px;
}
.accordion__i-plus:after{
	height: 1px;
}
.accordion__i-plus:before{
	width: 1px;
}
.solution-table td, 
.solution-table th {
    min-width: auto;
}
.solution-table {
    width: 100%;
}
.sol-complete-wrap{
	width: 100%;
}
.sol-complete-item__img-line{
	display: none;
}
.sol-complete-item__title {
    font-size:18px;
    text-transform: none;
    margin-bottom: 5px;
}
.sol-complete-item__text {
    font-size: 14px;
    line-height: 18px;
}
.sol-complete-col{
    z-index: 1;
}
.sol-complete-item-4 {
    padding-left: 300px;
}
.sol-complete-item-5 {
    padding-left: 220px;
    margin-top: 0;
}
.sol-complete-item-6 {
    padding-left: 130px;
    margin-top: 0;
}
.sol-complete-item-7 {
    padding-left: 90px;
    margin-top: 0px;
}
.sol-complete-item-10 {
    padding-left: 290px;
    margin-top: 0px;
}
.sol-complete-item-8 {
    padding-left: 0;
    margin-top: -90px;
	padding-right: 40px;
}
.sol-complete-item-9 {
    padding-left: 40px;
    margin-top: -90px;
    text-align: left;
}
.sol-complete-col-8{
    text-align: right;
}
.sol-complete-col-9{
    text-align: left;
}






}


@media (max-width: 1024px) {
	.container {
		padding: 0 10px;
		max-width: 767px;
	}
	.header__lang a{
		margin:0 0 0 15px
	}
	.header__title{
		width: 100%;
		order: 3;
		margin:20px 0 20px 0
	}
	.header__title {
        font-size: 46px;
        margin: 5px 0 10px 0;
    }
	.header__title span{
    	font-size: 38px;
	}
	.nav li a {
        font-size: 18px;
    }
	.header__logo{
		position:absolute;
		left:50%;
		top:0px;
		margin:10px 0 0 -40px;
	}
	.header-top__right{
		width: 100%;
		display: flex;
        justify-content: space-between;
  		direction: rtl;
	}
	.header-top__right{
		order: 1;
        margin-bottom: 75px;
	}
	.header__lang{
	    margin-top: 5px;
        direction: ltr;
	}
	.header__nav{
		order:2
	}
	.nav li {
		margin-right: 46px;
		position: relative;
	}
	.nav li a:after {
		width: 22px;
		height: 4px;
		margin: -2px 0 0 12px;
	}

	.catalog-nav ul li{
		padding: 0 5px;
		box-sizing: border-box;
	}
	.catalog-nav ul li a i {
		width: 72px;
		height: 72px;
		padding: 10px;
	}
	.catalog-nav ul li a i:before,
	.catalog-nav ul li a i:after{
		width: 50px;
		height: 50px;
    	margin: -25px 0 0 -25px;
	}
	.catalog-nav ul li a {
        font-size: 14px;
    }
	.catalog-nav ul li span {
        margin: 10px 0 0 0;
    }
	.header__baner{
		display: none;
	}
	.catalog-nav ul li span {
		margin-bottom: 10px;
	}
	 .header{
    	margin-bottom: 0px;
	}

	.header__wrapp_top{
		background: url(../img/bg-img1.png) no-repeat center top;
        background-size: cover;
		margin-bottom:0px;
		padding:20px 0
	}
	.header__title:before,
	.header__title:after{
		display: none;
	}
	.header__title{
		position: static;
    	line-height: 38px;
	}
	.catalog-nav {
		margin-bottom: 0px;
	}
	.catalog-nav ul li a i:before,
	.catalog-nav ul li a i:after{
		content:'';
		width: 80px;
		height: 80px;
		margin:-40px 0 0 -40px;
        -webkit-transition: all .5s ease 0s;
        -o-transition: all .5s ease 0s;
        transition: all .5s ease 0s;
        -webkit-transform: scale(.6, .6);
        -ms-transform: scale(.6,.6);
        transform: scale(.6, .6);
	}
	.header__ a:last-child{
		margin-right: 0;
	}
	.advantages-item__title{
		font-size: 19px;
	}
	.advantages-item__text {
		font-size: 14px;
	}
.advantages-item{
	margin-bottom: 20px;
}
.advantages-item-3 .advantages-item__text {
    padding-right: 0px;
}
    .advantages {
        padding: 30px 0 0 0;
    }
.title{
	font-size: 24px;
    margin-bottom: 15px;
}
.advantages-wrap{
	margin-top: 30px;
}
.work {
    padding: 30px 0;
}
.work-wrap {
    margin-top: 30px;
    padding: 0 0;
}
.work-map-block__title {
    font-size: 32px;
    top: 10px;
    left: 31px;
    padding: 0px 20px 0 0;
    line-height: 50px;
}
.work p {
    font-size: 14px;
}
.work-wrap__right {
    padding-right: 0px;
}
p {
    font-size: 14px;
    margin-bottom: 10px;
}
.suppliers-wrap {
    margin-top: 20px;
}
.suppliers-item {
    width: 32%;
    font-size: 14px;
    max-width: 290px;
    margin: 0 2% 20px 0;
}
.suppliers-item:nth-child(3n+3){
	margin-right: 0;
}
.suppliers-item__text {
    font-size: 14px;
    line-height: 0.85;
    letter-spacing: 0.1px;
}
.footer-bottom{
	font-size: 18px;
}
.equipment-item{
	margin-bottom: 10px;
}
.equipment-item__title{
	font-size: 18px;
}
.equipment__subtitle {
    font-size: 16px;
    letter-spacing: 0px;
}
.equipment {
		padding: 15px 0 15px 0;
	}
.equipment-item__img img{
	scale: 0.9;
	width: 100%;
}
.equipment-wrap {
    margin-top: -35px;
}

.equipment-item-4 {
    padding-top: 0px;
}
.equipment-item-5 .equipment-item__title {
    margin: 0px 0 0 0px;
}
.advantages .advantages-item__icon{
	margin-right: 15px;
    max-width: 40px;
}
.advantages-item__top {
	margin-bottom: 15px;
}

.equipment-item-1 .equipment-item__img img {
    margin: 13px 0px 0 39px;
}
.equipment-item-1 .equipment-item__title {
    margin: -78px -24px 0 24px;
}
.equipment-item-2 .equipment-item__title {
    margin: -20px 5px 0 0;
}
.equipment-item-2 .equipment-item__img img {
    margin: 15px 0px 0 20px;
}
.equipment-item-3 .equipment-item__img img {
    margin: -32px 0px 0 -32px;
    scale: 0.75;
}
.equipment-item-3 .equipment-item__title {
    margin: -145px 0 0 0px;
}
.equipment-item-5 .equipment-item__img img {
    margin: 22px 0 0 7px;
    width: 100%;
    max-width: 100%;
    scale: 1.3;
}
.equipment-item-6 .equipment-item__img img {
    margin: 40px 0 0 20px;
    width: 100%;
    max-width: 100%;
    scale: 1.05;
}
.equipment-item-4 .equipment-item__title {
    margin: -40px 0 0 -10px;
}
.equipment-item-6 .equipment-item__title {
    margin: -40px 0 0 15px;
}
.equipment-item-7 .equipment-item__img img {
    margin: 20px 0 0 5px;
    width: 100%;
    max-width: none;
}
.equipment-item-8 .equipment-item__img img {
    margin: -7px 0 0 -26px;
}
.equipment-item-9 .equipment-item__img img {
    margin: 40px 0 0 -50px;
}
.equipment-item-7 .equipment-item__title {
    margin: -50px 30px 0 0px;
}
.equipment-item-8 .equipment-item__title {
    margin: -60px 0 0 16px;
}
.equipment-item-9 .equipment-item__title {
    margin: -60px -10px 0 -27px;
}

.equipment-item .equipment-item__img {
    text-align: center;
}

.equipment-item-10{
	padding-right: 40px;
	margin-top: 10px;
}
.equipment-item-10 .equipment-item__img img {
	margin: -5px -40px 0 4px;
	width: auto;
	scale: 0.75;
}
.equipment-item-10 .equipment-item__img{
	text-align: right;
}
.equipment-item-10 .equipment-item__title {
    margin: -88px -7px 0 0px;
    text-align: right;
    padding-right: 0;
}

.equipment-item-11 .equipment-item__img img {
	margin: 20px 0px 0px -30px;
	width: auto;
	scale: 0.7;
}
.equipment-item-11 .equipment-item__text {
    padding-left: 20px;
}
.equipment-item-11 .equipment-item__title {
    margin: -60px 0 0 35px;
}

.suppliers {
    padding: 45px 0 30px 0;
}   
.suppliers-item__img {
    margin-bottom: 20px;
    height: 60px;
}

.equipment-item__text {
    font-size: 14px;
    margin-top: 10px;
}
.suppliers-item__label {
    width: 13px;
    height: 13px;
    top: 5px;
    right: 5px;
    font-size: 9px;
    line-height: 12px;
}
.aside {
    width: 264px;
}
.content .main {
    width: calc(100% - 264px);
    padding-left: 40px;
}
.accordion__btn{
	font-size: 18px;
}
.section-catalog{
	padding-top: 40px;
}
.catalog-prod__img{
	padding:0 20px;
	box-sizing: border-box;
}
.catalog-prod__img {
    margin-bottom:5px;
}
.catalog-prod__name{
	margin-bottom: 5px;
}
.catalog-prod__img img{
    max-height: 160px;
}
.catalog-prod__add i {
    width: 13px;
    height: 13px;
	background-size: contain;
}
.catalog-prod__label {
    width: 46px;
    height: 20px;
	font-size: 9px;
    margin-bottom: 5px;
}
.catalog-prod__labels {
    top: 17px;
    left: 12px;
}
.catalog-prod__add {
    top: 20px;
    right: 20px;
}
.catalog-prod__price_none {
    font-size: 14px;
}
.catalog-prod__price {
    margin-top: 5px;
    display: flex;
    align-items: center;
}
.catalog-prod__row {
    margin-bottom: 5px;
    font-size: 14px;
}
.catalog-prod__price_new {
    font-size: 20px;
}
.catalog-prod__price_old{ 
	margin-right: 5px;
    font-size: 14px;
}
.section-text h4 {
    font-size: 18px;
	color: #273F87;
}
.section-text {
    font-size: 14px;
}
.section-text ul {
    padding-left: 15px;
}

.accordion-wrap.show{
	display: block;
	position: absolute;
	left: 0;
	top: 70px;
	z-index: 1;
	width: 100%;
    background: #F5F5F5;
}

.product-item-left{
	width: 262px;
	padding-right: 20px;
	box-sizing: border-box;
}
.product-item-right{
	width: calc(100% - 262px);
	padding-left:20px;
	box-sizing: border-box;
}
.contacts-col__title{
	font-size: 18px;
}
.contacts-col,
.contacts-col a{
	font-size: 13px;
}
.section-contacts-bottom {
    font-size: 13px;
    margin-bottom: 35px;
}
.section-contacts-bottom p {
    margin-bottom: 5px;
    font-size: 13px;
}
.map {
    height: 265px;
    margin-bottom: 50px;
}
.contacts-row{
    margin-bottom: 20px;
}
.articles-item__img img{
	max-width: 170px;
}
.articles-item__title {
    font-size: 18px;
    margin-bottom: 15px;
}
.articles-item__bottom {
    justify-content: start;
}
.articles-item__content {
    padding-left: 195px;
}
.mobile-banner{
	display: block;
	float:right;
	margin:0 0 20px 20px
}
.table {
    margin: 10px 0;
}
.content__baner{
	margin: 20px 0;
}
.content__baner{
	margin: 20px 0;
	overflow: hidden;
}
.content__baner img{
	width: 140%;
	max-width: none;
	margin:0 -20%
}

.section-clients .container {
    background: url(../img/ukraine-map.png) no-repeat center 100px;
    background-size: contain;
}
.section-clients h4 {
    margin-bottom: 20px;
}
.slick-arrow {
    font-size: 0;
    width: 32px;
    height: 32px;
}
.slick-next:before,
.slick-prev:before{
	font-size: 18px;
}
.ol-clients-links a {
    font-size: 18px;
}
.slider-clients {
    margin: 70px 0 70px 0;
    padding: 0 50px;
}
.solution-table-wrap {
    width: 100%;
    padding-right: 0px;
	margin-bottom: 30px;
}
.solution-table__shena-img {
    width: 100%;
    padding-left: 0px;
	text-align: center;
}
.solution-table {
	width: 460px;
	margin:0 auto
}
.section-solutions__top a {
    margin: 0 55px;
    font-size: 18px;
}
.solution-table td:nth-child(2), 
.solution-table th:nth-child(2) {
    font-size: 19px;
}
.solution-table td:nth-child(3),
 .solution-table th:nth-child(3) {
    width: 58px;
	padding: 5px;
}
.solution-table td:first-child, 
.solution-table th:first-child {
    width: 58px;
	padding: 5px;
	text-align: center;
}
.solution-item h4{
	text-transform: none;
}
.solution-table td,
.solution-table th{
	height: 60px;
}

.sol-complete-col{
	text-align: center;
    margin-bottom: 35px;
}

.sol-complete-item{
	padding:0;
	margin: 0 0 10px 0;
	width: auto;
}
.sol-complete-col-3{
	text-align: left;
}
.sol-complete-col-4{
	text-align: right;
}
.sol-complete-col-5,
.sol-complete-col-6,
.sol-complete-col-7,
.sol-complete-col-8,
.sol-complete-col-9,
.sol-complete-col-10{
	width: 33.33%;
	padding:0 10px;
	box-sizing: border-box;
}
.sol-complete-item-8,
.sol-complete-item-9{
	text-align: center;
}
.sol-complete-item-8 .sol-complete-item__text {
    text-align: left;
}
.sol-complete-col-6,
.sol-complete-col-8{
	margin-top: 60px;
}
.sol-complete-item__img {
    margin-bottom: 20px;
}
.sol-complete-item__title {
	margin-bottom: 10px;
}










}











@media (max-width: 767px) {
	.container {
        padding: 0 20px;
    }
	.header__logo-wrap{
		width: 100%;
		text-align: center;
	}
	.header__logo{
		width: 50px;
		position: static;
		margin: 0 0 0 0;
		display: inline-flex;
	}
	.header__btn-call{
		display: none;
	}
	.header__nav{
		display: none;
	}
	.header__nav.show{
		display: block;
		position: absolute;
		top:140px;
		left:0;
		padding: 20px;
		box-sizing: border-box;
		background: #273F87;
		margin:0;
        z-index: 3;
	}
	.nav{
		width: 100%;
		flex-wrap: wrap;
	}
	.nav li{
		width: 100%;
		margin: 0 0 20px 0;
        text-align: center;
	}
	.nav li a{
		color:#fff
	}
	.nav li a:after{
		display: none;
	}
	.header__title {
        font-size: 22px;
        line-height: 16px;
        margin: 14px 0 0px 0;
    }
	.header__title span{
    	font-size: 18px;
	}
	.header-top__contacts{
		margin-bottom:20px
	}
	.header__phone{
		color:#fff;
	}
	.header__lang a{
		color:#fff
	}
	.header-top{
		position: static;
	}
    .header-top__right {
        margin-bottom: 80px;
        width: auto;
        display: flex;
        flex-direction: column;
		display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #273F87;
        color: #fff;
        z-index: 2;
		padding-top:20px;
        margin-bottom: 0;
    }
	  .header-top__right.show {
		display: block;
	  }
	.btn__callme {
		margin: 10px auto;
	}
	.header__phone.mobile-only{
		display: block;
    	color: #333333;
		position: absolute;
		left:20px;
		top:20px
	}
	.menu-icon{
		margin: 0px 5px 0 0px;
		display: block;
        z-index: 2;
		order:2;
        position: absolute;
        right: 20px;
	}
	.menu-icon .bar1, 
	.menu-icon .bar2,
	.menu-icon .bar3 {
		width: 26px;
		height: 4px;
		background-color: #fff;
		border:1px solid #273F87;
		margin: 4px 0;
		transition: 0.4s;
		box-sizing: border-box;
	}
	.menu-icon.active .bar1 {
		-webkit-transform: rotate(-45deg) translate(-5px, 5px);
		transform: rotate(-45deg) translate(-5px, 5px);
	}
	.menu-icon.active .bar2 {
		opacity: 0;
	}
	.menu-icon.active .bar3 {
		-webkit-transform: rotate(45deg) translate(-6px, -6px);
		transform: rotate(45deg) translate(-6px, -6px);
	}

	.catalog-nav ul{
		opacity: 0;
		position: relative;
		z-index: -1;
        background: #fff;
        position: absolute;
        margin: 0 -20px;
		max-height: 0;
	}
	.catalog-nav.show ul{
		display: flex;
		opacity: 1;
		z-index: 2;
        top: 100%;
        left: 0;
		overflow: hidden;
		max-height: none;
	}
	.catalog-nav ul li{
		width: 100%;
		margin:0 0;
		border-bottom: 1px solid #273F87;
	}
	.catalog-nav ul li:last-child{
		width: 100%;
		margin:0 0;
		border-bottom:none;
	}
	.catalog-nav ul{
		flex-wrap: wrap;
	}
	.catalog-nav ul li a i{
	display: none;
}
.catalog-nav ul li span br{
	display: none;
}
	.catalog-nav__btn{
		background: #273F87;
		color:#fff;
		width: 100%;
		height: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
        margin: 0 -20px;
        padding: 0 20px;
		font-size: 18px;
	}
	.header__wrapp_top {
        margin-bottom: 0px;
    }
.catalog-nav ul li span{
	margin:0
}
.catalog-nav ul li a {
	flex-direction: row;
	justify-content: flex-start;
	font-size: 18px;
    text-align: left;
	padding:10px 15px
}
    .equipment-item{
		width: 50%;
	}
    .suppliers-item {
        width: 49%;
        font-size: 14px;
        margin: 0 2% 10px 0;
    }
    .suppliers-item:nth-child(3n+3) {
        margin-right: 2%;
    }    
	.suppliers-item:nth-child(2n+2) {
        margin-right: 0;
    }
.work-wrap__left {
    width: 100%;
}
.work-wrap__right{
	width: 100%;
}
.work-wrap{
	flex-wrap: wrap;
}
    .footer-bottom {
        font-size: 14px;
    }
    .header {
        margin-bottom: 20px;
    }
    .equipment-item-3 .equipment-item__img img{
	margin-top: -30px;
}
.equipment-item{
	max-width: 240px;
}
.equipment-item-3 .equipment-item__title {
    margin: -130px 0 0 0px;
}
    .equipment-item-1 .equipment-item__title {
        margin: -70px -10px 0 0;
    }
.equipment-item-2 .equipment-item__title {
    margin: -20px 30px 0 0;
}
.equipment-item-6 .equipment-item__title {
    margin: -40px 0 0 5px;
}
    .equipment-item-7 .equipment-item__title {
        margin: -60px 40px 0 0px;
        text-align: right;
    }

.equipment-item-8 .equipment-item__title {
    margin: -65px 0 0 40px;
}
.equipment-item-10 .equipment-item__title {
    margin: -40px 0px 0 0px;
}
.equipment-item-9 .equipment-item__title {
    margin: -50px 15px 0 -6px;
}
.equipment-wrap {
	justify-content: center;
}
.advantages__logo{
	display: none;
}
.aside {
	width: 100%;
	padding-bottom: 0;
}
.accordion-wrap{
	display: none;
	margin-right: 0;
}
.content .main{
	width: 100%;
        padding-left: 0;
}
.section-catalog {
        padding-top: 15px;
    }

.product-item-left{
	width: 100%;
	padding-right: 0;
	margin-bottom: 30px;
}
.product-item-right{
	width: 100%;
	padding-left:0;
}
.product-item-right .accordion-wrap{
	display: block;
}
.parameters-table {
	width: 100%;
}
.parameters-table td, 
.parameters-table th {
	width: 50%;
}
.section-recomendations{
	display: none;
}
.product-item .accordion__btn {
	font-size: 13px;
}

.slider-for{
	max-width: 360px;
	margin: 0 auto;
	margin-bottom: 30px;
}
.product-item-wrap {
    margin-top: 30px;
}
.product-item {
    padding: 10px 0;
}
.contacts-col{
	width: 50%;
	margin-bottom: 30px;
	text-align: center;
}
.section-contacts{
	padding: 10px 0;
}
.section-contacts-wrap{
	display: flex;
	flex-wrap: wrap;
    margin-top: 30px;
}
.contacts-row{
	order:2;
	width: 100%;
}
.section-contacts-bottom{
	order:1;
    margin-bottom: 25px;
}
.map {
	height: 275px;
	margin-bottom: 30px;
}
.pagination {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.pagination a {
    padding: 5px 10px;
}

.table{
	width: 900px;
}
.table td, 
.table th {
	width: auto;
}
.table-wrap{
	overflow: auto;
	width: auto;
	margin-bottom: 10px;
}
.table-2 {
	width: 600px;
}


.content__baner img{
	width: 210%;
	margin:0
}

.ol-clients-links li {
    margin-bottom: 26px;
}
.slider-clients-item>div{
	height: 100px;
}
    .section-solutions__top a {
        margin: 0 20px;
    }
.solution-item__content {
    padding-right: 0;
	margin-bottom: 20px;
}
.solution-item__right {
    float: none;
	text-align: center;
	width: 100%;
}
.solution-item__top{
	flex-wrap: wrap;
	padding-bottom: 0;
	margin-bottom: 10px;
}
.section-solutions__top {
    margin-bottom: 15px;
}
.solution-item h4 {
    margin-bottom:15px;
}

.sol-complete-main-circle{
	position: static;
	width: 100%;
	height: auto;
	background: none;
	font-size: 22px;
	margin:0 0 30px 0;
	box-shadow: none;
	border:none;
	padding: 0;
    text-transform: none;
}
.sol-complete-col {
	text-align: center;
	margin:0 0 30px 0
}

.sol-complete-col {
    width: 50%;
}
    .equipment-item-11 .equipment-item__title {
        margin: -40px 0 0 35px;
    }

.accordeon-clients-item__content {
    margin-top: 0;
}
.section-catalog .pagination{
	margin-top: 30px;
}



}








@media (max-width: 480px) {
	.header__phone.mobile-only{
		font-size: 14px;
	}
.suppliers-item {
        width: 100%;
        margin: 0 0 10px 0;
        max-width: 240px;
    }
	.suppliers-item__img{
		height: auto;
        margin-bottom: 30px;
	}
	.suppliers-item__text {
        line-height: 1.2;
    }
	.work-map-block img{
		display: none;
	}
	.work-map-block{
		width: calc(100% + 40px);
		margin:0 -20px;
    	background: url(../img/img-ua.png) no-repeat center;
		background-size: contain;
	}
    .work-map-block__title {
        font-size: 30px;
        padding: 0px 25px;
        line-height: 50px;
        position: static;
    }
	.advantages-item{
		width: 100%;
		margin:0 0 20px 0;
	}
	.equipment-wrap{
		justify-content: center;
	}
    .equipment-item {
        width: 100%;
		max-width: 240px;
    }
.equipment-item__img img {
        scale: 0.9;
    }
    .equipment-item-9, 
	.equipment-item-10,
	.equipment-item-11 {
        width: 100%;
		max-width: 100%;
    }
.equipment-item__text {
    font-size: 14px;
    margin-top:10px;
}
    .work p {
        font-size: 13px;
    }
    .work {
        padding: 15px 0 15px 0;
    }
    .suppliers {
        padding: 15px 0 15px 0;
    }
.footer-bottom {
        font-size: 12px;
    }
    .catalog-prod {
        width: 100%;
		max-width: 220px;
    }
.catalog-wrap{
	justify-content: center;
}
.btn-filter{
	margin:0 auto;
	max-width: 220px;
}
.accordion-wrap.show{
	width: 220px;
	left:50%;
	margin-left:-110px;
}
.accordion__btn {
	font-size: 14px;
}
    
.slider-for {
	margin-bottom: 10px;
}
.product-item-left {
	margin-bottom: 10px;
}
    .text-panel-links a {
        height: 44px;
        font-size: 15px;
        padding: 5px 5px;
    }
.text-panel-links{
	flex-wrap: wrap;
    justify-content: center;
}
    .contacts-col {
        text-align: left;
		width: auto;
		padding-right: 15px;
		max-width: 50%;
		box-sizing: border-box;
    }

.articles-item {
    margin-bottom: 20px;
}
.articles-item__content {
    padding-left: 0;
}
.articles-item__img{
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
	height: 175px;
}
.articles-item__bottom {
	justify-content: center;
	margin-top: 10px;
}
.articles-item__img img {
	max-width: 100%;
	width: 100%;
	object-fit: cover;
}
.mobile-banner{
	width: 100%;
	text-align: center;
	margin:0 0 20px 0
}
.mobile-banner img{
	width: 100%;
}
.slider-clients {
	margin: 20px 0;
}

.slider-clients .slick-slide>div{
	background: #fff;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 20px);
	padding:10px 5px;
	margin: 20px 10px;
	box-sizing: border-box;
}
.slider-clients .slick-slide div img{
	width: auto !important;
}
.section-clients .container {
	background: url(../img/ukraine-map.png) no-repeat center 150px;
	background-size: contain;
}
    .slider-clients {
        margin:30px 0;
        padding: 0 40px;
    }
.solution-table td:nth-child(2), 
.solution-table th:nth-child(2) {
	font-size: 13px;
}
.solution-table td:nth-child(3), 
.solution-table th:nth-child(3) {
	width: 40px;
	font-size: 12px;
}
.solution-table td:first-child, 
.solution-table th:first-child {
	width:40px;
}
.solution-table td, 
.solution-table th {
	height: 40px;
}


.sol-complete-col {
	width: 100%;
}
.sol-complete-item__text {
    text-align: left;
	width: auto;
}
.equipment-item-1 .equipment-item__img img {
	margin: 20px 0px 0 18px;
}
.equipment-item-1 .equipment-item__title {
	margin: -67px -3px 0 0;
}
    .equipment-item-2 .equipment-item__img img {
        margin: 0px 0px 0 5px;
    }
    .equipment-item-2 .equipment-item__title {
        margin: -20px 10px 0 0;
    }
    .equipment-item-3 .equipment-item__img img {
        margin: -35px 0px 0 -10px;
    }
    .equipment-item-3 .equipment-item__title {
        margin: -128px 0 0 12px;
    }
.equipment-item-4 .equipment-item__img img {
    margin: 5px 0 0 10px;
}
    .equipment-item-4 .equipment-item__title {
        margin: -30px 0 0 5px;
    }
    .equipment-item-5 .equipment-item__img img {
        margin: 47px 0 0 7px;
    }
    .equipment-item-6 .equipment-item__img img {
        margin: 30px 0 0 0px;
    }

    .equipment-item-6 .equipment-item__title {
        margin: -30px 0 0 -5px;
    }
    .equipment-item-7 .equipment-item__img img {
        margin: 15px 0 0 15px;
        scale: 1.1;
    }
    .equipment-item-7 .equipment-item__title {
        margin: -55px 15px 0 0px;
    }
    .equipment-item-8 .equipment-item__img img {
        margin: 15px 0 0 10px;
        scale: 0.8;
    }
    .equipment-item-8 .equipment-item__title {
        margin: -60px 0 0 30px;
    }
    .equipment-item-9 .equipment-item__img img {
        margin: 0px 0 0 -53px;
        scale: 0.7;
    }
    .equipment-item-9 .equipment-item__title {
        margin: -81px 15px 0 10px;
    }
    .equipment-item-10 .equipment-item__img img {
        margin: -20px -20px 0 0px;
	scale: 1;
    }
   .equipment-item-11 .equipment-item__img{
	text-align: right;
   }
 .equipment-item-11 .equipment-item__img img{
	scale: 1;
 }
    .equipment-item-10 .equipment-item__title {
        margin: -75px 0px 0 0px;
    }
.content-top{
	flex-wrap: wrap;
	flex-direction: column-reverse;
}
img.logo-maestrelli{
	
}
.content-img-right {
    margin: 0 0 20px 0px;
}

}

