.header__bottom-catalog {
    z-index: 11;
    position: relative;
}

header {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 154px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    max-width: 1620px;
}

.mega-menu.-active {
    display: block;
}

.mega-menu__inner {
    border-top: 2px solid #D9012A;
    background: #fff;
    padding: 40px;

}

.mega-menu__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.mega-menu__item {
    width: calc(33.33333% - 27px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-menu__item-title a {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    text-decoration: underline;
    color: #1D1A1A;
}

.mega-menu__item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mega-menu__item-link a {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    text-decoration: underline;
    color: #D9012A;
}

.mega-menu__item-link--hidden {
    display: none;
}

.mega-menu__item-link--visible {
    display: block;
}

.mega-menu__item-see_more{
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    text-decoration: underline;
    color: #1D1A1A;
}

.mega-menu-overlay {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000000B2;
    z-index: 9;
}

.mega-menu-overlay.-active {
    display: block;
}


@media (max-width:1023px) {
    .mega-menu {
        top: 119px;
    }

    .mega-menu__item {
        width: calc(50% - 20px);
    }
}

@media (max-width:767px) {}