*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.container-carousel {
    margin: 0 0 0 0;
    position: relative;
    /* width: 500px; */
    height: 700px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.carruseles {
    width: 1000%;
    height: 100%;
    display: flex;

}

.slider-section {
    width: calc(100% / 10);
    height: 100%;
}

.slider-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-left,
.btn-right {
    display: block;
    position: absolute;
    top: 50%;
    font-size: 1.5rem;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff81;
    transform: translate(0,-50%);
    transition: .5s ease;
    user-select: none;
}

.btn-left:hover,
.btn-right:hover {
    background-color: #333333d4;
    color: #fff;
}

.btn-left {
    left: 10px;
}

.btn-right {
    right: 10px;
}

/* --///////////////////////////////////////////--RESPONSIVE SECTION--////////////////////////////////////////////////-- */
@media screen and (max-width: 600px) {
    .container-carousel {
        margin: 0 0 0 0;
        position: relative;
        /* width: 500px; */
        height: 700px;
        background-color: #e0e0e0;
        overflow: hidden;
    }
}
