.customer-reviews{
    position: relative;
    padding: 2.2rem 0;
    .shape{
        position: absolute;
        left: -40%;
        top: -100%;
        width: 70%;
    }
    .quote{
        position: absolute;
        right: -5%;
        bottom: -30%;
        width: 16%;
    }
    h2{
        margin: 2.5rem 0;
    }
    .slider{
        .owl-carousel-testimonial{
            .owl-stage-outer{
                width: 110%;
            }
            .owl-stage{
                .owl-item{
                    &:nth-child(even){
                        margin-top: 2rem;
                    }
                    .item{
                        height: 100%;
                    }
                }
            }
            .item{
                padding: 1.875rem;
                background-color: #FEF4ED;
                border-radius: 1rem;
                p{
                    font-weight: 400;
                    color: var(--black);
                }
                .name{
                    display: block;
                    margin-top: 1.4rem;
                    color: var(--orange-main);
                }
            }
        }
    }
}