header {
    border-bottom: 3px solid #f7d164;
    background-color: #fff;
}

.head-cen {
    width: var(--all-width);
    margin: 0 auto;
}

.logo {
    font-size: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 1px 1px #fff
}

.logo>p>a {
    color: #000;
}

.logo>a:first-child {
    width: var(--logo);
    display: block;
}

.head-top {
    display: flex;
}

.searchBar {
    width: var(--searchBar);
    display: flex;
    column-gap: 6px;
    height: 25px;
    margin: auto 0 0 auto;
}

#search {
    border: 1px solid #49494D;
    color: #49494D;
    vertical-align: text-top;
    box-shadow: #d3d3e3 0.1em 0.1em 0.2em;
    border-radius: 5px;
    flex: 1;
    padding: 5px;
    background: -webkit-gradient(linear, left top, left 25, from(#f8f8ff), color-stop(4%, #e8e8ee), to(#f8f8ff));
    font-size: 12px;
}

#go {
    border: 1px solid #49494D;
    color: #202050;
    box-shadow: #e3e3e3 0.1em 0.1em 0.2em;
    border-radius: 5px;
    font-size: 12px;
    background: -webkit-gradient(linear, left top, left 25, from(#f8f8ff), color-stop(4%, #e8e8ee), to(#f8f8ff));
    padding: 0 5px;
    font-weight: 600;
}

#search:hover,
#go:hover {
    box-shadow: #4C4C55 0 0 3px;
    color: #49494D;
}

.head-bot {
    margin-top: 2px;
}

.head-bot ul {
    display: flex;
}

.head-bot ul li {
    flex: 1;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fff), color-stop(1, #e8e3e8));
    text-align: center;
    padding: 8px 0;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
}

.head-bot ul li a {
    display: block;
    color: #3b3b3b;
    font-size: 14px;
}

.head-bot ul li:hover {
    background-color: #FFFFFF;
    border-top-color: #c2c2c2;
    border-left-color: #c2c2c2;
    border-right-color: #c2c2c2;
    color: #3b3b3b;
    background-color: #fff;
}

.open-menu,
.open-sear {
    display: none;
}

@media screen and (max-width:769px) {
    header {
        position: relative;
        z-index: 9;
    }

    .open-menu,
    .open-sear {
        width: var(--button, 30px);
        height: var(--button, 30px);
        display: block;
        position: absolute;
        z-index: 3;
        top: 8%;
    }

    .open-menu {
        left: 2%;
    }

    .open-sear {
        right: 2%;
    }

    .head-top {
        flex-direction: column;
    }

    .head-bot {
        display: none;
    }

    .searchBar {
        position: absolute;
        height: 100vh;
        transition: .5s;
        background-color: #fff;
        padding: 50px 5px 0;
        top: 0;
        transform: translateY(-100%);
        left: 0;
        z-index: 1;
    }

    #search {
        height: var(--button);
    }

    #go {
        height: var(--button);
    }

    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
        background-color: #fff;
    }

    .logo>p {
        width: 100%;
        text-align: center;
        white-space: wrap;
    }


}