div#carrousel{
    width: 100%;
    height: 450px;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
}
div#carrousel>div#mover{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-left: -100%;
}
div#carrousel>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#carrousel>div#mover>article img {
    width: 350px;
    margin: auto;
}
#anterior, #siguiente{
    width: 20px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 50px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    font-family: monospace;
    cursor: pointer;
    color: rgb(0, 0, 0);
}
#anterior:hover, #siguiente:hover{
    color: #000000;
}
#anterior{
    left: 20px;
}
#siguiente{
    right: 20px;
}

/***  Sengundo slider ***/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@media(max-width:992px) {
    .left-slide {
        width: 100%;
        height: 300px;
        padding: 20px;
        order: 2;
    }
    .right-slide {
        width: 100%;
        height: 500px;
        order: 1;
    }
    div#carrousel>div#mover>article img {
        width: 300px;
        margin: auto;
    }
}
@media(max-width: 767px) {
    div#carrousel {
        height: 350px;
    }
    div#carrousel>div#mover>article img {
        width: 250px;
    }
    #anterior{
        left: 10px;
    }
    #siguiente{
        right: 10px;
    }
}