.products-block-container.block-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 24px;
    width: 100%;
    direction: rtl;
}

.products-block-container.block-container {

    .text-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 8px;
        max-width: 1030px;
    }

    h2.block-title {
        color: var(--Blue, #00B5D3);
        text-align: center;
        font-family: Demo;
        font-size: 48px;
        font-style: normal;
        font-weight: 500;
        line-height: 54px;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 848px;
    }
    .block-subtitle {
        color: var(--Dark-Blue, #002846);
        font-family: Demo;
        font-size: 26px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .products-container {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 24px;
        width: 100%;
    }
    .single-product-container {
        max-width: min(calc((100% - 72px) / 4), 303px);
    }
    .single-product-container a{
        width: 303px;
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        row-gap: 16px;
    }
    .single-product-container a[href="javascript:void(0)"] {
        cursor: default;
    }
    .product-image-container {
        width: 100%;
        height: 278px;
        padding: 5.61px 45px 13.824px 45px;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        border-radius: 10px;
        background: var(--Grey-Background, #F3F3F3)
    }
    .product-image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .product-name {
        color: var(--Dark-Blue, #002846);
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        text-align: right;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }

    /*animation*/
    .product-image-container {
        transition: transform 400ms ease, box-shadow 400ms ease;
        transform: translateY(0);
        box-shadow: none;
    }

    .product-image-container:hover {
        transform: translateY(-15px);
        box-shadow: rgba(103, 110, 144, 0.2) 0px 8px 26px 0px;
    }
}