* {
    padding: 0px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Archivo Black', sans-serif;
}


.item {

    display: flex;
    align-items: center;
    padding: 0px 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}

.logo {
    width: 70px;
}

.logo img {
    width: 100%;
}

.nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin-left: 81px;
}

.nav ul a {
    text-decoration: none;
    color: black;
    padding: 50px 45px 20px;
    font-size: 14px;

}

li {
    font-family: emoji;
    color: white;
}

button.mob {
    display: none;
}

@media (max-width:820px) {
    header .nav.active {
        position: absolute;
        z-index: 10;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.882);
        width: 100%;
        height: 100vh;
        display: block;

    }



    .nav {
        display: none;
    }

    .nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 10%;
        left: 35%;
        margin-left: 0;
    }

    .nav ul a {
        font-size: 30px;
    }

    header .item {
        display: flex;
        align-items: center;
        padding: 0px 50px;
        justify-content: space-between;
    }

    button.mob {
        display: block !important;
        padding: 4px;
        background: transparent;
        border: white 1px solid;
    }

    button.mob span {
        display: block;
        width: 26px;
        height: 1px;
        margin: 6px;
        background-color: #fff;
    }

    header .item {
        display: flex;
        align-items: center;
        padding: 10px 50px;
        justify-content: space-between;
    }

    button.mob {
        position: relative;
        display: block;
        padding: 4px;
        background: transparent;
        border: white 1px solid;
    }

    button.mob span {
        display: block;
        width: 26px;
        height: 1px;
        margin: 6px;
        background-color: #fff;
    }

    button.mob:hover {
        background-color: rgb(32, 32, 32);
    }


}