:root{
    --color-white: #fff;
    --color-black:#000000;
    --color-dark:#333333;
    --color-base-dark: #333E48;
    --color-gray-light: #818181;
    --red-dark:#96272B;
    --red-dark-two:#831F23;
    --red-dark-three:#6D1316;
    --red-light:rgba(150, 39, 43, 0.2);
    --bg-gray-light:#F3F3F3;
    --bg-pag-gray:#D8D8D8;
    --bg-banner:#2F3442;
    --border-gray:#DDDDDD;

    --page-title-size:24px;

    --section-title-size:32px;
    --section-about-title:25px;

    --size-big:40px;
    --text-large-size:24px;
    --text-normal-size:16px;
    --text-small-size:14px;

    --section-padding:120px 0;
}

@media (max-width: 768px) {
    :root{
        --size-big:28px;
        --section-title-size:24px;
        --section-padding:80px 0;
        --text-large-size:20px;
        --section-about-title:20px;
        --text-normal-size:14px;
    }
}
.bg-primary ::selection{
    color: var(--red-dark);
}
.color-text-base{
    color: var(--color-base-dark);
}
.btn__link{
    color: var(--red-dark);
    text-decoration-line: underline;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
}
.btn__link:hover {
    color: var(--red-dark-two);
    text-decoration: none;
}
.text-size{
    font-size: var(--text-normal-size);
}

.search-form .search-input{
    border: 2px solid var(--red-dark);
}
.color-white{
    color: var(--color-white);
}
.page-title{
    font-size: var(--page-title-size);
}
.color-red-dark{
    color: var(--red-dark);
}
.color-red-dark-three{
    color: var(--red-dark-three);
}
.bg-red-dark{
    background: var(--red-dark);
    transition: .3s;
}
.bg-red-dark-two{
    background: var(--red-dark-two);
    transition: .3s;
}
.bg-red-dark-three{
    background: var(--red-dark-three);
    transition: .3s;
}
.bg-red-dark-two:hover,
.bg-red-dark-two.collapsed{
    background: var(--red-dark-three);
}
.btn{
    font-weight: 600;
    white-space: nowrap;
}
a{
    color: var(--red-dark);
}
p{
    color: var(--color-base-dark);
    line-height: 150%;
}
body{
    color: var(--color-base-dark);
    font-family: 'Work Sans', sans-serif;
}
.address-list_link{
    color: var(--color-base-dark);
    transition: .3s;
}
.address-list_link:hover{
    color: var(--red-dark);
}
.header-logo{
    max-width: 100%;
}
.header-logo img{
    width: 100%;
}
.img-wrap{
    max-width: 100%;
}
.img-wrap img{
    width: 100%;
}
.bg-primary {
    background-color: var(--red-dark) !important;
}
.btn-primary{
    color: var(--color-white);
    background-color: var(--red-dark);
    border-color: var(--red-dark);
}
.btn-primary:hover{
    color: var(--color-white);
    background-color: var(--red-dark-three);
    border-color: var(--red-dark-three);
}
.mobile-search-icon{
    font-size: 25px;
    font-weight: 900;
}
.navbar-expand-md .navbar-nav .nav-item .nav-link, .header-category-btn{
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 600;
}
.header-callback-btn{
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px;
    line-height: 130%;
    border-radius: 10px;
    text-decoration: none !important;
}
.header-callback-btn:hover{
    background: var(--red-dark-two);
    color: #fff;
}
.fancybox-slide > *{
    padding:48px 40px;
}
.popup-title{
    font-size: var(--page-title-size);
    font-weight: 700;
}
.popup-wrapper{
    display: none;
    width:600px;
}
.popup-text{
    color: var(--color-gray-light);
}
.btn-primary-dark-w{
    background: var(--red-dark);
    color: var(--color-white);
    font-weight: 600;
    border-color: var(--red-dark);
    font-size: 16px;
}
.btn-primary-dark-w:hover {
    background-color: var( --red-dark-three);
    border-color: var( --red-dark-three);
    color: #fff;
}
.custom-checkbox-wrapper input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.custom-checkbox-wrapper label {
    position: relative;
    cursor: pointer;
}

