.med-header-menu-cat {
    position: relative;
    max-width: 300px;
}

.med-header-menu-cat-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 12px 25px;
    min-height: 54px;
    font-size: 14px;
    letter-spacing: 0.14px;
    text-transform: uppercase;
    color: var(--aq-common-white);
    background: var(--aq-common-paste);
    font-family: var(--aq-ff-satoshi-bold);
}

.med-header-menu-cat-toggle span {
    margin-right: 12px;
    display: inline-block;
}

.med-header-menu-off {
    /* position: absolute;
    top: 100%;
    left: 0; */
    width: 100%;
    /* z-index: 9; */
}

.med-header-menu-list {
    padding: 10px 0px;
    border-radius: 0 0 12px 12px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(1, 15, 28, 0.08);
    box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
    margin: 0;
}

.med-header-menu-list > li:not(:last-of-type) {
    border-bottom: 1px solid rgba(1, 15, 28, 0.08);
}

.med-header-menu-list > li {
    position: relative;
    list-style: none;
    padding: 0 15px;
}

.med-header-menu-list > li > a {
    position: relative;
    display: flex;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 10px;
    letter-spacing: 0.15px;
    color: var(--aq-common-black);
    font-family: var(--aq-ff-satoshi-medium);
}

.med-header-menu-list > li > a span {
    display: inline-block;
}

.med-header-menu-list > li .mega-menu {
    position: absolute;
    left: 100%;
    z-index: 9;
    top: 100%;
    opacity: 0;
    min-width: 720px;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-radius: 0 8px 8px 0;
    background: var(--aq-common-white);
    box-shadow: 14px 20px 40px 0 rgba(1, 15, 28, 0.14);
}

.med-header-menu-list .mega-menu-left {
    width: 56%;
}

.med-header-menu-list .mega-menu-right {
    width: 44%;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 26px;
    border-radius: 0 6px 6px 0;
    border: 4px solid var(--aq-common-white);
}