Current File : /home/mdkeenpw/public_html/wp-content/themes/logistik/assets/sass/update_1/_testimonial.scss
.testi-item {
    position: relative;
    background-color: $smoke-color;
    border-left: 4px solid $theme-color;
    padding: 40px;
    transition: all 0.4s ease-in-out;
    z-index: 9;
    margin-left: 100px;
    @include lg{
        margin-left: 50px; 
    }
    @include vxs {
        margin-left: 30px;
    }

    @media(max-width: 1499px) {
        padding: 30px;
    }

    @include lg {
        padding: 40px;
    }

    @include md {
        padding: 30px;
    }

    @include sm {
        padding: 20px;
    }

    &_shape {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }

    &_content {
        margin-left: 100px;
        @include lg{
            margin-left: 50px;  
        }
        @include vxs {
            margin-left: 30px;
        }
        .star-icon{
            margin-bottom: 9px;  
        }
    }

    &_wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;

        @media(max-width: 860px) {
            display: block;
        }

        .testi-ratting {
            font-weight: 700;
            font-size: 18px;
            line-height: 28px;
            color: $title-color;
            margin-bottom: 0;
        }

        .star-icon {
            font-size: 12px;

            a {
                font-size: 12px;
                opacity: 1;
            }
        }


    }

    &_profile {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        transition: all 0.4s ease-in-out;
    }

    &_img {
        position: absolute;
        min-width: 190px;
        transition: all 0.4s ease-in-out;
        border: 5px solid $theme-color-2;
        border-radius: 50%;
        z-index: 2;
        left: -100px;
        @include lg{
            min-width: 100px;
            left: -50px;
        }
        @include vxs {
            left: -30px;
            min-width: 50px; 
        }

        @media(max-width: 860px) {
            text-align: center;
            margin-bottom: 20px;
        }

        img {
            width: 190px;
            height: 190px;
            border-radius: 50%;
            transition: all 0.4s ease-in-out;
            transform: scale(0.9);
            @include lg{
                width: 100px;  
                height: 100px; 
            }
            @include vxs {
                width: 50px;  
                height: 50px;   
            }
        }
    }

    &_icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 18px;
        color: $white-color;
        background-color: $theme-color;
        border-radius: 50%;
        text-align: center;
        position: absolute;
        top: 16%;
        right: 0;
        transform: translateY(-50%);

        @include sm {
            width: 20px;
            height: 20px;
            line-height: 20px;
            font-size: 14px;
        }
    }

    &_name {
        font-family: $title-font;
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        color: $title-color;
        margin-bottom: 5px;
        transition: all 0.4s ease-in-out;

        @include xxl {
            font-size: 16px;
            line-height: 20px;
        }

        @include sm {
            font-size: 14px;
            line-height: 18px;
        }
    }

    &_desig {
        font-family: $title-font;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        color: $title-color;
        margin-bottom: 0;
        transition: all 0.4s ease-in-out;
    }

    &_text {
        font-weight: 400;
        font-size: 18px;
        line-height: 32px;
        transition: all 0.4s ease-in-out;
        margin-top: -8px;
        margin-bottom: 20px;

        @media(max-width: 1399px) {
            font-size: 16px;
            line-height: 30px;
        }
    }
}