.custom-checkbox-wrapper label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--border-gray);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 5px;
    margin-bottom: 3px;
}
.custom-checkbox-white label:before{
    border: 1px solid var(--color-white);
}
.custom-checkbox-wrapper input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 6px;
    width: 6px;
    height: 9px;
    border: solid var(--red-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-checkbox-white input:checked + label:after{
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
}
.header-menu-wrapper{
    height: 100%;
}
.footer-text p{
    margin-bottom: 0;
}
.btn-primary-light{
    background-color: var(--red-light);
    color: var(--red-dark);
}
.btn-primary-light:hover{
    background-color: var(--red-dark);
    color: var(--color-white);
}
.social-link{
    color: var(--red-dark);
}
.social-link:hover{
    color: var(--color-white);
    background-color: var(--red-dark);
}
.font-size-big{
    font-size: var(--size-big);
}
.header-slider-text p{
    color: var(--color-white);
    font-size: var(--text-normal-size);
}
.u-slick__pagination--long li span{
    background-color: var(--color-white);
}
.u-slick__pagination--long li.slick-active span{
    background-color: var(--red-dark);
}
.advantages-item-text p:last-child{
    margin-bottom: 0;
}
.advantages-item-text p{
    font-size: var(--text-normal-size);
}
.section-title::after{
    content: none;
}
.section-title{
    font-size: var(--section-title-size);
    font-weight: 700;
    line-height: 130%;
}
.section-padding{
    padding: var(--section-padding);
}
.video-wrap iframe,
.video-wrap video{
    width: 100%;
    height: 298px;
}
.bg-gray-light{
    background: var(--bg-gray-light);
}
.clients-list-item{
    display: flex;
    align-items: center;
    justify-content: center;

}
.clients-item__img{
    border: 1px solid var(--border-gray);
    padding: 15px 50px;
}
.pagination-bg-gray li span{
    background: var( --bg-pag-gray);
}
.slider-arrow-wrapper{
    top: 61%;
}
.subscribe_bg{
    position: relative;
    background: url("/assets/images/image10.jpg") 50% 0/cover no-repeat;
}
.subscribe_bg:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.8);
}
.subscribe-title-mobile{
    font-size: var(--text-large-size);
}
a.color-white{
    text-decoration: underline;
}
a.color-white:hover{
    text-decoration: none;
    color: var(--color-white);
}
.section-banner-body{
    background: var(--bg-banner);
    padding: 60px 70px;
    border-radius: 8px;
}
.section-banner-text{
    color: var(--color-white);
    font-size: var(--text-normal-size);
}
.section-banner-text p{
    color: var(--color-white);
    font-size: var(--text-normal-size);
}
.section-banner-text p:last-child{
    margin-bottom: 0;
}
.section-banner-img{
    position: absolute;
    top: -100px;
}
.section-banner-img img{
    border-radius: 8px;
    overflow: hidden;
}
.breadcrumb-item + .breadcrumb-item a{
    background-color: transparent;
}
.u-slick--slider-syncing .slick-slide.slick-current{
    border-bottom-color: var(--red-dark);
}
.advantages-item-img_product img{
    height: 60px;
}
.nav-classic .nav-link.active
{
    border-bottom-color: var(--red-dark);
}
.nav-tab .nav-link.active::after{
    background-color: var(--red-dark);
}
.product-tech__title{
    font-size: 18px;
    font-weight: 600;
}
.tech-head-text{
    color: #878787;
    font-size: 12px;
}
.technical-list-head{
    padding-bottom: 8px;
    border-bottom: 1px solid #DDDDDD;
}
.u-go-to{
    background-color: var(--red-dark);
}
.product-item:first-child .add-accessories::before{
    content: none;
}
.product-item:last-child::after{
    content: none;
}
::selection {
    color: #fff;
    background-color: var(--red-dark);
}
.product-charcters__items{
    border: 1px solid #EAEAEA;
}
.product-charcters__text{
    font-size: var(--text-normal-size);
    padding: 8px 16px;
}
.product-charcters__value{
    border-left: 1px solid #EAEAEA;
}
.product-length-item{
    padding: 7px 20px;
    border: 1px solid var( --border-gray);
    border-radius: 7px;
    display: block;
    color: var(--color-base-dark);
    transition: .3s;
    line-height: 100%;
}
.product-length-item:hover{
    color: var(--red-dark);
}
.product-length-item.active{
    border-color: var(--red-dark);
}
.list-group .active > .list-group-item {
    color: var(--red-dark);
}
.section-banner-body_product{
    background: url("/assets/images/Rectangle 34 (1).jpg");
}
.seo-text p{
    font-size: 16px;
}
.seo-text p:last-child{
    margin-bottom: 0;
}

