.our-commitment-block-container.block-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
    width: 100%;
}

.our-commitment-block-container.block-container {

    .text-container {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
        max-width: 100%;
    }

    h2.block-title {
        color: var(--Blue, #00B5D3);
        font-family: Demo;
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: 34px;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .block-subtitle {
        color: var(--Dark-Blue, #002846);
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .commitment-container {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
    }

    .commitment-container-scroll {
        justify-content: flex-start;
        overflow-y: hidden;
        overflow-x: scroll;
        width: calc(100% + 32px);
        padding-left: 16px;
    }

    .commitment-container-scroll::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .commitment-container-scroll {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .single-commitment-container {
        width: 120px;
        height: 112px;
        flex-shrink: 0;
    }

    .single-commitment-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

}