.products {
    padding-top: 160px;
    padding-bottom: 160px;
}

.products-title-container {
    margin-left: 285px;
    margin-bottom: 30px;
}

.products-title {
    font-size: 36px;
    color: #424A53;
    padding-bottom: 10px;
}

.products-line {
    height: 2px;
    width: 100%;
    background-color: #3097BF;
    margin-bottom: 30px;
}

.catalog-menu {
    width: 255px;
}

.catalog-title {
    font-size: 24px;
    color: #424A53;
}

.catalog-line {
    height: 2px;
    width: 100%;
    background-color: #3097BF;
    margin-bottom: 50px;
}

.catalog-list {
    list-style-type: none;
}

.catalog-list li {
    margin-bottom: 30px;
}

.catalog-list-title-container {
    align-items: center;
}

.catalog-list .title {
    font-size: 16px;
    color: #6A6D72;
    cursor: pointer;
    transition: color, padding-left .4s;
    margin-right: 20px;
}

.catalog-menu-arrow {
    cursor: pointer;
    background: url('../images/products/arrow-products.svg') center center no-repeat;
    width: 8px;
    height: 5px;
    content: "";
}

.catalog-menu-arrow.open {
    transition: .9s;
    transform: rotate(180deg);
}

.catalog-list li:hover .title {
    border-left: 3px solid #3097BF;
    transition: color, padding-left .3s;
    color: #3097BF;
    padding-left: 30px;
}

.catalog-list li:hover .catalog-menu-arrow {
    background: url('../images/products/arrow-products-blue.svg') center center no-repeat;
}

.catalog-list li:hover .catalog-menu-arrow.open {
    /* background: url('../images/products/arrow-products-blue-up.svg') center center no-repeat; */
    transition: transform .3s;
    transform: rotate(180deg);
}

/* Меню второго уровня */

.menu-lvl-2 {
    transition: .4s;
    margin-top: 10px;
    list-style-type: none;
    box-sizing: border-box;
    border: 1px solid #3097BF;
    border-radius: 4px;
    padding: 15px 0;
}

.menu-lvl-2 li:last-child {
    margin-bottom: 0;
}

.menu-lvl-2-container {
    align-items: center;
    color: #6A6D72;
    font-size: 14px;
    padding-left: 29px;
    box-sizing: border-box;
    cursor: pointer;
    margin-bottom: 20px;
}

.menu-lvl-2 li:hover .menu-lvl-2-container {
    transition: .1s;
    border-left: 3px solid #3097BF;
    color: #3097BF;
    padding-left: 26px;
}

.catalog-menu-lvl-2-arrow {
    margin-left: auto;
    margin-right: 16px;
    cursor: pointer;
    background: url('../images/products/arrow-products.svg') center center no-repeat;
    width: 8px;
    height: 5px;
    content: "";
}

.menu-lvl-2 li:hover .catalog-menu-lvl-2-arrow {
    background: url('../images/products/arrow-products-blue.svg') center center no-repeat;
}

/* Скрытое меню */

.menu-lvl-2.close {
    transition: .4s;
    height: 0;
    overflow: hidden;
    margin-top: 0px;
    list-style-type: none;
    border: 0px solid #3097BF;
    padding: 0 0;
}

/* ТРЕТИЙ УРОВЕНЬ */

.menu-lvl-3 {
    list-style-type: none;
    padding-left: 66px;
}

.menu-lvl-3.open {
    transition: .6s;
}

.menu-lvl-3.close {
    -webkit-transition: height 1s ease-out 0.4s;
    -moz-transition: height 1s ease-out 0.4s;
    -o-transition: height 1s ease-out 0.4s;
    transition: height 1s ease-out 0.4s;
    overflow: hidden;
    height: 0px
}

.menu-lvl-3.open li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #959BA1;
    cursor: pointer;
}

.menu-lvl-3.close li {
    margin-bottom: 0px;
}

.menu-lvl-3 li:hover {
    color: #3097BF;
}

/* ТЕСТ МЕНЮ */

#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
    border: 0 none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    line-height: 1;
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: relative;
}

#cssmenu {
    width: 255px;
}

#cssmenu ul ul {
    display: none;
}

#cssmenu>ul>li {
    margin-bottom: 30px;
}

#cssmenu>ul>li>a {
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    color: #6A6D72;
    transition: padding-left .4s;
    z-index: 2;
}

#cssmenu>ul>li>a:hover, #cssmenu>ul>li.active>a, #cssmenu>ul>li.open>a {
    transition: padding-left .4s;
    color: #3097BF;
    padding-left: 30px;
    border-left: 3px solid #3097BF;
    font-weight: 500;
}

/* #cssmenu>ul>li.open>a {
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.15);
}

#cssmenu>ul>li:last-child>a,
#cssmenu>ul>li.last>a {} */

/* СТРЕЛОЧКА */

#cssmenu ul ul {
    padding: 15px 0;
    margin: 10px 0 0 30px;
    border: 1px solid #3097BF;
    border-radius: 4px;
}

