/* header */
header {
    display: flex;
    width: 100%;
    height: 4.375rem;
    background: #EBEEF0;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 12.75rem;
    min-width: 12.75rem;
    height: 2.5rem;
    margin-left: 5.625rem;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
}

header .wrapper{
    max-width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    padding-left: 2rem;
}

.nav-menu .nav-item {
    padding: 0 1.125rem;
    height: 4.375rem;
    cursor: pointer;
}

.nav-menu .nav-item a{
    font-size: 1rem;
    line-height: 4.375rem;
    text-align: center;
    color: #0D1326;
    transition: all .3s;
}

.nav-menu .nav-item:hover a{
    color: #044F9F;
}

.nav-menu .nav-item.active a{
    color: #044F9F;
}

.search-box {
    width: 23.4375rem;
    height: 4.375rem;
    background: #056DDC;
    padding: .875rem 1.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-box input {
    height: 1.5rem;
    padding: .25rem;
    font-size: 1rem;
    line-height: 1.125rem;
    color: #fff;
    background: transparent;
    border-color: transparent;
}

.search-box input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .4);
}

.search-box input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(255, 255, 255, .4);
}

.search-box input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(255, 255, 255, .4);
}

.search-box input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, .4);
}

.search-box .search-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: url(../images/common/search.png) no-repeat center;
    background-size: 90%;
    cursor: pointer;
}

.language{
    margin-right: 2.5rem;
    font-size: 1rem;
    line-height: 4.375rem;
    color: rgba(13, 19, 38, .6);
    position: relative;
}

.language .flex-box{
    align-items: center;
    word-break: keep-all;
}

.language .arrow{
    margin-left: .375rem;
    width: 1rem;
    height: 1rem;
    background: url(../images/index/arrow_down.png) no-repeat center;
    background-size: 90%;
    cursor: pointer;
}

.language .language-select{
    display: none;
    position: absolute;
    width: 6rem;
    z-index: 9;
    background: #fff;
    bottom: -3rem;
    right: 0;
    border-radius: .125rem;
    text-align: center;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    word-break: keep-all;
}

.language-select::before{
    content: '';
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 6px;
    border-top-width: 0;
    border-bottom-color: #fff;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: scaleX(-50%);
}

.language-select li{
    font-size: .875rem;
    line-height: 2rem;
    height: 2rem;
    color: rgba(13, 19, 38, .6);
    cursor: pointer;
    transition: ease .3s;
}

.language-select li:hover{
    background: #056DDC;
    color: #fff;
}

.language-select li:nth-child(1){
    border-bottom: solid 1px #ddd;
}

@media screen and (max-width: 1200px) {
    .language{
        display: none;
    }
    .nav-menu{
        display: none;
    }
    .logo {
        margin-left: 1.5rem;
    }
}
