.haiwode-head{
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    z-index: 99;
}
.haiwode-head.active{
    background: #003365;
    animation: slide-down 0.7s;
}
@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}
.haiwode-head .haiwode-nav{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.haiwode-head .haiwode-logo img{
    width: 150px;
    aspect-ratio: 150/41;
    object-fit: cover;
}

.haiwode-head .haiwode-center{
    display: flex;
    align-items: center;
    gap: 100px;
}
.haiwode-head .haiwode-menu{
    display: flex;
    align-items: center;
    gap: 55px;
    transition: all 0.5s;
}
.haiwode-menu .menu-item-wrap{
    position: relative;
}
.haiwode-menu .menu-item-wrap.active::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: var(--primary-color);
}
.haiwode-menu .menu-item{
    color: #FFF;
    font-family: var(--font-text-family);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 400;
    line-height: 166.667%; /* 166.667% */
    padding: 22px 0;
    display: inline-block;
}
.haiwode-sub-wrap{
    width: 420px;
    position: absolute;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
    padding: 20px 50px 20px 20px;
    transition: all 0.3s;
    transform: translateY(50%);
    opacity: 0;
    visibility: hidden;
}
.haiwode-menu .menu-item-wrap:hover .haiwode-sub-wrap{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.haiwode-sub-wrap .haiwode-sub-title{
    color: #111;
    font-family: var(--font-text-family);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}
.haiwode-sub-wrap .haiwode-three-wrap{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    row-gap: 12px;
}
.haiwode-sub-wrap .haiwode-three-item{
    /* width: 33%; */
    color: #333;
    font-family: var(--font-text-family);
    font-size: var(--font-14);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
}
.haiwode-sub-wrap .haiwode-sub-line{
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.haiwode-right{
    display: flex;
    align-items: center;
}
.haiwode-right .haiwode-lang,
.haiwode-right .haiwode-search{
    color: #fff;
    position: relative;
}
.haiwode-right .haiwode-lang svg{
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
}
.haiwode-right .haiwode-lang .lang-selector .current-lang em{
    font-size: 18px;
}
.haiwode-right .haiwode-lang .lang-selector .current-lang img{
    opacity: 0;
}
.haiwode-right .haiwode-search{
    margin-left: 57px;
}
.haiwode-right .haiwode-search .em-header-quearys .em-quearys-menu i{
    line-height: 28px;
}
.haiwode-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    transition: all 0.5s;
}

.haiwode-hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}




@media screen and (max-width: 1500px) {
    .haiwode-right .haiwode-search{
        margin-left: 10px;
    }
    .haiwode-head .haiwode-center{
        gap: 20px;
    }
    .haiwode-head .haiwode-menu{
        gap: 30px;
    }
}
@media screen and (max-width: 1200px) {
    .haiwode-head .haiwode-menu{
        display: none;
    }
    .haiwode-hamburger{
        display: flex;
    }
}

.haiwode-mobile-menu{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 30px;
    transition: all 0.5s ease;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}
.haiwode-mobile-menu.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.haiwode-mobile-menu .mobile-top{
    width: 100%;
    position: relative;
}
.mobile-top .mobile-logo{
    width: 50%;
    aspect-ratio: 53/15;
    object-fit: cover;
}
.mobile-top .close-hamburger {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.mobile-top .close-hamburger .bar {
    position: absolute;
    top: 16px;
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transform: rotate(-45deg);
}
.mobile-top .close-hamburger .bar:first-child {
    transform: rotate(45deg);
}
.mobile-nav{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-nav .mobile-nav-wrap{
    position: relative;
}
.mobile-nav .mobile-nav-wrap a{
    font-size: 18px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
}
.mobile-nav .mobile-nav-wrap .mobile-nav-item{
    padding: 10px 0 10px 10px;
}
.mobile-nav .mobile-nav-wrap .ico{
    width: 10%;
    text-align: center;
    height: 45px;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-subNav .mobile-subNav-item{
    padding: 10px 0 10px 20px;
}
.mobile-subNav-wrap{
    position: relative;
}
.mobile-threeNav .mobile-threeNav-item{
    padding: 10px 0 10px 30px;
}