.testimonials-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 48.7% 48.7%;
}
.testimonials-box-content {
    z-index: 1;
    width: 85.1%;
    position: relative;
    border-radius: 10px;
    margin: -126px auto 0;
    padding: 47px 50px 39px;
    color: var(--white-color);
    background: linear-gradient(to top, rgba(250, 100, 55, 1) 0%, rgba(231, 1, 8, 1) 100%);
}
.testimonials-box-content p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 22px;
}
.testimonials-box-content span{
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}
.testimonials-box-item figure{
    overflow: hidden;
    border-radius: 10px;
}
.testimonials-box-item figure img{
    width: 100%;
    transition: all 0.5s ease-in-out;
}
.testimonials-box-item:hover figure img{
    transform: scale(1.2);
}
.builder-img{
    position: relative;
}
.builder-img::after{
    left: 0;
    bottom: 0;
    content: "";
    width: 336px;
    height: 607px;
    position: absolute;
    background: url(../images/body-builder-img1.png) no-repeat;
}
.testimonials .container{
    z-index: 1;
    position: relative;
}
/* ************ responsive *************** */
@media only screen and (max-width: 1440px) {
    .builder-img::after {
        width: 106px;
        height: 195px;
        background-size: contain;
    }
}
@media only screen and (max-width: 1199px) {
    .testimonials-box {
        gap: 24px;
    }
    .testimonials-box-content {
        padding: 37px 41px 29px;
    }
    .testimonials-box-content p {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .testimonials-box-content span {
        font-size: 22px;
        line-height: 22px;
    }    
    
}
@media only screen and (max-width: 991px) {
    .testimonials-box {
        gap: 18px;
    }
    .testimonials-box-content {
        width: 95.1%;
        margin: -76px auto 0;
        padding: 26px 31px;
    }
    .testimonials-box-content p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 18px;
    }
    .testimonials-box-content span {
        font-size: 20px;
        line-height: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .testimonials-box {
        gap: 30px;
        justify-content: center;
        grid-template-columns: 70%;
    }
    .testimonials-box-content p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 18px;
    }
    .testimonials-box-content span {
        font-size: 18px;
        line-height: 18px;
    }
}
@media only screen and (max-width: 575px) {
    .testimonials-box {
        grid-template-columns: 100%;
        justify-content: center;
    }
    .testimonials-box-content p {
        margin-bottom: 8px;
    }
}