.elementor-840 .elementor-element.elementor-element-eac7566{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-6d9723c *//* Container for scrolling */
.scroll-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* List that scrolls horizontally */
.scrollable-list {
    display: flex; /* Arrange items horizontally */
    white-space: nowrap; /* Prevent wrapping */
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Hide vertical scrollbars */
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Hide the scrollbar in WebKit browsers */
.scrollable-list::-webkit-scrollbar {
    display: none;
}

/* Style list items */
.scrollable-list li {
    margin: 0;
}

.scrollable-list a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #000;
}

.scrollable-list a:hover {
    background-color: #ddd;
}

/* Style for navigation buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}/* End custom CSS */