/* ------------------------------------*/
.testi-sec4 {
    position: relative;
    z-index: 2;
    background-size: 1690px 100%;
    background-position: center right;
    overflow: hidden;
    @include hd {
        background-position: center center;
    }
}

.testi-block {
    &_content {
        display: flex;
        gap: 20px;
        background-color: $white-color;
        padding: 30px;
        filter: drop-shadow(0px 6px 15px rgba(170, 170, 170, 0.20));
        position: relative;
        &:after {
            content: '';
            height: 3px;
            width: 77%;
            background-color: $theme-color;
            position: absolute;
            bottom: -1px;
            right: -1px;
            clip-path: polygon(10px 0%, 100% 0, 100% 100%, 0% 100%);
            z-index: 2;
        }
        &:before {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 25px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 21px 25px 0 25px;
            border-color: $white-color transparent transparent transparent;
        }
    }
    &_profile {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
        margin-left: 20px;
    }
    &_quote {
        min-width: 44px;
    }
    &_text {
        margin: -0.5em 0;
    }
    &_desig {
        font-size: 14px;
        color: $theme-color;
        margin-bottom: -0.5em;
    }
    .box-title {
        margin-bottom: 5px;
    }
}