.testimonial_post_container{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.testimonial_post_wrap{
    background: #fff;
    border:1px solid rgba(0, 92, 239, 0.10);
    border-radius: 4px;
    padding: 40px 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.testimonial_feature_image img {
    border-radius: 50%;
    width: 126px;
    height: 126px;
    object-fit: cover;
}
.testimonial_feature_image{
    position: relative;
    display: flex;
    justify-content: center;
}

.testimonial_content {
    margin-top: 20px !important;
    margin-bottom: 0px !important;
    font-size: 18px;
    font-weight: 400;
    color: rgba(14, 18, 25, 0.60);
    text-align: center;
    font-family: "Exo 2";
}
.testimonial_client_name{
    margin-top: 18px !important;
    margin-bottom: 0px !important;
    color: #4D5259;
    font-size: 30px;
    font-family: 'Exo 2';
    font-weight: 500;
    text-align: center;
}
.testimonial_client_position{
    color: #71757A;
    font-family: "Exo 2";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.testimonial_client_position span{
    font-weight: 600;
    color: #4E5259;
}

/* Medium devices (landscape tablets, 576px and up) */
@media only screen and (min-width: 576px) {
    .testimonial_post_container{
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .testimonial_post_container{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .testimonial_post_container{
        grid-template-columns: repeat(3, 1fr);
    }
}