header {
    width: 100%;
    background: url(../images/header-bg.png ) repeat-x scroll center bottom transparent;
}

.head {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: var(--logo);
}

.head p {
    font-size: 10px;
    color: #ddd;
}

.head p strong {
    font-weight: bold;
    font-size: 11px;
    color: #fff;
}

.head p strong span {
    text-transform: uppercase;
}

.hero-bg {
    background: url(../images/nav-bg.png) repeat-x scroll 0 0 transparent;
    height: 32px;
    width: 100%;
    margin-bottom: 6px;
}

.hero {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.hero menu {
    display: flex;
}

.hero a {
    color: #fff;
    font-size: 12px;
    display: block;
    border-right: 1px solid #fff;
    padding: 0 10px;
}

.hero li:first-child a {
    padding-left: 0;
}

.hero li:last-child a {
    border: 0;
}

.hero a:hover {
    color: #33adff;
}

.hero menu a.active {
    color: #33adff;
}

.searchBar {
    width: var(--search-bar);
    display: flex;
    gap: 5px;
}

.searchBar input {
    flex: 1;
    color: #666;
    background-color: #d1d1d1;
    padding: 2px 5px 2px;
    font-size: 12px;
    border-radius: 3px;
}

.searchBar button {
    width: var(--button);
    background-color: #33ADFF;
    border-radius: 3px;
}

.searchBar button img {
    transform: scale(.8);
    filter: invert(.15);
}

.peBtn {
    width: calc(var(--button) * 1.8);
    height: calc(var(--button) * 1.8);
    display: none;
}

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

    .mobile {
        display: flex;
        width: 100%;
        justify-content: space-around;
    }

    .peBtn {
        display: block;
    }

    .head {
        flex-direction: column;
        padding: 5px 0;
        gap: 5px;
    }

    .head p {
        text-align: center;
    }

    .head p>span,
    .head p br {
        display: none;
    }

    .hero-bg {
        height: fit-content;
    }

    .hero menu {
        display: none;
    }

    .searchBar {
        width: 100%;
        height: 100vh;
        padding: 20px 5px;
        background: #000;
        transition: .3s;
        transform: translateY(-100%);
        position: absolute;
        top: 0;
        z-index: 9;
    }

    .searchBar.active {
        transform: translateY(0);
    }

    .searchBar button {
        width: calc(var(--button) * 1.8);
    }

    .searchBar input,
    .searchBar button {
        height: calc(var(--button) * 1.8);
    }
}