.navigation ul ul {
    display: none;
}

.current ul {
    display: block;
}

.expander {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 0px;
    rotate: -90deg;
    top: 1px;
}

.nav--bar>ul {
    display: flex;
    gap: 26px;
    padding: 0;
    margin: 0;
}

.nav--bar ul {
    margin: 0;
    padding: 0;
}

.nav--bar ul li {
    list-style: none;
}

.nav--bar ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
    text-decoration: none;
}

button.btn.expander::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 219px;
    left: 0px;
    bottom: 0px;
}

li.dropdown.current button.btn.expander {
    right: auto;
    left: 0px;
}

li.dropdown.current>a {
    padding-left: 20px;
    border-bottom: 1px solid #C7C9D4;
    padding-bottom: 15px;
    margin-top: -10px;
    margin-bottom: 12px;
}

li.dropdown.current>a button.btn.expander::after {
    left: auto;
    bottom: auto;
    top: 0px;
    width: 19px;
    right: -4px;
}

li.hover-dropdown>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin: 0;
    padding: 25px;
    top: 55px;
    left: 0;
    width: 219px;
    box-shadow: 0px 10px 30px 0px #0000001A;
    transition: .3s;
}

li.hover-dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 17px;
}

ul.navigation a {
    display: block;
    position: relative;
}

li.hover-dropdown li {
    padding: 7px 0px;
    display: block;
}

li.hover-dropdown {
    position: relative;
}

li.hover-dropdown>a {
    padding-right: 20px;
    position: relative;
}

li.hover-dropdown>a::after {
    background-image: url('chevron-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 19px;
    height: 16px;
    content: '';
    top: 1px;
    right: -2px;
}

