.slide-contenedor{
    width: 65%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin:auto;
}

/*.mislider{
    display: none;
    transition: 2s;
    max-height: 100vh;
}*/

.mislider img{
    width: 100%;
    max-height: 100vh;
    height: inherit;
    object-fit: cover;
    vertical-align: top;
    transition: 2s;
}
.direcciones{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.direcciones a{
    color: black;
    display: inline-block;
    padding: 20px;
    text-decoration: none;
}
.direcciones a:hover{
    background: rgba(255,255,255,0.5);
    transition: .5s;
}

.barras{
    position: absolute;
    bottom: 0;
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
    display: flex;
}
.barra{
    cursor: pointer;
    height: 2px;
    width: 25px;
    margin: 0 2px;
    background: black;
    display: inline-block;
    margin-left: 3px;
}
.active{
    background-color: purple;
}

.fade{
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from{opacity: .4;}
    to{opacity:1;}
}