.section-container {
    max-width: 100%;
    margin: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.swipe-slider-list-container {
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
    cursor: pointer;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: all var(--transition-duration);
}

.swipe-slider-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: auto;
}

.swipe-slider-list-container::-webkit-scrollbar {
    height: 0px;
    width: 0px;
    display: none;
}

.scroll-icon {
    font-size: 2em;
    cursor: pointer;
    margin-left: 20px;
}