#cssmenu ul ul li a {
    transition: padding-left .4s;
    color: #959BA1;
    font-size: 14px !important;
    padding-left: 20px;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    z-index: 1;
    margin-bottom: 20px;
}

#cssmenu ul ul li.has-sub a {
    transition: padding-left .4s;
    color: #6A6D72;
    font-size: 14px !important;
    padding-left: 20px;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    z-index: 1;
    margin-bottom: 20px;
}

#cssmenu ul ul:last-child {
    margin-bottom: 0;
}

#cssmenu ul ul li.has-sub:hover>a, #cssmenu ul ul li.has-sub.open>a, #cssmenu ul ul li.has-sub.active>a {
    transition: padding-left .4s;
    color: #3097BF;
    padding-left: 25px;
    font-weight: 500;
    border-left: 3px solid #3097BF;
}

#cssmenu ul ul li:hover>a, #cssmenu ul ul li.open>a, #cssmenu ul ul li.active>a {
    transition: padding-left .4s;
    color: #3097BF;
    padding-left: 30px;
    font-weight: 500;
}

#cssmenu ul ul li:first-child>a {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#cssmenu ul ul ul {
    border: none;
    padding: 0;
}

#cssmenu ul ul ul li a {
    padding-left: 0px;
    padding-left: 30px;
    color: #959BA1 !important;
    font-size: 14px;
}

#cssmenu ul ul ul li:hover a {
    padding-left: 30px;
    font-weight: 500;
    border: none;
}

#cssmenu>ul>li>ul>li:last-child>a, #cssmenu>ul>li>ul>li.last>a {
    margin-bottom: 0;
}

#cssmenu>ul>li>ul>li.open:last-child>ul>li:last-child>a {
    border-bottom: 0 none;
}

.catalog-wrapper {
    position: relative;
    padding-left: 31px;
}

.catalog-cards {
    margin-top: 69px;
    justify-content: space-between;
}

.catalog-card {
    margin-right: 22px;
}

.catalog-cards .catalog-card:last-child {
    margin-right: 0px;
}

.card-title {
    margin: 15px 0 10px 0;
    color: #424A53;
    font-size: 22px;
    font-weight: 400;
}

.card-more {
    font-size: 12px;
    text-decoration: none;
    color: #3097BF;
    cursor: pointer;
}

.more-menu {
    margin-top: 10px;
    padding: 30px 16px;
    border: 1px solid #3097BF;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
    display: none;
}

.more-menu-content {
    display: flex;
}

.column-title {
    padding-right: 50px;
    font-size: 14px;
    color: #6A6D72;
    margin-bottom: 20px;
}

.column:hover .column-title {
    color: #3097BF;
    text-shadow: 0 0 .65px #3097BF, 0 0 .65px #3097BF;
}

.column-result {
    display: block;
    margin-left: 36px;
    color: #959BA1;
    font-size: 14px;
    margin-bottom: 10px;
    text-decoration: none;
}

.column-result:hover {
    color: #3097BF;
    text-shadow: 0 0 .65px #3097BF, 0 0 .65px #3097BF;
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 767px) {
    .products {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .products-title-container {
        margin-left: 0px;
        margin-bottom: 0px;
    }
    .products-title {
        font-size: calc(24px + (36 - 24) * ((100vw - 320px) / (1109 - 320)));
        font-weight: 400;
        color: #424A53;
        padding-bottom: 10px;
    }
    .catalog-cards {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .catalog-card {
        max-width: 290px;
        margin-right: 10px;
        margin-bottom: 40px;
    }
    .catalog-card img {
        width: 290px;
    }
    .card-more-adaptive {
        font-size: 12px;
        text-decoration: none;
        color: #3097BF;
        cursor: pointer;
    }
    .more-menu-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .more-menu-adaptive {
        max-height: 0px;
        overflow: hidden;
        transition: .3s;
       
    }
    .more-menu-adaptive.open {
        max-height: 2000px;
        padding-top: 15px;
        padding-bottom: 20px;
    }
    .catalog-wrapper {
        padding-left: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1109px) {
    .products {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .products-title-container {
        margin-left: 0px;
        margin-bottom: 0px;
    }
    .products-title {
        font-size: calc(24px + (36 - 24) * ((100vw - 320px) / (1109 - 320)));
        font-weight: 400;
        color: #424A53;
        padding-bottom: 10px;
    }
    .catalog-cards {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .catalog-card {
        max-width: 290px;
        margin-right: 10px;
        margin-bottom: 40px;
    }
    .catalog-card img {
        width: 290px;
    }
    .card-more-adaptive {
        font-size: 12px;
        text-decoration: none;
        color: #3097BF;
        cursor: pointer;
    }
    .more-menu-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .more-menu-adaptive {
        max-height: 0px;
        overflow: hidden;
        transition: .3s;
       
    }
    .more-menu-adaptive.open {
        max-height: 2000px;
        padding-top: 15px;
        padding-bottom: 20px;
    }

    .catalog-wrapper {
        padding-left: 0;
    }
}