*{  margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header{
    height: 100px;
    background: lightgrey;
    padding: 0 50px;
    color: maroon;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



#logo{
    size: 10%;
}

.menu a{
    text-transform: uppercase;
    color: maroon;
    text-decoration: none;
    padding: 0 10px;
    transition: 0.4s;
}

.mostrar-menu, 
.esconder-menu{
    font-size: 30px;
    cursor: pointer;
    display: none;
    transition: 0.4s;
}

.mostrar-menu{
    order: 1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
    color:lightgrey;
}

#check{
    display: none;
}

/*BANNER*/

#banner{
    padding: 0 50px;
    background-image: url(/images/banner.jpg);
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
}

#banner::before{
    content: "";
    /*background: rgba(77, 77, 92, 0.4);*/
    position: absolute;
    width: 100%;
    height: 75vh;
    left: 0;
}

.contenido-banner{
    position: relative;
    color: #fff;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contenido-banner h3{
    font-size: 20px;
    font-weight: 100;
    padding: 10px 0px;
}

.contenido-banner h3 span{
    font-weight: 600;
    font-size: 30px;
}

#info{
    background: lightgrey;
    padding: 50px 50px;
    height: 20vh;
    text-align: center;
}

#info h2 span{
    font-size: 25px;
    color: maroon;

}

/*slider*/

.imagenes{
    padding: 40px 40px;
    background: #faf8f6;
}

.slider{
   
    width: 80%;
    margin: auto;
    height: 80%;
    overflow: hidden;
    object-fit: cover;
    border-radius: 10px;
}
.slider ul{
    padding: 0px;
    display: flex;
    width: 400%;

    animation: slider 20s infinite alternate;
    animation-timing-function: linear;
    
}
.slider li{
    width: 100%;
    list-style: none; /*hace deaparecer los puntos de las listas*/
}
.slider li img{
    width: 100%;
}

@keyframes slider{ /*animacion slider*/
    0% {margin-left: 0;}
    20% {margin-left: 0;}

    25% {margin-left: -100%;}
    45% {margin-left: -100%;}

    50% {margin-left: -200%;}
    70% {margin-left: -200%;}

    75% {margin-left: -300%;}
    100% {margin-left: -300%;}
}

#carta{
    display: flex;
    color:dimgray;
    text-align: center;
    justify-content: center;
    line-height: 2;
    height: 90%;
    
}

#mapa{
    padding: 70px 0px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    
}

footer{
    background-color: maroon;
    height: 70px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    color: rgba(252, 249, 249, 0.1);
}

footer p span{
    font-size: 1rem;
    color: #ffff;
}



/*responsive*/
@media(max-width: 768px){
    
    .mostrar-menu,
    .esconder-menu{
        display: block;
    }

    .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: lightgrey;
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
    }
    .menu a{
        display:block;
        padding: 20px;
    }
    .esconder-menu{
        position: absolute;
        top: 40px;
        right: 40px;
    }
    #check:checked ~ .menu{
        right:0;
    }

    #banner{
        background-size:cover;
    background-position: center;
    }

    #slider{
   
        width: 78vh;
    }

    #carta{
        height: 100vh;
    }

    #mapa{
        
        text-size-adjust: 90%;
        padding: 50px 50px;
    }

    #mapa iframe{
        width: 45vh;
    }
}


    /* caja de texto */