header{
    height: 80px;
    width: 100%;
    background-color: rgb(245, 245, 245);
    display: flex;
    position: fixed;
    user-select: none;
    align-items: center;
    justify-content: space-between;
    z-index: 100000;
}
header .logo__container{
    height: 100%;
    display: flex;
    align-items: center;
}
header .logo__container img{
    height: 100%;
    position: absolute;
    z-index: 100;
}
header .logo {
    margin: 0;
    margin-left: 6vh;
    padding: 25px 30px;
    font-weight: bold;
    color: rgb(118, 207, 236);
    font-size: 1.45em;
}
header a {
    font-size: 16px;
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
}
.nav-button{
    display: none !important;
}
.responsive-fill{
    display: none;
}
@media (max-width: 1000px){
    .responsive-fill{
        display: block;
        z-index: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgb(245, 245, 245);
    }
    header .logo{
        position: absolute;
    }
    nav{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 0%;
        background-color: #eee;
        transform: translateY(-40vh);
        transition: transform .3s;
        z-index: -1;
    }
    nav a{
        padding: 32px;
    }
    .responsive nav{
        transform: translateY(200px);
        transition: transform .3s;
    }
    .nav-button{
        position: absolute;
        display: inline-block !important;
        font-size: 35px;
        color: rgb(118, 207, 236);
        right: 20px;
        z-index: 100;
    }
    .nav-button:hover{
        cursor: pointer;
        color: rgb(66, 168, 202);
    }
    /**/
    section{
        scroll-margin-top: 20vh;
    }
    .logo{
        display: none;
    }
    .turnos{
        bottom: 3vh;
    }
}