body
{
    background-color: black;
    color: white;
    margin: 0;
    padding: 5%;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.nav
{
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-color: black;
    position: fixed;
    transition: right 0.3s ease;
    right: -768px;
    top: 0px;
    z-index: 5;
}
.nav.active 
{ 
    right: 0px;
}
.nav-links
{
    list-style: none;
    margin: 60% 0 0 5%;
}
.tab-link
{
    margin-bottom: 8%;
}
.tab-link a
{
    text-decoration: none;
    width: fit-content;
    font-size: 6vw;
    color: rgb(192, 190, 190);
}
.burger.hidden
{
    transform: translateY(-100%);
}
.burger 
{
    display: block;
    position: fixed;
    top: 1%;
    right: 4%;
    font-size: 8vw;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}
.close
{
    display: none;
    position: fixed;
    top: 1.4%;
    right: 5%;
    font-size: 8vw;
    z-index: 1;
    cursor: pointer;
}
.container-contact-main h1
{
    text-align: center;
    font-size: 9vw;
    margin: 20% auto 20%;
}
.container-contact-main p
{
    font-size: 5vw;
    line-height: 1.3;
}
.form-contact
{
    margin-top: 20%;
}
.contact
{
    width: 95%;
    min-height: 5vh;
    margin-bottom: 3%;
    padding-left: 3%;
    font-size: 4vw;
    color: black;
    appearance: none;          
    border: none;            
    outline: none; 
}

.contact-text
{
    width: 95%;
    min-height: 15vh;
}
.send-massage
{
    border: none;
    margin: 4% auto;
    font-size: 4.5vw;
    padding: 3.5% 3.8%;
    background-color: brown;
    color: white;
}
.container-contact-footer
{
    padding-top: 5%; 
}
.footer-tel
{
    margin-bottom: 1vh;
}
.footer-tel a
{
    text-decoration: none;
    color:rgb(177, 57, 107);
}
.footer-adrress p
{
    line-height: 1.5;
}
.footer-open-hours p
{
    line-height: 1.5;
}
@media screen and (width > 769px)
{
    .burger
    {
        display: none !important;
    }
    .close
    {
        display: none !important;
    }
    .nav
    {
        width: 100%;
        min-height: auto;
        background-color: rgb(0, 0, 0, 0);
        position: absolute;
        left: 0px;
        top: 0px;
    }
    .nav-links
    {
        margin: 3% 0 0 40%;
        padding: 0;
        display: flex;
        flex-direction: row;
    }
    .tab-link
    {
        margin: 0 3% 0 3%;
    }
    .tab-link a
    {
        font-size: 1.4vw; 
        color: white;
    }
}