.slide-contenedor
{
    max-width:100%;
    /*max-height: 100vh;*/
    /*width: 50%;*/
    height: auto;
    position: relative;
    overflow: hidden;
    /* margin: auto; */
}

.miSlider
{
    max-height: 100vh;
    transition: 2s;
}

.miSlider img
{
    width: 100%;
    height: inherit;
    object-fit: cover;
    vertical-align: top;
}

.direcciones
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 50px;
}

.direcciones a
{
    color: green;
    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:2px;
    width: 25px;
    margin: 0 2px;
    background: green;
    display: inline-block;
    margin-left: 3px;
}

.fade
{
    animation-name: fade;
    animation-duration: 1.5s;    
}

@keyframes fade
{
    from {opacity: .4;}
    to {opacity:1;}
}