* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
    background: #f7f7f7;
}

img {
    width: 100%;
}

input {
    outline: 0;
    border: none
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

button {
    border: none;
    background: none;
}

.de_iv_adv {
    max-width: 1300px;
    height: auto;
    background: #ababab;
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    position: relative;
}

.de_text {
    max-width: 1300px;
    margin: auto;
    text-align: center;
    background: #ababab;
    color: black;
    font-size: 13px;
    padding: 3px 0px;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 99999;
}

.postionFixed {
    width: 100%;
    min-height: 60px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

footer {
    width: 100%;
    height: 60px;
    text-align: center;
    background-color: #000000;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    padding: 10px 0 10px 0;
    margin-bottom: 60px;
}

footer a {
    color: #fff;
}

header {
    height: 64px;
    background: #fff;
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
}

.menu-btn {
    display: none;
}

.head-left {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
}

.logo {
    width: 200px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menu {
    flex: 1;
    display: flex;
}

.menu li {
    margin: 0 20px;
}

.search-btn {
    width: 40px;
    cursor: pointer;
}

.search-box {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 10px 0;
    border: 1px solid #6666;
    border-left: 0;
    border-right: 0;
    transition: .4s;
}

.search-box input {
    width: 40%;
    height: 40px;
    border: 2px solid gray;
    text-indent: 10px;
    border-radius: 5px 0 0 5px;
    font-size: 20px;
    font-weight: 600;
}

.search-btn-two {
    width: 40px;
    height: 40px;
    border-radius: 0 5px 5px 0;
    border: 2px solid gray;
    border-left: 0;
    cursor: pointer;
}

@media (min-width:1000px) {
    .search-box {
        height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
    }
}

@media (max-width:999px) {
    header {
        position: relative;
        /* padding: 0 10px; */
        z-index: 9;
        height: 20px;
    }

    .menu-btn {
        display: block;
        cursor: pointer;
        width: 20px;
    }

    .logo {
        width: 70%;
    }

    .logo img,
    .search-btn img {
        height: 20px;
        object-fit: contain;
    }

    .menu {
        position: absolute;
        width: 100%;
        height: 100vh;
        left: 0;
        background: #fff;
        border: 1px solid gray;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        transition: all 0.5s ease;
        z-index: 10;
        transform: translateX(-100%);
    }

    .head-left {
        flex: 1;
    }

    .menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px dashed gray;
        margin: 20px 0;
    }

    .search-box {
        display: flex;
        width: 100%;
        position: absolute;
        padding-top: 40px;

        left: 0;
        transition: .5s;
        height: 100vh;
        background-color: #fff;
        z-index: 8;
        transform: translateX(-100%);
        align-items: flex-start;
    }

    .search-box input {
        width: 60%;
    }

}