#c-slider {
    margin: auto;
    width: 100%;
    max-width: 1600px;
    position: relative;
    overflow: hidden;
}


#slider {
    display: flex;
    width: 600%;
   

}

#slider section  {
    width: 100%;
    list-style: none;
}

#slider img {
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1000;  /*z-index y position, sirven para que la imagen vaya al fondo, y se sobreponga el menú cuando se despliega*/
    position: relative;

}

#btn-prev, #btn-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 40px;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    font-family: monospace;
    cursor: pointer;
    z-index: -1000;  /*z-index y position, sirven para que la imagen vaya al fondo, y se sobreponga el menú cuando se despliega*/

}
#btn-prev:hover, #btn-next:hover {
    background: rgba(255, 255, 255, 1);  /*el color que se camnbia cuando pasa el mouse*/

}

#btn-prev {
    left: 10px;
}

#btn-next {
    right: 10px;
}

