/*
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'lato';
}
*/

.slide-contenedor{
    max-width:100%;
    *max-height: 100vh;
    width: 100%;
    height:auto;
    position: relative;
    /* overflow: hidden; */ /*Permite Scrolear*/
    /* margin: auto; */
}

/* .miSlider{
    display: none;
    transition: 2s;
    max-height: 100vh;
} */

.miSlider img{
    width: 100%;
    height: auto;
    max-height: 100vh;
    height: inherit;
    object-fit: cover;
    vertical-align: top;
    /*transition: 5s;*/
    transform: scale(1);
    transition: all 6000ms linear;


}

.direcciones{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.direcciones a {
    color: #fff;
    display: inline-block;
    padding: 20px;
    text-decoration: none;
}

.direcciones a:hover{
    background: rgba(0, 0, 0, .5);
    transition: .5s;
}

.barras{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom:15px;
}

.barra{
    cursor: pointer;
    height:10px;
    width: 10px;
    border-radius: 50px;
    margin: 0 2px;
    background: #dcdde1;
    display: inline-block;
    margin-left: 3px;
}

.activex{
    background-color: #1883C6;
}

.fader{
    animation-name: fade;
    animation-duration: 1.5s;    
}

@keyframes fader {
    from {opacity: .4;}
    to{opacity:1;}
}