header {
    width: 100%;
    height: 96px;
    z-index: 999;
    position: fixed;
}

.header__logo {
    width: 178px;
    height: 56px;
    cursor: pointer;
}

nav {
    margin-left: auto;
}

.tab-govern, .tab-notice, .tab-activity, .tab-contact {
    display: none;
}

nav a,
.header__sub-routes {
    font-size: 16px;
    text-align: left;
    color: #ffffff;
    line-height: 58px;
    /* margin-right: 30px; */
    margin-right: 56px;
    position: relative;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}

nav a:last-child {
    margin-right: 0;
}

nav a:hover {
    border-bottom: 2px solid #ffffff;
}

.header__language-switcher {
    height: 96px;
    position: relative;
    padding-left: 40px;
}

.header__language-switcher img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.header__split {
    width: 1px;
    height: 16px;
    margin-left: 40px;
    background: rgba(255, 255, 255, 0.20);
}

.header__sub-routes {
    position: relative;
}

.header__language-options,
.header__sub-routes-options {
    height: 0;
    /* width: 96px; */
    padding: 0 14px;
    overflow: hidden;
    position: absolute;
    width: max-content;
    border-radius: 12px;
    background: #ffffff;
}

.header__language-options {
    right: 0;
    top: 70px;
}

.header__sub-routes-options {
    top: 54px;
}

.header__language-options p,
.header__sub-routes-options p {
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    text-align: left;
    color: #1d2129;
    margin-top: 16px;
    line-height: 22px;
    margin-bottom: 12px;
}

.header__language-switcher:hover .header__language-options {
    height: 130px;
    display: block;
}

.header__sub-routes:hover .header__sub-routes-options {
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 4px 4px 32px 0px rgba(0, 0, 0, 0.08);
}

.mobile-nav {
    display: none;
}

@media screen and (min-width: 1200px) and (max-width: 1599px) {

    nav a,
    .header__sub-routes {
        font-size: 14px;
        margin-right: 42.5px;
    }

    .header__logo {
        width: 147px;
        height: 46px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {

    nav a,
    .header__sub-routes {
        font-size: 12px;
        margin-right: 31.8px;
    }

    .header__logo {
        width: 110.63px;
        height: 35px;
    }
}

@media screen and (max-width: 767px) {
    .header-down {
        width: 20px;
        height: 20px;
    }

    header {
        height: 48px;
        justify-content: space-between !important;
    }

    /* .mobile-nav img {
        width: 20px;
        height: 20px;
    } */
    .pc-nav {
        display: none !important;
    }

    .mobile-nav,
    .mobile-nav>div {
        width: 100%;
        display: flex;
    }

    .header__logo {
        width: 89px;
        height: 28px;
        margin-left: 16px;
    }

    .menu {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .mobile-nav>ul {
        top: 48px;
        width: 100%;
        display: none;
        overflow-y: auto;
        position: absolute;
        height: calc(100vh - 48px);
        background-color: #ffffff;
    }

    .menu__item,
    .menu__item-sub {
        display: none;
    }

    .mobile-nav>ul>li {
        margin: 0 20px;
        padding: 20px 0;
        flex-wrap: wrap;
        border-bottom: 1px solid #E8EAEF;
    }

    .mobile-nav>ul>li>div {
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid #E8EAEF;
    }

    .menu__item {
        color: #1D2129;
        margin-left: 16px;
    }

    .menu__item-sub {
        color: #4E5769;
        margin-left: 20px;
    }

    .menu__item,
    .menu__item-sub {
        width: 100%;
    }

    .menu__item>li>div {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #e8eaef;
    }

    .menu__item-sub p {
        padding: 18px 0;
        margin-right: 20px;
        border-bottom: 1px solid #e8eaef;
    }

    .custom-dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-button {
        width: 102px;
        height: 46px;
        display: flex;
        font-size: 14px;
        cursor: pointer;
        margin-top: 20px;
        color: #1D2129;
        margin-left: 20px;
        border-radius: 8px;
        padding-left: 16px;
        align-items: center;
        border: 0.5px solid #e8eaef;
    }

    .dropdown-content {
        width: 120px;
        display: none;
        display: block;
        margin-left: 20px;
        position: absolute;
        background-color: #f9f9f9;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .dropdown-content p {
        display: block;
        font-size: 14px;
        color: #333333;
        padding: 8px 12px;
        text-decoration: none;
    }

    .dropdown-content a:hover {
        background-color: #ddd;
    }

    .dropdown-button .language-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }

    .language-down {
        width: 20px;
        height: 20px;
        object-fit: cover;
    }

    .tab-govern, .tab-notice, .tab-activity, .tab-contact {
        display: none;
    }
}

.header__sub-routes-options p {
    text-indent: 0 !important;
}