.flexable-flow-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* .flow-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.flow-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work-flow-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flow-item-icon {
    display: flex;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #E6FAEB;
    position: relative;

}

.flow-item h3 {
    color: #18181B;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.032px;
}

.flow-item p {
    color: #71717A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
} */

.promotion-media-content {
    padding: 10px 0 40px;
    overflow: hidden;
}

.promotion-media-section {
    display: inline-flex;
    flex-wrap: nowrap;
    mask-image: linear-gradient(to right,
            transparent 0,
            black 30px,
            black calc(100% - 30px),
            transparent 100%);
}

@keyframes scroll-animation {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.media-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scroll-animation 10s linear infinite;
}

.media-list li {
    margin: 0 16px;
}

.flexable-flow-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flow-toggle-content {
    display: flex;
    padding: 10px;
    align-items: flex-start;
    margin: auto;
    gap: 10px;
    border-radius: 10px;
    background: var(--White, #FFF);
    box-shadow: 0 126px 35px 0 rgba(201, 201, 201, 0.00), 0 80px 32px 0 rgba(201, 201, 201, 0.01), 0 45px 27px 0 rgba(201, 201, 201, 0.05), 0 20px 20px 0 rgba(201, 201, 201, 0.09), 0 5px 11px 0 rgba(201, 201, 201, 0.10);
    width: fit-content;
}

.flow-toggle-content .toggle-item {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 5px;
    color: #71717A;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.07px;
    cursor: pointer;
}

.flow-toggle-content .toggle-item.active {
    background: #25A244;
    box-shadow: 0 42px 12px 0 rgba(38, 162, 67, 0.00), 0 27px 11px 0 rgba(38, 162, 67, 0.01), 0 15px 9px 0 rgba(38, 162, 67, 0.05), 0 7px 7px 0 rgba(38, 162, 67, 0.09), 0 2px 4px 0 rgba(38, 162, 67, 0.10);
    color: #ffffff;
}

.flow-content-section {
    display: flex;
    gap: 10px;
}

.flow-content-section figure {
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    margin: 0;
    width: 365px;
    height: 380px;
}


.flow-content-section figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.flow-content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.flow-content-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    background: #FFF;
}

.flow-content-list li figure {
    margin: 0;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #E6FAEB;
}

.flow-content-list figure img {
    min-width: 25px;
    height: 25px;
}

.flow-content-list figure svg {
    min-width: 25px;
    height: 25px;
    color: #208B3A;
}

.flow-content-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flow-content-text h3 {
    color: #18181B;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}

.flow-content-text p {
    color: #71717A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.talent-flow {
    display: none;
}

.request-callback {
    gap: 5px;
    width: fit-content;
    margin: auto;
}

.request-callback svg path {
    fill: #fff;
}

@media screen and (max-width: 900px) {
    .flow-toggle-content {
        padding: 5px;
    }

    .flow-toggle-content .toggle-item {
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0.06px;
    }

    .flow-content-section {
        flex-direction: column;
        gap: 10px;
    }

    .flow-content-list li {
        gap: 10px;
        padding: 15px;
    }

    .flow-content-list li figure {
        width: 40px;
        height: 40px;
    }

    .flow-content-list figure img {
        min-width: 20px;
        height: 20px;
    }

    .flow-content-list figure svg {
        min-width: 20px;
        height: 20px;
    }

    .flow-content-text h3 {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.032px;
    }

    .flow-content-text p {
        font-size: 12px;
        line-height: 20px;
        line-height: 15px;
        letter-spacing: 0.06px;
    }

    .flexable-flow-section {
        gap: 20px;
    }

    .flow-content-section figure {
        width: 100%;
        height: auto;
    }
}