@font-face {
    font-family: 'default';
    src: url(../font/Outfit-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'default';
}

img {
    width: 100%;
}

input {
    outline: 0;
    border: none
}

ul {
    list-style: none;
}

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

body {
    background-color: rgb(254, 251, 250);
}

button {
    border: none;
    background: none;
}

.de_iv_adv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    background-color: rgb(254, 251, 250);
    /* margin: 10px 0 0px; */
}

.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 {
    width: 100%;
    height: 76px;
    box-shadow: 2px 2px 10px #000;
}

nav {
    width: 70%;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    width: 200px;
    margin-right: 15px;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu {
    display: flex;
}

.menu li {
    margin: 0 20px;
}

.searchBar {
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #00000056;
}

.searchBar input {
    width: 250px;
    height: 40px;
    font-size: 20px;
    text-indent: 20px;
}

.sear-btn {
    width: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
}

.menu-btn,
.sea-btn {
    display: none;
    cursor: pointer;
}

.img-box {
    position: relative;
}

.img-box::before {
    content: '';
    display: block;
}

.img-box>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width:999px) {
    nav {
        width: 98%;
        border-bottom: 1px solid gray;
        position: relative;
    }

    .logo {
        width: 50%;
        margin: 0;
    }

    .menu {
        width: 100%;
        align-items: center;
        position: absolute;
        flex-direction: column;
        padding: 5%;
        height: 100vh;
        transform: translateY(-100%);
        background-color: rgb(254, 251, 250);
        top: 0%;
        transition: 0.5s;
        z-index: 1;
    }

    .nav-left {
        width: 100%;
        justify-content: space-around;
    }

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

    .nav-right {
        position: absolute;
        width: 100%;
        height: 100vh;
        z-index: 11;
        justify-content: center;
        top: 0;
        transform: translateY(-100%);
        left: 0;
        background: rgb(254, 251, 250);
        padding: 5%;
        transition: all 0.5s ease;
    }

    .searchBar {
        height: 40px;
    }

    .menu-btn,
    .sea-btn {
        width: 10%;
        display: block;
    }
}