

.slide-contenedor{
    top: 0;
    background: rgb(0, 0, 0);
    height: 100%;
    width: 70%;
    margin-bottom: 0;
    position: absolute;
    overflow: hidden;
    /* margin: auto; */
    border-radius: 5px;
    box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.918);
}
@media screen and (max-width: 1400px){
    .slide-contenedor{
        border-radius: 0px;
    }
}
@media screen and (max-width: 1040px){
    .slide-contenedor{
        width: 100%;
    }
}
@media screen and (max-width: 440px){
    .slide-contenedor{
        box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.918); ;
    }
}

/* .miSlider{
    display: none;
    transition: 2s;
    max-height: 100vh;
} */

.miSlider img{
    position: absolute;
    width: 100%;
    
    height: 100%;
   
    vertical-align: top;
    transition: 2s;
    
}


.direcciones{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content:space-between;
    align-items: flex-end;
    font-size: 30px;
    
}

.direcciones a{
    color: #fff;
    display: inline-block;
    z-index: 100;
    text-decoration: none;
}

.direcciones a:hover{
    background: rgba(0, 0, 0, .5);
    padding: 10px;
    border-radius: 10px;
    transition: .5s;
}

.barras{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom:15px;
}

.barra{
    cursor: pointer;
    height:5px;
    width: 25px;
    margin: 0 2px;
    background: #dcdde1;
    display: inline-block;
    margin-left: 3px;
    z-index: 999;
}

.active{
    background-color: #e74c3c;
}

.fade{
    animation-name: fade;
    animation-duration: 1.5s;  
     
}
@media screen and (max-width: 750px){
    .miSlider img{
        
        width:100%;
    }
}
@media screen and (max-width: 500px){
    .miSlider img{
        
        width: 600px;
    }
}
@media screen and (max-width: 400px){
    .miSlider img{
        right:0;
        width: 500px;
    }
}

@keyframes fade {
    from {opacity: .4;}
    to{opacity:1;}
}