/*==========================================================================
* Testimonial One CSS
==========================================================================*/
.flexitype_testimonial_one {
    &-item {
        background: #f8f8f8;
        padding: 50px;
        padding-bottom: 45px;
        transition: 0.4s;
        position: relative;
        &-icon {
            position: absolute;
            right: 50px;
            bottom: 45px;
            color: #24242412;
            font-size: 50px;
            svg {
                width: 50px;
                path {
                    fill: #24242412;
                }
            }
        }
        &-client {
            display: flex;
            align-items: center;
            gap: 25px;
            &-image {
                img {
                    width: 60px;
                    height: 60px;
                    max-width: 60px;
                    object-fit: cover;
                    border-radius: 50%;
                }
            }
            &-title { 
                h6,
                span {
                    transition: 0.4s;
                }
            }
        }
        p {
            margin-top: 30px;
            font-size: 19px;
            line-height: 34px;
            transition: 0.4s;
        }
        &-reviews {
            margin-top: 30px;
            i {
                color: #ffbf36;
                transition: 0.4s;
            }
            svg {
                max-width: 16px;
                path {
                    fill: #ffbf36;
                }
            }
        }
    }
}
/*==========================================================================
* Testimonial Two CSS
==========================================================================*/
.flexitype_testimonial_two {
    &-item {
        background: #f8f8f8;
        padding: 50px 40px;
        transition: 0.4s;
        border-radius: 8px;
        &-content {
            .rating {
                display: flex;
                align-items: center;
                i {
                    color: #ffbf36;
                }
                svg {
                    max-width: 16px;
                    path {
                        fill: #ffbf36;
                    }
                }
            }
            p {
                margin-top: 15px;
                margin-bottom: 40px;
                transition: 0.4s;
            }
            &-bottom {
                display: flex;
                align-items: center;
                justify-content: space-between;
                &-author {
                    display: flex;
                    align-items: center;
                    gap: 25px;
                    img {
                        width: 60px;
                        height: 60px;
                        min-width: 60px;
                        border-radius: 50%;
                        object-fit: cover;
                    }
                    &-info {
                        span,
                        h6 {
                            transition: 0.4s;
                        }
                    }
                }
                i {
                    font-size: 64px;
                    display: block;
                    color: #24242412;
                }
                svg {
                    width: 60px;
                    path {
                        fill: #24242412;
                    }
                }
            }
        }
        .flaticon-stars {
            display: inline-block;
            height: 25px;
            &::before {
                line-height: 25px;
                display: inline-block;
            }
        }
    }
}