@font-face {
    font-family: "PFRegular";
    font-display: swap;
    font-weight: normal;
    font-style: normal;
    src: url("../_assets/fonts/pfdintextcondpro-regular.woff"),
         url("../_assets/fonts/pfdintextcondpro-regular.ttf");
}

@font-face {
    font-family: "PFBold";
    font-display: swap;
    font-weight: normal;
    font-style: normal;
    src: url("../_assets/fonts/pfdintextcondpro-bold.woff"),
         url("../_assets/fonts/pfdintextcondpro-bold.ttf");
}

@font-face {
    font-family: "PFMedium";
    font-display: swap;
    font-weight: normal;
    font-style: normal;
    src: url("../_assets/fonts/pfdintextcondpro-medium.woff"),
         url("../_assets/fonts/pfdintextcondpro-medium.ttf");
}
@font-face {
    font-family: "PF-Din-Text-Cond-Pro";
    font-display: swap;
    font-weight: normal;
    font-style: normal;
    src: url("../_assets/fonts/PF-Din-Text-Cond-Pro.woff"),
         url("../_assets/fonts/PF-Din-Text-Cond-Pro.ttf");
}

/* popup */
.popup-Application{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    cursor: default;
	transition: 1s;
}

.popup-Application .cross{
    width: 16px;
    height: 16px;
    position: absolute;
    top: -22px;
    right: -22px;
    cursor: pointer;
	z-index:1001;
}
.popup-Application .cross:hover{
    width:18px;
    height:18px;
    transition:.2s;
    top: -24px;
    right: -24px;
}

.popup-Application .background_black_bg{
    cursor: pointer;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.55);
}

.popup-Application.active{display:flex;}
.popup-Application.disable{display:none;}

