header {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.706) 30%, rgba(0, 0, 0, 0)), linear-gradient(rgba(0, 0, 0, 0.200),rgba(0, 0, 0, 0.200)),url("./../images/background.jpeg");
    height: 100vh;
    background-size: cover;
}

.open-menu {
    display: none;
}

.menu {
    display: none;
}

.nav-bar {
    position: fixed;
    width: 100vw;
    height: 5rem;
    display: flex;
    z-index: 1000;
    flex-direction: row;
    background-color: #322e2cab;
    justify-content: space-between;
    border-bottom: solid 1.5px rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px);
    transition: 500ms;
}

.nav-bar img {
    height: 3rem;
    margin: auto 0 auto 2rem;
}

.nav-bar ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: auto 2rem auto 0;
}

.nav-bar ul li {
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    color: #D9D9D9;
    font-size: 1.2rem;
    text-transform: uppercase;
    /* margin: 0 1rem 0 1rem; */
    transition: 500ms;
    padding: 0.25rem;
    /* padding: 0.25rem; */
}

.nav-bar a {
    text-decoration: none;
    margin: 0 1rem 0 1rem;
}

.nav-bar ul li:hover {
    background-color: #d9d9d9;
    transform: scale(1.1);
    color: #322e2c;
}
.content {
    height: 100vh;
    width: 50vw;
    margin: auto 0 auto 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content h1 {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: bold;
    color: #d9d9d9;
}

.content #adv {
    font-family: "Montserrat", serif;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #aba7a7;
}

.content button {
    font-family: "Montserrat", serif;
    margin-top: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    background-color: #322e2cab;
    border: solid 1px #d9d9d9;
    color: #d9d9d9;
    padding: 0.75rem 3rem 0.75rem 3rem;
    transition: 200ms linear;
}

.content button:hover {
    background-color: #d9d9d9;
    color: #322e2c;
}

.sticky {
    background-color: #f4f2f2f5;
    height: 4.5rem;
    border-bottom: 1px solid rgba(41, 41, 41, 0.537);
    transition: 0.5s linear;
}

.sticky ul li {
    color: #322e2c;
}

.sticky img {
    filter: invert(1);
}

.sticky ul li:hover {
    background-color: #322e2c;
    color: #D9D9D9;
}

@media only screen and (max-width:768px) {
    .nav-bar ul .esconde {
        display: none;
    }

    .txtimg-son {
        height: fit-content;
    }

    .nav-bar img {
        height: 2.5rem;
        margin: auto 0 auto 2rem;
    }

}

@media only screen and (max-width:650px) {
    header {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.706) 30%, rgba(0, 0, 0, 0)), linear-gradient(rgba(0, 0, 0, 0.200),rgba(0, 0, 0, 0.200)),url("./../images/background.jpeg");
        height: 100vh;
        background-size: cover;
        background-position: 65%;
    
    }

    .content h1 {
        text-align: center;
        font-size: 2.5rem;
        width: 85vw;
    }
    .menu {
        display: block;
    }

    .nav-bar .menu {
        position: fixed;
        top: 1rem;
        right: 2rem;
    }

    .nav-bar ul {
        margin-right: 3rem;
    }

    .content #adv {
        font-size: 1rem;
      
    }

    .nav-bar ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: auto;
        height: 15rem;
        justify-content: center;
    }

    .nav-bar ul li {
        padding: 0.5rem;
    }

    .nav-bar #open-menu {
        height: 15rem;
        align-items: center;
    }


    .content  {
        height: fit-content;
        margin:auto; 
        padding-top: 50vh;
        width: 80vw;
        align-items: center;
    }

    .content button {
        margin-top: 1rem;
    }
}

.open-menu {
    position: fixed;
    width: 100vw;
    right: 0;
    top:5rem;
    justify-content: center;
    z-index: 101;
    display: flex;
    align-items: end;
    justify-content: center;
    background-color: #B5A47A;
    transition: 500ms linear;
    display: none;
    animation: menu 0.3s linear;
    height: 15rem;
}

@keyframes menu {
    from {
       opacity: 0;
    } to {
        opacity: 1;
    }
}

.menu {
    width: 2.5rem;
}


#open-menu ul {
    list-style-type: none;
    text-align: center;
    margin-top: 5rem;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

#open-menu ul a {
    font-size: 1rem;
    
}

#open-menu li {
    padding: 1rem;
    width: 100vw;
    font-size: 1rem;
    margin: auto;
}

#open-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    text-align: left;
    font-weight: 600;
}