/home/kueuepay/public_html/public/frontend/sass/pages/_testimonial.scss
/*-------------------------------------------------
    [ ## Testimonial ]
*/
.testimonial-section{
    overflow: hidden;
}
@media (min-width: 1320px){
    .testimonial-section{
        .container{
            padding-right: calc((100vw - 1176px) / 2);
            max-width: calc(1320px + ((100vw - 1320px) / 2));
            left: calc((100vw - 1320px) / 4);
            position: relative;
            overflow: hidden;
        }
    }
}
.testimonial-slider{
    .swiper-android .swiper-slide, .swiper-wrapper {
        transform: translateZ(0);
    }
}
.testimonial-wrapper{
    padding: 40px;
    background-color: $bg--gray;
    border-radius: 1.25rem;
    display: flex;
    flex-wrap: wrap;
}
.testimonial-thumb{
    position: relative;
    width: 168px;
    img{
        border-radius: 1.25rem;
    }
    .testimonial-quote{
        position: absolute;
        top: -20px;
        right: -20px;
        width: 60px;
        height: 60px;
        line-height: 50px;
        background-color: $base--color;
        border: 5px solid $bg--gray;
        border-radius: 50%;
        text-align: center;
        .fill-white{
            fill: $white;
        }
    }
}
.testimonial-content{
    width: calc(100% - 168px);
    padding-left: 30px;
    @media only screen and (max-width: 991px) {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .testimonial-ratings{
        margin-bottom: 15px;
        i{
            color: #feb240;
        }
    }
    p{
        font-size: 18px;
    }
    .testimonial-user-content{
        .title{
            span{
                color: $base--color;
            }
        }
    }
}
User Registration
top