/* 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: 100%;
    text-align: center;
}

.header-1>img {
    height: 100%;
    display: inline-block;
    width: 100%;
}

.header-1 .menu-list {
    text-align: center;
}

.menu-list {
    height: 100%;
}


.menu-list>ul {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 0px 2rem;
    margin: 0;
}

.menu-list>li {
    height: 100%;
    font-size: 20px;
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

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

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

.menu-list li a {
    flex: 1;
    text-decoration: none;
    display: inline-block;
    height: 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;
}

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

#currentLang>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;
}

.collapse{
    visibility: visible;
}