.menu-cat {
    position: relative;
    z-index: 100;
    -ms-flex: 0 0 210px;
    flex: 0 0 21rem;
    margin: 0 2rem 0 0;
}
.menu-cat__btn-container {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid #ffffff44;
    color: var(--secondary-text-color);
    border-radius: 5px;
    padding: 0 1.6rem;
    height: 3.5rem;
    transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.menu-cat:hover .menu-cat__btn-container {
    background: #fff;
    border-color: #fff;
    color: #343434;
}

.menu-cat__btn-container svg {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
    margin: 0 0.8rem 0 0;
}

.menu-cat__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0.5rem 0 0 0;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(170, 189, 206, 0.25);
    border-radius: 5px;
    width: 27.8rem;
    padding: 1rem 0;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    opacity: 0;
    visibility: hidden;
    width: auto;
    display: -ms-flexbox;
    display: flex;
}
.menu-cat__dropdown::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 0.5rem;
}

.menu-cat:hover .menu-cat__dropdown{
    opacity: 1;
    visibility: visible;
}

.menu-cat__dropdown-container {

    display: flex;
}

.menu-cat__list {
    padding: 0;
    list-style: none;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
    flex: 0 0 auto;
    width: 27.8rem;
}
.menu-cat__item {
    position: relative;
    margin: 0 0 0.5rem;
}

.menu-cat__icon {
    width: 2rem;
    height: 2rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 1rem 0 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.menu-cat__text-container {
    display: block;
    -ms-flex: 1;
    flex: 1;
}

.menu-cat__link {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 3rem 0.5rem 2rem;
    text-decoration: none;
    color: #343434;
    transition: color 0.25s;
}

.menu-cat__link:hover {
    color: var(--accent-color);
}

.menu-cat__arrow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 2rem;
    height: 2rem;
    margin: -1rem 0 0 0;
}
.menu-cat__arrow svg {
    display: block;
    width: 0.6rem;
    height: 1.1rem;
    position: relative;
    fill: currentColor;
    fill-rule: evenodd;
}