#header{
    box-sizing: border-box;
    border-width: 0 0 1px 0;
    border-style: solid;
    background-color: #38005c;
    width: 100%;
    margin: 0 auto 0 !important;
}
@media screen and (max-width: 1200px){
    #header #content #brand{
        margin-left: 40px;
    }
}
@media screen and (max-width: 750px){
    #header #content #brand{
        margin-left: 20px;
    }
}
@media screen and (min-width: 1201px){
    #header #content #brand{
        margin-left: 3%;
    }
}
@media screen and (min-width: 960px){
    #header #mobile_menu{
        display: none !important;
    }
}

#header #content{
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}
#header #content #brand{
    max-width: 230px;
    height: 120px;
    display: flex;
    align-items: center;
}
#header #content #brand img{
    max-width: 230px;
    cursor: pointer;
}
#header #content #wto{
    float: right;
    display: inline;
    margin-top: -95px;
    margin-right: 35px;
}
@media screen and (max-width: 975px){
    #header #content #wto img{
        display: none;
    }
    #header #content #user{
        display: none;
    }
    #header #content #mobile_button{
        display: block;
    }
    #header #nave{
        display: none;
    }
}
@media screen and (min-width: 976px){
    #header #content #wto img{
        display: block;
    }
    #header #content #user{
        display: flex;
    }
    #header #content #mobile_button{
        display: none;
    }
    #header #nave{
        display: block;
    }
}
#header #content #wto img{
    height: 70px;
    border-left: 2px solid #e4a62b;
    padding-left: 10px;
    cursor: pointer;
}
#header #content #user{
    float: right;
    border: solid 1px #fff;
    align-items: center;
    height: 30px;
    padding: 0 20px;
    margin-top: -75px;
    margin-right: 20%;
    color: #fff;
    transition: all .2s ease 0s;
    cursor: pointer;
}
#header #content #user:hover{
    background-color: #8520f7 !important;
}
#header #content #headerMenu{
    display: none;
    position: absolute;
    box-sizing: border-box;
    list-style: none;
    background-color: #fff;
    color: #000;
    width: 190px;
    right: 300px;
    padding: 5px 0;
    border-radius: 5px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 5;
}
#header #content #headerMenu li{
    display: block;
    box-sizing: border-box;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
#header #content #headerMenu li:last-child{
    height: 50px;
    border-top: solid 1px #000;
    text-align: right;
}
li:hover{
    background-color: #f5f5f5;
}
#header #content #user i{
    margin-right: 10px;
}
#header #content #mobile_button{
    float: right;
    position: relative;
    width: 22px;
    height: 22px;
    padding: 5px;
    right: 25px;
    margin-top: -75px;
    cursor: pointer;
    display: none;
}
#header #content #mobile_button span{
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background-color: #fff;
    border-radius: 1px;
    transition: transform .15s ease;
    cursor: pointer;
}
#header #content #mobile_button.close span.one{
    transform: rotate(45deg);
    margin-top: 10px;
}
#header #content #mobile_button.close span.tow{
    display: none;
}
#header #content #mobile_button.close span.theee{
    transform: rotate(-45deg);
    margin-top: -6px;
}
#header #mobile_menu{
    display: none;
    overflow: hidden;
    width: 100%;
    padding: 0 22px;
    list-style: none;
    transition: all 0.2s ease;
}
#header #mobile_menu li{
    display: block;
    width: 100%;
    padding: 20px 0 20px 15px;
    color: #fff;
    border-bottom: solid 1px #fff;
    transition: all 0.1s ease;
    cursor: pointer;
}
#header #mobile_menu li:hover{
    background-color: #8520f7;
}
#header #mobile_menu li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff !important;
}
#header #mobile_menu li span{
    cursor: pointer;
}
#header #mobile_menu li img{
    height: 70px;
}
#header #nave{
    width: 100%;
    min-height: 40px;
    background-color: #8520f7;
    color: #fff;
    text-align: center;
    display: none;
}
#header #nave > a{
    display: inline-block;
    box-sizing: border-box;
    min-width: 100px;
    min-height: 40px;
    padding: 0 12px;
    margin: 0 -2px;
    text-decoration: none;
    background-color: #8520f7 !important;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    border: 1px solid #212121;
    text-align: center;
    justify-content: center;
    transition: all .2s ease 0s;
    cursor: pointer;
}
#header #nave > a:hover{
    background-color: #38005c !important;
}