.elementor-widget-benefits {
    --accent-color: var(--e-global-color-accent, #364151);
    --title-color: var(--e-global-color-primary, #364151);
    --text-color: var(--e-global-color-text, #0F172A);

    width: 100%;

    .container-benefits {
        display: flex;
        gap: 16px;

        .card {
            flex: 1;
            flex-direction: column;
            display: flex;
            gap: 8px;

            &.green {
                .icon {
                    color: #61CE70;
                }
            }

            &.red {
                .icon {
                    color: #FA3030;
                }
            }

            .header {
                display: flex;
                align-items: center;
                gap: 8px;
                justify-content: center;

                .icon {
                    font-size: 16px;
                    display: flex;
                }

                .text {
                    color: var(--title-color);
                    font-size: 16px;
                    font-weight: 600;
                    line-height: 22px;
                    font-family: 'Poppins', serif;
                }
            }

            .container-items {
                display: flex;
                flex-direction: column;
                gap: 4px;

                .item {
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    .icon {
                        font-size: 12px;
                        display: flex;
                    }

                    .text {
                        color: var(--text-color);
                        font-size: 12px;
                        font-weight: 400;
                        line-height: 16px;
                        font-family: 'Poppins', serif;
                    }
                }
            }
        }
    }

    @media (max-width: 1024px) {

    }
}