.header-top-right {
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;

}

.language-select-container {
    position: relative;
    margin-right: 40px;
    cursor: pointer;
}

.language-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    height: 30px;
}

.language-select-icon {
    height: 20px;
    width: 20px
}

.language-select {
    font-size: 14px;
    font-weight: 700;
    padding: 0 10px;
}

.language-select-dropdown {
    width: 10px;
    height: auto;
    transition: all.3s;
}



.language-hidden-container {
    display: none;
    position: absolute;
    left: 0;
    top: 30px;
    background-color: #fff;
    z-index: 99;
    width: 120px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}


.language-select-container:hover .language-select-dropdown {
    transform: rotate(-180deg);
}

.language-select-container:hover .language-hidden-container {
    display: block;
}

.contact-container {
    display: flex;
}

.contact-container img {
    width: 20px;
    height: 20px;
    margin-right: 10px;

}

.contact-container span {
    font-size: 14px;
}



.btnMenu {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 15px 10px 0px 0px;
    margin: 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.btnMenu>span:nth-child(1) {
    width: 1.9375rem;
    height: .125rem;
    background-color: #0c406b;
    margin-bottom: .4375rem;
    transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
    box-sizing: border-box;
    border-radius: 3px;
}

.btnMenu>span:nth-child(2) {
    width: 1.9375rem;
    height: .125rem;
    background-color: #0c406b;
    margin-bottom: .4375rem;
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, opacity .3s ease;
    transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
    box-sizing: border-box;
    border-radius: 3px;

}

.btnMenu>span:nth-child(3) {
    margin-bottom: 0;
    box-sizing: border-box;
    width: 1.9375rem;
    height: .125rem;
    border-radius: 3px;
    background-color: #0c406b;
    margin-bottom: .4375rem;
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, opacity .3s ease;
    transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
}


.open>span:nth-child(1) {
    background-color: #0c406b;
    transform: rotate(45deg) translate(.125rem, .5625rem);
}

.open>span:nth-child(2) {
    background-color: #0c406b;
    opacity: 0;
}

.open>span:nth-child(3) {
    background-color: #0c406b;
    transform: rotate(-45deg) translate(.25rem, -.6875rem);
}

#footer {
    background-color: #062138;
}

#footer .container {
    border-top: 1px solid #e5e5e5;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-nav {
    display: flex;
}

.footer-nav li {
    margin: 0 10px;
}

.footer-nav li a:hover {
    color: #e5e5e5;
}

.contact-bg {
    width: 100%;
    height: 100%;
    background-image: url("../images/contact.jpg");
    background-position: 50%;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.contact-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(56deg, #000000ba, #00000000);
}

.contact-box {
    position: relative;
}

@media screen and (min-width: 768px) {
    .header-top {
        width: 100%;
        height: 30px;
        background-color: #fff;
    }

    .logo {
        display: none;
    }

    .header-menu-btn {
        display: none;
        width: 41px;
        height: 41px;
    }

    .header-left {
        display: none;
    }

    .header-nav {
        height: 40px;
    }

    .header-menu {
        width: 100%;
        height: 100%;
        align-items: center;
    }

    .header-menu-item {
        height: 40px;
        line-height: 40px;
        position: relative;
    }

    .sub-menu {
        position: absolute;
        top: 40px;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease-out;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .header-menu-item:hover .sub-menu {
        opacity: 1;
        visibility: visible;
    }


    .header-menu-item a {
        font-size: 16px;

    }

    .sub-menu a {
        font-size: 14px;
        /* white-space: nowrap; */
    }

    .header-menu-item a:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 767px) {
    .header-container {
        width: 100%;
        background-color: #fff !important;
    }

    .header-top {
        display: none;
    }

    .logo-white {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .header-menu-btn {
        display: block;
        width: 41px;
        height: 41px;
    }

    .header-left {
        width: 0%;
        height: 100vh;
        opacity: 0;
        transition: all .3s ease-out;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
    }

    .header-left-container {
        overflow-y: auto;
    }

    .header-left-top {
        height: 73px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #e5e5e5;
    }

    .header-left-top a {
        display: inline-block;
    }

    .header-left-top img {
        width: 100%;
        max-width: 200px;
        display: block;
        height: auto;
    }

    .header-left-nav {
        display: flex;
        flex-direction: column;
    }

    .header-left-nav-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .header-left-nav-item .nav-btn {
        width: 30px;
        height: 30px;
        transition: all .3s ease-out;
    }

    .left-sub-menu {
        max-height: 0px;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .left-sub-menu li {
        margin-bottom: 30px;
    }

    .header-left-nav a {
        display: inline-block;
        height: 30px;
        line-height: 30px;
    }

    .header-left-nav a:hover {
        text-decoration: underline;
    }

    .header-left-language {
        border-top: 1px solid #e5e5e5;
    }

    .header-left-language-top {
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .header-left-language-top .language-image {
        width: 30px;
        height: 30px;
        transition: all .3s ease-out;
    }

    .left-language-dropdown {
        height: 0px;
        overflow: hidden;
        transition: all .3s ease-out;
    }

    .left-language-dropdown li {
        margin: 10px;
    }

    .left-language-dropdown a {
        font-size: 14px;
    }

    .sub-menu-open {
        max-height: 1000px;

    }

    .open-left {
        width: 60%;
        height: 100vh;
        opacity: 1;
        overflow-y: auto;
    }

    .language-open .language-image {
        transform: rotate(90deg);
    }

    .language-open .left-language-dropdown {
        height: 80px;
    }
}