
.testimonial-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 20px
            }

            .testimonial-item {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .testimonial-img img {
                width: 80px;
                height: 80px;
                object-fit: cover;
                border-radius: 50%;
            }

            .testimonial-content {
                border-radius: 16px;
                flex: 1;
            }

            @media (max-width: 1024px) {
                .testimonial-grid {
                    grid-template-columns: 1fr;
                }
            }
            @media (max-width: 768px) {
                .testimonial-grid {
                    grid-template-columns: 1fr;
                }
            }
            @media (max-width: 767px) {

                .testimonial-grid {
                    /* display: flex !important;
                    flex-wrap: nowrap !important;
                    overflow-x: auto !important; */
                    width: 100%;
                    gap: 20px;
                    padding: 0 20px;
                }

                .testimonial-item {
                    flex: 0 0 100% !important;
                    min-width: 100% !important;
                }

            }