/* Public Style */
.header {
    width: 100%;
    height: 4rem;
    position: sticky;
    top: 0rem;
    z-index: 10;
}

.header-1 {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    backdrop-filter: blur(0.1rem);
    /* padding: 1rem 0rem; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-1>a {
    width: 25rem;
    height: 80%;
    text-align: center;
}

.header-1 img {
    height: 100%;
}

.header-1 .menu-list {
    cursor: pointer;
    background-size: 100% 100%;
    text-align: center;
    position: relative;
}

.menu-list {
    width: 5rem;
    height: 100%;
}

.menu-list img {
    height: 20px;
}

.menu-list ul {
    width: 15rem;
    padding: 0rem;
    margin: 25px auto;
    border-radius: 10px;
    box-shadow: #0047bb 5px 5px 5px 0px;
    overflow: hidden;
    display: none;
    background: white;
    position: absolute;
    top: 25px;
    right: -50px;
}

.menu-list li {
    flex: 1;
    height: 3rem;
    font-size: 20px;
    list-style: none;
    background: #fff;
    text-align: left;
    line-height: 3rem;
    padding: 0rem 1rem;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #b3b3b3;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.menu-list li>span {
    position: relative;
    font-size: 1.5rem;
}

.menu-list li>span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    height: 3px;
    width: 0px;
    transition: all 0.3s ease-in-out;
}

.menu-list li:hover {
    color: #0047bb !important;
}

.menu-list li:hover a {
    color: #0047bb !important;
}

.menu-list li:hover>span::after {
    background: #0047bb;
    width: 100%;
}

.menu-list li a {
    flex: 1;
    text-decoration: none;
    display: inline-block;
    height: 100%;
    color: #6d6d6d;
    /* width: 100%; */
}

a:link,
a:visited,
a:hover,
a:active {
    /* color: rgb(109, 109, 109); */
    color: black;
}

/* .menu-list:hover #menu-list {
    display: block;
} */

.menuShow {
    display: block !important;
}


/* menu */
.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
    user-select: none;
}

.dropdown-toggle {
    padding: 8px 16px;
    cursor: pointer;
}

.dropdown-toggle > img{
    height: 20px;
}

.dropdown-list {
    display: none;
    position: absolute;
    right: 5px;
    top: 60px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
    z-index: 100;
}

.dropdown-list li {
    list-style: none;
    padding: 8px 16px;
    cursor: pointer;
}

.dropdown-list li:hover {
    background: #f5f5f5;
}

.dropdown.open .dropdown-list {
    display: block;
}

#currentLang {
    padding: 8px 16px;
    cursor: pointer;
}

#currentLang>img {
    height: 20px;
}