/*---------------------------*/
.l-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0.4s 0s;
    -o-transition: opacity 0.4s 0s, visibility 0.4s 0s;
    -moz-transition: opacity 0.4s 0s, visibility 0.4s 0s;
    transition: opacity 0.4s 0s, visibility 0.4s 0s;
    color: #1c1c1c;
    font-size: 14px;
}
.l-sidebar a:link,
.l-sidebar a:visited {
    color: #00a1a1;
}
.l-sidebar .sidebar__inner {
    position: absolute;
    top: 0px;
    bottom: 0;
    left: -420px;
    width: 100%;
    max-width: 420px;
    overflow-y: auto;
    background: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    -webkit-transition: left 0.2s 0s;
    -o-transition: left 0.2s 0s;
    -moz-transition: left 0.2s 0s;
    transition: left 0.2s 0s;
}
.l-sidebar .sidebar__indent {
    padding: 34px 30px;
}
.l-sidebar .sidebar__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.25;
}
    /*---------------------------*/
    .l-sidebar_open {
        opacity: 1;
        visibility: visible;
    }
    .l-sidebar_open .sidebar__inner {
        left: 0;
    }
/*-------------------------------------*/
.b-sandwich {
    position: absolute;
    top: 45px;
    left: 328px;
    z-index: 25;
    display: none;
    width: 111px;
    font-size: 14px;
    line-height: 1;
}
.b-sandwich,
.b-sandwich * {
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
}
.b-sandwich .sandwich__line {
    height: 2px;
    margin-bottom: 5px;
    background-color: #009b9b;
    -webkit-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.b-sandwich .sandwich__line:last-child {
    margin-bottom: 0;
}
.b-sandwich .sandwich__btn {
    border: 1px solid #00c0c0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 16px 18px;
    cursor: pointer;
    white-space: nowrap;
    color: #00a1a1;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition: background-color, color, border-color;
    transition-duration: 0.2s;
}
.b-sandwich:hover .sandwich__btn {
    border-color: #009b9b;
}
.b-sandwich .sandwich__img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 11px;
    width: 20px;
    font-size: 0;
}
.b-sandwich .sandwich__img img {
    max-width: 100%;
}
.b-sandwich .sandwich__title {
    display: inline-block;
    vertical-align: middle;
}
/*-------------------------------------*/
.b-close {
    position: absolute;
    top: 23px;
    right: 13px;
    z-index: 50;
}
.b-close .close__btn {
    width: 40px;
    cursor: pointer;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
    font-size: 0;
    opacity: 0.2;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.b-close .close__btn:hover {
    opacity: 0.6;
}
.b-close .close__btn img {
    max-width: 100%;
}
/*-------------------------------------*/
.b-upcoming-events {
    margin: 0 -3000px;
    padding: 0 3000px;
    background-color: #008080;
    color: #fff;
    display: none;
}
.b-upcoming-events p {
    margin: 0;
    padding: 0;
}
.b-upcoming-events a:link,
.b-upcoming-events a:visited {
    color: #fff;
}
.b-upcoming-events .upcoming-events__inner {
    display: table;
    width: 100%;
    border-collapse: collapse;
}
.b-upcoming-events .upcoming-events__row {
    display: table-row;
}
.b-upcoming-events .upcoming-events__datebox {
    display: table-cell;
    vertical-align: middle;
    width: 100px;
    padding: 20px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #009b9b;
    text-align: center;
}
.b-upcoming-events .upcoming-events__day {
    font-size: 38px;
    line-height: 1.052;
}
.b-upcoming-events .upcoming-events__m-y {
    text-transform: uppercase;
    font-size: 12px;
}
.b-upcoming-events .upcoming-events__content {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: 10px 55px 10px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 24px;
    line-height: 1.2;
}
.b-upcoming-events .upcoming-events__title {
    overflow: hidden;
    padding: 7px 0;
}
.b-upcoming-events .upcoming-events__title-icon {
    position: absolute;
    top: 50%;
    right: 0;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    cursor: pointer;
}
.b-upcoming-events .upcoming-events__title-icon:hover {
    opacity: 0.6;
}
.b-upcoming-events .upcoming-events__title-icon img {
    vertical-align: top;
    max-width: 100%;
}
/*-------------------------------------*/
.b-head-contacts {
    text-align: right;
}
.b-head-contacts .head-contacts__phone {
    font-size: 14px;
}
/*-------------------------------------*/
.b-sidebar-contacts {
    margin: 0 -30px;
    margin-bottom: 20px;
    padding: 0 30px;
    padding-bottom: 7px;
    border-bottom: 1px solid #d5d5d5;
}
.b-sidebar-contacts .sidebar-contacts__btn {
    margin-bottom: 20px;
}
.b-sidebar-contacts .sidebar-contacts__btn a:link,
.b-sidebar-contacts .sidebar-contacts__btn a:visited {
    display: inline-block;
    vertical-align: top;
    max-width: 210px;
    width: 100%;
    padding: 10px 5px 11px 5px;
    color: #00a1a1;
    border: 1px solid #00c0c0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 14px;
    -webkit-transition: background-color, color, border-color;
    -o-transition: background-color, color;
    -moz-transition: background-color, color;
    transition: background-color, color;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    border-radius: 100px;
}
.b-sidebar-contacts .sidebar-contacts__btn a:hover {
    background-color: #009b9b;
    border-color: #009b9b;
    color: #fff;
}
.b-sidebar-contacts .sidebar-contacts__phone,
.b-sidebar-contacts .sidebar-contacts__phone:link,
.b-sidebar-contacts .sidebar-contacts__phone:visited,
.b-sidebar-contacts .sidebar-contacts__phone:hover,
.b-sidebar-contacts .sidebar-contacts__phone:active,
.b-sidebar-contacts .sidebar-contacts__phone a:link,
.b-sidebar-contacts .sidebar-contacts__phone a:visited,
.b-sidebar-contacts .sidebar-contacts__phone a:hover,
.b-sidebar-contacts .sidebar-contacts__phone a:active {
    margin-right: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #2d2d2d;
}
/*-------------------------------------*/
.b-sidebar-menu {
    margin-bottom: 30px;
}
.b-sidebar-menu a:link,
.b-sidebar-menu a:visited {
    display: block;
}
.b-sidebar-menu .sidebar-menu__link-1:link,
.b-sidebar-menu .sidebar-menu__link-1:visited {
    position: relative;
    vertical-align: top;
    padding: 7px 20px 7px 0;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #212121;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
}
.b-sidebar-menu .sidebar-menu__on-1 .sidebar-menu__link-1:link,
.b-sidebar-menu .sidebar-menu__on-1 .sidebar-menu__link-1:active,
.b-sidebar-menu .sidebar-menu__on-1 .sidebar-menu__link-1:visited,
.b-sidebar-menu .sidebar-menu__link-1:hover {
    color: #009b9b;
}
.b-sidebar-menu .sidebar-menu__link-1 ins {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    width: 9px;
    height: 5px;
    margin-top: -2px;
    background: url(/images/sidebar-menu-mar.png) 50% 50% no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.b-sidebar-menu .sidebar-menu__level-2 {
    padding-left: 16px;
    display: none;
}
.b-sidebar-menu .sidebar-menu__link-2:link,
.b-sidebar-menu .sidebar-menu__link-2:visited {
    vertical-align: top;
    padding: 8px 0 9px;
    text-decoration: none;
    font-size: 14px;
    color: #212121;
}
.b-sidebar-menu .sidebar-menu__on-2 .sidebar-menu__link-2:link,
.b-sidebar-menu .sidebar-menu__on-2 .sidebar-menu__link-2:active,
.b-sidebar-menu .sidebar-menu__on-2 .sidebar-menu__link-2:visited,
.b-sidebar-menu .sidebar-menu__link-2:hover {
    text-decoration: underline;
}
.b-sidebar-menu .sidebar-menu__level-3 {
    padding-left: 17px;
    display: none;
}
.b-sidebar-menu .sidebar-menu__link-3:link,
.b-sidebar-menu .sidebar-menu__link-3:visited {
    vertical-align: top;
    padding: 8px 0 9px;
    text-decoration: none;
    font-size: 14px;
    color: #212121;
}
.b-sidebar-menu .sidebar-menu__on-3 .sidebar-menu__link-3:link,
.b-sidebar-menu .sidebar-menu__on-3 .sidebar-menu__link-3:active,
.b-sidebar-menu .sidebar-menu__on-3 .sidebar-menu__link-3:visited,
.b-sidebar-menu .sidebar-menu__link-3:hover {
    text-decoration: underline;
}
.b-sidebar-menu .sidebar-menu__item-1 > span {
    display: block;
    position: relative;
}
.b-sidebar-menu .sidebar-menu__item-1--haschild > span .sidebar-menu__dropicon {
    display: block;
    background: url(/files/110/dropicon.svg) 50% 50% no-repeat;
    height: 100%;
    width: 60px;
    overflow: hidden;
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 1;
}
.b-sidebar-menu .sidebar-menu__item--open > span .sidebar-menu__dropicon {
    transform: rotate(180deg);
}
.b-sidebar-menu .sidebar-menu__item-2 > span {
    display: block;
    position: relative;
}
.b-sidebar-menu .sidebar-menu__item-2--haschild > span .sidebar-menu__dropicon {
    display: block;
    background: url(/files/110/dropicon.svg) 50% 50% no-repeat;
    height: 100%;
    width: 60px;
    overflow: hidden;
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 1;
}
.b-sidebar-menu .sidebar-menu__item--open > span .sidebar-menu__dropicon {
    transform: rotate(180deg);
}
/*-------------------------------------*/
.b-promo {
    margin: 0 -3000px 0px;
    padding: 0 3048px;
    background: url(/images/promo-bg2.jpg) 50% 0 no-repeat;
    color: #bdbdbd;
}
.b-promo a:link,
.b-promo a:visited {
    color: #6ddbdb;
}
.b-promo .promo__br {
    display: none;
}
.b-promo .promo__inner {
    position: relative;
    height: 750px;
    padding: 177px 0px 60px 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-promo .promo__head h1 {
    margin-bottom: 37px;
    text-transform: uppercase;
    font-size: 44px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}
.b-promo .promo__col {
    display: inline-block;
    vertical-align: top;
    margin-right: -0.275em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-promo .promo__col_left {
    padding-right: 45px;
    width: 48%;
}
.b-promo .promo__col_right {
    width: 52%;
}
.b-promo .promo__pic {
    margin-top: 10px;
    margin-right: -145px;
}
.b-promo .promo__pic img {
    max-width: 100%;
    vertical-align: top;
}
.b-promo .promo__menu {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    line-height: 1.412;
}
.b-promo .promo__menu-inner {
    margin: 0 -43px;
}
.b-promo .promo__menu-item {
    display: inline-block;
    vertical-align: top;
    margin-right: -0.275em;
    padding: 0px 43px;
    width: 20%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-promo .promo__menu-item:after {
    content:'';
    display: block;
    clear: both;
    font-size: 0;
}
.b-promo .promo__menu-img {
    display: block;
    float: left;
    margin-right: 15px;
}
.b-promo .promo__menu-img img {
    vertical-align: top;
}
.b-promo .promo__menu-content {
    display: block;
    overflow: hidden;
}
.b-promo .promo__slogan {}
/*-------------------------------------*/
.b-categ {
    margin-bottom: 67px;
}
.b-categ p {
    padding-bottom: 2.06em;
}
.b-categ ul {
    padding: 0 0 0 15px;
    list-style-type: disc;
}
.b-categ li {
    margin: 0;
}
.b-categ .categ__inner {}
.b-categ .categ__inner:after {
    content:'';
    display: block;
    clear: both;
    font-size: 0;
}
.b-categ .categ__item {
    position: relative;
    float: left;
    width: 20%;
    padding: 45px 53px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
}
.b-categ .categ__item_1 {
    width: 50%;
    height: 730px;
    background: #009b9b url(/images/categ-item1-bg.jpg) 100% 100% no-repeat;
}
.b-categ .categ__item_2,
.b-categ .categ__item_3 {
    width: 25.5%;
}
.b-categ .categ__item_2 {
    height: 420px;
    padding: 45px 40px 45px 53px;
    background: #fff url(/images/categ-item2-bg.jpg) 50% 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.b-categ .categ__item_3 {
    height: 310px;
    padding-right: 60px;
    background-color: #ededed;
    color: #333;
}
.b-categ .categ__item_4,
.b-categ .categ__item_5 {
    float: none;
    overflow: hidden;
    width: 24.5%;
}
.b-categ .categ__item_4 {
    height: 230px;
    background: #a1a1a1 url(/images/categ-item4-bg.jpg) 50% 100% no-repeat;
}
.b-categ .categ__item_5 {
    height: 500px;
    background: #41a1a7 url(/images/categ-item5-bg.jpg) 50% 100% no-repeat;
}
.b-categ .categ__pic {
    margin-bottom: 23px;
}
.b-categ .categ__pic img {
    vertical-align: top;
}
.b-categ .categ__title {
    margin-bottom: 34px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.166;
}
.b-categ .categ__btnbox {
    position: absolute;
    bottom: 90px;
    left: 53px;
    right: 53px;
}
.b-categ .categ__btn:link,
.b-categ .categ__btn:visited {
    display: inline-block;
    max-width: 295px;
    width: 100%;
    padding: 12px 7px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 16px;
    color: #fff;
    background-color: rgb(0, 128, 128);
    transition: background-color 0.2s;
}
.b-categ .categ__btn:hover {
    background-color: rgba(0, 128, 128, 0.7);
}
.b-categ .categ__colbox {
    background: url(/images/categ-pixel.png) 50% 0 repeat-y;
    border-left: 2px solid #009b9b;
    border-right: 2px solid #009b9b;
}
.b-categ .categ__col {
    display: inline-block;
    vertical-align: top;
    margin-right: -0.275em;
    width: 50%;
    padding: 40px 107px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-categ .categ__head {
    margin-bottom: 0.3em;
}
.b-categ .categ__videobox {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: url(/images/categ-videobox-bg.jpg) 50% 0 no-repeat;
}
.b-categ .categ__playbox:before {
    content:'';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    display: block;
    width: 360px;
    height: 360px;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: -moz-radial-gradient(center, ellipse cover,  rgba(109,219,219,1) 0%, rgba(109,219,219,0) 65%, rgba(109,219,219,0) 100%);
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(109,219,219,1) 0%,rgba(109,219,219,0) 65%,rgba(109,219,219,0) 100%);
    background: radial-gradient(ellipse at center,  rgba(109,219,219,1) 0%,rgba(109,219,219,0) 65%,rgba(109,219,219,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6ddbdb', endColorstr='#006ddbdb',GradientType=1 );
}
.b-categ .categ__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    text-align: center;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: width 0.2s 0s;
    -o-transition: width 0.2s 0s;
    -moz-transition: width 0.2s 0s;
    transition: width 0.2s 0s;
}
.b-categ .categ__play img {
    max-width: 100%;
    vertical-align: top;
}
.b-categ .categ__link {
    position: relative;
}
.b-categ .categ__play:hover {
    width: 140px;
}
/*-------------------------------------*/
.b-reviews-slider {
    margin-bottom: 75px;
}
.b-reviews-slider .reviews-slider__header {
    text-align: center;
}
.b-reviews-slider .reviews-slider__slider {
    /*margin: 0 70px;*/
}
.b-reviews-slider .owl-carousel {

}
.b-reviews-slider .owl-item {
    padding: 30px 22px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-reviews-slider .reviews-slider__item {
    position: relative;
}
.b-reviews-slider .reviews-slider__item:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: -10px;
    z-index: 0;
    display: block;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.b-reviews-slider .reviews-slider__item-inner {
    position: relative;
    height: 502px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
}
.b-reviews-slider .reviews-slider__content {
    height: 382px;
    padding: 35px 30px 10px 30px;
    border-bottom: 1px solid #e7e7e7;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-reviews-slider .reviews-slider__bottom {
    padding: 25px 30px;
}
.b-reviews-slider .reviews-slider__bottom:after {
    content:'';
    display: block;
    clear: both;
    font-size: 0;
}
.b-reviews-slider .reviews-slider__imgbox {
    float: right;
    width: 100px;
    height: 70px;
    margin-left: 15px;
    text-align: right;
}
.b-reviews-slider .reviews-slider__imgbox img {
    max-width: 100%;
    vertical-align: top;
}
.b-reviews-slider .reviews-slider__namebox {
    overflow: hidden;
    height: 70px;
    line-height: 65px;
}
.b-reviews-slider .reviews-slider__name {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}
.b-reviews-slider .owl-prev,
.b-reviews-slider .owl-next {
    position: absolute;
    top: 40%;
    width: 25px;
    height: 60px;
    margin-top: -30px;
}
.b-reviews-slider .owl-carousel {
    padding: 0 70px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-reviews-slider .owl-prev {
    left: 0;
    background: url(/images/reviews-slider-prev.png) 50% 50% no-repeat;
}
.b-reviews-slider .owl-next {
    right: 0;
    background: url(/images/reviews-slider-next.png) 50% 50% no-repeat;
}
.b-reviews-slider .owl-prev:hover,
.b-reviews-slider .owl-next:hover {
    opacity: 0.7;
}
.b-reviews-slider .reviews-slider__link:link,
.b-reviews-slider .reviews-slider__link:active,
.b-reviews-slider .reviews-slider__link:visited,
.b-reviews-slider .reviews-slider__link:hover {
    text-decoration: none;
    border-bottom: 1px dashed #00a1a1;
}
.b-reviews-slider .reviews-slider__link:hover {
    border-color: transparent;
}
/*-------------------------------------*/
.b-trust {
    margin: 0 -3000px;
    padding: 47px 3000px;
    background-color: #009b9b;
    text-align: center;
    color: #fff;
    line-height: 1.764;
}
.b-trust p {
    margin: 0;
    padding: 0;
}
.b-trust .trust__header {
    margin-bottom: 10px;
    color: #fff;
}
.b-trust .trust__btnbox {
    margin-top: 22px;
}
.b-trust .trust__btn {
    display: inline-block;
    vertical-align: top;
    margin-right: -0.275em;
    padding: 10px 14px;
}
.b-trust .trust__btn a:link,
.b-trust .trust__btn a:visited {
    display: block;
    vertical-align: top;
    padding: 8px 5px 12px 5px;
    width: 230px;
    border: 1px solid #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    -webkit-transition: background-color 0.2s 0s;
    -o-transition: background-color 0.2s 0s;
    -moz-transition: background-color 0.2s 0s;
    transition: background-color 0.2s 0s;
}
.b-trust .trust__btn a:hover {
    background-color: rgba(255,255,255,0.2);
}
/*-------------------------------------*/
.b-mapbox {
    height: 670px;
    margin: 0 -3000px;
    margin-bottom: 73px;
    padding: 0 3000px;
    background-color: #f9f9f9;
}
.b-mapbox .mapbox__map {
    margin-left: -195px;
    overflow: hidden;
}
.b-mapbox .mapbox__map img {
    vertical-align: top;
}
.b-mapbox .mapbox__col {
    display: inline-block;
    vertical-align: top;
    margin-right: -0.275em;
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-mapbox .mapbox__col_right {
    padding: 35px;
}
/*-------------------------------------*/
.b-partners {}
.b-partners .partners__inner {
    margin: 0 -15px;
}
.b-partners .partners__item {
    display: inline-block;
    vertical-align: middle;
    margin-right: -0.275em;
    width: 33.333%;
    padding: 15px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-partners .partners__img img {
    vertical-align: top;
    max-width: 100%;
}
/*-------------------------------------*/
.b-partners2 {
    background: #f3f3f3;
    margin: 60px -1000px 30px -1000px;
    padding: 30px 1000px;
}
.b-partners2 h2 {
    margin-bottom: 90px;
    text-align: center;
}
.b-partners2 span,
.b-partners2 a:link,
.b-partners2 a:visited {
    background: #fff;
    position: relative;
    display: block;
    line-height: 140px;
    overflow: hidden;
}
.b-partners2 span:before,
.b-partners2 a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.b-partners2 a:hover:before,
.b-partners2 a:active:before {
    background-color: rgba(255, 255, 255, 0.5);
}
.b-partners2 img {
    vertical-align: middle;
    max-width: 90%;
}
.b-partners2 .partners__items {
    margin: 0 -15px;
}
.b-partners2 .partners__item {
    margin-right: -.275em;
    padding: 0 15px 30px;
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*-------------------------------------*/
.b-partner {
    font-size: 0;
}
.b-partner .partner__inner {
    text-align: justify;
    line-height: 0;
}
.b-partner .partner__inner:after {
    width: 100%;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    content: '';
    display: inline-block;
}
.b-partner .partner__item {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-partner .partner__item:last-child {
    max-width: 200px;
}
.b-partner .partner__img {
    height: 92px;
    overflow: hidden;
}
.b-partner .partner__img img {
    max-width: 100%;
    vertical-align: top;
}
.b-partner .partner__img:hover img {
    margin-top: -92px;
}
/*-------------------------------------*/
.b-copyright {
    color: #999;
}
.b-copyright a:link,
.b-copyright a:visited {
    text-decoration: none;
    color: #999;
}
.b-copyright a:hover {
    text-decoration: underline;
}
.b-copyright .copyright__logo {
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    margin-right: 10px;
}
.b-copyright .copyright__logo img {
    max-width: 100%;
    vertical-align: middle;
}
/*-------------------------------------*/
.b-foot-logo {
    margin-bottom: 36px;
}
.b-foot-logo .foot-logo__logo {
    width: 230px;
}
.b-foot-logo .foot-logo__logo img {
    max-width: 100%;
    vertical-align: top;
}
/*-------------------------------------*/
.b-foot-zayavka {}
.b-foot-zayavka .foot-zayavka__btn:link,
.b-foot-zayavka .foot-zayavka__btn:visited {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 230px;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    background-color: #009b9b;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 16px;
    color: #fff;
    -webkit-transition: background-color 0.2s 0s;
    -o-transition: background-color 0.2s 0s;
    -moz-transition: background-color 0.2s 0s;
    transition: background-color 0.2s 0s;
}
.b-foot-zayavka .foot-zayavka__btn:hover {
    background-color: #008080;
}
/*-------------------------------------*/
.b-foot-nav {}
.b-foot-nav ul {
    list-style: none;
    padding: 0;
}
.b-foot-nav ul li {
    margin-bottom: 7px;
}
.b-foot-nav a:link,
.b-foot-nav a:visited {
    color: #888;
}
.b-foot-nav .foot-nav__inner {
    margin: 0 -22px;
}
.b-foot-nav .foot-nav__col {
    display: inline-block;
    vertical-align: top;
    margin-right: -0.275em;
    width: 33.333%;
    padding: 0 22px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-foot-nav .foot-nav__link-1:link,
.b-foot-nav .foot-nav__link-1:visited {
    color: #222;
    font-size: 16px;
    font-weight: bold;
}
.b-foot-nav .foot-nav__level-2 {
    margin-bottom: 24px;
}
/*-------------------------------------*/
.b-foot-contacts p {
    margin: 0 0 7px;
}
.b-foot-contacts .foot-contacts__phone {
    margin-bottom: 20px;
}
.b-foot-contacts .foot-contacts__phone,
.b-foot-contacts .foot-contacts__phone a:link,
.b-foot-contacts .foot-contacts__phone a:visited,
.b-foot-contacts .foot-contacts__phone a:active,
.b-foot-contacts .foot-contacts__phone a:hover {
    font-size: 24px;
    color: #2d2d2d;
}
/*-------------------------------------*/
.b-foot-icon {}
.b-foot-icon .foot-icon__item {
    display: inline-block;
    vertical-align: top;
    width: 135px;
    margin-left: 10px;
}
.b-foot-icon .foot-icon__item:first-child {
    margin-left: 0;
}
.b-foot-icon .foot-icon__img img {
    max-width: 100%;
    vertical-align: top;
}
/*-------------------------------------*/
.b-ban-support {
    margin-bottom: 55px;
    padding: 12px 30px 13px 21px;
    background-color: #f9f9f9;
    font-size: 19px;
    color: #222;
    line-height: 1.2;
}
.b-ban-support:after {
    content:'';
    display: block;
    font-size: 0;
    clear: both;
}
.b-ban-support .ban-support__imgbox {
    float: left;
    margin-right: 20px;
}
.b-ban-support .ban-support__img {
    width: 60px;
    margin: 0 auto;
}
.b-ban-support .ban-support__img img {
    max-width: 100%;
    vertical-align: top;
}
.b-ban-support .ban-support__btnbox {
    float: right;
    width: 238px;
    margin-top: 8px;
    margin-left: 60px;
    text-align: center;
}
.b-ban-support .ban-support__btn:link,
.b-ban-support .ban-support__btn:visited {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 238px;
    padding: 13px 10px 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background-color: #009b9b;
    -webkit-transition: background-color 0.2s 0s;
    -o-transition: background-color 0.2s 0s;
    -moz-transition: background-color 0.2s 0s;
    transition: background-color 0.2s 0s;
}
.b-ban-support .ban-support__btn:hover {
    background-color: #008080;
}
.b-ban-support .ban-support__content {
    overflow: hidden;
    margin-top: 8px;
}
/*-------------------------------------*/
.b-map {}
.b-map .map__map {
    position: relative;
    padding-bottom: 51.8%;
    height: 0;
    overflow: hidden;
}
.b-map .map__map > ymaps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
/*-------------------------------------*/
.b-company .company__itembox {
    margin-bottom: 30px;
}
.b-company .company__itembox h3 {
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}
.b-company .company__item {
    margin-bottom: 45px;
}
.b-company .company__item:first-child {
    padding-top: 45px;
}
.b-company .company__item:last-child {
    margin-bottom: 0;
}
.b-company .company__item:after {
    content:'';
    display: block;
    clear: both;
    font-size: 0;
}
.b-company .company__imgbox {
    float: left;
    width: 230px;
    margin-right: 30px;
    margin-bottom: 25px;
    text-align: center;
}
.b-company .company__img img {
    max-width: 100%;
    vertical-align: top;
    height: auto !important;
}
.b-company .company__content {
    overflow: hidden;
    border-bottom: 1px solid #e8e8e8;
}
.b-company .company__item:last-child .company__content {
    border: none;
}
.b-company .company__head {
    margin-bottom: 0;
}
    /*---------------------------------*/
    .b-company_bigpic {}
    .b-company_bigpic .company__imgbox {
        width: 50%;
    }
/*-------------------------------------*/
.b-ban-zakaz {
    position: relative;
    overflow: hidden;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #202021;
    color: #fff;
    font-size: 24px;
}
.b-ban-zakaz a:link,
.b-ban-zakaz a:visited {
    color: #fff;
}
.b-ban-zakaz .ban-zakaz__bg {
    position: relative;
    height: 420px;
    text-align: right;
}
.b-ban-zakaz .ban-zakaz__bg img {
    vertical-align: top;
}
.b-ban-zakaz .ban-zakaz__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 70px 15px;
}
.b-ban-zakaz .ban-zakaz__head {
    margin-bottom: 13px;
    color: #fff;
    font-size: 50px;
    line-height: 1.2;
}
.b-ban-zakaz .ban-zakaz__btnbox {
    margin: 35px 0;
}
.b-ban-zakaz .ban-zakaz__btn:link,
.b-ban-zakaz .ban-zakaz__btn:visited {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 267px;
    padding: 11px 5px;
    border: 1px solid #ffffff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition: background-color 0.2s 0s;
    -o-transition: background-color 0.2s 0s;
    -moz-transition: background-color 0.2s 0s;
    transition: background-color 0.2s 0s;
}
.b-ban-zakaz .ban-zakaz__btn:hover {
    background-color: rgba(255,255,255,0.1);
}
    /*---------------------------------*/
    /* .b-ban-zakaz2 {
        padding-left: 3030px;
        padding-right: 3030px;
        background-image: url(/images/ban-zakaz2-bg.jpg);
    } */
    .b-ban-zakaz_2 .ban-zakaz__bg {
        text-align: center;
    }
/*-------------------------------------*/
.b-hall {}
.b-hall .hall__announcement {
    margin-bottom: 1.7em;
}
.b-hall .hall__itembox {
    margin: 0 -20px;
}
.b-hall .hall__item {
    display: inline-block;
    vertical-align: top;
    margin-right: -0.275em;
    padding: 0 20px 30px;
    width: 33.333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-hall .hall__img {

}
.b-hall .hall__img img {
    max-width: 100%;
    vertical-align: top;
}
.b-hall .hall__support {
    margin: 0 -20px 35px;
}
.b-hall .hall__support-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: -0.275em;
    padding: 0 20px;
    width: 33.333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.41;
}
.b-hall .hall__support-item:after {
    content: '';
    position: absolute;
    top: 7px;
    right: 0;
    height: 60px;
    width: 1px;
    background-color: #d9d9d9;
}
.b-hall .hall__support-item:last-child:after {
    content: none;
}
.b-hall .hall__caption {
    font-weight: bold;
    color: #222;
}
/*-------------------------------------*/
.b-carousel-equipment {
    margin-bottom: 70px;
}
.b-carousel-equipment .carousel-equipment__item {
    text-align: center;
}
.b-carousel-equipment .carousel-equipment__head {
    margin-bottom: 1.2em;
}
.b-carousel-equipment .carousel-equipment__img {
    display: inline-block;
    border: 1px solid #ececec;
}
.b-carousel-equipment .carousel-equipment__img img {
    max-width: 100%;
    vertical-align: middle;
}
.b-carousel-equipment .owl-prev {
    left: -56px;
}
.b-carousel-equipment .owl-next {
    right: -56px;
}
/*-------------------------------------*/
/**
 * Компоненты аккордеона.
 */
ul.b-accordion {
    margin: 0 0 60px;
    padding: 0;
    list-style: none;
}
ul.b-accordion li {
    padding: 0;
}
ul.b-accordion li:before {
    content: none;
}
.b-accordion .accordion__item {
    margin: 0;
    border-bottom: 1px solid #e8e8e8;
}
/**
 * Элемент label который запускает открыть/закрыть.
 */
.b-accordion .accordion__trigger {
    position: relative;
    display: block;
    padding: 23px 0px 23px 50px;
    color: #222222;
    font-size: 24px;
    cursor: pointer;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
}
.b-accordion .accordion__trigger:hover {
    color: #009b9b;
}
.b-accordion .accordion__trigger:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 3px;
    width: 18px;
    height: 10px;
    margin-top: -5px;
    overflow: hidden;
    background: url(/images/accordion-toggle.png) 0 0 no-repeat;
    background-size: 200%;
}
.b-accordion .accordion__trigger:hover:after {
    background-position: 0% 100%;
}
/**
 * эти элементы radio/checkbox всегда должны быть скрыты.
 */
.b-accordion .accordion__toggle {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
/**
 * скрытое содержание аккордеона.
 */
.b-accordion .accordion__target {
    border: 0;
    /*clip: rect(0 0 0 0);*/
    /*height: 1px;*/
    max-height: 0px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    /*position: absolute;*/
    /*width: 1px;*/
    -webkit-transition: max-height 0.1s 0s;
    -o-transition: max-height 0.1s 0s;
    -moz-transition: max-height 0.1s 0s;
    transition: max-height 0.1s 0s;
}

/**
* когда переключатель checked на radio/checkbox, показать содержимое аккордеона.
*/
.b-accordion .accordion__toggle:checked ~ .accordion__trigger {
    /*color: #009b9b;*/
}
.b-accordion .accordion__toggle:checked ~ .accordion__trigger:after {
    background-position: 100% 0%;
}
.b-accordion .accordion__toggle:checked ~ .accordion__trigger:hover:after {
    background-position: 100% 100%;
}
.b-accordion .accordion__toggle:checked ~ .accordion__target {
    position: static;
    overflow: visible;
    /*width: auto;*/
    /*height: auto;*/
    max-height: 2500px;
    /*margin: auto;*/
    /*clip: auto;*/
    /*padding: 1.5rem;*/
    /* задержка появления  функция анимации */
    -webkit-animation:fadeIn ease-in 0.7s;
    -moz-animation:fadeIn ease-in 0.7s;
    animation:fadeIn ease-in 0.7s;
    -webkit-transition: max-height 1s;
    -o-transition: max-height 1s;
    -moz-transition: max-height 1s;
    transition: max-height 1s;
}
/* анимация при появлении блоков с содержанием */
@-moz-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1 }
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1 }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1 }
}
/*-------------------------------------*/
.b-videobox {}
.b-videobox .videobox__video {
    position: relative;
    padding-bottom: 56.111%;
    margin-bottom: 12px;
    height: 0;
    overflow: hidden;
    font-size: 0;
    cursor: pointer;
}
.b-videobox .videobox__video img {
    max-width: 100%;
    vertical-align: middle;
}
.b-videobox .videobox__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.b-videobox .videobox__play {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
}
.b-videobox .videobox__play-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: width 0.2s 0s;
    -o-transition: width 0.2s 0s;
    -moz-transition: width 0.2s 0s;
    transition: width 0.2s 0s;
}
.b-videobox .videobox__video:hover .videobox__play-img {
    width: 21%;
}
.b-videobox .videobox__play-img img {
    max-width: 100%;
    vertical-align: middle;
}
.b-videobox a:link,
.b-videobox a:active,
.b-videobox a:visited,
.b-videobox a:hover {
    font-size: 12px;
    color: #000;
}
.b-videobox p {
    line-height: 15px;
}
/*-------------------------------------*/
.b-example {
    margin-bottom: 20px;
    padding: 20px 23px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #f9f9f9;
}
.b-example:after {
    content: '';
    display: block;
    clear: both;
    font-size: 0;
}
.b-example .example__icon {
    float: left;
    margin-right: 20px;
}
.b-example .example__icon img {
    max-width: 100px;
    vertical-align: middle;
}
.b-example .example__content {
    overflow: hidden;
    margin-top: 7px;
}
.b-example .example__btn {
    float: right;
    width: 218px;
    margin-left: 20px;
}
.b-example .example__download:link,
.b-example .example__download:visited {
    display: inline-block;
    max-width: 218px;
    width: 100%;
    padding: 10px 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #009b9b;
    -webkit-transition: background-color 0.2s 0s;
    -o-transition: background-color 0.2s 0s;
    -moz-transition: background-color 0.2s 0s;
    transition: background-color 0.2s 0s;
}
.b-example .example__download:hover {
    background-color: #008080;
}
.b-example .example__title {
    font-size: 19px;
    font-weight: bold;
    color: #222;
}
/*-------------------------------------*/
.b-economic-effect {
    color: #222;
}
.b-economic-effect .economic-effect__table {}
.b-economic-effect .economic-effect__tr-title {
    border: none;
    border-bottom: 1px solid #f3f3f3;
    cursor: pointer;
    position: relative;
}
.b-economic-effect .economic-effect__tr-title:before {
    content: '';
    margin-top: -5px;
    display: block;
    position: absolute;
    left: 2px;
    top: 50%;
    width: 18px;
    height: 10px;
    background: url(/images/accordion-toggle.png) 0 0 no-repeat;
    -webkit-background-size: 36px auto;
    background-size: 36px auto;
}
.b-economic-effect .economic-effect__tr-title_active {
    border-bottom-color: #009b9b;
}
.b-economic-effect .economic-effect__tr-title:hover:before {
    background-position: 0 -10px;
}
.b-economic-effect .economic-effect__tr-title_active:before {
    background-position: -18px 0;
}
.b-economic-effect .economic-effect__tr-title_active:hover:before {
    background-position: -18px -10px;
}
.b-economic-effect .economic-effect__tr-title + .economic-effect__tr-content {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
.b-economic-effect .economic-effect__tr-title_active + .economic-effect__tr-content {
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
    opacity: 1;
}
.b-economic-effect .economic-effect__tr-title_nobullit {
    border-bottom-color: #009b9b;
}
.b-economic-effect .economic-effect__tr-title_nobullit:before {
    display: none;
}
.b-economic-effect .economic-effect__tr-content {}
.b-economic-effect .economic-effect__tr-total {
    border: none;
}
.b-economic-effect .economic-effect__td-bggray {
    background-color: #f9f9f9;
}
.b-economic-effect .economic-effect__td-item {
    padding: 9px 18px 8px;
    border: solid #f3f3f3;
    border-width: 0 1px 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-economic-effect .economic-effect__tr-total {
    padding: 9px 18px 8px;
    border: solid #f3f3f3;
    border-width: 0 0 1px;
}
.b-economic-effect .economic-effect__td-title,
.b-economic-effect .economic-effect__td-input {
    margin-right: -.275em;
    display: inline-block;
    vertical-align: middle;
}
.b-economic-effect .economic-effect__td-title {
    width: 79%;
}
.b-economic-effect .economic-effect__td-input {
    white-space: nowrap;
    width: 21%;
}
.b-economic-effect .economic-effect__td-input_radio input {
    cursor: pointer;
}
.b-economic-effect .economic-effect__td-input_radio label {
    padding-left: 5px;
    margin-right: 10px;
    cursor: pointer;
}
.b-economic-effect .economic-effect__tr-btn {
    padding-top: 18px;
    padding-bottom: 18px;
    text-align: center;
}
.b-economic-effect .economic-effect__input-wrap {
    display: inline-block;
    margin-right: 13px;
}
.b-economic-effect .economic-effect__input {
    width: 120px;
    margin: 0;
    padding: 5px 10px;
    border: 1px solid #e1e1e1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Arial;
    font-size: 17px;
    color: #666;
}
.b-economic-effect .economic-effect__tooltip {
    position: relative;
    display: inline;
    margin-right: 10px;
    cursor: help;
}
.b-economic-effect .economic-effect__tooltip img {
    margin-top: -3px;
    vertical-align: middle;
}
.b-economic-effect .economic-effect__cloud {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 2;
    display: none;
    width: 280px;
    padding-left: 10px;
}
.b-economic-effect .economic-effect__tooltip:hover .economic-effect__cloud {
    display: block;
}
.b-economic-effect .economic-effect__cloud-inner {
    padding-left: 10px;
    padding: 10px 15px;
    background-color: #F2f2f2;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 12px;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
}
.b-economic-effect .economic-effect__tooltip-title {}
.b-economic-effect .economic-effect__title {
    padding: 15px 0 15px 45px;
    font-size: 21px;
    font-weight: bold;
    color: #009b9b;
}
.b-economic-effect .economic-effect__tr-title:hover .economic-effect__title {
    color: #008080;
}
.b-economic-effect .economic-effect__tr-title_nobullit {
    cursor: auto;
}
.b-economic-effect .economic-effect__tr-title_nobullit .economic-effect__title {
    padding-left: 0;
}
.b-economic-effect .economic-effect__title2 {}
.b-economic-effect .economic-effect__total {
    font-size: 21px;
    font-weight: bold;
    color: #222;
}
.b-economic-effect .economic-effect__total-price {
    padding-left: 7px;
    color: #222;
}
.b-economic-effect .economic-effect__total-price2 {
    padding-left: 7px;
}
.b-economic-effect .economic-effect__btn:link,
.b-economic-effect .economic-effect__btn:visited {
    display: inline-block;
    padding: 10px 5px;
    width: 100%;
    max-width: 225px;
    text-align: center;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #009b9b;
    color: #fff;
    font-size: 16px;
    -webkit-transition: background-color 0.2s 0s;
    -o-transition: background-color 0.2s 0s;
    -moz-transition: background-color 0.2s 0s;
    transition: background-color 0.2s 0s;
}
.b-economic-effect .economic-effect__btn:hover {
    background-color: #008080;
}
.b-economic-effect .economic-effect__results {
    display: none;
}
.b-economic-effect .economic-effect__results .economic-effect__td-bggray {
    border-bottom-color: #e1e1e1;
}
/*-------------------------------------*/
.b-category-software {
    position: relative;
    margin-bottom: 60px;
}
.b-category-software:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: -10px;
    z-index: 0;
    display: block;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.b-category-software .category-software__inner {
    position: relative;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.b-category-software .category-software__inner:after {
    content:'';
    display: block;
    clear: both;
    font-size: 0;
}
.b-category-software .category-software__content {
    font-size: 15px;
}
.b-category-software .category-software__item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    /* margin-right: -0.275em; */
    padding: 46px 30px 110px 35px;
    height: 436px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}
.b-category-software .category-software__item_1-1 {
    width: 100%;
    height: auto;
    border-top: 1px solid #e7e7e7;
}
.b-category-software .category-software__item_1-2 {
    width: 50%;
}
.b-category-software .category-software__item_border {
    border-right: 1px solid #e7e7e7;
}
.b-category-software .category-software__imgbox {
    margin-bottom: 20px;
}
.b-category-software .category-software__imgbox img {
    max-width: 100%;
    vertical-align: top;
}
.b-category-software .category-software__title {
    margin-bottom: 10px;
}
.b-category-software .category-software__title a:link,
.b-category-software .category-software__title a:visited {
    font-size: 24px;
    font-weight: bold;
    color: #222;
}
.b-category-software .category-software__btn {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 46px;
}
.b-category-software .category-software__more:link,
.b-category-software .category-software__more:visited {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 218px;
    margin-right: -0.275em;
    padding: 9px 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    background-color: #009b9b;
    color: #fff;
    -webkit-transition: background-color 0.2s 0s;
    -o-transition: background-color 0.2s 0s;
    -moz-transition: background-color 0.2s 0s;
    transition: background-color 0.2s 0s;
}
.b-category-software .category-software__more:hover {
    background-color: #008080;
}
/*-------------------------------------*/
.b-integration {
    margin-bottom: 30px;
}
.b-integration .integration__inner {
    margin: 0 -9px;
}
.b-integration .integration__item {
    display: inline-block;
    vertical-align: top;
    margin-right: -0.275em;
    width: 25%;
    padding: 10px 9px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-integration .integration__img {}
.b-integration .integration__img img {
    max-width: 100%;
    vertical-align: top;
}
/*-------------------------------------*/
.b-integration--mes {
    margin-bottom: 50px;
}
.b-integration--mes .integration__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.b-integration--mes .integration__inner {
    display: flex;
    justify-content: space-between;
    margin: 0 -20px;
}
.b-integration--mes .integration__item {
    width: auto;
    padding: 10px 20px;
}
/*-------------------------------------*/
.b-requirements {
    margin-bottom: 70px;
    line-height: 1.411;
}
.b-requirements ul {
    list-style: none;
    padding: 0;
}
.b-requirements ul li {
    position: relative;
    padding-left: 20px;
    margin: 0;
}
.b-requirements ul li:before {
    content:'';
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 7px;
    height: 7px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    background-color: #009b9b;
}
.b-requirements .requirements__table {}
.b-requirements .requirements__table table {
    width: 100%;
    border-collapse: collapse;
    color: #666;
}
.b-requirements .requirements__table tr:nth-child(2n+1) td {
    background-color: #fcfcfc;
}
.b-requirements .requirements__table td {
    padding: 15px 23px;
    vertical-align: top;
    border-bottom: 1px solid #e1e1e1;
    border-top: 1px solid #e1e1e1;
}
/*-------------------------------------*/
.b-header-menu {
    margin: 0 -3000px;
    padding: 0 3000px;
    background-color: #009b9b;
    color: #fff;
    line-height: 1.411;
}
.b-header-menu a:link,
.b-header-menu a:visited {
    color: #fff;
}
.b-header-menu .header-menu__inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
.b-header-menu .header-menu__item {
    -webkit-flex: 1 auto;
    flex: 1 auto;
    width: 20%;
    border-right: 1px solid #008484;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-header-menu .header-menu__item {
    padding: 26px 0;
}
.b-header-menu .header-menu__item:last-child {
    border-right: none;
}
.b-header-menu .header-menu__table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}
.b-header-menu .header-menu__row {
    display: table-row;
}
.b-header-menu .header-menu__cell {
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
}
.b-header-menu .header-menu__cell_imgbox {
    width: 36%;
    text-align: right;
}
.b-header-menu .header-menu__cell_imgbox img {
    vertical-align: middle;
}
.b-header-menu .header-menu__title:hover {

}
/*-------------------------------------*/
.b-accord {
    margin-bottom: 10px;
    font-size: 15px;
}
.b-accord .accord__target {
    display: none;
}
.b-accord .accord__more {
    color: #009b9b;
    border-bottom: 1px dashed #009b9b;
    cursor: pointer;
}
.b-accord .accord__more:hover {
    border-bottom-color: transparent;
}
.b-accord-about {
    font-size: 17px;
}
/*-------------------------------------*/
.b-capabilities {
    position: relative;
    color: #666;
}
.b-capabilities:before {
    content:'';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    margin-left: -1px;
    background-color: #dfdfdf;
}
.b-capabilities:after {
    content:'';
    display: block;
    clear: both;
    font-size: 0;
}
.b-capabilities .capabilities__header {
    position: relative;
    float: left;
    margin: 50px 0;
    width: 50%;
}
.b-capabilities .capabilities__head {
    margin-bottom: 50px;
    padding-left: 30px;
}
.b-capabilities .capabilities__container {
    position: relative;
    overflow: hidden;
}
.b-capabilities .capabilities__tabs {
    display: table;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.b-capabilities .tab_last {}
.b-capabilities .capabilities__tabs li:hover {}
.b-capabilities .capabilities__tab {
    position: relative;
    display: table-row;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.b-capabilities .capabilities__tab-img,
.b-capabilities .capabilities__tab-title {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding: 17px 20px;
    border: 1px solid transparent;
}
.b-capabilities .capabilities__tab-img {
    text-align: center;
}
.b-capabilities .capabilities__tab-img img {
    vertical-align: middle;
    max-width: none;
}
.b-capabilities .capabilities__tab-title {
    width: 100%;
    color: #222;
    font-size: 24px;
    border-left: none;
}
.b-capabilities .capabilities__tab-active {}
.b-capabilities .capabilities__tab-active .capabilities__tab-img,
.b-capabilities .capabilities__tab-active .capabilities__tab-title {
    border-color: #dfdfdf;
    border-right-color: #fff;
    color: #009b9b;
}
.b-capabilities .capabilities__content {
    padding: 70px 50px;
    display: none;
}
.b-capabilities .capabilities__tab-drawer-heading {
    display: none;
    font-size: 18px;
    color: #222222;
    line-height: 1.2;
}
.b-capabilities .capabilities__list {
    list-style: none;
    padding: 0;
}
.b-capabilities .capabilities__list li {
    padding-left: 30px;
    background: url(/images/capabilities-list.png) 0 7px no-repeat;
    background-size: 14px auto;
}
.b-capabilities .d_active {
    color: #009b9b;
}
.b-capabilities .capabilities__result {
    padding-left: 30px;
}
.b-capabilities .capabilities__effect {
    font-size: 24px;
    vertical-align: middle;
    color: #222;
}
.b-capabilities .capabilities__btn {
    display: inline-block;
    vertical-align: middle;
    margin-left: 36px;
}
.b-capabilities .capabilities__more:link,
.b-capabilities .capabilities__more:active,
.b-capabilities .capabilities__more:visited,
.b-capabilities .capabilities__more:hover {
    display: inline-block;
    vertical-align: top;
    max-width: 190px;
    width: 190px;
    padding: 11px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #009b9b;
    color: #fff;
    -webkit-transition: background-color 0.2s 0s, color 0.2s 0s;
    -o-transition: background-color 0.2s 0s, color 0.2s 0s;
    -moz-transition: background-color 0.2s 0s, color 0.2s 0s;
    transition: background-color 0.2s 0s, color 0.2s 0s;
}
.b-capabilities .capabilities__more:hover {
    background-color: #008080;
}
    /*---------------------------------*/
    .b-capabilities-inside {}
    .b-capabilities-inside:before {
        left: 45%;
    }
    .b-capabilities-inside .capabilities__header {
        margin: 20px 0;
        width: 45%;
    }
    .b-capabilities-inside .capabilities__header h2 {
        font-size: 35px;
    }
    .b-capabilities-inside .capabilities__container {
        width: 55%;
    }
    .b-capabilities-inside .capabilities__tab-title {
        line-height: 1.2;
        font-size: 20px;
    }
    .b-capabilities-inside .capabilities__btn {
        margin-left: 0;
        padding-top: 10px;
    }
/*-------------------------------------*/
.b-promoblock {
    margin-bottom: 55px;
    padding: 30px 25px;
    background-color: #f9f9f9;
}
.b-promoblock .promoblock__head {
    margin-bottom: 1em;
    font-weight: normal;
    font-size: 19px;
    color: #222;
    line-height: 1.2;
}
.b-promoblock p {
    margin: 0;
    padding: 0;
}
.b-promoblock img {
    margin: 0 !important;
    max-width: 100%;
    height: auto !important;
}
/*-------------------------------------*/
.b-catalog-software {
    margin-bottom: 1.5em;
}
.b-catalog-software .catalog-software__head {
    margin-bottom: 40px;
    font-size: 24px;
    color: #222;
    line-height: 1.2;
}
.b-catalog-software .catalog-software__title {
    padding-bottom: 15px;
    margin-bottom: 53px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 30px;
    font-weight: bold;
    color: #222;
}
.b-catalog-software .catalog-software__title-icon {
    margin-right: 25px;
    vertical-align: middle;
}
.b-catalog-software .catalog-software__title-icon img {
    vertical-align: middle;
}
.b-catalog-software .catalog-software__title-text {
    vertical-align: middle;
}
.b-catalog-software .catalog-software__item {
    margin-bottom: 10px;
}
.b-catalog-software .catalog-software__imgbox {
    margin-bottom: 20px;
}
.b-catalog-software .catalog-software__imgbox img {
    vertical-align: top;
    max-width: 100%;
}
.b-catalog-software .catalog-software__name {
    margin-bottom: 13px;
    font-size: 24px;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
}
.b-catalog-software .catalog-software__description {
    color: #666;
    font-size: 15px;
}
/*-------------------------------------*/
.b-catalog-parametrs {
    margin-bottom: 2em;
}
.b-catalog-parametrs table {
    border-collapse: collapse;
    width: 100%;
}
.b-catalog-parametrs th,
.b-catalog-parametrs td {
    padding: 14px 23px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.b-catalog-parametrs th {
    border-color: #009b9b;
    text-align: left;
    font-weight: bold;
    color: #009b9b;
}
.b-catalog-parametrs td {
    border-color: #e1e1e1;
}
.b-catalog-parametrs td:first-child {
    width: 65%;
}
.b-catalog-parametrs tr:nth-child(2n+1) td {
    background-color: #fcfcfc;
}
.b-catalog-parametrs .catalog-parametrs__col-1 {
    width: 65%;
}
/*-------------------------------------*/
.b-catalog-links {
    margin: 1.5em 0;
    font-size: 16px;
}
.b-catalog-links .catalog-links__inner {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}
.b-catalog-links .catalog-links__row {
    display: table-row;
}
.b-catalog-links .catalog-links__cell {
    display: table-cell;
    vertical-align: middle;
    padding: 13px 0 8px 0;
    border-right: 1px solid #d9d9d9;
}
.b-catalog-links .catalog-links__cell:last-child {
    border-right: none;
    text-align: center;
}
.b-catalog-links .catalog-links__img {
    vertical-align: middle;
    margin-right: 21px;
}
.b-catalog-links .catalog-links__img img {
    vertical-align: middle;
}
.b-catalog-links .catalog-links__text {
    vertical-align: middle;
}
/*-------------------------------------*/
.b-catalog-list {}
.b-catalog-list ul {
    list-style: none;
    padding: 0;
}
.b-catalog-list ul li {
    position: relative;
    padding-left: 22px;
}
.b-catalog-list ul li:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 7px;
    height: 7px;
    margin-right: 11px;
    margin-bottom: 1px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    background-color: #009b9b;
}
/*-------------------------------------*/
/*--------------------*/
.b-articles-editor {
    margin-bottom: 2em;
    padding: 0;
    position: relative;
}
.b-articles-editor .articles-editor__item {
    margin: 0 0 2em;
    padding: 0 0 0.2em;
    position: relative;
}
.b-articles-editor .articles-editor__content {
    overflow: hidden;
    border-bottom: 1px solid #e8e8e8;
}
.b-articles-editor .articles-editor__title {
    padding-bottom: .5em;
}
.b-articles-editor .articles-editor__title,
.b-articles-editor .articles-editor__title a:link,
.b-articles-editor .articles-editor__title a:visited {
    font-family: Arial;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.2;
    text-decoration: none;
    color: #222;
}
.b-articles-editor .articles-editor__title a:hover,
.b-articles-editor .articles-editor__title a:active {
    text-decoration: underline;
}
.b-articles-editor .b-editor {
    margin-bottom: .5em;
}
.b-articles-editor .articles-editor__wrap {
    overflow: hidden;
}
/*-------------------------------------*/
.b-programm {
    margin-bottom: 60px;
    position: relative;
}
.b-programm .programm__day {
    display: none;
}
.b-programm .programm__day_on {
    display: block;
}
.b-programm .programm__programm {
    padding-bottom: 90px;
}
.b-programm .programm__item {
    padding: 25px 0;
    margin-bottom: 2px;
    background-color: #f7f7f7;
}
.b-programm .programm__time,
.b-programm .programm__content,
.b-programm .programm__speaker {
    padding: 0 25px;
    margin-right: -.275em;
    display: inline-block;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-programm .programm__time {
    /*padding-top: 23px;*/
    width: 17%;
    color: #009b9b;
    font-weight: bold;
    font-size: 18px;
}
.b-programm .programm__content {
    width: 50%;
}
.b-programm .programm__speaker {
    width: 33%;
}
.b-programm .programm__title {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
}
.b-programm .programm__title a:link,
.b-programm .programm__title a:visited {
    text-decoration: none;
    color: #555555;
}
.b-programm .programm__title a:active,
.b-programm .programm__title a:hover {
    text-decoration: underline;
}
.b-programm .programm__desc {
    padding-top: 20px;
}
.b-programm .programm__speaker-pic,
.b-programm .programm__speaker-content {
    margin-right: -.275em;
    display: inline-block;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-programm .programm__speaker-pic {
    width: 30%;
    max-width: 100px;
}
.b-programm .programm__speaker-pic img {
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    max-width: 100%;
}
.b-programm .programm__speaker-content {
    padding-left: 10px;
    width: 70%;
    font-size: 14px;
    line-height: 1.2;
}
.b-programm .programm__speaker-content strong,
.b-programm .programm__speaker-content span {
    display: block;
}
.b-programm .programm__speaker-content strong {
    padding-bottom: 5px;
}
.b-programm .programm__speaker-content span {
    font-style: italic;
    color: #858585;
}
.b-programm .programm__item_big {
    background-color: #009b9b;
    color: #fff;
}
.b-programm .programm__item_big .programm__time {
    padding-top: 8px;
    color: #fff;
}
.b-programm .programm__item_big .programm__title {
    font-size: 28px;
}
.b-programm .programm__item_big .programm__title a:link,
.b-programm .programm__item_big .programm__title a:visited {
    color: #fff;
}
/*-------------------------------------*/
.b-title {
    padding-bottom: 10px;
    color: #222222;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}
.b-title2 {
    padding-bottom: 10px;
    color: #222222;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.2;
}
/*-------------------------------------*/
.reviews__text {
    text-align: center;
    line-height: 1.764;
}
/*-------------------------------------*/
/*-------------------------------------*/
@media only screen and (min-width: 980px) { /*-DESKTOP-*/
    /*---------------------------------*/
    .hide-on-desktop {
        display: none !important;
    }
    /*---------------------------------*/
    /*---------------------------------*/
}
/*---------------------------------*/
@media only screen  and (max-width: 1300px) {
    .b-sevice {
        left: auto;
        right: auto;
    }
    .b-head-plash {
        padding: 0 20px 0 0;
        margin: 0 0 0 20px;
        justify-content: flex-start;
        height: 50px;
        background: #49b83c url(/files/110/plash-bg.png) 750px 90% no-repeat;
        background-image: url(/files/110/plash-bg.png);
        background-position: 100% 90%;
        align-items: center;
        color: #fff;
    }
    /*  */
    /*----------------------*/
    .b-form--subscribe {
        flex-wrap: wrap;
        text-align: center;
        padding: 40px 42px 30px;
    }
    .b-form--subscribe .form__left {
        width: 100%;
        padding: 0;
    }
    .b-form--subscribe .form__right {
        width: 100%;
        min-width: auto;
    }
    .b-form--subscribe .form__input-wrap {
        padding-top: 20px;
        padding-bottom: 10px;
        margin: 0 auto;
    }
    .b-form--subscribe .form__checkbox {
        text-align: center;
    }
}
/*---------------------------------*/
@media only screen and (min-width: 1240px) and (max-width: 1599px) { /* MIDDLE DESKTOP */
    /*---------------------------------*/
    /*---------------------------------*/
    .column__center-indent,
    .container__head-content {
        padding-left: 0;
        padding-right: 0;
    }
    /*---------------------------------*/
    .l-grid .grid__item8 .b-social-btn {
        display: none;
    }
    /*---------------------------------*/
    .b-logo {
        left: 20px;
    }
    /*---------------------------------*/
    /* .b-pilot .pilot__1 {
        width: 188px;
        right: 20px;
    } */
    .b-sevice .item-1 .item-1__link:link,
    .b-sevice .item-1 .item-1__link:active,
    .b-sevice .item-1 .item-1__link:visited {
        padding-right: 25px;
        padding-left: 15px;
    }
    .b-sevice .on-1 .item-1__link:link,
    .b-sevice .on-1 .item-1__link:visited,
    .b-sevice .on-1 .item-1__link:hover,
    .b-sevice .on-1 .item-1__link:active,
    .b-sevice .item-1:hover .item-1__link:link,
    .b-sevice .item-1:hover .item-1__link:active,
    .b-sevice .item-1:hover .item-1__link:visited,
    .b-sevice .item-1 .item-1__link:hover {
        padding-right: 25px;
        padding-left: 15px;
    }
    .b-sevice ins,
    .b-sevice .on-1 ins {
        right: 5px;
    }
    .b-sevice .sevice__mar,
    .b-sevice .on-1 .sevice__mar {
        right: 5px;
    }
    /*---------------------------------*/
    .b-promo {}
    .b-promo .promo__inner {
        padding-top: 40px;
        height: 850px;
    }
    .b-promo .promo__col {
        width: 100%;
        text-align: center;
    }
    .b-promo .promo__col_left {
        padding-right: 0;
    }
    .b-promo .promo__head {
        margin-bottom: 18px;
    }
    .b-promo .promo__pic {
        /*margin-right: -155px;*/
    }
    .b-promo .promo__menu {
        bottom: 30px;
    }
    .b-promo .promo__menu-inner {
        margin-left: -6px;
        margin-right: -6px;
    }
    .b-promo .promo__menu-item {
        padding-left: 6px;
        padding-right: 6px;
    }
    .b-header-menu .header-menu__cell_imgbox {
        width: 32%;
    }
    .b-promo .promo__menu-item:last-child::before {
        left: -80px;
    }
    .b-promo .promo__menu-item:last-child::after {
        top: -58px;
        bottom: 0;
        left: -25px;
    }
    /*---------------------------------*/
    .b-categ .categ__item_1 {
        width: 36.25%;
    }
    .b-categ .categ__item_2,
    .b-categ .categ__item_3 {
        width: 32.5%;
    }
    .b-categ .categ__item_4,
    .b-categ .categ__item_5 {
        width: 31.25%;
    }
    .b-categ .categ__list {
        display: none;
    }
    .b-categ .categ__colbox {
        background-image: none;
    }
    .b-categ .categ__col {
        padding-left: 50px;
        padding-right: 50px;
    }
    /*---------------------------------*/
    .b-reviews-slider .reviews-slider__item-inner {
        height: 585px;
    }
    .b-reviews-slider .reviews-slider__content {
        height: 465px;
    }
    .b-reviews-slider .owl-carousel {
        padding-left: 28px;
        padding-right: 28px;
    }
    /*---------------------------------*/
    .b-mapbox .mapbox__map {
        margin-left: -245px;
    }
    /*---------------------------------*/
    .b-news {}
        /*-----------------------------*/
        .b-news-carousel .news__content {
            height: 520px;
            padding-left: 30px;
            padding-right: 30px;
        }
    /*---------------------------------*/
    .b-partner .partner__inner {
        text-align: center;
    }
    .b-partner .partner__item {
        width: 25%;
        margin-right: -0.275em;
        margin: 25px 0;
        text-align: center;
    }
    /*---------------------------------*/
    .b-form {}
        /*-----------------------------*/
        .b-form_cooperation {
            padding-left: 3080px;
            padding-right: 3080px;
        }
        .b-form_cooperation:before {
            content: none;
        }
        .b-form_cooperation .form__col_left {
            width: 38%;
            padding-right: 15px;
        }
        .b-form_cooperation .form__col_right {
            width: 62%;
        }
    /*---------------------------------*/
    .b-ban-zakaz {
        height: 270px;
        /*padding-top: 37px;*/
        font-size: 17px;
    }
    .b-ban-zakaz .ban-zakaz__content {
        padding-top: 37px;
    }
    .b-ban-zakaz .ban-zakaz__head {
        margin-bottom: 8px;
        font-size: 32px;
    }
    .b-ban-zakaz .ban-zakaz__btnbox {
        margin: 11px 0;
    }
        /*-----------------------------*/
        /* .b-ban-zakaz2 {
            padding-left: 3000px;
            padding-right: 3000px;
        } */
    /*---------------------------------*/
    .b-header-menu .header-menu__cell {
        padding-right: 4px;
    }
    /*---------------------------------*/
    .b-capabilities {}
    .b-capabilities .capabilities__effect {
        display: block;
        margin-bottom: 20px;
    }
    .b-capabilities .capabilities__btn {
        display: block;
        margin-left: 0;
        text-align: center;
    }
    .b-capabilities .capabilities__tab-title {
        line-height: 1.2;
    }
    /*---------------------------------*/
    .b-partner-banner .partner-banner__wrap {
        left: 20px;
        transform: none;
    }
    /*---------------------------------*/
    /*---------------------------------*/
    /*---------------------------------*/
    /*---------------------------------*/
    /*---------------------------------*/
    /*---------------------------------*/
    /*---------------------------------*/
}
@media only screen and (min-width: 1921px) and (max-width: 2560px) { /*-LARGE DESKTOP-*/
    .b-ban-zakaz .ban-zakaz__bg img {
        width: 100%;
    }
}
@media only screen and (min-width: 980px) and (max-width: 1239px) { /*-SMALL DESKTOP-*/
    /*---------------------------------*/
    .column__center-indent,
    .container__head-content {
        padding-left: 0;
        padding-right: 0;
    }
    /*---------------------------------*/
    .g-page-main .page-main__editor {
        margin-bottom: 0;
    }
    /*---------------------------------*/
    .l-header_fixed .b-logo-mini {
        display: none;
    }
    /*---------------------------------*/
    .b-logo {
        left: 20px;
    }
    /*---------------------------------*/
    .b-pilot .pilot__1 {
        right: 20px;
    }
    /*---------------------------------*/
    .l-header_fixed .b-sevice {
        display: none;
    }
    /*---------------------------------*/
    .l-header_fixed .b-sandwich {
        display: block;
    }
    /*---------------------------------*/
    .b-promo {
        margin-bottom: 0;
        padding-left: 3033px;
        padding-right: 3033px;
        font-size: 15px;
    }
    .b-promo .promo__inner {
        padding-top: 40px;
        height: 850px;
    }
    .b-promo .promo__col {
        width: 100%;
        text-align: center;
    }
    .b-promo .promo__col_left {
        padding-right: 0;
        margin-bottom: 15px;
    }
    .b-promo .promo__head {
        margin-bottom: 18px;
        font-size: 37px;
    }
    .b-promo .promo__pic {
        margin-right: -155px;
    }
    .b-promo .promo__menu {
        bottom: 25px;
    }
    .b-promo .promo__menu-inner {
        margin-left: -6px;
        margin-right: -6px;
    }
    .b-promo .promo__menu-item {
        padding-left: 6px;
        padding-right: 6px;
        width: 19%;
    }
    .b-promo .promo__menu-item:first-child {
        width: 24%;
    }
    .b-promo .promo__menu-item:last-child::before {
        left: -80px;
    }
    .b-promo .promo__menu-item:last-child::after {
        top: -66px;
        left: -40px;
    }
    /*---------------------------------*/
    .b-categ {
        margin-right: -20px;
        margin-left: -20px;
    }
    .b-categ .categ__list {
        display: none;
    }
    .b-categ .categ__item {
        width: 50%;
    }
    .b-categ .categ__item_1 {
        width: 100%;
        height: auto;
        min-height: 418px;
        padding-right: 380px;
        float: none;
        background-image: url(/images/categ-item1-bg-sd.jpg);
    }
    .b-categ .categ__item_3 {
        clear: left;
    }
    .b-categ .categ__item_4 {
        padding-right: 240px;
        background-position: 90% 100%;
    }
    .b-categ .categ__btnbox {
        position: static;
    }
    .b-categ .categ__colbox {
        background-image: none;
        border: none;
    }
    .b-categ .categ__col {
        padding-left: 53px;
        padding-right: 53px;
    }
    /*---------------------------------*/
    .b-reviews-slider .owl-carousel {
        padding-left: 30px;
        padding-right: 30px;
    }
    .b-reviews-slider .reviews-slider__item-inner {
        height: 537px;
    }
    .b-reviews-slider .reviews-slider__content {
        height: 417px;
    }
    /*---------------------------------*/
    .b-mapbox {
        height: auto;
    }
    .b-mapbox .mapbox__col {
        width: 100%;
    }
    .b-mapbox .mapbox__col_left {
        display: none;
    }
    /*---------------------------------*/
    .b-partners .partners__item {
        width: 25%;
    }
    /*---------------------------------*/
    .b-news {}
        /*-----------------------------*/
        .b-news-carousel .news__carousel {
            margin-left: -18px;
            margin-right: -18px;
        }
        .b-news-carousel .news__item {
            width: 50%;
            padding-left: 18px;
            padding-right: 18px;
        }
        .b-news-carousel .news__item:last-child {
            display: none;
        }
        .b-news-carousel .news__content {
            height: 485px;
            padding-left: 33px;
            padding-right: 33px;
        }
    /*---------------------------------*/
    .b-partner .partner__inner {
        text-align: center;
    }
    .b-partner .partner__item {
        width: 33.333%;
        margin-right: -0.275em;
        margin: 25px 0;
        text-align: center;
    }
    /*---------------------------------*/
    .b-head-contacts .head-contacts__phone {
        font-weight: bold;
        font-size: 18px;
    }
    /*---------------------------------*/
    .b-form {}
        /*-----------------------------*/
        .b-form_cooperation {
            min-height: 0;
            padding-left: 3053px;
            padding-right: 3053px;
            padding-bottom: 56px;
        }
        .b-form_cooperation:before {
            content: none;
        }
        .b-form_cooperation .form__col {
            width: 100%;
        }
        .b-form_cooperation .form__col_left {
            padding-right: 15px;
        }
        .b-form_cooperation .form__col_right {
            padding-left: 10px;
            padding-right: 10px;
        }
        .b-form_cooperation .form__col-btn {
            text-align: center;
        }
    /*---------------------------------*/
    .b-category {}
    .b-category .category__item {
        width: calc(33.333% - 14px)
    }
    .b-category .category__item:not(:nth-child(4n)) {
        margin-right: 0;
    }
    .b-category .category__item:not(:nth-child(3n)) {
        margin-right: 20px;
    }
    /*---------------------------------*/
    .b-ban-zakaz {
        height: 270px;
        font-size: 17px;
    }
    .b-ban-zakaz .ban-zakaz__content {
        padding-top: 37px;
    }
    .b-ban-zakaz .ban-zakaz__head {
        margin-bottom: 8px;
        font-size: 32px;
    }
    .b-ban-zakaz .ban-zakaz__btnbox {
        margin: 11px 0;
    }
        /*-----------------------------*/
        /* .b-ban-zakaz2 {
            padding-left: 3000px;
            padding-right: 3000px;
        } */
    /*---------------------------------*/
    .b-galbox2 {}
    .b-galbox2 .galbox2__item {
        width: 33.333%;
    }
    /*---------------------------------*/
    .b-videobox .videobox__col {
        width: 50%;
    }
    /*---------------------------------*/
    .b-header-menu .header-menu__item {
        width: 19%;
        border-right: none;
    }
    .b-header-menu .header-menu__item:nth-child(1) {
        width: 24%;
    }
    .b-header-menu .header-menu__cell {
        padding-left: 8px;
        padding-right: 8px;
    }
    .b-header-menu .header-menu__cell_imgbox {
        width: auto;
    }
    /*---------------------------------*/
    .b-capabilities {}
    .b-capabilities .capabilities__head {
        line-height: 1;
    }
    .b-capabilities .capabilities__tabs {
        border-spacing: 0 5px;
    }
    .b-capabilities .capabilities__tab-img,
    .b-capabilities .capabilities__tab-title {
        padding: 12px 15px;
    }
    .b-capabilities .capabilities__tab-title {
        width: 100%;
        line-height: 1.2;
    }
    .b-capabilities .capabilities__content {
        padding-left: 30px;
        padding-right: 40px;
    }
    .b-capabilities .capabilities__list {
        line-height: 1.4;
    }
    .b-capabilities .capabilities__effect {
        display: block;
        margin-bottom: 20px;
    }
    .b-capabilities .capabilities__btn {
        display: block;
        margin-left: 0;
        text-align: center;
    }
    /*---------------------------------*/
    .b-carousel-equipment {
        margin-bottom: 50px;
    }
    .b-carousel-equipment .owl-carousel {
        width: auto;
        padding: 0 40px;
    }
    .b-carousel-equipment .owl-prev {
        left: 0px;
    }
    .b-carousel-equipment .owl-next {
        right: 0px;
    }
    /*---------------------------------*/
    .b-catalog-links {}
    .b-catalog-links .catalog-links__cell {
        text-align: center;
    }
    .b-catalog-links .catalog-links__img {
        display: block;
        height: 38px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .b-catalog-links .catalog-links__text {
        display: block;
    }
    /*---------------------------------*/
    .b-economic-effect .economic-effect__td-title {
        width: 75%;
    }
    .b-economic-effect .economic-effect__td-input {
        width: 25%;
    }
    /*---------------------------------*/
    .b-sevice {
        width: auto;
    }
    .b-sevice .item-1 > span a:link,
    .b-sevice .item-1 > span a:active,
    .b-sevice .item-1 > span a:visited {
        padding: 16px 25px 17px 10px;
    }
    .b-sevice .on-1 > span a:link,
    .b-sevice .on-1 > span a:visited,
    .b-sevice .on-1 > span a:hover,
    .b-sevice .on-1 > span a:active,
    .b-sevice .item-1:hover > span a:link,
    .b-sevice .item-1:hover > span a:active,
    .b-sevice .item-1:hover > span a:visited,
    .b-sevice .item-1 a:hover {
        padding: 16px 25px 17px 10px;
    }
    .b-sevice .sevice__mar {
        right: 12px;
    }
    /*---------------------------------*/
    .b-calc-benefit .calc-benefit__outsise {
        margin-bottom: 80px;
    }
    .b-calc-benefit .calc-benefit__item-title {
        font-size: 18px;
    }
    .b-calc-benefit .calc-benefit__title {
        font-size: 18px;
    }
    .b-calc-benefit .calc-benefit__item-text {
        font-size: 30px;
    }

    .b-calc-benefit .calc-benefit__item-text span {
    }
    .b-calc-benefit .calc-benefit__efect {
        padding: 45px 30px;
    }
    .b-calc-benefit .calc-benefit__min-text {
        margin-bottom: 15px;
    }
    /*---------------------------------*/
    .b-project-year {
        position: static;
        margin: 20px 0 0;
    }
    /*---------------------------------*/
    .b-partner-banner .partner-banner__wrap {
        left: 20px;
        transform: none;
    }
    /*---------------------------------*/
    /*---------------------------------*/
}
/*---------------------------------*/
@media handheld, only screen and (max-width: 979px) { /*-ONLY HANDHELD-*/
    /*---------------------------------*/
    .container__head-content {
        padding-left: 0;
        padding-right: 0;
    }
    /*---------------------------------*/
    .g-page-main .page-main__editor {
        margin-bottom: 0;
    }
    /*---------------------------------*/
    .b-logo {
        left: 20px;
    }
    /*---------------------------------*/
    .b-sandwich {
        display: block;
    }
    /*---------------------------------*/
    .b-promo {
        margin-bottom: 0;
    }
    /*---------------------------------*/
    .b-categ {
        margin-right: -20px;
        margin-left: -20px;
    }
    .b-categ .categ__colbox {
        background-image: none;
        border: none;
    }
    /*---------------------------------*/
    .b-mapbox {
        height: auto;
    }
    .b-mapbox .mapbox__col {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    /*---------------------------------*/
    .b-ban-zakaz {
        height: 270px;
        font-size: 17px;
    }
    .b-ban-zakaz .ban-zakaz__content {
        padding-top: 30px;
    }
    .b-ban-zakaz .ban-zakaz__head {
        margin-bottom: 8px;
        font-size: 32px;
    }
    .b-ban-zakaz .ban-zakaz__btnbox {
        margin: 11px 0;
    }
        /*-----------------------------*/
        /* .b-ban-zakaz2 {
            padding-top: 23px;
            padding-bottom: 23px;
            padding-left: 3010px;
            padding-right: 3010px;
        } */
    /*---------------------------------*/
    .b-carousel-equipment .owl-carousel {
        width: auto;
        padding: 0 40px;
    }
    .b-carousel-equipment .owl-prev {
        left: 0px;
    }
    .b-carousel-equipment .owl-next {
        right: 0px;
    }
    /*---------------------------------*/
    .b-calc-benefit .calc-benefit__item-title {
        font-size: 18px;
        width: 140px;
        padding:0 20px 0 20px;
    }
    .b-calc-benefit .calc-benefit__title {
        font-size: 18px;
    }
    .b-calc-benefit .calc-benefit__item-text {
        font-size: 30px;
        padding-right: 18px;
    }

    .b-calc-benefit .calc-benefit__item-text span {
        20px;
    }
    .b-calc-benefit .calc-benefit__efect {
        padding: 45px 30px;
    }
    /*----------------------*/
    .b-calc-benefit .calc-benefit__slider-range {
        margin: 0 auto 80px auto;
        width: 80%;
    }
    /*---------------------------------*/
    .b-partner-banner .partner-banner__wrap {
        left: 20px;
        transform: none;
    }
    /*---------------------------------*/

}
/*---------------------------------*/
@media only screen  { /*-DESKTOP-*/
    /*---------------------------------*/
    /*---------------------------------*/
}
/*---------------------------------*/
/*-------------------------------*/
@media only screen and (max-width: 1400px) and (min-width: 980px) {
    /*-----------------*/
    .b-picture2 {
        height: 155px;
    }
    /*-----------------*/
    .b-pilot .pilot__2 {
        top: 72px;
        right: 75px;
    }
    .b-pilot .pilot__3 {
        top: 75px;
        right: 360px;
        left: auto;
    }
    .b-pilot .pilot__4 {
        top: 19px;
    }
    /*-----------------*/
    .b-sandwich {
        width: auto!important;
        display: block!important;
        top: 73px!important;
        left: 12px!important;
        right: auto!important;
    }
    .hide-on-tablet {
        display: none !important;
    }
    .b-search_head {
        top: 55px;
        right: 0;
    }
    .b-sandwich .sandwich__img {
        margin-right: 0!important;
    }
    .b-sandwich .sandwich__btn {
        border-color: transparent!important;
        border: none!important;
        background-color: transparent;
    }
    /*---------------------------------*/
    .b-logo {
        top: 68px;
        left: 80px;
    }
    /*---------------------------------*/
    .b-free-practice::after {
        display: none;
    }
    .b-free-practice span {
        background-color: transparent;

    }
    /*---------------------------------*/
    .b-zifra-prod {
        text-align: center;
    }
    .b-zifra-prod .zifra-prod__text {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 13px;
    }
    .b-zifra-prod .zifra-prod__logo {
        width: 110px;
    }
    .b-zifra-prod--sidebar {
        text-align: left;
    }
    /*---------------------------------*/
    .b-header-contacts {
        display: block;
        text-align: right;
    }
    .b-header-contacts .header-contacts__phone:link,
    .b-header-contacts .header-contacts__phone:visited,
    .b-header-contacts .header-contacts__phone:active,
    .b-header-contacts .header-contacts__phone:hover {
        margin-right: 0;
        display: block;
        font-size: 19px;
        margin-bottom: 9px;
    }
    .b-header-contacts .header-contacts__email:link,
    .b-header-contacts .header-contacts__email:visited {
        padding-right: 0;
    }
    /*---------------------------------*/
    .l-grid {
        height: 420px;
    }
    .l-footerbox-stop {
        margin-bottom: 420px;
    }
    .l-grid .grid__item1 {
        right: auto;
        bottom: 85px;
        left: 180px;
        width: 200px;
    }
    .l-grid .grid__item2 {
        top: 650px;
        right: 20px;
        text-align: right;
    }
    .l-grid .grid__item3 {
        top: 45px;
       left: auto;
       right: 30px;
       text-align: right;
    }
    .l-grid .grid__item4 {
        left: 53px;
        top: 48px;
    }
    .l-grid .grid__item5 {
        display: none;
    }
    .l-grid .grid__item6 {
        left: auto;
        right: 30px;
        bottom: 100px;
    }
    .l-grid .grid__item7 {
        bottom: 30px;
    }
    .l-grid .grid__item8 {
        bottom: 90px;
        left: 30px;
        text-align: right;
    }
    .l-grid .grid__item8 .b-social-btn {
        display: block;
        margin-top: 20px;
        text-align: left;
    }
    /*---------------------------------*/
    .l-footerbox .footerbox__bottom {
        height: 160px;
    }
    /*---------------------------------*/
    .b-social--footer {
        width: 100%;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .b-social--footer .social__item {
        margin-right: 0;
        margin-left: 25px;
    }
    /*---------------------------------*/
    .b-footer-contacts .footer-contacts__social {
        margin-top: 15px;
    }
    /*---------------------------------*/
    .b-foot-logo {
        margin-bottom: 80px;
    }
    /*---------------------------------*/
    .l-header_fixed .b-sandwich {
        top: 0 !important;
        right: 15px !important;
        left: auto !important;
    }
    /*---------------------------------*/
    .l-footerbox::after {
        width: 553px;
        height: 300px;
        top: -43px;
        right: -165px;
    }
    /*---------------------------------*/
    .b-advantages .advantages__list {
        margin: 0 -15px;
    }
    .b-advantages .advantages__item {
        padding: 0 15px;
    }
    /*---------------------------------*/
    .b-category .category__list {
        max-width: 1020px;
        margin: 0 auto;
    }
    .b-category .category__item {
        width: calc(33.333% - 14px)
    }
    .b-category .category__item:not(:nth-child(4n)) {
        margin-right: 0;
    }
    .b-category .category__item:not(:nth-child(3n)) {
        margin-right: 20px;
    }
    /*---------------------------------*/
    .b-news--vertical {
        float: none;
        width: 100%;
    }
    .b-news--vertical .news__list {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px;
    }
    .b-news--vertical .news__item {
        box-sizing: border-box;
        width: 100%;
        padding: 0 20px;
        background: none;
    }
    .b-news--publish .news__list {
        margin: 0;
      }
    .b-news--vertical .news__content {
        border-bottom: 1px solid #f2f2f2;
        min-height: 95px;
    }
    /*---------------------------------*/
    .b-news--horizontal {
        width: 100%;
        float: none;
    }
    /*---------------------------------*/
    .b-news--publish {
        width: 100%;
        float: none;
    }
    /*---------------------------------*/
    .b-tasks .tasks__wrap {
        -webkit-box-align: stretch;
        align-items: stretch;
    }
    /*---------------------------------*/
    .b-resources .resources__icons {
        flex-wrap: wrap;
    }
    .b-resources .resources__item {
        width: 50%;
        border-bottom: 1px solid #f2f2f2;
    }
    .b-resources--items3 .resources__item {
        width: 100%;
    }
    /*---------------------------------*/
    .b-results .results__list {
        flex-wrap: wrap;
    }
    .b-results .results__item {
        width: 33.33%;
        margin-bottom: 20px;
    }
    /*---------------------------------*/
    .b-version {
        background: #f3f3f3;
    }
    .b-version::after {
        right: -130px;
    }
    .b-version .version__col-left {
        background: transparent;
    }
    /*---------------------------------*/
    .l-header_fixed {
        height: 50px;
    }
    /*---------------------------------*/
    .b-footer-contacts .footer-contacts__social {
        margin-top: 0px !important;
    }
    /*---------------------------------*/
    .b-enumeration .enumeration__inner {
        flex-wrap: wrap;
        margin: 50px auto 50px;
        max-width: 800px;
    }
    .b-enumeration--cloud .enumeration__inner {
        max-width: none;
    }
    /*---------------------------------*/
    .b-tasks a.tasks__link:link,
    .b-tasks a.tasks__link:visited {
        min-width: 215px;
    }
    /*---------------------------------*/


}
/*---------------------------------*/
@media only screen and (max-width: 1387px) and (min-width: 1240px) {
    .b-opportunities .swiper-container-horizontal>.swiper-scrollbar {
        width: 245px;
    }
    /*---------------------------------*/
    .b-dispatcher .dispatcher__text {
        width: calc(100% - 580px);
    }
    .b-dispatcher .dispatcher__img {
        width: 580px;
    }
    /*---------------------------------*/
}
/*---------------------------------*/
@media only screen and (max-width: 1239px) and (min-width: 980px) {
    /*---------------------------------*/
    .b-dispatcher {
        position: relative;
        min-height: 655px;
        margin-bottom: 60px;
    }
    .b-dispatcher::after {
        top: 75px;
    }
    .b-dispatcher .dispatcher__title {
        font-size: 56px;
    }
    .b-dispatcher .dispatcher__subtitle {
        position: absolute;
        top: 56px;
        left: calc(100% - 595px);
        line-height: 1;
        font-size: 24px;
        padding-left: 35px;
    }
    .b-dispatcher .dispatcher__steps {
        display: block;
        margin: 0;
    }
    .b-dispatcher .dispatcher__step {
        width: 100%;
        padding: 0;
    }
    .b-dispatcher .dispatcher__text {
        width: calc(100% - 595px);
        padding-top: 55px;
    }
    .b-dispatcher .dispatcher__img {
        width: 595px;
        height: 540px;
        margin-top: 130px;
    }
    /*---------------------------------*/
    .b-submenu .submenu__list {
        flex-wrap: wrap;
    }
    .b-submenu .submenu__item {
        width: 33.33%;
        margin-bottom: 1px;
    }
    /*---------------------------------*/
    .b-opportunities .opportunities__title {
        margin-bottom: 0;
    }
    .b-opportunities .opportunities__carousel {
        padding-top: 95px;
        padding-bottom: 20px;
    }
    .b-opportunities .opportunities__inner {
        display: block;
    }
    .b-opportunities .opportunities__img {
        width: 100%;
        text-align: center;
    }
    .b-opportunities .opportunities__img img {
        width: 100%;
    }
    .b-opportunities .opportunities__desc {
        width: 100%;
        padding-top: 50px;
        padding-left: 0;
    }
    .b-opportunities .opportunities__arr {
        top: 42px;
    }
    .b-opportunities .swiper-container-horizontal>.swiper-scrollbar {
        top: 53px;
        left: 137px;
        width: auto;
    }
    .b-opportunities .opportunities__pagination {
        top: 0;
        left: 0;
        margin-left: 0;
    }
    /*---------------------------------*/
    .b-plus .plus__wrap {
        display: block;
    }
    .b-plus .plus__col {
        width: 100%;
    }
    .b-plus .plus__col--right {
        border-left: 0;
        border-top: 1px solid #f4f4f4;
    }
    /*---------------------------------*/
    .b-pilot .pilot__5 {
        display: block;
        top: 130px;
        left: 115px;
    }
    .pilot__5 .b-region-contact--has::before {
        left: 12px;
    }
    .pilot__5 .b-head-contacts .head-contacts__city {
        display: none;
    }
    /*---------------------------------*/
    .b-sidebar-contacts .head-contacts__city {
        display: flex;
    }
    .b-sidebar-contacts .head-contacts__city span {
        margin-left: 20px;
        font-weight: 700;
    }
    /*---------------------------------*/
}
/*--------------------------*/
@media only screen and (max-width: 2560px) and (min-width: 1700px) {
    .b-effective-production .effective-production__button {
        position: absolute;
        right: 70px;
    }
}
/*--------------------------*/
@media only screen and (max-width: 1400px) and (min-width: 768px) {
    .b-effective-production {
        background-image: url('/files/110/table-img.jpg');
    }
    .b-effective-production .effective-production__wrapper {
        flex-flow: column;
    }
    .b-effective-production .effective-production__left {
        width: 100%;
        margin-right: 0;
    }
    .b-effective-production .effective-production__content--tabletnone,
    .b-effective-production .effective-production__button--tabletnone {
        display: none;
    }
    .b-effective-production .effective-production__button {
        text-align: left;
        width: auto;
    }
    .b-effective-production .effective-production__tabletbox {
        display: block;
    }
    .b-effective-production .effective-production__tabletbox {
        display: flex;
        flex-flow: nowrap row;
        width: 100%;
    }
    .b-effective-production .effective-production__awards {
        width: calc(100% - 540px);
    }
    .b-effective-production .effective-production__content {
        width: calc(100% - 178px);
        justify-content: end;
    }
    .b-effective-production .effective-production__descr {
        max-width: 100%;
    }
    .b-effective-production .effective-production__descr-value {
        text-align: left;
    }
    .b-effective-production .effective-production__item:last-child {
        display: none;
    }
    /*----------------------------*/
    .b-factory-smart .factory-smart__wrapper {
        flex-flow: column;
    }
    .b-factory-smart .factory-smart__contents {
        width: 100%;
        display: flex;
        flex-flow: nowrap column;
    }
    .b-factory-smart a.factory-smart__link:link,
    .b-factory-smart a.factory-smart__link:active,
    .b-factory-smart a.factory-smart__link:visited {
        margin: 0 auto;
    }
    /*------------------------*/
    .b-up-efficiency .up-effeciency__text {
        font-size: 30px;
    }
}
@media  (min-width: 1360px) {
    .hide-on-bid-tablet {
        display: none !important;
    }
}
@media handheld, only screen and (max-width: 1360px) and (min-width: 768px) {

    .b-promo-banner .promo-banner__wrapper {
        padding: 50px 70px;
    }
    .b-promo-banner .promo-banner__top {
        flex-wrap: wrap;
    }
    .b-promo-banner .promo-banner__logo-effect {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .b-promo-banner .promo-banner__organizer {
        line-height: 30px;
        font-size: 14px;
        padding-left: 25px;
    }
    .b-promo-banner .promo-banner__logo-digit {
        margin-right: 180px;
    }
    .b-promo-banner .promo-banner__logo-digit .romo-banner__logo-img {
        width: 200px;
    }
    .b-promo-banner .promo-banner__logo-digit img {
        width: 100%;
    }
    .b-promo-banner .promo-banner__logo-tsat .romo-banner__logo-img {
        width: 73px;
    }
    .b-promo-banner .promo-banner__logo-tsat img {
        width: 100%;
    }
    .b-promo-banner .promo-banner__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .b-promo-banner .promo-banner__content {
        order: 1;
        margin-right: 0;
        margin-bottom: 35px;
    }
    .b-promo-banner .promo-banner__ether {
        margin-right: 0;
        order: 0;
        margin-bottom: 20px;
    }
    .b-promo-banner .promo-banner__reg {
        order: 2;
    }
    .b-promo-banner .promo-banner__organizer--co {
        background: #76B043;
    }
    a.btn-reg:link,
    a.btn-reg:visited,
    a.btn-reg:active {
        width: 310px;
        border: 2px solid #76B043;
        background: #76B043;
        transition: background 0.1s linear,color 0.1s linear;
    }
    a.btn-reg:hover {
        background: transparent;
    }
}
@media screen and (min-width:768px) and (max-width:1240px) {
  .b-consultation-enterprises{
    background-position: 40% 100%;
    background-size: cover;
  }
  .b-consultation-enterprises .consultation-enterprises__container{
    flex-flow: column;
  }
  .b-consultation-enterprises .consultation-enterprises__job{
    margin-bottom: 10px;
  }
  .b-consultation-enterprises .consultation-enterprises__texts{
    text-align: center;
    margin-bottom: 20px;
  }
}