.seo-text ol {
    list-style: none;
    counter-reset: counter;
    padding-left: 0;
    font-size: 16px;
}
.seo-text ol li {
    counter-increment: counter;
    position: relative;
    padding-left: 20px;
    line-height: 150%;
    margin-bottom: 5px;
}
.seo-text ol li::before {
    content: counter(counter) ". ";
    position: absolute;
    top: 0;
    left: 0;
}

.seo-text ul {
    list-style: none!important;
    padding-left: 0;
    font-size: 16px;
}
.seo-text ul li{
    position: relative;
    padding-left: 20px;
    line-height: 150%;
    margin-bottom: 5px;
}
.seo-text ul li:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #333;
}
.custom-control-input:checked ~ .custom-control-label::before{
    border-color: var(--red-dark);
    background-color: var(--red-dark);
}
.page-item.active .page-link{
    border-color: var(--red-dark);
    background-color: var(--red-dark);

}
.pagination-shop .page-link{
    transition: .3s;
}
.pagination-shop .page-link:hover {
    background-color: var(--red-dark-three);
    color: var(--color-white);
}
.portfolio-item{
    display: block;
    height: 250px;
    position: relative;
}
.portfolio-item-img{
    height: 100%;
}
.portfolio-item-img img{
    height: 100%;
    object-fit: cover;
}
.portfolio-items-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    display: flex;
    align-items: center;
    padding: 20px;
}
.portfolio-items-bg:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    opacity: .5;
}
.portfolio-item:hover .portfolio-items-bg{
    opacity: 1;
    visibility: visible;
}
.u-header-collapse__submenu .u-header-collapse__nav-list{
    border-left: 2px solid var(--red-dark);
}
.portfolio-items__text{
    position: relative;
    color: var(--color-white);
}
.about-list_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    z-index: 1;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-list_bg:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    opacity: .5;
}
.about-list__item:hover .about-list_bg{
    opacity: 1;
    visibility: visible;
}
.about-list__text{
    position: relative;
    color: var(--color-white);
}
.about-list__text p{
    color: var(--color-white);
}
.about-list__text p:last-child{
    margin-bottom: 0;
}
.about-list__img{
    height: 270px;
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
}
.about-list__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section-title{
    font-size: var(--section-about-title);
}
.advantages-item-text ul{
    padding: 0 0 0 15px;
    margin: 0;
}
.banner-section{
    padding: 75px 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner-section-title{
    margin-bottom: 0;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 600;
    max-width: 630px;
    padding-right: 10px;
}
.banner-section-body{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.btn-white{
    background-color: var(--color-white);
    color: var(--red-dark);
    border-color: var(--color-white);
}
.our-project-body{
    padding: 0 10px;
}
.header-category__sub-img{
    flex: 0 0 70px;
    height: 70px;
    margin-right: 10px;
}
.header-category__sub-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-category__sub-link{
    display: flex;
    align-items: center;
    font-size: var(--text-small-size);
    color: var(--color-base-dark);
}
.header-category__sub-link:hover{
    color: var(--red-dark);
}
.header-category__sub-item{
    margin-bottom: 32px;
}
.navbar-expand-xl .u-header__mega-menu-wrapper{
    background: var(--color-white);
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.28);
}
.diagrams-row{
    display: flex;
    flex-wrap: wrap;
}
.diagrams-item{
    padding: 0 10px;
    border-right: 1px solid #EAEAEA;
}
.diagram-img{
    width: 174px;
}
.diagram-img img{
    width: 100%;
    height: 100%;
}
.load-diagram-elem{
    width: 100%;
    height: 100%;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.load-diagram-body{
    padding: 55px 24px;
}
.organization-item-body{
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.organization-item__img{
    width: 75px;
}
.organization-item__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-accordion .card-btn[aria-expanded="true"] span{
    background-color: var(--red-dark);
    border-color: var(--red-dark) !important;
}
.about-accordion .card-btn[aria-expanded="true"] .fa-minus{
    color: var(--color-white);
}
.header-submenu-wrapper{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    background: #fff;
    border-radius: 10px;
    width: 100%;
    padding: 15px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}
.vertical-menu .navbar-expand-xl .u-header__navbar-nav{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}
.u-header__nav-item{
    position: relative;
}
.u-header__nav-item:hover .header-submenu-wrapper{
    opacity: 1;
    visibility: visible;
}
.header-submenu-list{
    padding: 0;
    list-style-type: none;
}
.header-submenu-list li:first-child{
    margin-top: 0;
}
.header-submenu-list li{
    margin-top: 5px;
}
.header-submenu-list li a{
    color: var(--color-base-dark);
}
.header-submenu-list li a:hover,
.list-group-item-action:hover,
.list-group-item-action:focus{
    color: var(--red-dark);
}
.header-submenu-list li .active{
    color: var(--red-dark);
}
.navbar-expand-xl .u-header__navbar-nav .u-header__sub-menu{
    border-top-color: var(--red-dark);
}
.sidebar-navbar.view-all .dropdown-toggle{
    padding: 0.5rem 0;
}
.sidebar-navbar > li{
    padding: 0;
}
.sidebar-navbar .dropdown-toggle::after{
    content: none;
}
.aside-accordion-body{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}
.aside-active-btn{
    transition: .5s ease-in-out;
    cursor: pointer;
}
.aside-active-btn.active{
    transform: rotateY(180deg);
}
.aside-accordion-body.active{

}
.sidebaer-menu__sub-item{
    margin-top: 5px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 5px;
}
.sidebaer-menu__sub-item:last-child{
    border-bottom: 0;
}
.aside-accordion-item.active .aside-accordion-box{
    background: #F5F5F5;
}
.aside-accordion-item.active .aside-accordion-box .dropdown-toggle{
    font-weight: bold;
    padding-left: 10px;
}
.sidebar-navbar > li > .dropdown-item{
    padding: 0.5rem 0;
}
.sidebar-navbar.view-all{
    padding: 24px 16px;
}
.sidebar-navbar > li:last-child .dropdown-item{
    padding-bottom: 0;
}
.aside-subcategory-list{
    padding-left: 10px;
}
.sidebaer-menu__sub-item.active a{
    color: var(--red-dark);
}
.u-header .vertical-menu .u-header__nav-link-toggle::after,
.u-header + main .vertical-menu .u-header__nav-link-toggle::after{
    content: none;
}
.slider-arrow-wrapper{
    z-index: 2;
}
.text-small,
.text-small p{
    font-size: var(--text-small-size);
}
.filter-section-title{
    position: relative;
}
.filter-section-title:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #96272B;
    height: 1px;
    width: 70px;
}
.product-gallery__img{
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}
.technical-item__img{
    height: 250px;
    max-width: 100%;
}
.technical-item__img img{
    width: 100%;
    object-fit: contain;
    height: 100%;
}
.product-tech__article{
    font-size: 18px;
}
.section-title_size-18{
    font-size: 18px;
}
.accordion-text-wrap img{
    height:500px;
    object-fit: contain;
    width: 100%;
}
.card .btn{
    white-space: normal;
}
.footer-social-list{
    list-style-type: none;
    padding: 0;
    display: flex;
}
.footer-social__item:not(:last-child){
    margin-right: 20px;
}
.u-go-to{
    opacity: 1;
}
.footer-social__link{
    transition: .3s;
}
.u-go-to:hover,.footer-social__link:hover{
    opacity: .8;
}
.contact-department__item p{
    margin-bottom: 10px;
}
.aside-accordion-item.children-active .aside-accordion-body{
    max-height: 100%;
}
.about-list__text p{
    margin-bottom: 10px;
}
.catalogs-img{
    width: 100%;
    object-fit: cover;
}
.faq-text-body{
    padding: 10px;
    background: var(--bg-pag-gray);
}
.post-main-img{
    height: 500px;
    object-fit: contain;
}
.aside-accordion-item.aside-accordion-item_children-active  .dropdown-toggle{
    font-weight: 700;
}
.product-item__body img{
    height: 150px;
    object-fit: cover;
}
.product-item__body_catalogs img{
    height: auto;
}
.project-header-info p:last-child,
.project-header-info ul{
    margin-bottom: 0;
}
.js-sticky-header.is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.article-wrapper h1{
    line-height: 100%;
}
.product-card-btn-arrow{
    position: absolute;
    right: 0;
}
.fancybox-show-thumbs .fancybox-thumbs{
    top: auto;
    width: 100%;
    background: transparent;

}
.fancybox-show-thumbs .fancybox-inner{
    width: 100%;
}
.fancybox-caption-wrap{
    bottom: auto;
    top: 0;
}
.fancybox-thumbs > ul{
    display: flex;
    justify-content: center;
}
.technical-item__content{
    overflow: auto;
}
.main-header-slide{
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-img-hero .js-pagination{
    padding-left: calc((100% - 728px)/2)!important;
    margin: 0;
}
.category-count-wrap{
    flex: 1 1 20%;
}
.category-list-tab{
    cursor: pointer;
}
.product-charcters__text p:last-child{
    margin-bottom: 0;
}
.row-list .product-item{
    flex: 1 1 100%;
    max-width: 100%;
    display: block;
    border-bottom: 1px solid #F5F5F5;
}
.row-list .product-item:last-child{
    border: none;
}
.row-list .product-item .product-item__body{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-item .product-article{
    display: none;
    color: #878787;
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 16px;
}
.row-list .product-item .product-article{
    display: block;
}
.row-list .product-item__title a{
    font-size: 18px;
    font-weight: 400!important;
}
.product-item-btn,
.product-item-characters,
.row-list .product-item-img{
    display: none;
}
.row-list .product-item-btn,
.row-list .product-item-characters{
    display: block;
}
.category-caracters__text{
    color: #878787;
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
}
.category-characters__value{
    color: #333E48;
}
.category-charcters__items{
    border-bottom: 1px solid #878787;
}
.block-list .product-item__inner,
.block-list .product-item__body
{
    height: 100%;
}
.block-list .product-item__body{
    display: flex;
    flex-direction: column;
}
.block-list .product-item__title{
    flex: 1;
}

.seo-text table{
    border: none;
    height: auto!important;
    /*display: block;*/
}
.seo-text table tbody{
    /*display: table;*/
    /*width: 100%;*/
}
.seo-text table tbody tr td,
.seo-text table tbody tr th{
    padding: 8px 16px;
    font-size: 16px;
    border: 1px solid #e7eaf3;
}
.seo-text table tbody tr:nth-child(even){
    background: #ffffff;
}

.seo-text table tbody tr:nth-child(odd){
    background: #F2F2F2;
}
.another-project__img{
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.js-smooth-filter{
    max-height: 125px;
    overflow: hidden;
    transition: max-height 0.9s;
}
.filter-more-btn{
    cursor: pointer;
    color: var(--red-dark);
    border-bottom: 1px solid var(--red-dark);
}
.filter-more-btn:hover{
    border-bottom: none;
}
.product-catalog-btn-wrap{
    flex: 0 1 60%;
}

@media (min-width: 991px){
    .design-aside-list .nav-item{
        flex:1 1 100%;
    }
    .design-aside-list.nav-tab-lg.nav .nav-item{
        margin-left: 0;
        border: none;
        position: static;
        margin-right: 0;
        overflow: hidden;
    }
    .design-aside-list.nav-classic .nav-link.active{
        border: none;
        position: static;
    }
    .design-aside-list.nav-tab .nav-link.active::after{
        content: none;
    }
    .design-aside-list.nav-classic .nav-link{
        border: none;
    }
    .design-aside-list{
        border: 1px solid #DDDDDD;
        border-radius: 4px;
        padding: 16px;
    }
    .design-aside-list.nav-tab-lg.nav .nav-item:not(:last-child){
        border-bottom: 1px solid #DDDDDD;
    }
}
@media (min-width: 768px){
    .navbar-expand-md .u-header__navbar-nav .u-header__nav-link{
        padding: 16px 37px;
    }
    .navbar-expand-md .u-header__navbar-nav .u-header__nav-link:hover{
        background: var(--red-dark-two);
    }
    .navbar-expand-md .u-header__navbar-nav .u-header__nav-item.active .u-header__nav-link{
        background: var(--red-dark-three);
    }

}
@media (max-width: 1480px){
    .bg-img-hero .js-pagination {
        padding-left: calc((100% - 500px)/2)!important;
    }
}
@media (max-width: 1200px){
    .bg-img-hero .js-pagination {
        padding-left: calc((100% - 915px)/2)!important;
    }
    .section-banner-img{
        top: 0;
    }
}
@media (max-width: 991px){
    .advantages-item-img{
        flex: 0 0 60px;
    }
    .advantages-item__img{
        max-width: 100%;
    }
    .advantages-item__img img{
        width: 100%;
    }
    .advantages-item-img img{
        width: auto;
    }
    .advantages-item__img_main img{
        width: 100%;
    }
    .section-banner-img{
        position: static;
        max-width: 100%;
    }
    .section-banner-img img{
        width: 100%;
    }
    .section-banner-body{
        padding: 0;
    }
    .banner-content{
        padding: 40px 24px;
    }
    .design-aside-list{
        border-bottom: none;
        flex-wrap: nowrap;
        overflow: auto;
        padding-bottom: 20px;
    }
    .bg-img-hero .js-pagination {
        padding-left: 15px!important;
    }
    .row-list .product-item{
        margin-bottom: 24px;
    }
    .row-list .product-item .product-item__body{
        flex-direction: column;
        align-items: flex-start;
    }
    .row-list .product-item-btn{
        margin-top: 24px;
    }
    .row-list .product-item-characters{
        margin-top: 16px;
    }
    .row-list .product-item::after{
        content: none;
    }
    .row-list .product-item .product-item__inner{
        padding-bottom:24px!important;
    }
}
@media (max-width: 768px) {
    .slider-arrow-wrapper{
        top: 5px;
    }
    .header-logo{
        max-width: 150px;
    }
    .popup-wrapper {
        max-width: 100%;
        width: auto;
        margin: 0 10px;
     }
    .subscribe-form__btn{
        flex: 1 1 100%;
        margin-top: 16px;
    }
    .subscribe-form__btn button{
        width: 100%;
        border-radius: 24px !important;
    }
    .subscribe-form-group input{
        border-radius: 24px !important;
    }
    .product-tech__title{
        font-size: 16px;
    }
    .product-charcters__text{
        font-size: var(--text-small-size);
    }
    .product-length-item{
        padding: 7px 16px;
    }
    .banner-section-body{
        display: block;
    }
    .banner-section-title{
        padding-right: 0;
        margin-bottom: 24px;
        font-size: 18px;
    }
    .banner-section{
        padding: 60px 0;
    }
    .diagrams-item{
        flex: 0 1 50%;
    }
    .diagram-img {
        width: 100%;
    }
    .seo-text p{
        font-size: 14px;
    }
    .footer-menu-list{
        flex-wrap: wrap;
        flex-direction: row;
    }
    .footer-menu-list li{
        flex: 0 1 50%;
    }
    .product-tech__article{
        font-size: 14px;
    }
    .accordion-text-wrap img{
        height:300px;
    }

    .article-wrapper h1{
        font-size: 24px;
    }
    .post-main-img{
        height: auto;
    }
   body #content .nav-tab{
        flex-direction: column;
    }
   body #content .nav-tab .nav-item{
        margin: 0;
    }
    body #content .nav-tab:after,
    body #content .nav-tab .nav-link.active::after{
        content: none;
    }
    body #content .nav-tab .nav-link.active,
    body #content  .nav-classic .nav-link{
        border: none;
    }
    .js-product-tab .product-tab-header{
        position: relative;
    }
    /*.js-product-tab .product-tab-header .nav-link{*/
    /*    position: absolute;*/
    /*    opacity: 0;*/
    /*    visibility: hidden;*/
    /*}*/
    /*.js-product-tab .product-tab-header .nav-link.active{*/
    /*    position: static;*/
    /*    opacity: 1;*/
    /*    visibility: visible;*/
    /*}*/
    .product-tab-header .nav-item{
        order: 1;
        padding: 0 10px;
    }
    .product-tab-header .nav-item.active{
        order: 0;
    }
    .product-tab-header{
        height: 50px;
        overflow: hidden;
        border: 1px solid #EAEAEA;
        border-radius: 1.063rem;
    }
    .product-tab-header.active{
        height: auto;
    }
    .product-tab-header:before{
        content: url("/assets/images/Frame (19).svg");
        position: absolute;
        top: 14px;
        right: 3px;
    }
    .product-tab-header.active:before{
        transform: rotate(180deg);
        top: 10px;
    }
    .product-tab-header .nav-item.active .nav-link{
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .product-tab-header .nav-item .nav-link{
        overflow: hidden;
    }
    .another-project__img{
        height: 120px;
    }
    .technical-item__img{
        height: 150px;
    }
    .min-height-438_main-slider{
        min-height: 27rem;
    }
}
@media (max-width: 576px) {
    .header-logo{
        max-width: 110px;
    }
    .video-wrap iframe,
    .video-wrap video{
        height: 185px;
    }
    .clients-item__img{
        padding: 15px 40px;
    }
    .load-diagram-body{
        padding: 24px;
    }
    .activity-img-wrap {
        max-width: 100%;
    }
    .activity-img-wrap img{
        width: 100%;
    }
    .product-gallery__img{
        max-height: 300px;
    }
    .footer-social__item:not(:last-child){
        margin-right: 10px;
    }

}

/* 404 page */
.not-found-container {
    margin: 100px auto 150px;
    align-items: center;
    justify-content: space-between;
}

.not-found__info {
    height: max-content;
    flex-grow: 1;
}

.not-found__title {
    font-size: 40px;
    font-weight: 700;
}

.not-found__description {
    font-size: 16px;
    margin-bottom:24px;
}

.not-found__description p {
    margin-bottom: 8px;
}

.not-found__btn {
    color: #ffffff;
    background: var(--red-dark-two);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 50px;
    border-radius: 7px;
}

.not-found__btn:hover {
    color: #ffffff;
    background: var(--red-dark);
    transition: 0.4s;
}

@media (max-width:1199px) {
    .not-found__img img {
        width:110%;
    }
}

@media (max-width:768px) {
    .not-found-container {
        margin: 64px auto 80px;
        flex-wrap: wrap-reverse;
        justify-content: center;
    }

    .not-found__img img {
        width:100%;
    }

    .not-found__img{
        margin-bottom: 40px;
    }

    .not-found__title {
        font-size: 34px;
    }

    .not-found__description {
        font-size: 14px;
    }
}


@media (min-width: 1480px) {
    .grid-items-custom {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
    }

    .grid-items-custom > .product-item:nth-child(-n+3) {
        grid-row: 1;
    }

    .grid-items-custom > .product-item:nth-child(n+4) {
        grid-row: 2;
    }

    .grid-items-custom > .product-item:nth-child(n+4) {
        grid-row: 2;
    }

    .grid-items-custom > .product-item {
        flex: unset;
        max-width: unset;
    }
}
