.catalog-section-menu-wrapper {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 30px 0 45px;
    height: 430px;
    width: 100%;
    border-top: 1px solid transparent;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transition: .3s ease;
}
.catalog-section-sections-wrapper {
    height: 100%;
    flex-shrink: 0;
}
.catalog-section-brands-wrapper {
    height: 100%;
    width: 250px;
    flex-shrink: 0;
}
.catalog-section-sections.first-level {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 500px;
    max-height: 100%;
}
.catalog-section-sections.first-level li {
    width: 50%;
    height: 34px;
    padding-right: 50px;
}
.catalog-section-menu-wrapper li, .catalog-section-menu-wrapper h3,
.catalog-section-menu-wrapper img {
    opacity: 0;
    transition: .3s ease;
}
.top-catalog-menu:hover .catalog-section-menu-wrapper h3 {
    transition: .0s;
}
.top-catalog-menu {
    display: inline-flex;
}
.top-catalog-menu .catalog-section.first-level > a {
    position: relative;
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 14px 25px 14px;
}
.top-catalog-menu .catalog-section.first-level > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    opacity: 0;
    transition: .2s ease;
    width: calc(100% - 28px);
    height: 2px;
    background: var(--main-txt);
}
.top-catalog-menu .catalog-section.first-level:first-child > a::before {
    left: 0;
    width: calc(100% - 14px);
}
.top-catalog-menu .catalog-section.first-level:first-child > a {
    padding: 0 14px 25px 0;
}
.show-menu .catalog-section.first-level:hover > a::before {
    opacity: 1;
}
.show-menu .catalog-section.first-level:hover .catalog-section-menu-wrapper {
    pointer-events: auto;
}
.show-menu .catalog-section.first-level:hover .catalog-section-menu-wrapper li,
.show-menu .catalog-section.first-level:hover .catalog-section-menu-wrapper h3,
.show-menu .catalog-section.first-level:hover .catalog-section-menu-wrapper img {
    opacity: 1;
}

.main_page_header .top-catalog-menu .catalog-section.first-level:hover .catalog-section-menu-wrapper {
    border-top: 1px solid var(--border);
}

.top-menu-bg {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    width: 100%;
    height: 430px;
    background: var(--light_color);
    transition: .3s ease;
}
.top-menu-under-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
}
.top-menu-bgs {
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}
.show-menu .top-menu-bgs.open {
    opacity: 1;
    pointer-events: auto;
}
.catalog-section-menu-wrapper .catalog-section_stock {
    display: block;
    max-width: 350px;
    height: 100%;
    margin-left: auto;
}
.catalog-section-menu-wrapper .catalog-section_stock::before {
    display: none;
}
.catalog-section-menu-wrapper img {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}
.catalog-section-menu-wrapper h3 {
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 20px;
}
.catalog-section-menu-wrapper a {
    display: inline-block;
    padding-bottom: 4px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    position: relative;
}
.catalog-section-menu-wrapper a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    opacity: 0;
    background: var(--main-txt);
    transition: .2s ease;
}
.catalog-section-menu-wrapper a:hover::before {
    opacity: 1;
}
.catalog-section-menu-wrapper a.all {
    font-weight: 500;
}
@media (max-width: 1350px) {
    .catalog-section-sections.first-level {
        width: 420px;
    }
    .catalog-section-brands-wrapper {
        width: 210px;
    }
}