
div#slider{
    width: 100%;
    height: 600px;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
}
div#slider>div#mover{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-left: -100%;
}
div#slider>div#mover>article{
    width: 100%;
    height: 600px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}
div#slider>div#mover>article img {
    width: 350px;
    margin: auto;
}
@media(max-width:992px) {
     .left-slide {
        width: 100%;
        height: 300px;
        padding: 20px;
        order: 2;
    }
    .right-slide {
        width: 100%;
        height: 500px;
        order: 1;
    }
    div#slider>div#mover>article img {
        width: 300px;
        margin: auto;
    }
}


#contenedor_slide_v {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 20px;
    display: table;
}

ul,ol{ 
    list-style: none; 
}
.slideshow{ 
    width: 100%; 
    position: relative; 
}
.slider li{ 
    overflow: hidden; 
}
.caption{ 
    width: 100%; 
    height: auto; 
}
.slider img{ 
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: top;
    display: table; 
}
.slider .caption{ 
    position: relative;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    bottom: 0; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    color: #000; 
    z-index: 1;
}
.slider .caption .contenedor-descripcion {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.404);
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 6;
}
.slider .caption .contenedor-descripcion h2 {
    color: #FFF;
    font-size: 50px;
    line-height: 62px;
    font-weight: 600;
    margin-bottom: 10px;
}
.slider .caption .contenedor-descripcion p {
    width: 50%;
    color: #FFF;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 30px;
}
.pagination{ 
    position: absolute; 
    top: 92%; 
    width: 100%; 
    display: flex; 
    justify-content: center; 
    z-index: 1000; 
}
.pagination li{ 
    font-size: 12px; 
    color: #ffe600; 
    margin: 2px 5px; 
    cursor: pointer; 
    transition: all .3s ease; 
}
