.section__products {
    display: table;
    width: 100%;
}

    .section__products h1 {
        opacity: 0;
        display: none;
    }

    .section__products h2 {
        font-family: 'poppins';
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 20px;
    }

    @media screen and (max-width: 767px) {
        .section__products h2 {
            font-size: 18px;
        }
    }
    
    .product_boxes {
        display: table;
        width: 100%;
        margin-bottom: 40px;
    }

        .product_box {
            display: table;
            width: calc(25% - 15px);
            margin-right: 20px;
            float: left;
            margin-bottom: 40px;
        }

            .product_box:nth-child(4n) {
                margin-right: 0px;
            }

        @media screen and (max-width: 991px) {
            .product_box {
                display: table;
                width: calc(33% - 12px);
                margin-right: 20px;
                float: left;
                margin-bottom: 40px;
            }

                .product_box:nth-child(4n) {
                    margin-right: 20px;
                }

                .product_box:nth-child(3n) {
                    margin-right: 0px;
                }
        }

        @media screen and (max-width: 767px) {
            .product_box {
                display: table;
                width: calc(50% - 10px);
                margin-right: 20px;
                float: left;
                margin-bottom: 40px;
            }

                .product_box:nth-child(3n) {
                    margin-right: 20px;
                }

                .product_box:nth-child(2n) {
                    margin-right: 0px;
                }
        }

        @media screen and (max-width: 370px) {
            .product_box {
                width: 100%;
            }
        }

            .product_box .product_box__thumbnail {
                width: 270px;
                max-width: 100%;
                height: 223px;
                object-fit: contain;
                margin-bottom: 0px;
                background: url('/images/products/background.png') no-repeat;
                background-size: cover;
            }

            @media screen and (max-width: 767px) {
                .product_box .product_box__thumbnail {
                    width: 100%;
                    max-width: 100%;
                    height: 180px;
                    object-fit: contain;
                    margin-bottom: 0px;
                }
            }

            @media screen and (max-width: 575px) {
                .product_box .product_box__thumbnail {
                    height: 133px;
                }
            }

            @media screen and (max-width: 370px) {
                .product_box .product_box__thumbnail {
                    height: 180px;
                }
            }

            .product_box small {
                display: table;
                width: 100%;
                font-family: 'poppins';
                font-size: 14px;
                line-height: 18px;
                font-weight: 100;
                margin-bottom: 10px;
            }

            .product_box h3 {
                display: table;
                width: 100%;
                font-family: 'poppins';
                font-size: 16px;
                line-height: 20px;
                font-weight: 600;
                margin-bottom: 10px;
            }

            .product_box span {
                display: table;
                width: 100%;
                font-family: 'poppins';
                font-size: 14px;
                line-height: 18px;
                font-weight: 100;
                margin-bottom: 20px;
            }

            .product_box a.btn-primary {
                font-family: 'poppins';
                font-size: 14px;
                font-weight: 500;
                background: var(--black);
                color: var(--white);
                padding: 15px 0px;
                text-align: center;
                height: 48px;
                text-decoration: none;
                display: table;
                width: 100%;
            }

                .product_box a.btn-primary:hover {
                    background: var(--primary-red);
                }