.elementor-736 .elementor-element.elementor-element-d5b878e{--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;}/* Start custom CSS *//* Start custom CSS for html, class: .elementor-element-3408729 */
/* Container to hold the scrolling text */
.scroll-container {
    width: 100%;
    /* Full-width container */
    overflow: hidden;
    /* Hide text that goes out of view */
  
    /* Light background for contrast */
    padding: 2px 0;
    /* Padding around the text */
    box-sizing: border-box;
    position: relative;
}

/* Scrolling text style */
.scroll-text {
    display: flex;
    white-space: nowrap;
    user-select: none;
    padding-block: 12px; 
    border: none;
    animation: scroll 16s linear infinite;
    font-size: 18px;
    font-weight: 400;
    word-spacing: 2px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #ECC30B;
    font-family: 'Poppins';
}

.scroll-text ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scroll-text:hover {
    animation-play-state: paused;
    /* Pause animation when hovering */
}
.scroll-text ul {
    margin: 0px;
    padding: 0;
}
.scroll-text .skill::after {
    content: '*';
    margin-inline: 20px; font-weight: 400;
    color: #fff ;
}

.scroll-text .blend::after {
    content: '*';
    margin-inline: 20px; font-weight: 400;
    color: #fff ;
}

.skill {
    font-weight: 600;
}

.blend {
    color: #fff ;
}

/* Animation keyframes for continuous scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0);
        /* Start the text from the beginning */
    }

    100% {
        transform: translateX(-100%);
        /* Move left, showing the second half of the duplicated text */
    }
}/* End custom CSS */