.popup-Application .container{
	position:relative;
    display: flex;
    flex-direction: column;
    width: 900px;
    height: 550px;
}
.popup-Application .content{
    display: flex;
    justify-content: space-between;

    position: relative;
    width: 100%;
    height: 100%;
}
.popup-Application .content img{
    z-index: 1001;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.popup-Application .content .content_block{
    z-index: 1002;
    width: 60%;
    padding: 70px 0 70px 50px;
}
.popup-Application .content .content_block h1{
    font-size: 25px;
    color: #FC8A11;
}
.popup-Application .content .content_block p{
    font-size: 24px;
    color: #fff;
}

.popup-Application .content .form_block{
    z-index: 1002;
    width: 40%;
    background-color: rgba(0, 0, 0, .6);
    padding: 20px 40px;
}
.popup-Application .content .form_block h1{
    font-size: 18px;
    line-height: 109%;
    color: #fff;
    margin-bottom: 16px;

}

.popup-Application form .input_cont{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(228, 228, 228, 0.5);
    border-radius: 5px;
    margin-bottom: 10px;
}

.popup-Application form .input_cont p{
    font-size: 15px;
    color: rgba(228, 228, 228, 0.5);
    margin-right: 10px;
    white-space: nowrap;
    margin-right: 10px;
}

.popup-Application form .input_cont input{
    width: 100%;
    font-size: 15px;
    color: #fff;
    border: none;
    background-color: rgba(0,0,0,0);
    outline:none;

}
.popup-Application form .input_cont input::placeholder{
    color: rgba(228, 228, 228, 0.5);
}

.popup-Application form .checkbox_cont{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 12px;
}

.popup-Application form .checkbox_cont input{
    margin-right: 10px;
}

.popup-Application form .checkbox_cont a{
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    color: rgba(228, 228, 228, 0.5);
}

.popup-Application form .checkbox_cont a:hover{
    transition: .2s;
    color: #fff;
}
.popup-Application form .file_to_send{
    display: none;
}

.popup-Application form .submit_btn{
    color: #fff;
    background-color: #A80000;
    border: none;
    padding: 12px 22px;
    border-radius: 5px;
	margin-top:12px;
}
.popup-Application form .submit_btn:hover{
    transition: .2s;
    background-color: #7e0404;
}

.popup-Application .bottom_line{
    display: flex;
    justify-content: center;
    z-index: 1001;
    width: 100%;
    padding: 36px 0;
    background-color: #fff;
}
.popup-Application .open_form{
    display: none;
}

/* popup */


/*popup*/
@media(max-width:900px){
    .popup-Application .container{
        width: 320px;
        height: unset;
    }
    .popup-Application .content .content_block{
        width: 100%;
        padding: 24px 10px;
    }
    .popup-Application .content .content_block p{
        margin-bottom: 36px;
    }
    .popup-Application .content{
        justify-content: flex-start;

    }
    .popup-Application .content .form_block.disable{
        display: none;
    }
    .popup-Application .content .form_block.active{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 39px 11px;
    }
    .popup-Application .bottom_line{
        padding: 10px; 
    }
    .popup-Application .open_form{
        display: block;
        box-sizing: border-box;
        color: #fff;
        background-color: #A80000;
        border: none;
        padding: 12px 22px;
        border-radius: 5px;
        margin-top: 16px;
    }
    .popup-Application .open_form:hover{
        transition: .2s;
        background-color: #7e0404;
    }
    .popup-Application .cross{
        right: 0;

    }
    .popup-Application .cross:hover{
        right: 0;
    }
};
/*popup*/




body {
    background-color: #e5e5e5;
    font-size: 16px;
    font-family: "PFRegular", sans-serif;
    color: #323232;
}

body.modal-active {
    overflow: hidden;
}

img.responsive {
    max-width: 100%;
}

a {
    color: #060606;
    text-decoration: none;
  
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.centered {
    text-align: center;
}

.limiter {
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
}

h1.title {
    font-size: 60px;
    color: #FFFFFF;
    margin: 0;
    -webkit-margin-before: 0;
    margin-block-start: 0;
    -webkit-margin-after: 0;
    margin-block-end: 0;
}

h1.title.black {
    color: #323232;
}

h2.title {
    font-size: 36px;
    color: #323232;
    margin: 0;
    -webkit-margin-before: 0;
    margin-block-start: 0;
    -webkit-margin-after: 0;
    margin-block-end: 0;
}

span.bold {
    font-weight: bold;
}

.btn-red {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 12px 30px 10px;
    border-radius: 4px;
    background-color: #A80000;
    color: #FFFFFF;
}
a.btn-red.spec_section{
    font-size: 22px; /*k*/
    padding: 12px 30px 12px;
}

.btn-red:not(.menu-btn__link) {
    font-size: 14px;
    height: auto !important;
    line-height: 99.9%;
}

.btn-red:hover,
.btn-red.hover {
    background-color: #BC1010;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-red:focus,
.btn-red:active,
.btn-red.click {
    background-color: #940000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-red.big {
    padding: 13px 37px 10px;
    font-size: 16px;
}

.btn-red.disabled {
    pointer-events: none;
    background-color: rgba(168, 0, 0, 0.24);
}

.btn-dark {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-dark:hover {
    background-color: #3f3f3f;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sliderNav {
    position: absolute;
    right: 40px;
    top: 40px;
    width: 80px;
    height: 40px;
    border-radius: 4px;
    background-color: #FFFFFF;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}

.arrow {
    background-position: center;
    background-repeat: no-repeat;
    width: 7px;
    height: 11px;
}

.arrow::before {
    content: '';
    position: absolute;
    width: 40px;
    left: 0;
    top: 0;
    height: 40px;
}

.sliderNav-right::before {
    left: auto;
    right: 0;
}

.sliderNav-left {
    background-image: url("../images/default/slider-l.svg");
    margin-right: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sliderNav-left:hover {
    background-image: url("../images/default/slider-l-active.svg");
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sliderNav-line {
    height: 20px;
    width: 1px;
    background-color: rgba(50, 50, 50, 0.15);
}

.sliderNav-right {
    background-image: url("../images/default/slider-r.svg");
    margin-left: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sliderNav-right:hover {
    background-image: url("../images/default/slider-r-active.svg");
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.callback-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 10;
    background-color: #FFFFFF;
    background-image: url("../images/header/callback_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    right: 40px;
    bottom: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
}

.callback-icon:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.backToTop-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 10;
    background-color: #FFFFFF;
    background-image: url("../images/header/arrowTop.png");
    background-repeat: no-repeat;
    background-position: center;
    right: 40px;
    bottom: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    cursor: pointer;
}

.backToTop-icon:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.pagination {
    display: inline-block;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    padding-bottom: 7px;
}

.pagination-item {
    padding: 0 2px 7px;
    border-bottom: 3px solid transparent;
    margin-right: 15px;
    color: #1a1a1a;
    cursor: pointer;
}

.pagination-item:last-child {
    margin-right: 0;
}

.pagination-item.current {
    color: #A80000;
    border-color: #A80000;
}

h1.main-title {
    font-size: 36px;
    color: #323232;
    line-height: 106%;
}

h1.art-title,
h2.art-title,
h3.art-title,
h4.art-title,
h5.art-title {
    font-family: "PFMedium", sans-serif;
    color: #323232;
    padding-bottom: 30px;
}

h1.art-title {
    font-size: 60px;
    line-height: 71px;
}

h2.art-title {
    font-size: 36px;
    line-height: 44px;
}

h3.art-title {
    font-size: 24px;
    line-height: 28px;
}

h4.art-title {
    font-size: 18px;
    line-height: 22px;
}

h5.art-title {
    font-size: 16px;
    line-height: 17px;
}

.menu {
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 310px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    padding-right: 40px;
    z-index: 10;
    padding-bottom: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-subject {
    margin-top: auto;
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 220px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menu-subject__photo {
    margin-right: 20px;
    width: 70px;
    border: 1px solid #323232;
    height: 98px;
}

.menu-subject__descr-title {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 150%;
}

.menu-subject__descr-download a {
    color: #A80000;
    text-decoration: underline;
    font-size: 16px;
}

.menu-tel {
    position: absolute;
    left: 40px;
    bottom: 40px;
    right: 40px;
}

.menu-tel .header-toprow__callback-btn {
    background-color: #EBEBEB;
    width: 50px;
    height: 50px;
}

.menu-tel .header-toprow__callback-text span:nth-child(1) {
    font-size: 18px;
}

.menu-tel .header-toprow__callback-text span:nth-child(2) {
    font-size: 23px;
    font-family: "PFRegular", sans-serif;
    font-weight: 300;
}

.menu-logo {
    width: 200px !important;
    height: 85px;
    /* background: url('../images/default/logo.png') no-repeat center; */
    background-size: 100% 100%;
    padding: 0;
}

.menu-btn {
    padding: 0;
    padding-left: 30px;
    margin-top: 17px;
}

.menu-btn span {
    text-transform: uppercase;
    font-size: 23px;
    margin-top: 5px;
    font-family: "PFRegular", sans-serif;
}

.menu-btn a {
    opacity: .99;
    z-index: 3;
    cursor: pointer;
}

.menu-btn a.active {
    background-color: #ededed;
    opacity: .99;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-nav {
    max-height: 100%;
    overflow-y: auto;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.menu-nav::-webkit-scrollbar {
    display: none;
}

.menu-nav__item {
    color: rgba(50, 50, 50, 0.62);
    padding: 3px 0px 3px 40px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.menu-nav__item:before {
    content: '';
    background-color: transparent;
    height: 100%;
    width: 4px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-nav__item:hover {
    color: #323232;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-nav__item:hover::before {
    background-color: #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-nav__item.opened:before {
    background-color: rgba(50, 50, 50, 0.62);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-feedback {
    position: absolute;
    left: 40px;
    bottom: 120px;
    right: 40px;
}

.menu-feedback__link {
    width: 230px;
    height: 60px;
    background-color: #323232;
    color: #FFFFFF;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-feedback__link img {
    padding-right: 15px;
}

.menublock {
    visibility: hidden;
    position: fixed;
    background-color: #FFFFFF;
    bottom: 20px;
    left: 340px;
    right: 100px;
    max-width: 1300px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 999;
    top: 118px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.menublock.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menublock-left {
    width: 500px;
    height: 100%;
    background-color: #323232;
    color: #FFFFFF;
}

.menublock-left__title {
    padding: 20px 0 100px 40px;
}

.menublock-left__title span {
    display: block;
}

.menublock-left__title span:nth-child(1) {
    color: rgba(255, 255, 255, 0.38);
    padding-bottom: 10px;
}

.menublock-left__title span:nth-child(2) {
    font-size: 43px;
    font-family: "PFMedium", sans-serif;
}

.menublock-left .menu-nav a {
    color: #FFFFFF;
    transition: .3s;
}

.menublock-left .menu-nav a:hover {
    color: #A80000;
    transition: .3s;
}

.menublock-left .menu-nav a:hover::before {
    background-color: #FFFFFF;
}

.menublock-right {
    width: 800px;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: scroll;
}

.menublock-right__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px;
    padding-right: 0;
}

.menublock-right__list-title {
    padding-bottom: 10px;
    color: #A80000;
}

.menublock-right__list-link {
    text-decoration: underline;
    font-size: 23px;
    line-height: 143%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menublock-right__list-link:hover {
    color: #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menublock-right__list-sublink {
    font-size: 14px;
    position: relative;
    padding-left: 8px;
}

.menublock-right__list-sublink::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #323232;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.menublock-right__list-sublink:hover::before {
    background-color: #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-mask {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(50, 50, 50, 0.62);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}

.menu-mask.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-where {
    position: absolute;
    bottom: 100px;
}

.menu-where__subtitle {
    padding-left: 40px;
    font-size: 0.85em;
    color: rgba(50, 50, 50, 0.62);
    padding-bottom: 5px;
}

.menu-where__title {
    position: relative;
    font-size: 1.65em;
    max-width: 250px;
    padding-left: 40px;
}

.menu-where__title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 4px;
    background-color: #A80000;
    height: 100%;
}

.menu-where__link {
    margin-left: 40px;
    width: 90px;
    height: 30px;
    border-radius: 4px;
    border: 2px solid #A80000;
    color: #A80000;
    line-height: 30px;
    text-align: center;
    margin-top: 5px;
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block;
}

.menu-where__link:hover {
    background-color: #A80000;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.products .menu-btn {
    padding-bottom: 20px;
}

.products .menu-nav__item:hover::before {
    background-color: rgba(50, 50, 50, 0.62);
}

.header {
    padding-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    overflow: hidden;
    border-radius: 4px;
}
.header.limiter {
    overflow: visible;
}
.header.isnt-main {
    height: 100%;
}

.header-toprow {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding-right: 60px;
    margin-bottom: 20px;
}

.header-toprow__find {
    display: block;
    margin-left: auto;
    margin-right: 20px;
    cursor: pointer;
    /*align-self: center;*/
}
.personal-button {
    border: none;
    padding: 8px 18px;
    outline: none;
}
.modal-personal__wrap {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.modal-personal__button {
    width: 200px;
    margin-bottom: 20px;
}

.header-toprow__callback {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40px;
}

.header-toprow__callback-btn {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
    background-image: url("../images/header/callback_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
}

.header-toprow__callback-text {
    min-width: 130px;
}

.header-toprow__callback-text span {
    display: block;
}

.header-toprow__callback-text span:nth-child(1) {
    color: rgba(50, 50, 50, 0.62);
    font-size: 0.71em;
    padding-bottom: 3px;
}

.header-toprow__callback-text span:nth-child(2) {
    font-weight: bold;
}

.header-toprow__lang {
    height: 28px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.header-toprow__lang.active {
    height: 87px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #FFFFFF;
    border-radius: 4px;
}

.header-toprow__lang.active span {
    border-radius: 0;
    cursor: pointer;
}

.header-toprow__lang.active span img {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-toprow__lang.active span:hover {
    background-color: #d9d9d9;
}

.header-toprow__lang span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 5px 5px;
    -webkit-transition: background-color .5s ease-in-out;
    transition: background-color .5s ease-in-out;
    border-radius: 4px;
}

.header-toprow__lang span:hover {
    background-color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-toprow__lang span img {
    opacity: 0;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-toprow__lang span:nth-child(1) img {
    opacity: 1;
}

.header-breadcrumbs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-margin-before: 0;
    margin-block-start: 0;
    -webkit-margin-after: 0;
    margin-block-end: 0;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
}

.header-breadcrumbs__item {
    list-style: none;
    margin: 0 5px;
}

.header-breadcrumbs__item a {
    list-style: none;
    color: rgba(50, 50, 50, 0.38);
    font-size: 16px;
    padding: 0 10px;
    position: relative;
}

.header-breadcrumbs__item a::after {
    content: '/';
    position: absolute;
    color: rgba(50, 50, 50, 0.38);
    font-size: 16px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-breadcrumbs__item a:first-child {
    padding-left: 0;
}

.header-content {
    background-size: cover;
    background-position: center;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;/**/
    height: 100%;
    -webkit-box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #323232;
    z-index: 1;
}

.header-content-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 1;
}

.header-content-backgrounds img:nth-child(2) {
    display: none;
}

.header-content__title {
    padding-left: 40px;
    padding-top: 40px;
    max-width: 587px;
    position: relative;
    z-index: 1;
}

.header-content__title h1.title {
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 25px;
}

.header-content__title h1.title::after {
    content: '';
    height: 5px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.24);
    position: absolute;
    left: 0;
    bottom: 0;
}

.header-content__title-text {
    font-size: 24px;
    color: white;
    padding-bottom: 26px;
    position: relative;
    z-index: 1;
}

.header-content__title-play {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0;
}

.header-content__title-play a {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    background-image: url("../images/header/play_icon.svg");
    background-position: 29px center;
    background-repeat: no-repeat;
    margin-right: 20px;
    background-size: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-content__title.header-content__title_about{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0px;
}
.header-content__title.header-content__title_about .header-content__title-play a{
    margin-right: 0px;
    cursor: pointer;
}


.header-content__title-play a.playing {
    background-size: 27%;
    background-image: url('../images/default/pause.svg');
    background-position: center center;
}

.header-content__title-play a:hover {
    background-size: 27%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-content-list {
    position: relative;
    z-index: 1;
    padding: 0 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 40px;
    padding-top: 40px;
    
}
.about-section__benefits{
    background-color: #fff;
    margin-top: 40px;
}
.about-section__benefits .header-content-list{
    padding: 0px;;
}
.header-content-list__item {
    text-align: center;
    width: 18.5%;
}

.header-content-list .hcl__item-photo {
    padding-bottom: 30px;
    border-bottom: 1px solid #484747;
    margin-bottom: 5px;
}

.header-content-list .hcl__item-title {
    font-size: 20px;
    color: #484747;
    line-height: 150%;
}

.header-content-links {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding-top: 70px;
}

.header-content-links span {
    display: block;
    padding-left: 40px;
    padding-bottom: 10px;
    color: rgba(255, 255, 255, 0.62);
}

.header-content-links-wrap {
    max-width: 100%;
    overflow-x: auto;
    padding: 20px 0 40px 40px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header-content-links-wrap::-webkit-scrollbar {
    display: none;
}

.header-content-links__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 120px;
    min-width: 120px;
    min-height: 120px;
    margin-left: 5px;
    margin-right: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.header-content-links__item img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-content-links__item span {
    padding: 0;
    margin: 0;
    padding-top: 20px;
    font-size: 20px;
    max-width: 120px;
    line-height: 120%;
    letter-spacing: -1px;
    color:   #484747;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-content-links__item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-content-links__item:hover span {
    margin-left: 2px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-content-links__item:hover:nth-child(1) img {
    -webkit-box-shadow: 0px 9px 15px #483A3C;
    box-shadow: 0px 9px 15px #483A3C;
}

.header-content-links__item:hover:nth-child(2) img {
    -webkit-box-shadow: 0px 9px 15px rgba(193, 44, 61, 0.62);
    box-shadow: 0px 9px 15px rgba(193, 44, 61, 0.62);
}

.header-content-links__item:hover:nth-child(3) img {
    -webkit-box-shadow: 0px 9px 15px rgba(43, 23, 30, 0.62);
    box-shadow: 0px 9px 15px rgba(43, 23, 30, 0.62);
}

.header-content-links__item:hover:nth-child(4) img {
    -webkit-box-shadow: 0px 9px 15px #222426;
    box-shadow: 0px 9px 15px #222426;
}

.header-content-links__item:hover:nth-child(5) img {
    -webkit-box-shadow: 0px 9px 15px #222426;
    box-shadow: 0px 9px 15px #222426;
}

.header-bg-mask {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(50, 50, 50, 0.55);
}

.scroll-btn {
    position: absolute;
    bottom: 40px;
    right: 50px;
    width: 22px;
    height: 60px;
    background-image: url("../images/header/scroll_icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

#langDropDown {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#langDropDown.active {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.products .header-content {
    position: relative;
}

.products .header-content__title {
    max-width: 100%;
}

.products .header-content__title h1.title {
    margin: 0;
    padding: 0;
}

.products .header-content__title h1.title::after {
    display: none;
}

.products .header-content__title-subtitle {
    color: rgba(255, 255, 255, 0.62);
    padding-bottom: 45px;
}

.products .header-content__title-text {
    font-size: 30px;
    color: #FFFFFF;
    padding-bottom: 10px;
}


/* .products .header-content__title-play {
  width: 160px;
  height: 40px;
  background-color: #A80000;
  border-radius: 4px;
  color: #FFFFFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
} */


/* .products .header-content__title-play:hover {
  background-color: #8f0000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
} */

.products .header-content__descr {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 40px;
    padding-bottom: 30px;
    max-width: 630px;
}

.products .header-content__descr span {
    display: inline-block;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
}

.products .header-content__link {
    margin: 0 0 40px 40px;
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.products .header-content__link:hover {
    background-color: #d9d9d9;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.documents-list {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #FFFFFF;
    z-index: 2;
    max-width: 350px;
    max-height: 450px;
    text-align: right;
}

.documents-list__toggle {
    color: #FFFFFF;
    border-bottom: 1px dashed #FFFFFF;
    cursor: pointer;
    display: inline-block;
}

.documents-list__toggle::before {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url("../images/main-content/documents-square-icon.svg");
    position: absolute;
    right: 110px;
    top: -8px;
    margin-right: 10px;
}

.documents-list__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #000000;
    border-radius: 4px;
    max-width: 350px;
    max-height: 400px;
    height: 100%;
    overflow-y: scroll;
    margin-top: 20px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.documents-list__block::after {
    content: '';
    width: 20px;
    height: 10px;
    background-image: url("../images/main-content/triangle.svg");
    position: absolute;
    bottom: 100%;
    right: 70px;
    display: block;
}

.documents-list__block.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.dlb-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 300px;
    width: 100%;
    min-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 30px 20px 30px;
    min-height: 120px;
}

.dlb-item-left {
    max-width: 100px;
    max-height: 140px;
    overflow: hidden;
    margin-right: 20px;
}

.dlb-item-right {
    text-align: left !important;
}

.dlb-item-right span {
    display: block;
    padding-bottom: 5px;
}

.dlb-item-right label {
    display: block;
    color: rgba(255, 255, 255, 0.38);
    padding-bottom: 5px;
}

.dlb-item-right a {
    display: block;
    width: 60px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #FFFFFF;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.dlb-item-right a:hover {
    background-color: #00A861;
    border: 1px solid #00A861;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item .header {
    height: 100%;
}

.item .header-content {
    background-image: url("../images/main-content/item-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 500px;
    color: #FFFFFF;
    position: relative;
}

.item .header-content h2.title {
    color: #FFFFFF;
    padding-bottom: 145px;
}

.item .header-content__mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #323232;
    opacity: .5;
    z-index: -1;
}

.item .header-btns {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding:0px;/*padding: 0 40px 40px 40px; k*/
}
body.materials .header-content .header-btns{
    width: 100%;
}
.item .top-zakaz  .header-btns__request-text span.online {
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
}
.top-zakaz  .top_section_name {
    max-width: 443px;
    color: #000000;
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    font-family: "PF-Din-Text-Cond-Pro";
}
.item .top-zakaz .header-btns__request-link { /*k+*/
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    font-family: "PF-Din-Text-Cond-Pro";
    padding: 12px 24px;
    color: #FFFFFF;
    background-color: #A80000;
}

.item .top-zakaz .header-btns__request-text::after {     /*k+*/
    top:0px;
    height: 75px;
    background-color: #000000;
}
.item  .top-zakaz  .header-btns__request-text {
    padding-right: 24px;
    margin-right: 24px;
}


.item .header-btns__back {
    color: white;
    margin-left: 40px;/*k+*/
    width: 100px;
    height: 30px;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item .header-btns__back:hover {
    background-color: #FFFFFF;
    color: #323232;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item .header-btns__request {
    background: linear-gradient(269.99deg, #FFFFFF 21.85%, rgba(255, 255, 255, 0) 99.9%);/*k+*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px; /*ik*/
}

.item .header-btns__request-text {
    text-align: right;
    padding-right: 30px;
    margin-right: 30px;
    position: relative;
}

.item .header-btns__request-text span {
    display: block;
}

.item .header-btns__request-text span:nth-child(1) {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.item .header-btns__request-text::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 1px;
    height: 50px;
    background-color: #FFFFFF;
}

.item .header-btns__request-link {
    padding: 10px 18px;
    background-color: #A80000;
    border-radius: 4px;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item .header-btns__request-link:hover {
    background-color: #8F0000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.term .header-content {
    background-image: url("../images/main-content/term-oborud.png");
}

.term .header-content__title {
    font-size: 60px;
    max-width: 70%;
    padding-bottom: 77px !important;
}

.about {
    -webkit-box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.about-info {
    width: 500px;
    background-color: #FFFFFF;
    position: relative;
}

.about-info__title {
    padding: 40px 0 40px 40px;
    font-family: "PFMedium", sans-serif;
}

.about-info__text {
    display: block;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
    color: rgba(50, 50, 50, 0.4);
    line-height: 143%;
}

.about-info__text:last-child {
    padding-bottom: 0;
}

.about-info__text span {
    font-family: "PFMedium", sans-serif;
}

.about-info__button {
    margin: 0 0 40px 40px;
    width: 140px;
    height: 40px;
    background-color: #A80000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
}

.about-slider .slick-track {
    height: 100%;
}

.about-slider .slick-list {
    height: 100%;
}

.about-slider .slick-slide>div {
    height: 100%;
}

.about-slider {
    width: 800px;
    height: 100%;
}

.about-slider__item {
    height: 100%;
}

.about-slider__item img {
    height: 100%;
}

.projects {
    height: 100%;
    min-height: 800px;
    max-height: 800px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.projects-info {
    width: 500px;
    background-color: #FFFFFF;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.projects-info__title {
    display: block;
    padding: 40px 0 40px 40px;
    max-width: 320px;
    line-height: 41px;
}

.projects-info__done {
    padding: 0 0 40px 0;
    margin-left: 40px;
    font-size: 96px;
    color: #323232;
    font-family: "PFBold", sans-serif;
    position: relative;
    display: block;
}

.projects-info__done::after {
    position: absolute;
    content: '';
    left: 10px;
    bottom: 0;
    width: 20px;
    height: 1px;
    background-color: rgba(50, 50, 50, 0.38);
}

.projects-info__text {
    padding: 30px 0 25px 40px;
    display: block;
    color: rgba(50, 50, 50, 0.6);
}

.projects-info__labels {
    padding: 0 40px 40px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.projects-info__labels-item {
    padding: 5px 10px;
    border: 1px solid rgba(50, 50, 50, 0.24);
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.projects-info__labels-item:hover {
    background-color: #A80000;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.projects-info__labels-item label:nth-child(1) {
    margin-right: 3px;
}

.projects-slider {
    width: 800px;
    background-color: #A80000;
}

.projects-slider__item {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.projects-slider__item-second {
    overflow-y: scroll;
}

.projects-slider__item-second {
    overflow-y: scroll;
    height: 800px;
}

.psi-title {
    padding: 40px 0 100px 40px;
    display: block;
    font-size: 36px;
    color: #FFFFFF;
}

.psi-map {
    padding: 0 0 30px 40px;
}

.psi-map img {
    padding-bottom: 90px;
}

.psi-counter {
    color: rgba(255, 255, 255, 0.62);
    padding-bottom: 20px;
}

.psi-info__title {
    font-size: 24px;
    color: #FFFFFF;
    padding-bottom: 5px;
    display: block;
}

.psi-info__subtitle {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.62);
    padding-bottom: 17px;
}

.psi-info__text {
    padding-top: 3px;
    padding-left: 30px;
    max-width: 465px;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
}

.psi-info__text::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #FFFFFF;
    width: 2px;
    height: 100%;
}

.psi-info__about {
    width: 120px;
    height: 40px;
    background-color: #FFFFFF;
    color: #323232;
    margin-left: auto;
    display: inline-block;
    margin-bottom: 40px;
    margin-left: 125px;
    text-align: center;
    vertical-align: middle;
    border-radius: 4px;
    line-height: 40px;
}

.projects-slider__item-second .psi-title {
    padding-bottom: 40px;
}

.projects-slider__item-second .psi-counter {
    padding-left: 40px;
}

.projects-slider__item-second .psi-map {
    padding-bottom: 50px;
}

.psi-nav {
    padding-left: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 40px;
}

.psi-nav img {
    margin-right: 10px;
}

.psi-nav span {
    color: #FFFFFF;
    padding: 5px 10px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    line-height: 15px;
}

.projects-gallery {
    padding-left: 40px;
    padding-right: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 40px;
}

.projects-gallery span {
    display: block;
    padding: 10px 0 20px 0;
    color: #FFFFFF;
    width: 100%;
}

.projects-variable {
    position: absolute;
    top: 40px;
    right: 160px;
    width: 160px;
    height: 40px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #323232;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.projects-variable__item {
    width: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #323232;
}

.projects-variable__item.active {
    background-color: #323232;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
}

.gkmp {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #FFFFFF;
    min-height: 499px;
    max-height: 500px;
    height: 100%;
}

.gkmp-title {
    padding: 40px 0 25px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gkmp-title__main {
    position: relative;
    padding-right: 20px;
}

.gkmp-title__main::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 50px;
    right: 0;
    top: -10px;
    background-color: rgba(50, 50, 50, 0.24);
}

.gkmp-title__sub {
    padding-left: 20px;
}

.gkmp-title__sub span {
    display: block;
    color: rgba(50, 50, 50, 0.62);
    font-family: "PFMedium", sans-serif;
}

.gkmp-subtitle {
    padding: 0 0 15px 40px;
    color: rgba(50, 50, 50, 0.38);
}

.gkmp-examples {
    padding: 0 40px 40px 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gkmp-examples__item {
    min-height: 300px;
    max-height: 310px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
}

.gkmp-examples__item span {
    font-size: 24px;
    font-family: "PFMedium", sans-serif;
    padding: 0 0 20px 20px;
    max-width: 190px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.gkmp-examples__item:nth-child(1) {
    background-image: url("../images/main-content/gkmp-1.png");
    background-position: center;
    background-size: cover;
    max-width: 400px;
    margin-right: 10px;
}

.gkmp-examples__item:nth-child(2) {
    background-image: url("../images/main-content/gkmp-2.png");
    background-position: center;
    background-size: cover;
}

.gkmp-examples__item-mask {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gkmp-examples__item:hover .gkmp-examples__item-mask {
    background-color: rgba(50, 50, 50, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gkmp-examples__item-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 340px;
    height: 70px;
    background-color: #A80000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 4px;
}

.gkmp-examples__item-btn span {
    font-size: 16px;
    padding-left: 20px;
    max-width: 100%;
    font-family: "PFRegular", sans-serif;
    margin-left: 15px;
    position: relative;
    padding-bottom: 0;
    padding-right: 15px;
}

.gkmp-examples__item-btn span::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 30px;
    width: 1px;
    background-color: #323232;
}

.gkmp-examples__item-btn span::after {
    content: '>';
    position: absolute;
    right: 0;
    color: #323232;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gkterm {
    position: relative;
}

.gkterm-examples__item {
    min-height: 300px;
    max-height: 310px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    background-image: url("../images/main-content/gkmp-3.png");
}

.gkterm-examples__item span {
    font-size: 24px;
    font-family: "PFMedium", sans-serif;
    padding: 0 0 20px 20px;
    max-width: 200px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.gkterm-examples__item:hover .gkmp-examples__item-mask {
    background-color: rgba(50, 50, 50, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.online-request {
    position: absolute;
    right: 40px;
    top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.online-request__text {
    text-align: right;
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
}

.online-request__text span {
    display: block;
}

.online-request__text span:nth-child(1) {
    font-size: 12px;
    color: rgba(50, 50, 50, 0.62);
}

.online-request__text span:nth-child(2) {
    color: #323232;
}

.online-request__text::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    height: 50px;
    width: 1px;
    background-color: rgba(50, 50, 50, 0.24);
}

.online-request__btn {
    text-align: center;
    line-height: 30px;
    background-color: #A80000;
    color: #FFFFFF;
    width: 110px;
    height: 30px;
    border-radius: 4px;
}

.gktech .gkterm-examples__item {
    background-image: url("../images/main-content/tech-1.png");
}

.gktech .gkterm-examples__item span {
    max-width: 280px;
}

.services {
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 4px;
}

.services-title {
    padding: 20px 0 30px 40px;
}

.services-subtitle {
    padding: 0 40px 30px 40px;
    max-width: 100%;
    color: rgba(50, 50, 50, 0.5);
}

.services-tab {
    margin-left: 40px;
    width: 175px;
    padding-bottom: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(50, 50, 50, 0.15);
}

.services-tab__choose,
.documents-tab__choose {
    color: #323232; 
    font-family: "PFMedium", sans-serif;
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.documents-tab__choose {
    margin-right: 10px;
}

.services-tab__choose.active,
.documents-tab__choose.active {
    color: #A80000;
}

.services-tab__choose.active::after,
.documents-tab__choose.active::after {
    width: 100%;
}

.services-block-1 {
    padding: 60px 40px 40px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: none;
}

.services-block-1.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.services-block__item {
    width: 190px;
    height: 190px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-image: url("../images/main-content/services-photo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.services-block__item span {
    color: #FFFFFF;
    padding: 0 0 20px 20px;
    max-width: 125px;
}

.services-block__item:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    margin-left: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.services-block-2 {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 60px 40px 40px 40px;
}

.services-block-2.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.documents {
    min-height: 500px;
    background-color: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.documents-title {
    padding: 40px 0 30px 40px;
}

.documents-tabs {
    width: 230px;
}

.documents-view {
    position: absolute;
    top: 40px;
    right: 40px;
    max-width: 60px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.documents-view a {
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.documents-view a:nth-child(1) {
    background-image: url("../images/main-content/documents-view-1-active.svg");
}

.documents-view a:nth-child(1):hover {
    background-image: url("../images/main-content/documents-view-1-active.svg");
}

.documents-view a:nth-child(2) {
    background-image: url("../images/main-content/documents-view-2.svg");
}

.documents-view a:nth-child(2):hover {
    background-image: url("../images/main-content/documents-view-2-active.svg");
}

.documents-block {
    justify-content: normal;
    padding: 40px 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
}

.documents-block.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.documents-block__item {
    padding-bottom: 5px;
}
.documents-block__item a img {
    max-width: 180px;
}

.documents-block__item span {
    line-height: 143%;
    color: rgba(50, 50, 50, 0.62);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: "PFRegular", sans-serif;
    border-bottom: 1px dashed transparent;
}

.documents-block__item span:hover {
    color: #323232;
    border-bottom: 1px dashed #323232;
    font-family: "PFBold", sans-serif;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.documents-block__item span:hover .count {
    color: #323232;
}

.documents-block__item span .count {
    margin-right: 3px;
}

.documents-block__item img {
    display: none;
}

.documents.active-view .documents-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.documents.active-view .documents-block .documents-block__item {
    max-width: 180px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.documents.active-view .documents-block .documents-block__item img {
    display: block;
    margin-bottom: 20px;
}

.documents.active-view .documents-block .documents-block__item .count {
    display: none;
}

.documents.active-view .documents-block .documents-block__item span:hover {
    border: none;
    font-family: "PFRegular", sans-serif;
}

.documents.active-view .documents-view a:nth-child(1) {
    background-image: url("../images/main-content/documents-view-1.svg");
}

.documents.active-view .documents-view a:nth-child(1):hover {
    background-image: url("../images/main-content/documents-view-1-active.svg");
}

.documents.active-view .documents-view a:nth-child(2) {
    background-image: url("../images/main-content/documents-view-2-active.svg");
}

.documents-footer {
    padding-top: 30px;
    padding-bottom: 20px;
    background-color: #323232;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.documents-footer img {
    padding-left: 40px;
    padding-bottom: 25px;
}

.documents-footer span {
    color: #FFFFFF;
    position: relative;
    max-width: 380px;
    padding-bottom: 25px;
    margin-left: 40px;
    padding-left: 40px;
}

.documents-footer span::before {
    content: '';
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.24);
    left: 0;
    top: -8px;
    bottom: 0px;
    position: absolute;
}

.clients {
    min-height: 500px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border-radius: 4px;
    position: relative;
}

.clients-sub {
    font-family: "PFMedium", sans-serif;
}

.clients-sliderNav {
    border: 1px solid rgba(50, 50, 50, 0.24);
}

.clients-slider {
    padding-top: 30px;
    padding-bottom: 20px;
}

.clients-slider__item {
    max-width: 190px;
    width: 190px;
    min-height: 245px;
    margin: 0 10px;
    position: relative;
}

.clients-link {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 4px;
    background-color: #A80000;
}

.csi-img {
    width: 190px;
    height: 190px;
    border-radius: 4px;
    border: 1px solid rgba(50, 50, 50, 0.09);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
}

.csi-img:hover {
    border-color: rgba(168, 0, 0, 0.24);
}

.csi-text {
    margin-left: 3px;
}

.csi-text span {
    display: block;
    font-family: "PFMedium", sans-serif;
}

.csi-text a {
    font-size: 12px;
    color: rgba(50, 50, 50, 0.24);
}

.footer {
 /*   background-color: #323232; 1*/
    background-image:  linear-gradient(90.15deg, #000000 -0.11%, rgba(0, 0, 0, 0) 62.01%), url(/local/templates/gkmp/images/main-content/zakaz.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0;
    border-radius: 4px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.footer.flex-zakaz {
    padding: 58px 73px;
}

.flex-zakaz{
    flex-direction: column;
    align-items: flex-start;
}
.products .flex-zakaz .footer-left__text span{
    font-family: "PF Din Text Cond Pro", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}
.products .flex-zakaz .footer-left__text.section_name span{
    font-family: "PF Din Text Cond Pro", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    max-width: 682px;
}
.section_name {
    padding-bottom: 30px;
}
.flex-zakaz .btn-red {
    background-color: #A80000;
    color: #FFFFFF;
    min-width: 128px;
    font-size: 24px;
    padding: 12px 24px;
    line-height: 24px;
    font-weight: 400;
    font-family: "PF Din Text Cond Pro", sans-serif;
}

.footer-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 180px;
}

.footer-left img {
    margin-right: 20px;
}

.footer-left__text span {
    display: block;
}

.footer-left__text span:nth-child(1) {
    color: #FFFFFF;
    font-size: 36px;
    padding-bottom: 7px;
}

.footer-left__text span:nth-child(2) {
    color: rgba(255, 255, 255, 0.62);
}

.descr-block__gallery-item img {
    object-fit: cover;
}

.footer-right {
    min-width: 190px;
    height: 50px;
    color: #323232;
    background-color: #FFFFFF;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.footer-right:hover {
    background-color: rgba(255, 255, 255, 0.64);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.callback-popup {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #323232;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.callback-popup__close {
    position: absolute;
    right: 40px;
    top: 40px;
    width: 20px;
    height: 20px;
    background-image: url("../images/default/white-close-icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.callback-popup__close:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.callback-popup.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.callback-left {
    margin-right: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.callback-left label {
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
}

.callback-left__name {
    margin-bottom: 25px;
    background-color: #323232;
    border: 0;
    outline: none;
    width: 310px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.callback-left__name:focus {
    border-bottom: 3px solid #A80000;
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.callback-left__tel {
    background-color: #323232;
    border: 0;
    outline: none;
    width: 310px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.callback-left__tel:focus {
    border-bottom: 3px solid #A80000;
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.callback-left__mail {
    margin-bottom: 10px;
    background-color: #323232;
    border: 0;
    outline: none;
    width: 310px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.callback-left__mail:focus {
    border-bottom: 3px solid #A80000;
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.callback-left input[type="text"] {
    color: #FFFFFF;
    font-family: "PFMedium", sans-serif;
}

.callback-left input[type="tel"] {
    color: #FFFFFF;
    font-family: "PFMedium", sans-serif;
}

.callback-right {
    margin-left: 20px;
    width: 450px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    margin-top: 20px;
    position: relative;
}

.callback-right textarea {
    background-color: #323232;
    border: none;
    max-width: 300px;
    max-height: 60px;
    width: 100%;
    height: 100%;
    margin: 20px 0 0 20px;
    color: #FFFFFF;
    resize: none;
    outline: none;
}

.callback-right__checkrow {
    padding-left: 20px;
    margin-top: 0;
    color: #FFFFFF;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
}

.callback-right__checkrow input {
    margin-right: 10px;
    position: relative;
    z-index: 1;
}

.callback-right__checkrow input::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #FFFFFF;
    background-color: #323232;
    top: 0;
    right: -2px;
    bottom: -2px;
    z-index: 2;
    left: 0;
}

.callback-right__checkrow input:checked::after {
    content: '\2713';
    line-height: 12px;
}

.callback-right__checkrow span span {
    font-family: "PFMedium", sans-serif;
    text-decoration: underline;
}

.callback-submit {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 100px;
    height: 30px;
    background-color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.callback-submit:hover {
    background-color: #e6e6e6;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 20px;
    margin-top: 20px;
    min-height: 310px;
    position: relative;
}

.product-left__title {
    padding-left: 40px;
    padding: 40px 0 10px 40px;
}

.product-left__count {
    color: rgba(50, 50, 50, 0.24);
    padding: 0 0 35px 40px;
}

.product-left__descr {
    max-width: 500px;
    color: rgba(50, 50, 50, 0.5);
    padding: 0 0 30px 40px;
}

.product-left__btn {
    width: 160px;/*120k*/
    height: 40px;
    background-color: #A80000;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
    display: block;
    border-radius: 4px;
    margin: 0 0 40px 40px;
    cursor: pointer;
}
.get_consultation.sitebar-footer__feedback {
    width: 240px;
    height: 50px;
    color: #ffffff;
    font-size: 22px;

}

.product-right {
    padding-right: 120px;
}

.product-right img {
    max-width: 460px;
    max-height: 200px;
}

.descr-block__gallery-item {
    height: initial !important;
}

.descr-block__gallery-item img {
    height: 100%;
}

.product-btn {
    position: absolute;
    background-color: #FFFFFF;
    border: 1px solid rgba(50, 50, 50, 0.24);
    font-size: 12px;
    color: rgba(50, 50, 50, 0.38);
    padding: 5px 30px;
    line-height: 30px;
    text-align: center;
    right: 40px;
    bottom: 40px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product-btn:hover {
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product-warning {
    max-width: 1220px;
    width: 100%;
    margin: 0 40px 40px 40px;
    border: 4px;
    background-color: rgba(50, 50, 50, 0.06);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-warning img {
    padding: 40px 40px 40px 40px;
}

.product-warning__text span {
    display: block;
    color: rgba(50, 50, 50, 0.5);
}

.product-warning__text span:nth-child(1) {
    font-size: 24px;
    font-family: "PFMedium", sans-serif;
    padding-bottom: 5px;
    color: #323232;
}

.other-product {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-height: 500px;
}

.other-product .product-right {
    padding-right: 80px;
}

.other-product .product-right__square {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    margin-right: 30px;
    border-radius: 4px;
    background-color: rgba(50, 50, 50, 0.06);
}

.other-product .product-right__square:last-child {
    margin-right: 0;
}

.products .footer-left__text span:nth-child(1) {
    font-size: 24px;
}

.products .footer-left__text span:nth-child(2) {
    font-size: 36px;
    font-family: "PFMedium", sans-serif;
    color: #FFFFFF;
}

.products .footer-right {
    color: #FFFFFF;
    background-color: #A80000;
}

.descr {
    background-color: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.descr-section {
    padding: 40px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
}

.section-bg {
    background-color: #dadada;
}

.descr-section:last-child {
    margin-bottom: 0;
}

.descr-section__vars {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 65px;
}


.descr-section__vars-text {
    width: 53%;
}

.descr-section__vars-text p {
    color: rgba(50, 50, 50, 0.7);
    padding-bottom: 10px;
}

.descr-section__vars-text p:last-child {
    padding-bottom: 0;
}

.descr-section__vars-text p:nth-child(2) {
    padding-top: 30px;
}

.descr-section__vars-photo {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 39%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
}

.descr-section__vars-photo__block {
    width: 34%;
    margin-right: 20px;
}

.descr-section__vars-photo__block img {
    width: 190px;
    height: 120px;
}

.descr-section__vars-photo__block div.photo-name {
    padding-top: 5px;
    color: rgba(50, 50, 50, 0.38);
    font-family: "PFMedium", sans-serif;
}


@media(max-width:768px){
    .descr-section__vars{
        flex-wrap: wrap;
    }
    .descr-section__vars-text,
    .descr-section__vars-photo{
        width: 100%;
    }
    .descr-section__vars-photo{
        justify-content: space-between;
    }
    .descr-section__vars-photo__block{
        margin-right: 0px;
        width: 48%;
    }
}

.descr-section__base {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.descr-section__base-text {
    width: 100%;
}
@media(max-width:768px){
    .descr-section__base-text li{
        margin-bottom: 10px;
    }
}

.descr-section__base-photo {
    width: 100%;
}

@media (min-width: 1200px) {
    .descr-section__base-text {
        width: 41%;
    }

    .descr-section__base-photo {
        width: calc(59% - 40px);
    }
}

h2.title {
    line-height: 34px;
}

.descr-section__base-text ul,
.descr-section__base-text ol {
    padding: 0;
    margin: 0;
    padding-left: 15px;
}

.descr-section__base-text ul {
    padding: 90px 0 40px;
    color: rgba(50, 50, 50, 0.65);
    font-size: 16px;
    padding-left: 15px;
    line-height: 150%;
}

.descr-section__base-photo img {
    max-width: 100%;
}

.descr-section__silf {
    padding-top: 20px;
}

.descr-section__silf-text {
    padding-bottom: 25px;
    color: rgba(50, 50, 50, 0.38);
}

.descr-section__silf-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 20px;
}

.descr-section__silf-docs {
    padding: 20px 20px 20px 60px;
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(50, 50, 50, 0.15);
    border-radius: 4px;
}

.descr-section__silf-docs::before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    width: 20px;
    height: 20px;
    border: 1px solid #323232;
    border-radius: 4px;
    background-image: url("../images/default/docs_icon--red.svg");
    background-size: 8px 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.descr-maintitle {
    padding: 40px 0 40px 60px;
    color: #323232 !important;
}

.descr-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    opacity: 1;
    height: auto;
    cursor: pointer;
}

.descr-more {
    width: 22px;
    height: 12px;
    cursor: pointer;
    background-image: url("../images/main-content/dropdown.svg");
    margin-right: 60px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-more:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr.active {
    background-color: #323232;
}

.descr.active.bg-white {
    background-color: #FFFFFF;
}

.descr.active.bg-white .descr-block__title {
    color: #323232 !important;
}

.descr.active.bg-white .descr-block__sometext {
    color: #323232;
}

.descr.active.sections {
    background-color: transparent;
}

.descr.active.sections .descr-wrap {
    display: none;
}

.descr.active.sections .descr-section {
    display: block;
}

.descr.active .descr-wrap {
    height: 0;
    opacity: 0;
    display: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr.active .descr-block {
    opacity: 1;
    min-height: 100px;
    visibility: visible;
    height: auto;
    padding: 40px 40px 0 40px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-block {
    padding: 0;
    width: 100%;
    color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-block__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-image: url("../images/default/dark-close-icon.svg");
    position: absolute;
    right: 40px;
    top: 40px;
}

.descr-block__subtitle {
    padding-bottom: 20px;
}

.descr-block__title {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0 40px 20px;
    color: #FFFFFF !important;
}

.descr-block__tabs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 40px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.descr-block__tabs-item {
    color: rgba(255, 255, 255, 0.62);
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-right: 10px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.descr-block__tabs-item:last-child {
    margin-right: 0;
}

.descr-block__tabs-item:hover {
    background-color: #FFFFFF;
    color: #323232;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-block__tabs-item.active {
    background-color: #FFFFFF;
    color: #323232;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-block__text {
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 0;
}

.descr-block__text.active {
    padding: 0 0 40px 20px;
    height: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/*ik*/
.btn-details {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 55px;
    padding-left: 20px;

}
.btn-details  .header-btns__request-link{
    border-radius: 4px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    font-family: "PF-Din-Text-Cond-Pro",sans-serif;
    padding: 12px 24px;
    color: #FFFFFF;
    background-color: #A80000;
}
/**/
.descr-block__text span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.descr-block__gallery {
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-block__gallery.active {
    padding: 0 0 0px;
    height: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-block__gallery-item {
    max-width: 290px;
    max-height: 180px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    cursor: pointer;
    margin-bottom: 50px;
    margin-left: 5px;
    margin-right: 50px;
}

.descr-block__gallery-item-mask {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(50, 50, 50, 0.38);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    z-index: 1;
}

.descr-block__gallery-item:hover .descr-block__gallery-item-mask {
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-block__gallery-item:hover .item-open {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-block__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    padding: 0px 40px 0px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 0;
}

.descr-block__about.active {
    visibility: visible;
    height: auto;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding-bottom: 50px;
    padding-top: 10px;
}

.descr-block__about-row {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.descr-block__about-row span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: rgba(255, 255, 255, 0.62);
    min-height: 30px;
    margin-left: 20px;
    min-width: 16%;
    max-width: 16%;
    padding: 5px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.descr-block__about-row span:nth-child(1) {
    min-width: 40%;
    max-width: 40%;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.descr-block__about-row span:last-child {
    border: none;
}

.descr-block__about-row span.title-span {
    color: #FFFFFF;
}

.descr-block__about-title {
    font-size: 24px;
    padding-top: 50px;
    padding-bottom: 20px;
}

.descr-block__about-warning {
    padding: 50px 0 20px 0;
    max-width: 450px;
}

.descr-block__about-link {
    padding: 14px 13px;
    background-color: #FFFFFF;
    border-radius: 4px;
}

.gray-row {
    background-color: rgba(255, 255, 255, 0.04);
}

.item-open {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(50, 50, 50, 0.38);
    background-image: url("../images/main-content/open-image.svg");
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.item-open:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item-play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.15);
    background-image: url("../images/main-content/play-video.svg");
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item-play-video:hover {
    width: 75px;
    height: 75px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popup {
    width: 100%;
    margin: auto;
    text-align: center;
}

.popup img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.show {
    z-index: 10;
    display: none;
}

.show .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.66);
    position: fixed;
    top: 0;
    left: 0;
}

.show .img-show {
    width: 600px;
    height: 370px;
    background: #FFF;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 4px;
}

.img-show span {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(50, 50, 50, 0.62);
    background-image: url("../images/default/white-close-icon.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.img-show img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.header-btns__request-link,
.online-request__btn {
    cursor: pointer;
}

body.rukava .header-content {
    background-image: url("../images/main-content/rukav.png");
}

body.rukava .header-content h1.title {
    padding-bottom: 0 !important;
}

body.rukava .header-btns__request-link {
    background-color: #FFFFFF;
    color: #000000;
}

body.rukava .header-btns__request-link:hover {
    background-color: #000000;
    color: #FFFFFF;
}

body.rukava .descr-maintitle {
    font-size: 36px;
}

.header-content__text {
    padding-left: 40px;
    font-weight: 300;
    padding-bottom: 30px;
    max-width: 630px;
    font-family: "PFRegular", sans-serif;
    color: #f7f7f7;
}

.show {
    position: relative;
    z-index: 20;
}

.descr-block__sometext {
    opacity: .65;
    padding-bottom: 40px;
}

.descr-block__vars {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 17px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: none;
}

.descr-block__vars.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.descr-block__vars-text {
    max-width: 55%;
}

.descr-block__vars-text span {
    padding-bottom: 30px;
    opacity: .7;
    display: block;
}

.descr-block__vars-photos {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 43%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.descr-block__vars-photos__item {
    width: 48%;
    margin-bottom: 10px;
}

.descr-block__vars-photos__item img {
    max-width: 190px;
    max-height: 120px;
}

.descr-block__types {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 17px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: none;
}

.descr-block__types.active {
    display: block;
}

.descr-block__types-footer {
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.descr-block__types-footer a {
    color: #FFFFFF;
    text-decoration: underline;
}

.descr-block__types-footer span {
    width: 20px;
    height: 20px;
    margin-right: 20px;
    background-color: #FFFFFF;
    border-radius: 4px;
    background-image: url("../images/default/docs_icon.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.descr-block__types-about {
    opacity: .38;
    padding-bottom: 40px;
}

.descr-block__types-card {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 20px;
    width: 48%;
    margin-bottom: 20px;
    min-height: 290px;
    color: #323232;
}

.descr-block__types-cards {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.descr-block__params {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 17px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: none;
}

.descr-block__params.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.descr-block__params-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 41.5%;
    padding-right: 16px;
}

.descr-block__params-left ul {
    margin-left: 20px;
    opacity: .65;
    -webkit-margin-before: 0;
    margin-block-start: 0;
    -webkit-margin-after: 0;
    margin-block-end: 0;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    padding-bottom: 100px;
}

.descr-block__params-left ul li {
    padding-bottom: 4px;
}

.descr-block__params-left__prim {
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #FFFFFF;
}

.descr-block__params-left__prim div span {
    display: block;
}

.descr-block__params-left__prim div:nth-child(1) {
    padding-bottom: 20px;
}

.descr-block__params-left__prim div:nth-child(2) {
    opacity: .65;
}

.descr-block__params-right {
    max-width: 67%;
}

.descr-block__params-right img {
    max-width: 690px;
    max-width: 100%;
}

.descr-block__square {
    width: 190px;
    height: 190px;
    padding: 50px 20px 20px 20px;
    border-radius: 4px;
    overflow: hidden;
    background-image: url("../images/main-content/descr-square-block.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: 10px;
}

.descr-block__square:hover {
    height: 210px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.descr-block__square-text {
    position: relative;
    z-index: 1;
}

.descr-block__square-mask {
    position: absolute;
    background-color: #000000;
    opacity: .6;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2s;
}

.descr-block__squares-wrap {
    min-height: 250px;
    padding-bottom: 40px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    flex-wrap: wrap;
}

.descr-block__squares-wrap>a {
    margin-bottom: 10px;
}

.descr-block__squares-wrap.is-first .descr-block__square {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.documents.isnt-main {
    min-height: auto;
}

.card-top {
    padding-bottom: 20px;
}

.card-photo {
    max-width: 200px;
    max-height: 120px;
    overflow: hidden;
}

.card-maininfo {
    padding-left: 20px;
}

.card-maininfo__subtitles {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 10px;
}

.card-maininfo__subtitles span {
    font-size: 12px;
    opacity: .4;
}

.card-maininfo__title {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 20px;
}

.card-maininfo__title span:nth-child(1) {
    font-size: 24px;
}

.card-maininfo__title span:nth-child(2) {
    color: #A80000;
    font-size: 12px;
    font-family: "PFBold", sans-serif;
}

.card-maininfo__for {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.card-maininfo__for span {
    font-size: 12px;
}

.card-maininfo__for span:nth-child(1) {
    width: 20px;
    height: 20px;
    display: block;
    padding: 6px;
    border-radius: 4px;
    background-color: rgba(50, 50, 50, 0.09);
    margin-right: 10px;
    background-image: url("../images/default/for_icon.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.card-bot {
    line-height: 20px;
    opacity: .38;
}

.descr.isnt-border * {
    border: none;
}

.descr.isnt-border .descr-block__title {
    padding-left: 0;
}

body.materials .header-content__text {
    opacity: .85;
}

body.materials .header-content {
    background-image: url("../images/main-content/materials-bg.png");
}

body.materials .header-content h1.title {
    padding-bottom: 50px;
}

body.materials .header-content__text {
    padding-bottom: 100px;
}

.mades {
    padding: 40px;
    color: #FFFFFF;
    margin-bottom: 20px;
    background-color: #323232;
}

.mades h2.title {
    color: #FFFFFF;
    padding-bottom: 30px;
}

.mades-block {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.mades-block__left {
    opacity: .65;
}

.mades-block__right {
    max-width: 790px;
    width: 100%;
    padding-left: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.mades-block__right-item {
    width: 190px;
    background-color: rgba(255, 255, 255, 0.09);
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 20px;
    margin-bottom: 5px;
}

.mades-block__right-item:hover {
    background-color: #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.mades-block__right-item span {
    display: block;
}

.mades-block__right-item span span {
    font-size: 8;
    padding: 0;
    position: absolute;
    top: 50px;
    font-size: 12px;
    left: 0;
}

.mades-block__right-item span:nth-child(1) {
    font-family: "PFBold", sans-serif;
    opacity: .65;
    min-height: 38px;
    padding-bottom: 20px;
}

.mades-block__right-item span:nth-child(2) {
    font-family: "PFMedium", sans-serif;
    font-size: 18px;
    padding-bottom: 40px;
    min-height: 109px;
    position: relative;
}

.mades-block__right-item span:nth-child(3) {
    text-align: right;
    font-size: 24px;
    opacity: .65;
    font-family: "PFBold", sans-serif;
}

body.rostovoe .descr-maintitle {
    font-size: 36px;
}

body.rostovoe .header-content {
    background-image: url("../images/main-content/rostovoe-bg.png");
}

body.rostovoe .header-content__title {
    padding-bottom: 135px;
}

body.rostovoe .descr-block * {
    border: none;
}

body.rostovoe .descr-block__title {
    padding-left: 0;
}

.notes {
    width: 100%;
    padding: 30px;
    border: 1px solid #323232;
    border-radius: 4px;
}

.notes-title {
    font-family: "PFMedium", sans-serif;
    padding-bottom: 20px;
}

.notes-list ol {
    font-size: 12px;
    line-height: 166%;
    color: rgba(50, 50, 50, 0.65);
}

.prod {
    padding: 20px;
    border-radius: 4px;
    background-color: #323232;
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
    width: 100%;
    height: 277px;
}

@media (min-width: 1200px) {
    .prod {
        width: calc(50% - 10px);
    }
}
@media(max-width:768px){
    .prod{
        height: auto;
    }
}

.prod:last-child {
    margin-bottom: 0;
}

.prod-photo {
    max-width: 200px;
}

.prod-info {
    padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (min-width: 1200px) {
    .prod-info {
        max-width: calc(100% - 200px);
    }
}

.prod-info__type {
    width: 30%;
}

.prod-info__marking {
    width: 70%;
    text-align: right;
}

.prod-info__name {
    width: 60%;
    color: #FFFFFF;
    font-size: 22px;
    line-height: normal;
    padding-bottom: 10px;
}

.prod-info__number {
    padding: 4px 10px;
    background-color: #FFFFFF;
    border-radius: 4px;
    color: #A80000;
    max-height: 20px;
    display: inline-block;
}

.prod-info__fact {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 25px;
}

.prod-info__fact::before {
    content: '';
    left: 0;
    top: -4px;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 3px;
    background-color: rgba(255, 255, 255, 0.09);
    background-image: url("../images/default/nav_icon--red.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.prod-descr {
    width: 100%;
    padding-top: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.38);
}

.header-content.without-bg {
    background-image: none !important;
    background-color: #323232;
}

.stocks {
    background-color: #323232;
    -webkit-box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 30px rgba(50, 50, 50, 0.1);
    padding: 40px;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.stocks-list {
    display: none;
}

.stocks-list.current {
    display: block;
}

.stocks-note {
    padding-top: 50px;
}

.stocks-note__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 10px;
}

.stocks-note__item span {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 100%;
}

.stocks-note__item span:nth-child(1) {
    width: 100%;
    opacity: .6;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.stocks-note__item span:nth-child(1)::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 7px 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.6);
}

.stocks-tabs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 70px;
}

.stocks-tabs__item {
    font-size: 16px;
    padding: 10px 20px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.stocks-tabs__item.current {
    background-color: #FFFFFF;
}

.stocks-tabs__item.current span {
    color: #323232;
}

.stocks-tabs__item:hover {
    background-color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.stocks-tabs__item:hover span {
    color: #323232;
}

.stocks-tabs__item span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.stocks-tabs__item span:nth-child(1) {
    font-weight: bold;
}

.stocks-blocks {
    padding-left: 25px;
}

.stocks-list-titling {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 40px;
}

.stocks-list-titling__text {
    padding-left: 25px;
}

.stocks-list-titling__text span {
    display: block;
}

.stocks-list-titling__text span:nth-child(1) {
    font-size: 24px;
    font-weight: bold;
    padding-top: 15px;
}

.stocks-list-titling__text span:nth-child(2) {
    color: rgba(255, 255, 255, 0.4);
    padding-top: 5px;
}

.stocks-list-table {
    width: 100%;
}

.table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.table-row-item {
    padding: 10px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.04);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.table-row-item span {
    font-weight: bold;
    padding: 5px 41px 5px 9px;
    line-height: 100%;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    position: relative;
}

.table-row-item span::after {
    content: '>';
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.table-row-item:nth-child(1) {
    width: 20%;
    padding-left: 12px;
}

.table-row-item:nth-child(2) {
    width: 31.5%;
    color: rgba(255, 255, 255, 0.8);
}

.table-row-item:nth-child(3) {
    width: 16%;
}

.table-row-item:nth-child(4) {
    width: 14.5%;
}

.table-row-item:nth-child(5) {
    width: 18%;
    border: none;
}

.table-row-item img {
    max-width: 100%;
}

.table-row.table-empty .table-row-item {
    background-color: #323232;
}

.table-title .table-row-item {
    background-color: rgba(255, 255, 255, 0.09);
    color: #FFFFFF;
}

.table-item-more {
    width: 100%;
    background-color: rgba(255, 252, 252, 0.1);
    padding: 0 10px;
    display: none;
}

.table-item__title {
    padding-bottom: 50px;
    font-size: 24px;
    font-weight: bold;
    max-width: 70%;
    padding-top: 20px;
}

.table-item__descr {
    padding-bottom: 40px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 60%;
}

.table-item__table {
    padding-bottom: 30px;
}

.item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.item-row-element {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 10px 10px 10px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.item-row-element:nth-child(1) {
    width: 12%;
    color: #FFFFFF;
}

.item-row-element:nth-child(2) {
    width: 11.3%;
}

.item-row-element:nth-child(3) {
    width: 12%;
}

.item-row-element:nth-child(4) {
    width: 11%;
}

.item-row-element:nth-child(5) {
    width: 12%;
}

.item-row-element:nth-child(6) {
    width: 11%;
}

.item-row-element:nth-child(7) {
    width: 12%;
}

.item-row-element:nth-child(8) {
    width: 18.7%;
    border: none;
}

.item-row.titling .item-row-element {
    background-color: rgba(255, 255, 255, 0.09);
    font-size: 16px;
    color: #FFFFFF;
}

.item-row:nth-child(even) .item-row-element {
    background-color: transparent;
}

.table-item-close {
    position: absolute;
    width: 23px;
    height: 23px;
    background-image: url("../images/default/close_icon--l.svg");
    background-repeat: no-repeat;
    background-size: cover;
    right: 20px;
    top: 35px;
    cursor: pointer;
    display: none;
}

.table-item.active .table-item-more {
    display: block;
}

.table-item.active .table-item-close {
    display: block;
}

.term .descr-maintitle {
    font-size: 36px;
}

.term-block {
    padding-bottom: 40px !important;
}

.term-block__title {
    padding-bottom: 25px;
    font-family: "PFMedium", sans-serif;
    font-size: 36px;
}

.term-block__docs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 23px 20px 23px 60px;
    position: relative;
    border-radius: 4px;
    margin-bottom: 40px;
    text-decoration: underline;
    font-size: 16px;
}

.term-block__docs::before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url("../images/default/docs-white_icon.svg");
}

.term-wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 40px;
}

.term-wrap-text {
    width: 40%;
}

.term-wrap-content {
    width: 52%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.term-text__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 140%;
    font-size: 16px;
    padding-bottom: 40px;
}

.term-text__subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "PFMedium", sans-serif;
    padding-bottom: 15px;
}

.term-text__list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-bottom: 40px;
}

.term-text__list li {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 0;
}

.term-content__square {
    width: 49%;
    background-color: #FFFFFF;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 20px;
    color: rgba(50, 50, 50, 0.7);
    margin-bottom: 2%;
    font-size: 24px;
    font-family: "PFMedium", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.term-content__square::after {
    content: '';
    display: block;
    padding-top: 100%;
}

.term-content__square--sm::after {
    padding-top: 65%;
}

.term-content__square div {
    position: absolute;
    background: #FFFFFF;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}

.term-content__square div:hover {
    background-color: #A80000;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.term-content__square:hover {
    background-color: #A80000;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.term-content__block {
    position: relative;
    width: 100%;
}

.term-content__block::after {
    content: '';
    display: block;
    padding-top: 62%;
}

.term-content__block-wrap {
    position: absolute;
    background: rgba(166, 166, 166, 0.06);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.form-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(50, 50, 50, 0.62);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: -10000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-overlay.preactive {
    z-index: 10000;
}

.form-overlay.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-popup {
    background-color: #323232;
    border-radius: 4px;
    position: relative;
    color: #FFFFFF;
    max-height: 85vh;
    overflow-y: auto;
}

.form-close {
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url("../images/default/form-close_icon.svg");
    right: 48px;
    top: 48px;
    cursor: pointer;
}

.form-info {
    padding: 50px 60px 40px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.24);
}

.form-status {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.38);
    padding-bottom: 5px;
}

.form-title {
    font-size: 36px;
    padding-bottom: 30px;
}

.form-subtitle {
    font-size: 24px;
    padding-bottom: 30px;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row>div {
    width: 25%;
    margin-right: 20px;
}

.form-row>div:last-child {
    margin-right: 0;
}

.form-input input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    width: calc(100vw * .16);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-input input:focus {
    outline: none;
    border-color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-input input::-webkit-input-placeholder {
    padding-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
}

.form-input input:-ms-input-placeholder {
    padding-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
}

.form-input input::-ms-input-placeholder {
    padding-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
}

.form-input input::placeholder {
    padding-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
}

.form-input input[type="text"] {
    padding-bottom: 4px;
    color: #FFFFFF;
}

.form-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form-radio__title {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
}

.form-radio__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
}

.form-radio__item input {
    position: relative;
    border-radius: 50%;
    visibility: hidden;
    width: 24px;
    height: 24px;
}

.form-radio__item input::after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    top: -2px;
    border-radius: 50%;
    background-color: #323232;
    visibility: visible;
    border: 2px solid rgba(255, 255, 255, 0.09);
}

.form-radio__item input:checked::after {
    border: 5px solid #00A861;
    background-color: #FFFFFF;
}

.form-radio__item label {
    margin-left: 8px;
}

.form-contacts {
    padding: 40px 60px 60px;
}

.form-rules {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-rules>span {
    margin-left: 13px;
}

.form-rules>span span {
    text-decoration: underline;
}

.form-rules input {
    visibility: hidden;
    position: relative;
    width: 18px;
    height: 18px;
}

.form-rules input::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    visibility: visible;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background-color: #323232;
}

.form-rules input:checked::after {
    background-color: #00A861;
    border-color: #00A861;
    background-image: url("../images/default/rules-checked_icon.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.form-submit {
    margin-top: 24px;
}

.form-submit button {
    padding: 13px 28px;
    border-radius: 4px;
    background-color: #A80000;
    font-size: 16px;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-submit button:hover {
    background-color: #BC1010;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-submit button:active,
.form-submit button:focus {
    background-color: #940000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/*End style*/

.articles {
    background-color: #FFFFFF;
    margin-bottom: 20px;
}

.articles-title {
    margin: 0 40px 30px 40px;
    padding-top: 40px;
}

.articles-tabs {
    margin: 40px 0 0 40px;
    width: calc(100% - 80px);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(237, 237, 237, 0.6);
}

.articles-tabs__item {
    margin-right: 10px;
    color: #595959;
    padding: 0 1px 12px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    -webkit-transition: border-bottom .3s ease;
    transition: border-bottom .3s ease;
}

.articles-tabs__item:first-child {
    color: #c4c4c4;
    margin-right: 40px;
}

.articles-tabs__item.current {
    color: #A80000;
    border-color: #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.articles-list {
    padding: 70px 40px 40px;
}

.articles-list.events {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[4];
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.articles-list.news {
    display: block;
}

.articles-list__item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1 / 1 / 3 / 3;
}

.articles-list__item:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1 / 3 / 2 / 4;
}

.articles-list__item:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 2 / 3 / 3 / 4;
}

.articles-list__item:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3 / 1 / 4 / 2;
}

.articles-list__item:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3 / 2 / 4 / 3;
}

.articles-list__item:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 3 / 3 / 4 / 4;
}

.articles-list__item:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4 / 1 / 5 / 2;
}

.articles-list__item:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4 / 2 / 5 / 3;
}

.articles-list__item:nth-child(9) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 4 / 3 / 5 / 4;
}

.articles-nav {
    padding: 40px 0 0 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.articles-nav__page {
    padding: 8px 13px;
    border-radius: 4px;
    font-family: "PFBold", sans-serif;
    margin: 0 2px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.articles-nav__page:hover {
    color: black;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.articles-nav__page.current {
    color: #FFFFFF;
    background-color: #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.articles-nav__page.current:hover {
    background-color: #db0000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.articles-nav__next {
    width: 8px;
    cursor: pointer;
    padding: 3px;
    height: 15px;
    margin-left: 3px;
    background-image: url("../images/default/next_icon.svg");
    background-size: 8px 15px;
    background-position: center;
    background-repeat: no-repeat;
}

.articles-copyright {
    padding: 25px 40px;
    background-color: #323232;
    margin-top: 60px;
    color: #FFFFFF;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.articles-copyright__text {
    padding: 7px 0 7px 30px;
    margin-left: 30px;
    max-width: 50%;
    line-height: 143%;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.article {
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid rgba(142, 142, 142, 0.2);
}

.article-photo {
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden;
}

.article-photo img {
    max-width: 100%;
    width: 100%;
    max-height: 160px;
}

.article-info {
    padding: 20px 30px 30px;
    border-top: 0px solid transparent;
}

.article-info__descr {
    display: none;
}

.article-info__title {
    padding-bottom: 10px;
}

.article-info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.article-info__date {
    color: #8e8e8e;
}

.article-info__more a {
    text-decoration: underline;
    color: #323232;
    position: relative;
    padding-right: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.article-info__more a:hover {
    color: #323232;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.article-info__more a:hover::after {
    -webkit-transform: translateY(-50%) translateX(-3px);
    transform: translateY(-50%) translateX(-3px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.article-info__more a::after {
    content: '';
    width: 30px;
    height: 14px;
    background-image: url("../images/default/more_icon.svg");
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.article:first-child {
    border-color: #8e8e8e;
}

.article:first-child .article-photo img {
    max-height: 320px;
}

.article:first-child .article-info__descr {
    display: block;
    color: #8e8e8e;
    margin-bottom: 20px;
}

.article:first-child .article-info__title {
    font-size: 28px;
    margin-bottom: 30px;
}

.art {
    padding: 40px 40px 224px 40px;
    position: relative;
    background-color: #FFFFFF;
    margin-bottom: 20px;
}

.art-docs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #323232;
}

.art-docs__text {
    padding-left: 30px;
    margin-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    padding-top: 4px;
    color: #FFFFFF;
    padding-bottom: 4px;
    max-width: 60%;
    line-height: 143%;
}

.art-date {
    padding: 9px 9px 7px 9px;
    background-color: #323232;
    color: #FFFFFF;
    border-radius: 3px;
    display: inline-block;
}

.art-content {
    padding: 35px 0 45px;
}

.art-content__text {
    color: rgba(50, 50, 50, 0.5);
    line-height: 144%;
}

.art-content__mark {
    padding-top: 50px;
    color: rgba(50, 50, 50, 0.62);
    font-family: "PFMedium", sans-serif;
}

.art-back a {
    padding: 10px 20px 10px 50px;
    border: 1px solid #323232;
    border-radius: 4px;
    position: relative;
}

.art-back a::before {
    content: '';
    width: 20px;
    height: 10px;
    background-image: url("../images/default/art-back_icon.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.art-back a:hover::before {
    -webkit-transform: translateY(-50%) translateX(-3px);
    transform: translateY(-50%) translateX(-3px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.art-right a {
    padding: 10px 50px 10px 20px;
    border: 1px solid #323232;
    border-radius: 4px;
    position: relative;
}

.art-right a::before {
    content: '';
    width: 20px;
    height: 10px;
    background-image: url("../images/default/art-right_icon.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.art-right a:hover::before {
    -webkit-transform: translateY(-50%) translateX(3px);
    transform: translateY(-50%) translateX(3px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.art-slider {
    margin-bottom: 70px;
    position: relative;
}

.art-slider-wrap img {
    max-width: 100%;
}

.art-slider .slick-dots {
    position: absolute;
    left: 50%;
    bottom: 50px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.art-slider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(196, 196, 196, 0.5);
}

.art-slider .slick-dots li.slick-active {
    background-color: #FFFFFF;
}

.art-slider .slick-dots li button {
    display: none;
}

.artArrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 20px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.artPrev {
    background-image: url("../images/default/art-prev_icon.svg");
    left: 60px;
}

.artNext {
    background-image: url("../images/default/art-next_icon.svg");
    right: 60px;
}

.news-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(196, 196, 196, 0.5);
    margin-bottom: 45px;
}

.news-item__photo {
    min-width: calc(24% + 35px);
    max-width: calc(24% + 35px);
    padding-right: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news-item__photo img {
    max-width: 100%;
}

.news-item-content__date {
    font-size: 12px;
    color: #999999;
    letter-spacing: .12em;
    margin-bottom: 10px;
}

.news-item-content__title {
    padding-bottom: 30px;
}

.news-item-content__title a {
    color: #1a1a1a;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 24px;
    text-decoration: underline;
}

.news-item-content__title a:hover {
    color: #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.news-item-content__pretext {
    color: #999999;
}

.news-nav {
    margin: 0 0 70px 50px;
}

.company-contacts {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 50px;
    background-color: #323232;
    color: #FFFFFF;
    border-radius: 0px 0px 4px 4px;
}

.company-contacts-right {
    width: 43%;
    text-align: right;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.company-contacts__phone {
    font-size: 28px;
    line-height: 159%;
    margin-right: 75px;
}

.company-contacts__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.company-contacts__social a {
    margin-right: 10px;
    background-repeat: no-repeat;
}

.company-contacts__social-fb {
    width: 25px;
    height: 25px;
    background-image: url("../images/fb-icon.svg");
    background-size: 100% 100%;
}

.company-contacts__social-inst {
    width: 25px;
    height: 25px;
    background-image: url("../images/inst-icon.svg");
    background-size: 100% 100%;
    background-position: center;
}

.company-contacts__social-tel {
    width: 25px;
    height: 25px;
    background-image: url("../images/tel-icon.png");
    background-size: 100% 100%;
    background-position: center;
}

.company-contacts__social-dzen {
    width: 25px;
    height: 25px;
    background-image: url("../images/icon-dzen3.png");
    background-size: 100% 100%;
    background-position: center;
}

.company-contacts__social-yt {
    width: 25px;
    height: 25px;
    background-image: url("../images/yt-icon.svg");
    background-size: 100% 100%;
    background-position: center;
}

.company-contacts__social-twitter {
    width: 25px;
    height: 25px;
    background-image: url("../images/vk.svg");
    background-size: 100% 100%;
    background-position: center;
}

.company-contacts__politics a {
    color: #FFFFFF;
    text-decoration: underline;
}

.company-contacts__dev a {
    text-decoration: underline;
    color: #FFFFFF;
}

.novelty {
    background-color: #FFFFFF;
    margin-bottom: 20px;
}

.novelty-date {
    margin: 60px 50px 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #A80000;
    display: inline-block;
    color: #58595B;
}

.novelty-titling {
    margin: 0 50px 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(196, 196, 196, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.novelty-titling__photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: calc(290px + 35px);
    min-width: calc(290px + 35px);
    padding-right: 35px;
}

.novelty-titling__photo img {
    max-width: 100%;
}

.novelty-titling__title {
    font-size: 60px;
}

.novelty-content {
    margin: 0 50px 45px;
}

.novelty-back {
    margin: 0 50px 45px;
}

@media (max-width: 1400px) {
    .novelty-titling__title {
        font-size: 36px;
    }
}

.reviews {
    background-color: #FFFFFF;
    margin-bottom: 20px;
}

.reviews-title {
    padding: 50px 60px 45px;
}

.reviews-list {
    padding: 0 60px 80px;
}

.reviews-nav {
    padding: 0 60px 150px;
}

.review {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 14px 60px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 14px 60px rgba(0, 0, 0, 0.12);
    padding: 40px 60px 60px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 45px;
    cursor: pointer;
}

.review.opened {
    cursor: auto;
}

.review.opened .review-content {
    display: block;
}

.review:last-child {
    margin-bottom: 0;
}

.review img {
    max-width: 100%;
}

.review-proove {
    width: 13%;
    height: 100%;
    border: 1px solid #58595B;
    margin-right: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 150px;
    padding: 1px;
}

.review-proove img {
    width: 100%;
}

.review-info {
    width: 50%;
}

.review-info__title {
    color: #1a1a1a;
    font-family: "PFMedium", sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.review-info__subtitle {
    font-size: 24px;
    color: #58595B;
    padding-bottom: 27px;
}

.review-info__text {
    color: #58595B;
}

.review-company {
    width: 25%;
    margin-left: auto;
}

.review-content {
    width: 100%;
    padding-left: 18%;
    padding-top: 40px;
    margin-top: 20px;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    position: relative;
    display: none;
}

.review-content__for {
    font-size: 12px;
    color: #58595B;
}

.review-content__for span {
    display: block;
    color: #1a1a1a;
    padding-top: 10px;
    padding-bottom: 25px;
}

.review-content__titling {
    color: #000000;
    font-size: 15px;
    padding-bottom: 35px;
}

.review-content__text {
    font-size: 15px;
    color: #58595B;
}

.review-content::after {
    position: absolute;
    content: '';
    width: 32px;
    height: 24px;
    background-image: url("../images/default/quotes_icon.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    top: 80px;
    left: 10%;
}

.search-list {
    padding: 60px 60px 50px;
}

.search-title {
    padding: 50px 60px 40px;
}

.search-subtitle {
    padding: 0 60px 60px;
    font-size: 24px;
    color: #58595B;
}

.search-input {
    margin: 0 60px 50px;
    position: relative;
    width: calc(100% - 120px);
}

.search-input__submit {
    position: absolute;
    left: 0;
    bottom: 22px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    background: none;
    background-image: url("../images/default/search_icon.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: none;
}

.search-input__clean {
    right: 0;
    bottom: 15px;
    position: absolute;
    bottom: 22px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-image: url("../images/default/clean_icon.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.search-input__area {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search-input__area:focus {
    outline: none;
    border-color: #1a1a1a;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search-input__area[type="text"] {
    padding: 5px 45px 15px;
    color: #A80000;
    font-size: 24px;
}

.search-tabs {
    margin: 0 60px;
}

.search-tabs__titling {
    font-size: 12px;
    padding-bottom: 15px;
    color: #58595B;
    letter-spacing: 0.12em;
}

.search-tabs-block {
    display: inline-block;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    padding-bottom: 0;
}

.search-tabs-block__item {
    display: inline-block;
    margin-right: 30px;
    padding: 0 2px 15px;
    cursor: pointer;
    border-bottom: 5px solid transparent;
    font-size: 15px;
    color: #7F7F7F;
}

.search-tabs-block__item:last-child {
    margin-right: 0;
}

.search-tabs-block__item.current {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.search-results-nav {
    margin: 0 60px 50px;
}

.contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contacts-title {
    width: 100%;
    padding: 40px;
}

.contacts-info {
    width: 360px;
    padding-left: 40px;
    padding-bottom: 50px;
}

.contacts-info__title {
    font-size: 24px;
    color: #A80000;
    padding-bottom: 20px;
}

.contacts-info__row.last {
    padding-bottom: 30px;
}

.contacts-info__row span:nth-child(1) {
    font-size: 12px;
    color: #999999;
    padding-bottom: 10px;
    display: block;
}

.contacts-info__row span:nth-child(2) {
    font-size: 15px;
    color: #4D4D4D;
    padding-bottom: 13px;
    display: block;
}

.contacts-map {
    width: calc(100% - 360px);
    padding-right: 40px;
    padding-left: 3%;
    padding-bottom: 50px;
}

.contacts-map__note {
    font-size: 17px;
    color: #999999;
    padding-left: 30px;
    border-left: 4px solid #A80000;
    margin-top: 200px;
}

.contacts-map__note_en {
    margin-top: 440px;
}

.contacts-map img {
    max-width: 100%;
}

.contacts-blocks {
    width: 100%;
    padding: 0 40px 100px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contacts-blocks__item {
    width: 21.5%;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid #323232;
    padding: 23px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.contacts-blocks__item:hover {
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-bottom-color: #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contacts-blocks__item-title {
    font-size: 22px;
    color: #1A1A1A;
    padding-bottom: 20px;
}

.contacts-info__row:nth-child(2) {
    margin-top: auto;
}

.contacts-form {
    width: 100%;
    padding: 0 40px 100px;
}

.contacts-form-block {
    padding-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contacts-form-inputs {
    width: 46%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contacts-form-inputs input {
    width: 46%;
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(50, 50, 50, 0.09);
}

.contacts-form-inputs label {
    width: 46%;
    text-align: center;
}

.contacts-form-inputs input:nth-child(1),
.contacts-form-inputs input:nth-child(2) {
    margin-bottom: 30px;
}

.contacts-form-inputs input:focus {
    outline: none;
}

.contacts-form-textarea {
    width: 50%;
}

.contacts-form-submit {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 50px;
}

.contacts-form-submit .form-submit {
    margin-top: 0;
}

.contacts-form-submit .form-submit button {
    color: #FFFFFF;
}

.contacts-form-submit .form-rules {
    max-width: 55%;
    margin-left: auto;
    margin-right: 30px;
}

.contacts-form-textarea {
    position: relative;
}

.contacts-form-textarea::before {
    content: "Сообщение:";
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    font-size: 16px;
    color: #323232;
    opacity: .7;
}

.contacts-form-textarea textarea {
    width: 100% !important;
    resize: none;
    height: 100%;
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(50, 50, 50, 0.09);
}

.contacts-form-textarea textarea:focus {
    outline: none;
}

@media (min-width: 1200px) {
    .contacts-map__note {
        margin-top: 195px;
    }
    .contacts-map__note_en {
        margin-top: 350px;
    }
}

@media screen and (max-width: 1280px) and (min-width: 1024px) {
    .limiter {
        margin-right: 20px;
        margin-left: 20px;
    }
    .menublock {
        right: 20px;
    }
}

@media screen and (max-width: 1500px) and (min-width: 1280px) {
    .limiter {
        margin-right: 40px;
        margin-left: 40px;
    }
    .menublock {
        right: 40px;
    }
    .callback-icon {
        right: 5px;
        bottom: 20px;
    }
    .about-slider {
        width: 640px;
    }
    .about-info {
        width: 680px;
    }
    .gkmp-examples__item-btn {
        width: 180px;
        height: 50px;
    }
    .gkmp-examples__item-btn img {
        display: none;
    }
    .gkmp-examples__item-btn span {
        padding: 0;
        margin: 0;
        font-size: 012px;
    }
    .gkmp-examples__item-btn span::before {
        display: none;
    }
    .gkmp-examples__item-btn span::after {
        display: none;
    }
    .projects-slider {
        width: 640px;
    }
    .projects-info {
        padding-right: 10px;
    }
    .psi-map img {
        max-width: 580px;
    }
    .psi-info__text {
        max-width: 300px;
    }
    .projects-gallery {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .projects-gallery img {
        margin-bottom: 10px;
    }
    .footer {
        padding: 80px 0;
        padding-bottom: 100px;
    }
    .products .footer-left__text span:nth-child(2) {
        font-size: 22px;
    }
    .product-right {
        padding-right: 40px;
    }
    .product-right__square:nth-child(2) {
        display: none;
    }
    .product-right__square:nth-child(3) {
        display: none;
    }
}

@media screen and (max-width: 1720px) and (min-width: 1500px) {
    .limiter {
        margin-right: auto;
        margin-left: auto;
    }
    .menublock {
        right: 70px;
    }
    .callback-icon {
        right: 5px;
        bottom: 20px;
    }
    .projects-slider {
        width: 700px;
    }
    .projects-info {
        width: 580px;
    }
    .about-slider {
        width: 700px;
    }
    .about-info {
        width: 580px;
        padding-right: 20px;
    }
    .products .footer-left__text span:nth-child(2) {
        font-size: 26px;
    }
}

@media (min-width: 2000px) {
    .menublock {
        left: 50%;
        transform: translateX(-50%);
        min-width: 1300px;
    }
    .limiter {
        margin-left: auto;
        margin-right: auto;
    }
}

.menublock-right__search {
    display: none;
}

.documents-tabs {
    width: calc(100% - 80px) !important;
    margin: 0 40px !important;
}

.callback-left label {
    display: none !important;
}

@media (max-width: 1200px) {
    .menu__direction-left {
        padding: 20px;
    }
    .menu__direction-left .menu__back-main {
        background-color: transparent;
        padding: 0 !important;
        width: 100%;
        text-align: left;
        margin: 0 !important;
        color: #FFFFFF !important;
    }
    .menu__direction-left .menu__back-main img {
        margin-right: 4px;
    }
    .menu__direction-left .menublock-left__title {
        display: block !important;
        padding-bottom: 20px;
    }
    .menu__direction-left .menublock-left__title span {
        font-family: "PFRegular", sans-serif;
        font-size: 28px;
    }
    .menu__button-info {
        margin-left: 0 !important;
    }
    .menu__button-block {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        margin-top: 30px !important;
        margin-left: 0 !important;
    }
    .menu__button-block a.menu__catalog-link {
        width: 100% !important;
        display: block !important;
        margin-bottom: 10px !important;
    }
    .menu__button-block a.menu__catalog-link button {
        width: 100% !important;
    }
    .menublock-left .menu-nav a {
        color: rgba(255, 255, 255, 0.62) !important;
    }
    .direction-left__top {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .direction-left__top .menu-nav {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        padding: 0;
    }
    .direction-left__top .menu-nav a {
        padding-left: 0 !important;
    }
    .menu__razdel-link {
        margin-left: 0 !important;
    }
    .menublock-right__list img {
        display: none;
    }
    .menublock-right__list-title {
        padding-top: 0 !important;
        margin-right: 0 !important;
        border: none !important;
    }
    .menublock-left__title {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding: 0 !important;
    }
    .search {
        padding: 20px;
    }
    .search .news-item {
        padding-bottom: 10px !important;
        margin-bottom: 20px !important;
    }
    .search-list {
        padding: 20px 0 !important;
    }
    .search-input {
        width: 100%;
        margin: 20px 0;
    }
    .search-title {
        padding: 0;
    }
    .search-subtitle {
        padding: 0;
    }
    .search-tabs {
        margin: 0;
    }
    .documents-view {
        top: 25px;
    }
    .news-nav {
        margin-left: 0px !important;
    }
    .documents-tabs {
        margin: 0 !important;
        width: 100% !important;
    }
    .products .menu-btn {
        padding-bottom: 0 !important;
    }
    .csi-img {
        width: auto;
    }
    h2.title {
        font-size: 30px;
    }
    /*.header {
        margin-top: 100px;    
    }*/
    .header-toprow {
        position: static;
    }
    .toprow-search-area.opened {
        left: 180px !important;
        right: 5px !important;
        width: calc(100% - 400px) !important;
        display: flex !important;
        position: fixed !important;
        top: 30px !important;
        transform: none !important;
        background-color: #d9d9d9 !important;
        border-radius: 4px !important;
        height: 48px !important;
        transition: .5s ease-in-out !important;
        overflow: hidden !important;
    }
    .header-breadcrumbs,
    .header-toprow__lang {
        display: none;
    }
    .header-toprow__find {
        position: fixed;
        z-index: 10000;
        top: 45px;
        right: 200px;
    }
    .personal-button {
        z-index: 10000;
        top: 40px;
        right: 70px;
    }
    .limiter {
        max-width: calc(100% - 10px);
        margin-left: 5px;
        margin-right: 5px;
    }
    .menu {
        bottom: auto;
        top: 0;
        width: 100%;
        min-height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        max-height: 100%;
        padding: 0;
        padding: 18px 6px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        z-index: 21;
    }
    .menu-tel {
        display: none;
    }
    .menu-subject {
        display: none;
    }
    .menu::after {
        content: '+7 (483) 258-19-66';
        position: absolute;
        right: 40px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        color: #323232;
        font-size: 16px;
    }
    .menu-mask {
        display: none;
    }
    .menu-btn {
        padding: 0;
    }
    .menu-btn a {
        width: 20px;
        height: 20px;
        background-color: transparent;
        background-image: url("../images/default/mob-menu_icon.svg");
        background-size: auto;
        position: static;
        padding: 0 !important;
        background-repeat: no-repeat;
    }
    .menu-btn a img,
    .menu-btn a span {
        display: none;
    }
    .menu-btn a.active {
        background-image: url("../images/default/mob-menu_icon.svg");
        background-color: transparent !important;
    }
    .menu-btn a.active img,
    .menu-btn a.active span {
        display: none !important;
    }
    .menu-nav {
        display: none;
    }
    .menu-feedback {
        display: none;
    }
    .menu-logo img {
        max-width: 100px;
    }
    .menublock {
        position: fixed;
        top: 80px;
        bottom: auto;
        left: 0;
        right: 0;
        width: 100%;
        display: block;
        border-radius: 0;
        overflow-y: scroll;
        max-height: calc(100vh - 80px);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        z-index: 20;
    }
    .menublock.active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .menublock-left {
        width: 100%;
    }
    .menublock-left__title {
        display: none;
    }
    .menublock-left .menu-nav a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
        padding: 0;
        line-height: 140%;
        padding-left: 25px;
    }
    .menublock-left .menu-nav a:hover {
        color: #FFFFFF;
    }
    .menublock-right {
        width: 100%;
        padding: 30px 20px;
    }
    .menublock-right__list {
        padding: 0;
        padding-bottom: 40px;
    }
    .menublock-right__list:last-child {
        padding-bottom: 0;
    }
    .menublock-right__list-title {
        font-size: 12px;
        padding-bottom: 20px;
    }
    .menublock-right__list-link {
        font-size: 16px;
    }
    .menublock-right__search {
        display: block;
        width: 100%;
        position: relative;
        border-radius: 4px;
        overflow: hidden;
    }
    .menublock-right__search button {
        position: absolute;
        width: 14px;
        height: 14px;
        left: 20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background-image: url("../images/default/search_icon.svg");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        border: none;
        background-color: transparent;
        opacity: .62;
    }
    .menublock-right__search input {
        background-color: rgba(50, 50, 50, 0.06);
        border: none;
        width: 100%;
    }
    .menublock-right__search input[type="search"] {
        padding: 14px 10px 11px 50px;
    }
    .menublock-right__search input:focus {
        outline: none;
    }
    .menublock .menu-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 40px 0 30px;
    }
    .header {
        overflow: hidden;
        height: 100%;
    }
    .header-content {
        padding: 20px;
    }
    .header-content-links {
        padding: 0;
        padding-top: 20px;
    }
    .header-content-links-wrap {
        padding: 0;
        max-width: calc(100vw - 30px);
        width: 100%;
        overflow-x: auto;
    }
    .header-content-links-wrap::-webkit-scrollbar {
        width: 0px;
        background: rgba(255, 255, 255, 0);
    }
    .header-content-links span {
        padding-left: 0;
    }
    .header-content__title {
        padding: 0;
    }
    .header-breadcrumbs {
        padding: 0px 0 10px;
    }
    .scroll-btn {
        display: none;
    }
    .about {
        max-height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .about-info {
        width: 100%;
    }
    .about-info__title {
        padding: 20px;
    }
    .about-info__button {
        position: static;
        margin: 0 0 20px 20px;
    }
    .about-info__text {
        max-width: 100%;
        padding: 20px;
    }
    .about-slider {
        max-width: 100%;
        display: none;
        width: 100%;
    }
    .about-slider__item img {
        width: 100%;
    }
    .about-sliderNav {
        display: none;
    }
    .projects {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: 100%;
        max-height: 100%;
    }
    .projects-info {
        width: 100%;
        padding: 20px;
    }
    .projects-info__title {
        padding-left: 0;
    }
    .projects-info__title {
        max-width: 100%;
        padding: 20px 0;
    }
    .projects-info__done {
        padding: 0;
        margin: 0;
        font-size: 50px;
    }
    .projects-info__text {
        padding: 10px 0;
    }
    .projects-info__labels {
        padding: 0;
    }
    .projects-slider {
        width: 100%;
        padding: 20px;
        max-height: 740px;
    }
    .projects-variable {
        top: auto;
        bottom: 680px;
        right: 20px;
    }
    .projects-sliderNav {
        top: auto;
        bottom: 630px;
        right: 20px;
    }
    .psi-map img,
    .psi-map svg {
        margin: 0 auto;
        max-width: 100%;
    }
    .psi-info {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .psi-info__about {
        margin: 0;
    }
    .psi-info__title {
        width: 100%;
    }
    .psi-info__subtitle {
        width: 100%;
    }
    .psi-info__text {
        margin-bottom: 20px;
    }
    .psi-map {
        padding: 0;
    }
    .psi-title {
        padding: 0 0 50px 0;
    }
    .gkmp {
        max-height: 100%;
        min-height: 100%;
        padding: 20px;
    }
    .gkmp-subtitle {
        padding-left: 0;
    }
    .gkmp-title {
        padding: 0;
        padding-bottom: 10px;
    }
    .gkmp-examples {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0;
    }
    .gkmp-examples__item {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 250px;
        max-height: 250px;
    }
    .gkmp-examples__item:nth-child(1) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .gkmp-examples__item-btn {
        position: static;
        margin: 0 0 20px 20px;
    }
    .online-request {
        display: none;
    }
    .services-block-1 {
        -webkit-box-align: normal;
        -ms-flex-align: normal;
        align-items: normal;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .services-block-2 {
        -webkit-box-align: normal;
        -ms-flex-align: normal;
        align-items: normal;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .services-block__item {
        width: 49%;
        margin: 0;
        height: auto;
        min-height: 170px;
        margin-bottom: 10px;
    }
    .footer {
        padding: 40px 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-left {
        padding-right: 0;
        margin-bottom: 30px;
        width: 100%;
        flex-direction: column;
        justify-content: normal;
        text-align: center;
    }
    .footer-left img {
        display: none;
    }
    .documents {
        padding: 20px;
        min-height: 100%;
    }
    .documents .services-tab {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .documents-footer {
        display: none;
    }
    .documents-title {
        padding: 0;
        padding-bottom: 20px;
    }
    .documents-block {
        padding: 0;
    }
    .services {
        padding: 20px;
    }
    .services-block-1 {
        padding: 0;
    }
    .services-block-2 {
        padding: 0;
    }
    .services-title {
        padding: 0;
        padding-bottom: 20px;
    }
    .services-subtitle {
        padding-left: 0;
        padding-right: 0;
    }
    .services-tab {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .clients {
        max-height: 100%;
        padding: 20px;
        min-height: 100%;
    }
    .clients-sliderNav {
        top: 20px;
    }
    .clients-link {
        position: static;
        display: block;
        margin: 40px 0 0;
    }
    .clients-slider__item {
        margin: 0;
    }
    .clients-slider__item .csi-img {
        border-radius: 0;
        border-left: none;
    }
    .psi-title {
        padding-left: 0;
        margin-left: 0;
    }
    .projects-info {
        padding-left: 20px !important;
    }
    .projects-info__text {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .projects-info__labels {
        padding-left: 0 !important;
        padding-right: 0 !important;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
    }
    .projects-info__labels::-webkit-scrollbar {
        width: 0px;
        background: rgba(255, 255, 255, 0);
    }
    .services-tab {
        padding-left: 0 !important;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        margin-left: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden;
        white-space: nowrap;
    }
    .projects {
        max-height: calc(100% - 50px) !important;
    }
    .services-block {
        padding: 20px 0 !important;
    }
    .documents-block__item {
        margin-left: 0 !important;
    }
    .callback-icon {
        right: 20px;
        bottom: 20px;
    }
    .projects-variable {
        margin: 0 !important;
    }
    .psi-title {
        margin-top: 60px !important;
    }
    .second-slide-nav {
        margin-top: 0 !important;
        margin-right: 0 !important;
        margin-left: 20px !important;
    }
    .projects-slider__item-second .psi-title {
        margin-left: 0 !important;
    }
    .projects-slider {
        max-height: 400px;
    }
    .description-section-text {
        padding: 30px 10px 30px !important;
    }
    .header-content__text {
        padding-left: 0;
    }
    .item .header-btns {
        padding: 0 0 0;
    }
    .descr-block__gallery {
        padding-right: 0 !important;
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
    }
    .descr-block__gallery-item {
        margin-left: .5% !important;
        margin-right: .5% !important;
    }
    .article-photo {
        position: relative;
    }
    .article-photo img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }
    .text-page__main {
        margin: 0 !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
        padding: 20px;
    }
    .text-page__main img {
        max-width: 100%;
    }
    .text-page__text {
        padding: 20px 0 !important;
    }
    .text-page__text ul {
        -webkit-padding-start: 15px !important;
        padding-inline-start: 15px !important;
    }
}

@media (max-width: 1000px) {
    .company-contacts {
        padding: 20px;
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
        -webkit-box-align: normal;
        -ms-flex-align: normal;
        align-items: normal;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .company-contacts-left {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .company-contacts-right {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-top: 10px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        align-items: center !important;
    }
    .reviews-title {
        padding: 20px;
    }
    .reviews-list {
        padding: 0 20px 20px;
    }
    .review {
        padding: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .review-proove {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-right: 0;
        width: auto;
        max-width: 120px;
    }
    .review-company {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-left: 0;
        width: auto;
        max-width: 200px;
    }
    .review-info {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        padding-bottom: 20px;
        width: 100%;
    }
    .review-content {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        padding-left: 10%;
    }
    .review-content::after {
        left: 4%;
        top: 30px;
    }
    .reviews-nav {
        padding: 0 20px 40px;
    }
    .documents.active-view .documents-block {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .projects-info__labels {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .tabs {
        margin-right: 0 !important;
    }
    .tab-items {
        max-width: 100% !important;
    }
    .item .header-btns {
        margin: -20px 10px;
    }
}

@media (max-width: 930px) {
    .header-content__text {
        padding-bottom: 40px !important;
        max-width: 100%;
    }
    .descr-block__tabs {
        -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
        align-items: normal !important;
        max-width: 100% !important;
        overflow-x: auto;
    }
    .descr-block__tabs-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        max-width: 300px !important;
        min-width: 250px;
        width: 100%;
    }
    .descr-block {
        padding: 0px 20px 0 20px;
    }
    .descr-block table {
        max-width: 100%;
        overflow: auto;
    }
    .item .header-content {
        min-height: auto !important;
    }
    .header-content__title {
        padding-bottom: 25px !important;
        font-size: 30px !important;
    }
    .descr-maintitle {
        padding: 30px 0 30px 20px;
    }
    .descr-block__about {
        padding-right: 0 !important;
    }
    .descr-block__long-descr {
        padding-right: 0 !important;
    }
}

@media (max-width: 900px) {
    .articles-list {
        padding: 20px;
    }
    .articles-title {
        margin: 0 20px 0px 20px;
        padding-top: 1px;
    }
    .articles-tabs {
        margin: 0px 0 0 20px;
        max-width: 100%;
        overflow-x: auto;
    }
    .news-item__photo {
        padding-right: 0;
        max-width: 100%;
        padding-bottom: 15px;
    }
    .news-item__photo img {
        width: 100%;
    }
    .news-item-content__title {
        padding-bottom: 15px;
    }
    .news-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .callback-popup {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .callback-left {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: calc(100% - 40px);
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-right: 0;
    }
    .callback-left label {
        display: none;
    }
    .callback-left input {
        width: 48%;
    }
    .callback-left input:last-child {
        width: 100%;
    }
    .callback-right {
        margin-left: 0;
        margin-right: 0;
        max-width: calc(100% - 40px);
        height: auto;
        width: 100%;
    }
    .callback-right textarea {
        max-width: 65%;
    }
    .callback-submit {
        bottom: 10px;
        right: 10px;
    }
    .callback-popup__close {
        right: 10px;
        top: 10px;
    }
    .callback-right__checkrow {
        padding-left: 0;
    }
    .projects-info__labels {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 800px) {
    .review-content {
        padding-left: 50px;
    }
    .review-content::after {
        left: 0;
    }
    .review-info__title {
        font-size: 30px;
    }
    .review-info__subtitle {
        font-size: 18px;
    }
    .text-page__main table tbody tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .descr-block__gallery-item {
        max-width: 49% !important;
    }
    .descr-more {
        margin-right: 20px;
    }
    .descr-maintitle {
        padding-right: 10px;
    }
}

@media (max-width: 730px) {
    .footer-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
    .footer-left img {
        display: none;
    }
}

@media (max-width: 555px) {
    .gkmp-examples__item-btn {
        display: none;
    }
    .clients-sliderNav {
        display: none;
    }
    .csi-text {
        text-align: center;
    }
    .descr-block__close {
        right: 10px;
        top: 10px;
    }
    .descr-block__tabs img {
        height: 56.25%;
    }
    .descr-block__title {
        border-left: 0;
        padding-left: 0;
    }
    .descr-block__tabs {
        border-left: 0;
        padding-left: 0;
    }
    .descr-block__about {
        padding-left: 0;
        border-left: 0;
    }
    .descr-block__long-descr {
        padding-left: 0 !important;
        border-left: 0 !important;
    }
    .descr-block__text {
        padding-left: 0 !important;
        border-left: 0;
    }
    .descr-block__gallery {
        padding-left: 0 !important;
        border-left: 0;
    }
    .descr.active .descr-block {
        padding: 40px 10px 0 10px !important;
    }
    .descr-block ul {
        -webkit-padding-start: 15px !important;
        padding-inline-start: 15px !important;
    }
    .item .header-btns__request-text {
        padding-right: 15px;
        margin-right: 15px;
    }
    .header-breadcrumbs {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .descr-block__about {
        padding: 0 !important;
    }
    .descr-block__about.active {
        padding: 10px 40px 50px 20px;
    }
}

@media (max-width: 500px) {
    .novelty-date {
        margin: 20px 20px 10px;
        padding-bottom: 10px;
    }
    .novelty-titling {
        margin: 0 20px 30px;
        padding-bottom: 25px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
        -webkit-box-align: normal;
        -ms-flex-align: normal;
        align-items: normal;
    }
    .novelty-titling__photo {
        min-width: auto;
        margin-right: 20px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-top: 20px;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        padding-right: 0;
    }
    .novelty-titling__photo img {
        width: 100%;
    }
    .novelty-content {
        margin: 0 20px 45px;
    }
    .novelty-back {
        margin: 0 20px 45px;
    }
    .company-contacts__politics {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .psi-title {
        padding-top: 50px;
    }
    .psi-nav {
        padding-left: 0;
    }
    .projects-slider__item-second .psi-counter {
        padding-left: 0;
    }
    .projects-variable {
        right: auto;
        left: 20px;
    }
    .projects-sliderNav {
        bottom: 680px;
        right: 20px;
    }
}

@media (max-width: 440px) {
    .review {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .review-company {
        width: 100%;
        max-width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .review-info__title {
        font-size: 26px;
    }
    .review-info__subtitle {
        font-size: 16px;
    }
    .review-content {
        padding-left: 30px;
    }
    .review-content::after {
        width: 20px;
        height: 18px;
    }
    .header-btns__request-link {
        white-space: nowrap;
    }
    .header-btns__back {
        display: none;
    }
    .item .header-content {
        padding: 20px 10px;
    }
    .item .header-btns__request-text::after {
        bottom: 0;
    }
    .descr-more {
        margin-right: 20px;
    }
    .descr-maintitle {
        padding: 30px 10px 30px 10px;
        font-size: 1.5em !important;
    }
    .descr.active .descr-block {
        padding: 40px 10px 0 20px;
    }
    .description-section-text img {
        height: 56.25%;
    }
}

@media (max-width: 410px) {
    .footer-left {
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-left img {
        display: none;
    }
    .descr-block__gallery {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .descr-block__gallery-item {
        margin-left: 0;
        margin-right: 0;
        max-width: 100% !important;
    }
}

@media (max-width: 340px) {
    .company-contacts__politics {
        margin-top: 10px;
    }
    .company-contacts__social {
        margin-left: 5px;
    }
}

.descr-block__gallery-item {
    max-width: 32%;
    max-height: 100%;
}

.other-product {
    max-height: 100%;
}

.descr-block__gallery-item {
    margin-bottom: 0;
    width: auto !important;
}

.descr-block__gallery-item img {
    width: 100% !important;
    max-height: 100% !important;
    max-width: 100% !important;
}

.descr-block__gallery {
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
}

.tabs {
    -webkit-box-pack: normal !important;
    -ms-flex-pack: normal !important;
    justify-content: normal !important;
}

.descr-more {
    padding: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.projects-slider__item-second {
    max-height: 600px;
}

.projects-info__labels {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-bottom: 0;
    width: 0px;
    background: rgba(255, 255, 255, 0);
}

@media (max-width: 1360px) {
    .projects-info__labels {
        max-height: 250px;
    }
}
@media (max-width: 1280px) {
    .projects-info__labels {
        max-height: 300px;
    }
}
.psi-map .tabs {
    margin-right: 0 !important;
}

@media (max-width: 450px) {
    .psi-map {
        padding: 0 !important;
    }
}

@media (max-width: 1200px) {
    .projects-slider {
        max-height: 500px;
    }
    .projects-slider__item-second {
        max-height: 500px !important;
    }
    .psi-title {
        margin: 0 !important;
        padding: 0 !important;
    }
    .map-info {
        display: none;
    }
    .articles-list.events {
        display: block;
    }
    .articles-title {
        margin: 0 20px 30px 20px;
    }
    .articles-list {
        padding: 55px 20px 20px;
    }
    .articles-list__item {
        margin-bottom: 15px;
    }
    .articles-tabs {
        margin: 20px 20px 0;
    }
    .article-photo {
        border-bottom: 1px solid rgba(142, 142, 142, 0.2);
    }
    .article-photo img {
        max-height: 160px !important;
    }
    .article-info {
        padding: 15px;
    }
    .article-info__title {
        font-size: 16px !important;
        padding-bottom: 0 !important;
        margin-bottom: 15px !important;
    }
    .article-info__descr {
        display: block !important;
        color: #8e8e8e;
        margin-bottom: 20px;
    }
}

@media (max-width: 500px) {
    .map-head {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .map-head .projects-variable {
        margin-left: auto !important;
    }
    .map-head .psi-title {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.article-photo {
    min-height: 160px;
}

@media (max-width: 560px) {
    .articles-copyright {
        padding: 25px 20px;
    }
    .articles-copyright img {
        display: none;
    }
    .articles-copyright__text {
        padding: 0;
        margin: 0;
        border-left: none;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .art {
        padding: 20px 10px 140px;
    }
    .art-content {
        padding-top: 0;
    }
    .art-docs {
        padding: 25px 20px;
    }
    .art-docs img {
        display: none;
    }
    .art-docs__text {
        padding-left: 0;
        margin-left: 0;
        border-left: none;
        padding-bottom: 0;
        padding-top: 0;
        max-width: 100%;
        line-height: normal;
    }
    h1.art-title {.header-content__title-play
        font-size: 30px;
        padding-bottom: 0;
        line-height: normal;
    }
}

.header-content-backgrounds .video video {
    height: 100%;
}

.header-content-backgrounds .video {
    height: 100%;
}
.video.home { /*ik*/
    background-repeat: no-repeat;
    object-fit: cover;
    background-position: center;
    background-size: 100%;
}
.video.irmash-catalog { /*ik*/
    background-repeat: no-repeat;
    object-fit: cover;
    background-position: center;
    background-size: 100%;
}

.projects-slider__item-second .psi-title {
    padding-top: 50px !important;
}

.description-section img {
    max-width: 100%;
}

.descr-block__tabs img {
    width: 49%;
}

.descr-block__tabs span {
    margin-left: 2%;
    width: 49%;
}

.documents-tabs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
    overflow-x: auto;
}

.header-content-links__item span {
    letter-spacing: 0;
}

#mapAjax {
    max-height: 600px;
    overflow-y: auto;
}

@media (max-width: 930px) {
    .header-content__title h1.title {
        font-size: 2.5em !important;
    }
    .header-content__title-text {
        font-size: 18px !important;
    }
    .header-content__title-play {
        font-size: 18px !important;
    }
    .header-content__title-play a {
        width: 50px;
        height: 50px;
        background-position: 16.5px center;
    }
}
@media (max-width: 414px) { /*ik*/
    .header-content__title-play a {
        display: none;
    }
}

table img {
    max-width: 100% !important;
}

.services-tab {
    overflow-y: hidden !important;
}

.menu-logo a {
    width: 100%;
    height: 82px;
    display: block;
    background: url("../images/default/gkmp_logo.svg") no-repeat center;
    background-size: cover;
    background-position: 0 -120px;
}

@media (max-width: 1200px) {
    .menu-where {
        display: none;
    }
    .menu-logo a {
        width: auto;
        height: auto;
        background: none;
    }
    .menu-logo a img {
        display: block;
    }
}

.projects-slider {
    background-color: #323232;
}

.projects-variable {
    border-color: #FFFFFF;
}

.projects-variable__item {
    color: white;
    background-color: #323232;
}

.projects-variable__item.active {
    color: #323232;
    background-color: #FFFFFF;
}

.projects-slider__item-second .psi-title {
    padding-top: 30px !important;
    padding-bottom: 10px;
}

.psi-nav {
    padding-bottom: 10px;
}

.psi-info__subtitle {
    padding-bottom: 10px;
}

.projects-slider__item-second .psi-map {
    padding-bottom: 10px;
}

.tabs {
    margin-right: 0 !important;
}

.descr-block__gallery.active {
    padding-right: 0;
}

.descr-block__gallery-item {
    margin-left: 0;
    margin-right: 4px;
}

.descr-block__gallery {
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
}

@media (min-width: 1170px) {
    body {
        background: #e5e5e5 url("../images/default/global_bg.svg") no-repeat;
        background-position-x: calc(157% - 50px);
        background-position-y: calc(50% + 40px);
        background-size: 70% 70%;
        background-attachment: fixed;
    }
}

.psi-title {
    min-height: 44px;
}

.header-breadcrumbs__item:last-child a {
    pointer-events: none;
}

header .scroll-btn {
    display: none;
}

.projects-slider__item-second {
    overflow-y: scroll;
    overflow-x: hidden;
}

.projects-slider__item-second::-webkit-scrollbar {
    -webkit-appearance: none;
    appearance: none;
    width: 7px;
}

.projects-slider__item-second::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.projects-slider__item-second::-webkit-scrollbar-button {
    display: none;
}

.documents-block::-webkit-scrollbar {
    -webkit-appearance: none;
    appearance: none;
    width: 7px;
}

.documents-block::-webkit-scrollbar-thumb {
    border-radius: 2px;
    opacity: .7;
    background-color: #323232;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.documents-block::-webkit-scrollbar-button {
    display: none;
}

.projects-info__labels::-webkit-scrollbar {
    -webkit-appearance: none;
    appearance: none;
    width: 7px;
}

.projects-info__labels::-webkit-scrollbar-thumb {
    border-radius: 2px;
    opacity: .7;
    background-color: #323232;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.projects-info__labels::-webkit-scrollbar-button {
    display: none;
}

.descr-block__tabs>img {
    width: auto;
    max-width: 250px;
}

.descr-block__gallery {
    justify-content: space-between;
}

.descr-block__gallery-item {
    width: calc(33.33% - 33.33px) !important;
    margin-bottom: 50px;
}

@media (min-width: 551px) {
    .descr-block__gallery-item {
        margin-right: 45px !important;
    }
    .descr-block__gallery-item:nth-child(3n) {
        margin-right: 0 !important;
    }
    .descr-block__gallery {
        justify-content: normal;
    }
}

.about-section {
    padding: 40px;
    margin-bottom: 20px;
}

.about-section__title {
    padding-bottom: 30px;
    color: black;
}

.about-section__text {
    color: black;
    margin-bottom: 30px;
}

.about-section__text:last-child {
    margin-bottom: 0;
}

.feedback {
    margin-bottom: 20px;
    position: relative;
}

.feedback-nav {
    position: absolute;
    right: 60px;
    bottom: 30px;
    top: auto;
    left: auto;
    border: 1px solid rgba(50, 50, 50, 0.24);
}

.feedback-slider {
    width: 100%;
}

.feedback-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;

    width: 100%;
    min-height: 395px;
}

.feedback-item__photo {
    width: 38.4%;
    /*background-color: #323232;*/
    display: flex;  
    padding: 0 10px;  
}
.feedback-item__image {
    object-fit: cover;
    max-width: 100%;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.feedback-item__text {
    width: 61.6%;
    padding: 30px 50px 40px;
}

.feedback-item__text-review {
    font-size: 36px;
    opacity: .38;
    padding-bottom: 15px;
    line-height: 110%;
}

.feedback-item__text-author {
    display: inline-block;
    border-top: 1px solid #323232;
    padding-top: 15px;
    font-size: 24px;
}

.feedback-item__text-specs {
    font-style: 18px;
    opacity: .38;
}

.history {
    margin-bottom: 20px;
    position: relative;
    min-height: auto;
    padding-bottom: 60px;
    background-color: #323232;
}

.history-titling {
    position: absolute;
    top: 60px;
    left: 50px;
    right: 50px;
    z-index: 2;
}

.history-titling h2.title {
    color: #FFFFFF;
}

.history-titling__text {
    color: #FFFFFF;
    padding-top: 20px;
    line-height: 140%;
    font-size: 24px;
    font-weight: 300;
    font-family: "PFRegular", sans-serif;
}

.history-ages {
    color: #FFFFFF;
    padding-top: 150px;
    border-bottom: 1px solid #FFFFFF;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

.history-ages__item {
    padding: 20px 28px;
    font-size: 36px;
    text-align: center;
    margin-right: 5%;
    border-bottom: 3px solid transparent;
    -webkit-transition: border-color .3s ease-in-out;
    transition: border-color .3s ease-in-out;
}

.history-ages__item:last-child {
    margin-right: 0;
}

.history-ages__item.current {
    border-bottom: 3px solid #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.history-slider__item {
    display: none;
}

.history-slider__item.current {
    display: block;
}

.history-slider__item.current .history-slider__photo {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.history-slider__item.current .history-slider__text {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.history-slider__photo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.history-slider__photo::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    background-color: rgba(50, 50, 50, 0.8);
    content: '';
}

.history-slider__photo img {
    max-width: 100%;
    height: 100%;
    width: 100%;
}

.history-slider__text {
    position: relative;
    z-index: 2;
    padding: 40px 40px 30px;
    color: #fff;
    max-width: 77% !important;
    margin: 0 auto;
    padding-top: 20px;
    font-size: 18px;
    line-height: 140%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

.footer-writeToUs--block>img {
    max-height: 50px;
}

.footer-writeToUs--block .footer-left__text span:nth-child(1) {
    font-size: 30px;
    padding-bottom: 0px;
}

.clients-slider .slick-slide img {
    max-width: 90%;
}

.artArrow {
    height: 100%;
    width: 140px;
    background-size: 10px;
}

.artPrev {
    left: 0px;
}

.artNext {
    right: 0px;
}

.descr.active {
    background-color: #fff;
}

.descr-block {
    color: #323232;
}

.descr-block__title {
    color: #323232 !important;
}

.descr-block__tabs-item {
    background: #EBEBEB;
    color: rgba(50, 50, 50, 0.62);
}

.descr-block__tabs-item.active,
.descr-block__tabs-item:hover {
    background-color: rgba(50, 50, 50, 0.62);
    color: #fff;
}

@media (max-width: 1600px) {
    .feedback-item__photo {
        /*padding-top: 30px;*/
    }
}
@media (max-width: 1366px) and (min-width: 1200px) {
    .feedback-item__photo {
        width: 45%;
    }
}
@media (max-width: 1024px) {
    .feedback-item__photo {
        width: 50%
    }
}
@media (max-width: 1000px) {
    .contacts-title {
        padding: 20px;
    }
    .contacts-map {
        width: 100%;
        padding: 0 0 50px;
    }
    .contacts-info {
        width: 100%;
        padding: 0 20px 30px;
    }
    .contacts-form {
        padding: 0 20px 30px;
    }
    .contacts-form-inputs {
        width: 100%;
    }
    .contacts-form-textarea {
        width: 100%;
        margin-top: 30px;
    }
    .contacts-blocks {
        padding: 0 20px 50px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .contacts-blocks__item {
        width: 49%;
        margin-bottom: 15px;
    }
    .contacts-form-submit .form-rules {
        margin-right: 10px;
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 570px) {
    .contacts-blocks__item {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .footer-allpages {
        max-width: calc(100% - 10px) !important;
        margin: 0 5px 20px !important;
    }
}

.feedback-item__text-review {
    font-size: 24px;
}

.history-titling__text {
    font-size: 18px;
}

@media (max-width: 1200px) {
    .menublock {
        height: 100%;
    }
    .menublock-left,
    .menublock-right {
        height: auto;
    }
    .projects-info__labels {
        padding-bottom: 5px;
    }
    .projects-info__labels::-webkit-scrollbar {
        height: 3px;
    }
}

@media (max-width: 450px) {
    .header-content-links {
        display: none;
    }
}

@media (max-width: 1200px) {
    .gkmp-examples {
        margin-bottom: 20px;
    }
    .gkmp-title {
        margin-bottom: 10px;
    }
    .gkmp-title__main {
        font-size: 24px;
    }
    .header-content-list {
        display: none;
    }
    .about-section {
        padding: 20px;
    }
    .menu__button-block {
        display: none !important;
    }
}

@media (max-width: 700px) {
    .feedback-nav {
        right: 20px;
        bottom: 20px;
    }
    .history-titling {
        left: 20px;
        right: 20px;
    }
    .history-ages__item {
        padding: 0;
        font-size: 25px;
    }
    .feedback-item__photo {
        display: none;
    }
    .feedback-item__text {
        width: 100%;
        padding: 20px;
        padding-bottom: 70px;
    }
    .history-ages {
        overflow-x: auto;
    }
    .history-slider__text {
        width: auto;
        max-width: 100% !important;
        padding: 15px;
        font-size: 16px;
        left: 20px;
        right: 20px;
        transform: translateX(0);
    }
}

.art-content {
    padding-top: 0;
}

.art-content h1.art-title {
    margin: 0;
}

.header-toprow__find .toprow-search-area {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-45%);
    right: 200px;
    width: 0;
    background-color: #d9d9d9;
    border-radius: 4px;
    height: 40px;
    opacity: 0;
    transition: .5s ease-in-out;
    overflow: hidden;
}

.header-toprow__find .toprow-search-area.opened {
    opacity: 1;
    width: calc(100% - 200px);
    transition: .5s ease-in-out;
}

.toprow-search-area button,
.toprow-search-area input {
    background-color: transparent;
    border: none;
    padding: 5px 0;
}

.toprow-search-area input {
    width: 100%;
}

.toprow-search-area input[type="text"] {
    padding-left: 50px;
}

.toprow-search-area button {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: none;
    background-color: transparent;
}

.toprow-search-area button:focus {
    outline: none;
}

.toprow-search-area input:focus {
    outline: none;
}

.company-contacts-right {
    font-size: 14px;
}

.menublock {
    max-width: 100%;
    max-height: 100%;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 0;
}

.menublock.active {
    pointer-events: all;
}

.menublock-left__title {
    display: none;
}

.menublock-left {
    width: 38.5%;
}

.menublock-right {
    width: 61.5%;
}

.menu-nav {
    padding-top: 26.25vh;
}

.menu__direction-left {
    background-color: #323232;
}

.menu__back-main {
    width: 250px;
}

.menu__back-main img {
    margin-right: 10px;
}

.menublock-close {
    position: absolute;
    top: 40px;
    left: 30px;
    width: 32px;
    height: 32px;
    background: url('../images/default/close_icon--l.svg') no-repeat center;
    background-size: 100% 100%;
    pointer-events: all;
    z-index: 1111;
    cursor: pointer;
}

.clients-slider .slick-slide>div {
    display: flex !important;
    justify-content: center;
}

.header-content-list {
    max-width: 100%;
}

.sitebar-header__logo {
    height: 75px !important;
}

.sitebar-header {
    padding-right: 12px !important;
}

.sitebar-header__menu {
    min-width: 48px;
    min-height: 48px;
}

@media (min-width: 1200px) {
    .sitebar-header__logo {
        width: 100% !important;
    }
}

.header-content-list__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 10px;
}

.header-content-list__item svg {
    width: 70px;
    height: 70px;
}

.hcl__item-photo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slick-slide.slick-current .hcl__item-photo {
    border-color: #484747;
}

.header-content-backgrounds.about-bg-slider img {
    opacity: .5;
    height: 100%;
}

.header-content-backgrounds.about-bg-slider .slick-track {
    height: 100%;
}

.header-content-backgrounds.about-bg-slider .slick-list {
    height: 100%;
}

.header-content-backgrounds.about-bg-slider .slick-slide {
    height: 100%;
}

.header-content-backgrounds.about-bg-slider .slick-slide>div {
    height: 100%;
}

.history-ages {
    border: none;
    position: relative;
}

.history-ages:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: white;
    z-index: 0;
}

.history-ages__item {
    border-width: 4px;
    transform: translateY(2px);
    position: relative;
    z-index: 2;
}

@media (min-width: 800px) {
    .header-content-list .slick-track {
        transform: none !important;
    }
}

.contacts-form-policy .form-rules>span {
    margin-left: 25px;
}

.contacts-form-policy .form-rules>span>span {
    white-space: nowrap;
}

.sitebar-header__logo {
    /*background-image: url('../images/russian-logo.jpg') !important;*/
	background-image: url('../images/new_russian-logo.jpg') !important;
}

@media (min-width: 1360px) {
    .history {
        min-height: 0;
        position: relative;
        max-height: 700px;
        overflow: hidden;
    }
    .history:after {
        content: '';
        display: block;
        width: 100%;
        padding-bottom: 54%;
        pointer-events: none;
    }
    .history-ages {
        padding-top: 0;
        position: absolute;
        top: 150px;
        left: 0;
        right: 0;
        z-index: 10;
    }
    .history-slider {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
    .history-slider__text {
        margin-top: 250px;
        font-size: 16px;
        max-height: 359px;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .history-slider__text::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 1200px) {
    .header-content-list {
        padding-left: 0;
        padding-right: 0;
    }
    .clients-slider__item {
        min-width: 190px !important;
    }
    .sitebar {
        width: 100% !important;
        bottom: auto !important;
        z-index: 1111 !important;
    }
    .sitebar .sitebar-header {
        padding: 15px 5px !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        height: auto !important;
    }
    .sitebar .sitebar-header__logo {
        -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
        margin-left: 0 !important;
    }
    .sitebar .sitebar-nav {
        display: none !important;
    }
    .sitebar .sitebar-footer {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .menublock {
        z-index: 111111;
    }
    .menublock-left {
        width: 100%;
    }
    .menublock-right {
        width: 100%;
    }
    .menublock-close {
        top: 15px;
        right: 15px;
        left: auto;
        width: 20px;
        height: 20px;
    }
    .menu__direction-left .menu__back-main img {
        filter: invert(100%);
    }
    .product-right img {
        max-width: 240px;
    }
    .other-product .product-right {
        padding-right: 20px;
        padding-left: 20px;
    }
    .product {
        min-height: auto;
    }
    .documents .services-tab {
        margin-bottom: 20px !important;
    }
    .company-contacts-left {
        justify-content: center;
    }
    .company-contacts__phone {
        margin-right: 20px;
        width: 100%;
        text-align: center;
    }
    .company-contacts-right {
        align-items: flex-end;
    }
    .footer-right {
        width: 200px;
    }
    .descr-block__tabs {
        padding-bottom: 10px;
    }
    .descr-block__tabs::-webkit-scrollbar {
        display: none;
    }
    .descr-block__text.active {
        display: flex;
        flex-wrap: wrap;
    }
    .descr-block__text.active b {
        margin-bottom: 20px;
        width: 100%;
        margin-top: 10px;
    }
    .header-content-list {
        display: block !important;
    }
    .about-header {
        display: none !important;
    }
}

@media (max-width: 550px) {
    .product-right {
        display: none;
    }
    .product-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .product-left__title {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
    .product-left__btn {
        margin-left: 0;
        margin-right: 0;
    }
    .sitebar-header__logo {
        width: 108px !important;
        height: 40px !important;
    }
    .descr-block__gallery-item {
        width: calc(50% - 5px) !important;
        margin-bottom: 10px;
    }
    img {
        max-width: 100%;
    }
    .documents-block__item {
        max-width: calc(50% - 10px) !important;
        margin-right: 10px !important;
    }
    .documents-block__item:nth-child(2n) {
        margin-right: 0 !important;
    }
    .documents {
        padding: 20px 10px;
    }
    .contacts-form-submit {
        flex-wrap: wrap;
        justify-content: center;
    }
    .contacts-form-policy {
        margin-bottom: 20px;
    }
    .header-toprow__find {
        top: 30px;
    }
    .personal-button {
        top: 25px;
    }
}

@media (max-width: 800px) {
    .header-content-list {
        padding: 0 !important;
    }
}

@media (max-width: 1360px) {
    .history-slider__text {
        left: auto !important;
        right: auto !important;
    }
    .history-slider__photo img {
        object-fit: cover;
    }
}

.hcl__item-photo svg {
    fill: #484747;
}

.hcl__item-photo svg * {
    fill: #484747;
}

.slick-slide.slick-current .hcl__item-photo svg {
    fill: #484747;
}

.slick-slide.slick-current .hcl__item-photo svg * {
    fill: #484747;
}

.header-content-backgrounds.about-bg-slider img {
    object-fit: cover;
}

.about-heading {
    max-height: 700px;
}


@media (max-width: 1000px) {
    .company-contacts__phone {
        margin-right: 0;
    }
}

.documents .services-tab::-webkit-scrollbar {
    display: none;
}

.documents-tabs::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1000px) {
    .projects-info__labels::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 550px) {
    .descr-block__tabs-item {
        min-width: auto;
    }
    .toprow-search-area.opened {
        left: 5px !important;
        right: 5px !important;
        width: calc(100% - 10px) !important;
        display: flex !important;
        position: fixed !important;
        top: 70px !important;
        transform: none !important;
        background-color: #d9d9d9 !important;
        border-radius: 4px !important;
        height: 48px !important;
        transition: .5s ease-in-out !important;
        overflow: hidden !important;
    }
}

.modal-content {
    max-width: 750px;
}

.modal-content input::placeholder,
.modal-content select,
.modal-content textarea::placeholder {
    color: white !important;
}

.callback-popup textarea {
    font-family: 'PFMedium', sans-serif;
}

.callback-popup input::placeholder,
.callback-popup textarea::placeholder {
    color: white !important;
}

@media (min-width: 1200px) {
    .about-heading .header-content {
        min-height: 700px;
    }
}

.main-menu-nav-block .icon {
    margin-right: 2px;
    transition: .3s ease-in-out;
}

.main-menu-nav-block:hover .icon {
    fill: #A80000;
    transition: .3s ease-in-out;
}

.main-menu-nav-block {
    margin-bottom: 10px;
}

.main-menu-nav-block:last-child {
    margin-bottom: 0;
}

.sitebar-header__logo {
    margin-left: 12px !important;
}

.sitebar-header {
    align-items: center;
}

.menu__direction-right .menublock-right__list-title {
    font-size: 23px;
}

.projectsLeft, .projectsRight {
    width: 50%;
    height: 100%;
    position: relative;
}

.projectsRight {
    margin-left: 0;
    padding-left: 14px;
}

.projectsLeft {
    margin-right: 0;
    padding-right: 14px;
}

.ytp-pause-overlay
 {
    bottom:-200px !important;
 }

.ytp-chrome-top.ytp-show-cards-title {
    display: none !important;
}

.ytp-watermark.yt-uix-sessionlink {
    display: none !important;
}


.main-menu-nav-block_lk:hover .main-menu-nav-block-icon_lk ellipse,
.main-menu-nav-block_lk:hover .main-menu-nav-block-icon_lk path
{
    fill: #A80000;
}
@media(max-width: 1200px){
    .header .personal-button{
        display: none;
    }
    .header-toprow__find{
        right: 50px;
    }
    .about-heading .header-content{
        display: none;
    }
    .header-content-list{
        display: flex!important;
        flex-wrap: wrap;
    }

}
@media(max-width: 1200px) {
    .header .personal-button {
        display: none;
    }
    .header-toprow__find {
        right: 50px;
    }
    .about-section__benefits{
        margin-top: -10px;
    }
}
@media(max-width: 768px) {
    .header-content-list__item{
        width: 33%;
        margin-bottom: 25px;
    }
}
@media(max-width: 767px) {
    .art-right a::before {
        right: 35%;
    }
    .art-back a::before {
        left: 35%;
    }
}
@media(max-width: 550px) {
    .header-content-list__item{
        width: 50%;
    }
}
@media(max-width: 450px) {
    .header-content-list__item{
        width: 100%;
    }
}
@media(max-width: 414px) {
    .footer.flex-zakaz {
        padding: 58px 40px;
    }
}




.get-catalog-form{
    padding: 54px 40px;
    color: #fff;
    background-image: url("../images/get-catalog-form__bg.jpg");
    background-size: cover;
}
.get-catalog-form__title{
    font-weight: 500;
    font-size: 59px;
    line-height: 99%;
}
.get-catalog-form__sub-tite{
    margin-top: 15px;
    font-weight: normal;
    font-size: 18px;
    line-height: 110%;
    margin-left: 50px;
    max-width:375px
}
.get-catalog-form__form{
    margin-top: 63px;
    margin-left: 50px;
}
.get-catalog-form__input{
    border: none;
    border-bottom: solid 1px #fff;
    width: 290px;
    margin-right: 73px;
    display: inline-block;
    height: 50px;
    background-color:transparent;
}
.get-catalog-form__btn{
    background: #FFFFFF;
    border-radius: 4px;
    font-size: 23px;
    line-height: 28px;
    text-align: center;
    color: #A80000;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    width:200px;
    border: none;
    padding: 0px;
}

.get-catalog-form__btn, .get-catalog-form__input{outline:none;}
.get-catalog-form__btn:active, .get-catalog-form__input:active {outline:none;}
.get-catalog-form__btn:focus, .get-catalog-form__input:focus {outline:none;}

@media(max-width:500px){
    .get-catalog-form {
        padding: 30px 15px;
    }
    .get-catalog-form__title{
        font-size:40px ;
    }
    .get-catalog-form__title-icon{
        display:none;
    }
    .get-catalog-form__sub-tite,
    .get-catalog-form__form{
        margin-left: 0px;        
    }
    .get-catalog-form__input,
    .get-catalog-form__btn{
        width:100%;
    }
    .get-catalog-form__btn{
        margin-top: 25px;
    }
}


.main-slider{
    max-width: 100%;
}
.main-slider__element{
    padding:85px 51px;
    min-height:590px;
    position: relative;
    width: 100%;
}
.main-slider__element--light{
    background-color: #fff;
}
.main-slider__element--dark{
    background-color: #323232;
}
.main-slider__element-title{
    font-weight: bold;
    font-size: 40px;
    line-height: 48px;
    position: relative;
    max-width: 85%;
}
.main-slider__element--light .main-slider__element-title{
    color: #323232;
}
.main-slider__element--dark .main-slider__element-title{
    color: #fff;
}
.main-slider__element-text{
    font-size: 23px;
    line-height: 28px;
    max-width: 537px;
    position: relative;
    margin-top: 36px;
}
.main-slider__element--light  .main-slider__element-text{
    color: rgba(50,50,50,.6);
}
.main-slider__element--dark .main-slider__element-text{
    color: rgba(255,255,255,.6);
}
.main-slider__element-img{
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width:auto
}
.main-slider__element-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: calc(100% - 102px);
    bottom: 44px;
    left: 51px;
}
.main-slider__element-nav{
    padding: 0px;
    margin: 0;
}
.main-slider__element-nav li{
    display: inline-block;    
    margin: 0 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;    
    position: relative;
}
.main-slider__element-nav li:first-child{
    margin-left: 0px;
}
.main-slider__element-nav li:last-child{
    margin-right: 0px;
}
.main-slider__element--light .main-slider__element-nav li{
    background-color: rgba(50,50,50,.2);
}
.main-slider__element--dark .main-slider__element-nav li{
    background-color: rgba(255,255,255,.2);
}
.main-slider__element--light .main-slider__element-nav li:hover,
.main-slider__element--light .main-slider__element-nav li:focus,
.main-slider__element--light .main-slider__element-nav li.active,
.main-slider__element--dark .main-slider__element-nav li:hover,
.main-slider__element--dark .main-slider__element-nav li:focus,
.main-slider__element--dark .main-slider__element-nav li.active{
    background: #A80000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.main-slider__element--light .main-slider__element-nav li.active,
.main-slider__element--dark .main-slider__element-nav li.active{
    margin: 0 15px;
}
.main-slider__element--light .main-slider__element-nav li.active:first-child{
    margin-left: 0px;
}
.main-slider__element--dark .main-slider__element-nav li.active:last-child{
    margin-right: 0px;
}
.main-slider__element--light .main-slider__element-nav li.active:after,
.main-slider__element--dark .main-slider__element-nav li.active:after{
    content:"";
    position: absolute;
    top: 50%;
    left:50%;
    width: 30px;
    height:30px;
    transform:translate(-50%, -50%);
    background-position: center;
    background-repeat: no-repeat;
}
.main-slider__element--light .main-slider__element-nav li.active:after{
    background-image: url(../images/main-slider/nav-dot-decor--dark.svg);
}
.main-slider__element--dark .main-slider__element-nav li.active:after{
    background-image: url(../images/main-slider/nav-dot-decor--light.svg);
}
/*
.main-slider__element-nav li img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.main-slider__element--light .main-slider__element-nav li img{
    stroke:#323232;
}
.main-slider__element--light .main-slider__element-nav li img{
    stroke:#FFFFFF;
}
*/
.main-slider__element-btn{
    background: #A80000;
    border-radius: 4px;
    font-size: 23px;
    height: 50px;
    width: 200px;
    line-height: 50px;
    color: #fff;
    text-align: center;
}
.main-slider__element-btn:hover,
.main-slider__element-btn:focus{
    background-color: #BC1010;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.main-slider__advantages-row{
    display:flex;
    position:relative;
    margin-top: 20px;
    padding-top: 30px;
}
.main-slider__advantages-row:after{
    width: 72px;
    height: 1px;
    position: absolute;
    top:0px;
    left: 0px;
    background-color: rgba(50,50,50,.6);
    content: "";
}
.main-slider__advantages-element{
    margin-right: 50px;;
}
.main-slider__advantages-element .main-slider__advantages-img{
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}
.main-slider__advantages-text{
    display: inline-block;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: rgba(50,50,50,.6);
    vertical-align: middle;
}
.main-slider__services{
    position:relative;
}
.main-slider__services-element{
    margin-bottom: 20px;
    font-weight:bold;
    font-size: 30px;
    line-height: 36px;
    color: #323232;
}
.main-slider__services-element .main-slider__services-icon{
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}
.header-content-links-container{
    background-color: #fff;
}

.sub_t{
 margin-left: 40px;
    margin-bottom: 30px;
    margin-top: -21px;
}
.mosn-slider{
padding-left:10px;
padding-bottom:20px;
}

@media(max-width:1024px){
    .main-slider{
        margin-top: 50px;
    }
    .sub_t {
        margin-left: 20px;
        margin-top: 0; 
    }
    .resurci .projects-info__title,
    .mosniosti .projects-info__title {
        margin-left: 20px;
    }
}
@media(max-width:768px){    
    .main-slider__element {
        padding: 35px 21px;
        overflow: hidden;
    }
    .main-slider__element-img{
        right: -40%;
    }
    .main-slider__element-title{
        max-width: 100%;
    }
    .main-slider__element-footer {
        width: calc(100% - 42px);
        left: 21px;
    }
}
@media(max-width:459px){
    .main-slider .main-slider__element-img{
        display: none;
    }
    .main-slider__element-title{
        font-size: 25px;
        line-height: 120%;
    }
    .main-slider__element-text {
        font-size: 18px;
        line-height: 120%;
        max-width: 100%;
        margin-top: 26px;
    }
    .main-slider__advantages-row{
        justify-content: space-between;
    }
    .main-slider__advantages-element{
        text-align: center;
        width: 100%;
        max-width: 33%;
        margin-right: 0px;
    }
    .main-slider__advantages-text{
        display: block;
    }
    .main-slider__advantages-element .main-slider__advantages-img{
        margin-right: 0px;
        margin-bottom: 10px;
        min-height: 36px;
    }
    .main-slider__element-footer{
        flex-direction: column-reverse;
        bottom: 24px;
    }
    .main-slider__element-nav{
        margin-top: 30px;
    }
    .main-slider__services-element{
        font-size: 22px;
        line-height: 120%;
    }
    .main-slider {
        margin-top: 0px;
    }
}
@media(max-width:375px){
    .main-slider__element-title{
        font-size: 20px;
    }
    .main-slider__element-text {
        font-size: 16px;
    }
    .main-slider__advantages-text{
        font-size: 13px;
        line-height: 15px; 
    }
    .main-slider__services-element{
        font-size: 19px;
    }
}


.tabs__nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}
a.tabs__link.tabs__link_active {
    font-family: 'PFRegular';
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 45px;
    color: #323232;
    border-bottom: 4px solid #A80000;
    opacity: 1;
    font-weight: bold;
}
a.tabs__link {
    font-family: 'PFRegular';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 45px;
    color: #323232;
    opacity: 0.38;
}
a.tabs__link {
    margin-left: 100px;
}
a.tabs__link:nth-child(1) {
    margin-left: 0px;
}
.tab-content.p-3 {
    background: linear-gradient( 
84.56deg, #323232 43.83%, rgba(50, 50, 50, 0.82) 72.51%, rgba(50, 50, 50, 0.3) 95.68%);
    border-radius: 4px;
    height: 100%;
    min-height: 500px;
    width: 100%;
}
.tabs__pane{
/*
padding-left:20px;
padding-top:20px;
*/
}
.tabs__pane p {
    font-family: 'PFRegular';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    width: 70%;
}
.tabs__pane ul li {
    font-family: 'PFRegular';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    width: 70%;
    opacity: .4;
}
div#tabs-1 {
    padding-left: 40px;
}
.tabs__nav {
    margin-bottom: 40px;
}
section.resurci.limiter.article {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}
section.clients.limiter {
    margin-top: 20px;
}

.slide_mosn{
    position: relative;
    display: block;
}
.img_box {
    z-index: 10;
    position: relative;
    display: block;
}
.slide_mosn i.fa.fa-search {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 20;
    color: black;
    bottom: 1%;
    right: 13%;
    color: #323232;
    opacity: 0;
}



@media (max-width:450px){
a.tabs__link {
    margin-left: 0px;
    border-bottom: 1px solid #b7b7b7;
}
.tabs__pane{
padding-left:10px;
padding-top:10px;
}
div#tabs-1 {
    padding-left: 0;
}
}

.img_box img {
    z-index: 10;
    position: relative;
    display: block;
    width: 290px;
    height: 180px;
}

.t_back {
    height: auto;
    min-height: 500px;
    width: 100%;
    padding-left: 20px;
    padding-top: 20px;
background: linear-gradient( 
84.56deg, #323232 43.83%, rgba(50, 50, 50, 0.82) 72.51%, rgba(50, 50, 50, 0.3) 95.68%);
}

.tabs__pane {
    height: 100%;
    min-height: 500px;
    width: 100%;
}

.slide_mosn:hover ~ .slide_mosn > a {
    opacity: .4;
    animation: .4s;
    transition: .4s;
}
.slide_mosn:hover ~ .slide_mosn i {
    opacity: 1;
    animation: .4s;
    transition: .4s;
}

.slide_mosn:hover {
    opacity: .4;
    animation: .4s;
    transition: .4s;
}

@media(max-width:450px){
.tabs__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
}




.header-content-links {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding-top: 70px;
    margin: auto;
    margin: 0;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.header-content-links-wrap {
    max-width: 100%;
    overflow-x: auto;
    padding: 20px 58px 40px 0px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.header-content-links__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-width: 14%;
    max-width: 15%;
    min-height: 14%;
    margin-left: 5px;
    margin-right: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.header-content-links__item img {
    height: 100%;
    height: 123px;
    margin: 0 auto;
    padding: 25px;
}
.header-content-links__item span {
    letter-spacing: 0;
    font-family: 'PF-Din-Text-Cond-Pro';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #323232;
    opacity: 0.6;
    width: 100%;
    max-width: 100%;
}
a.header-content-links__item.flex:hover > img {
    border: 1px solid red;
    border-radius: 10px;
}
a.header-content-links__item.flex:hover > span {
    opacity: 1;
}
.header-content-links-wrap {
    overflow: visible;
}
a.company-contacts__social-rutube {
    width: 25px;
    height: 25px;
    background-image: url(/images/rutube.svg);
    background-size: 100% 100%;
    background-position: center;
}
@media (min-width:1200px){
.services-block.active {
    display: grid!important;
    grid-template-columns: repeat(4, 2fr)!important;
    grid-gap: 2rem!important;
}

}
.table_page_usl_item a p {
    max-width: 69%;
}
.table_page_usl {
    display: grid!important;
   grid-template-columns: repeat(auto-fill, minmax(299px, 1fr));
    grid-gap: 2rem!important;
}

.table_page_usl {
    margin-top: 4rem;
}




ul#vertical-multilevel-menu, #vertical-multilevel-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%!important;
    font-size: 12px;
}
#vertical-multilevel-menu li a {
    font-family: 'PF-Din-Text-Cond-Pro'!important;
    font-style: normal!important;
    font-weight: 400!important;
    font-size: 15px!important;
    line-height: 130%!important;
    display: flex!important;
/*    align-items: flex-end!important;*/
    color: #323232;
    padding: 12px 0!important;
    padding-left: 52px!important;
}
#vertical-multilevel-menu li ul {
    margin: -63px 0 0 315px!important;
}
.sitebar {
    z-index: 10!important;
}
.nav-item-content li span a, .nav-item-content li a {
    background: #f5f5f5!important;
}
.nav-item-content li span a:hover, .nav-item-content li a:hover {
    background: #e5e5e5!important;
}
#vertical-multilevel-menu li a.item-selected {
    background-color: #d6d6d6!important;
    color: #A80000!important;
}
#vertical-multilevel-menu li ul li a {
    padding-left: 20px!important;
}
li.item-selected > a {
    color: #a80000!important;
}
.nav-item-content li a:hover {
    color: #a80000!important;
}
 .nav-item-content li a:hover > svg use {
    fill: #a80000!important;
}
/*
.nav-item.opened .nav-item-content {
    height: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.7s ease-in-out;
    animation: .5s;
    transition: .5s;
}

#vertical-multilevel-menu li ul {
    position: absolute;
    top: 0!important;
    display: none;
    z-index: 500;
    height: 100%!important;
    max-height: 100vh!important;
    border: 1px solid #c1c1c100;
    /* border-bottom: 0; *//*
    width: 200px!important;
    margin: auto 0!important;
    margin-left: 315px!important;
}
*/

#vertical-multilevel-menu li ul {
    position: absolute;
}

#vertical-multilevel-menu li ul li {
    position: relative;
}

#vertical-multilevel-menu li ul li ul {
/*    padding-top: 13px;*/
    position: absolute;
    top: 64px;
    border: 0;
}

#menu-production > .nav-item-main::after {
    display: block;
}

.nav-item-content > li > a {
    height: 64px;
    display: flex!important;
    justify-content: space-between;
    align-items: center;
}

html {overflow: -moz-scrollbars-none;}

.sitebar-nav {
	scrollbar-width: none;
}

@media (min-width: 2000px) {
    .text-page__main {
        margin-right: auto !important;
        margin-left: auto !important;
    }
}


@media (mфч-width: 1024px){
    .search{
        padding-top: 60px;
    }

    .search-title{
        padding-bottom: 40px;
    }
}