.section-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section__slider {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    transition: transform 0.5s ease;
}

.section__slide {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-shrink: 0;
}

.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-dot.active {
    background-color: #555;
}

.carousel-arrow__prev {
    background-image: url("/static/img/svg/recommended__left-btn.svg");
    width: 50px;
    height: 50px;
    position: absolute;
    left: 40px;
    top: 207px;
    fill: #FFF;
    stroke-width: 1px;
    stroke: rgba(25, 25, 25, 0.25);
    cursor: pointer;
    z-index: 1;
}

.carousel-arrow__next {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 40px;
    top: 207px;
    fill: #FFF;
    stroke-width: 1px;
    stroke: rgba(25, 25, 25, 0.25);
    background-image: url("/static/img/svg/recommended__right-btn.svg");
    cursor: pointer;
    z-index: 1;
}