/* NAV-MENU */
.nav__menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.829);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 8%;
    z-index: 1001;
}

.nav__menu img {
    cursor: pointer;
    width: 200px;
}

.nav__menu li {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 400;  
}

.nav__menu li a {
    transition: all 0.3s ease 0s;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;   
}

.nav__menu li a:hover {
    color: rgb(58, 71, 255);
}

.nav__menu button {
    padding: 6px 20px;
    background-color: rgb(86, 97, 255);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    font-style: 16px;
    line-height: 18px;
    font-family: 'Quicksand', sans-serif;
}

.nav__menu button:hover {
    background-color: rgb(86, 97, 255, 0.8);
}

@media only screen and (max-width: 1023px) {
    .nav__menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .nav__menu nav {
        order: 3;
    }
}