/* #DesignIntuitive {} */

#DesignIntuitiveUIElements {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 10px;
    padding: 10px 0px;
    width: 100%;
}

#DesignIntuitiveUIElements>div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: hidden;
}

#DesignIntuitiveUIElements>div>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    padding-left: 10px;
}

#DesignIntuitiveUIElements>div:nth-child(1)>ul {
    animation: Carousel_1 20s infinite linear;
}

#DesignIntuitiveUIElements>div:nth-child(2)>ul {
    animation: Carousel_2 20s infinite linear;
}

#DesignIntuitiveUIElements>div:nth-child(3)>ul {
    animation: Carousel_3 20s infinite linear;
}

#DesignIntuitiveUIElements>div>ul>li {
    align-items: center;
    background-color: var(--Background_1);
    border-radius: 5px;
    color: var(--Text_1);
    display: flex;
    flex-direction: column;

    font-family: "RobotoFlex";
    font-size: 15px;
    font-weight: 500;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    justify-content: center;
    min-height: 110px;
    min-width: 250px;

    overflow: hidden;
    text-align: justify;
    text-justify: inter-word;
    word-wrap: break-word;
}

@keyframes Carousel_1 {
    from {translate: 0;}
    to {translate: -100%;}
}

@keyframes Carousel_2 {
    from {translate: -10%;}
    /* from {translate: -100%;} */
    /* to {translate: 0;} */
    to {translate: -110%;}
}

@keyframes Carousel_3 {
    from {translate: -20%;}
    to {translate: -120%;}
}