.c-menu {

}

.c-menu > ul {
    display: flex;
}

.c-menu__link {
    border-radius: 20px;
    color: var(--color-1-dark);
    padding: 0.2rem 0.50rem;
    transition: all 350ms;
}

.c-menu__link:hover {
    background-color: var(--color-1);
    color: white;
    font-weight: bold;
}

@media only screen and (max-width: 850px) {
    .c-menu {
        display: none;
    }
}


.c-menu-responsive {
    display: none;
    justify-content: center;
}

.c-menu-responsive__icon {
    fill: var(--color-1);
    width: 2rem;
    cursor: pointer;
    margin-right: 1rem;
}

.c-menu-responsive__icon:hover {
    background-color: var(--color-2);
    fill: white;
    border-radius: 5px;
}

.c-menu-responsive__items {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: var(--color-2-rgba);
    opacity: 0;
    transition: all 500ms;
}

.c-menu-responsive .c-menu__item {
    width: 100%;
}

.c-menu-responsive .c-menu__link {
    padding: 0.5rem 0 0.5rem 0.5rem;
    display: inline-block;
    border-radius: 0;
    width: inherit;
}

.c-menu-responsive__items--open {
    opacity: 1;
}

@media only screen and (max-width: 850px) {
    .c-menu-responsive {
        display: flex;
    }
}