


/*===========================
  9.VIDEO TESTIMONIAL css 
===========================*/


.video-testimonial {
    @media #{$md}{
        padding-top: 50px;
        padding-bottom: 100px;
    }
    @media #{$xs}{
        padding-top: 30px;
        padding-bottom: 80px;
    }
}



.video-area{
    position: relative;
    z-index: 5;
    
    & a{
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 25px;
        color: $theme-color;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.65);
        border-radius: 50%;
        position: relative;
        z-index: 5;
        
        &::before{
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.50);
            @include animation (video-zoom 3s infinite);
            z-index: -1;
        }
    }
}

@keyframes video-zoom{
    0%{
        @include transform(scale(1));
        opacity: 1;
    }
    100%{
        @include transform(scale(1.5));
        opacity: 0;
    }
}
@-webkit-keyframes video-zoom{
    0%{
        @include transform(scale(1));
        opacity: 1;
    }
    100%{
        @include transform(scale(1.5));
        opacity: 0;
    }
}

@-o-keyframes video-zoom{
    0%{
        @include transform(scale(1));
        opacity: 1;
    }
    100%{
        @include transform(scale(1.5));
        opacity: 0;
    }
}

@-moz-keyframes video-zoom{
    0%{
        @include transform(scale(1));
        opacity: 1;
    }
    100%{
        @include transform(scale(1.5));
        opacity: 0;
    }
}

@-ms-keyframes video-zoom{
    0%{
        @include transform(scale(1));
        opacity: 1;
    }
    100%{
        @include transform(scale(1.5));
        opacity: 0;
    }
}



.testimonial-area{
    position: relative;
    z-index: 5;
    margin-right: 20px;
}

.testimonial-active{
    background-color: $theme-color;
    padding: 25px 30px;
    
    
    & .slick-dots{
        width: 40px;
        padding: 5px 0 16px;
        background-color: $white;
        border-radius: 50px;
        border: 2px solid $theme-color;
        text-align: center;
        position: absolute;
        top: 50%;
        right: -20px;
        @include transform(translateY(-50%));
        
        & li{
            & button{
                font-size: 0;
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background-color: #a1bdff;
                padding: 0;
                border: 0;
                cursor: pointer;
            }
            
            &.slick-active{
                & button{
                    background-color: $theme-color;
                }
            }
        }
    }
}

.single-testimonial{
    
    & .text{
        font-size: 24px;
        font-style: italic;
        color: $white;
        line-height: 36px;
        
        @media #{$xs}{
            font-size: 18px;
            line-height: 30px;
        }
    }
    & .testimonial-name{
        color: $white;
        font-weight: 600;
        font-size: 16px;
        padding-bottom: 5px;
        margin-top: 25px;
    }
    & span{
        color: $white;
    }
}



.testimonial-two-area{
    @media #{$md}{
        padding-top: 95px;
        padding-bottom: 100px;
    }
    @media #{$xs}{
        padding-top: 75px;
        padding-bottom: 80px;
    }
}



.testimonial-two-active{
    & .slick-dots{
        width: 40px;
        padding: 5px 0 16px;
        background-color: $white;
        border-radius: 50px;
        border: 2px solid $theme-color;
        text-align: center;
        position: absolute;
        top: 50%;
        right: -20px;
        @include transform(translateY(-50%));
        
        @media #{$xs}{
            @include transform(translateX(-50%));
            left: 50%;
            top: auto;
            right: auto;
            width: auto;
            padding: 0 13px 10px;
            bottom: -20px;
        }
        
        & li{
            
            @media #{$xs}{
                display: inline-block;
                margin: 0 3px;
            }
            
            & button{
                font-size: 0;
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background-color: #a1bdff;
                padding: 0;
                border: 0;
                cursor: pointer;
                
            }
            
            &.slick-active{
                & button{
                    background-color: $theme-color;
                }
            }
        }
    }
}


.single-testimonial-two{
    border: 5px solid rgba(72, 127, 255, 0.1);
    padding: 40px;
    position: relative;
    margin-right: 210px;
    
    @media #{$lg}{
        margin-right: 110px;
    }
    @media #{$md}{
        margin-right: 0;
    }
    @media #{$xs}{
        margin-right: 0;
        padding: 20px;
    }
    
    & .testimonial-content{
        max-width: 520px;
        
        @media #{$lg}{
            max-width: 465px;
        }
        @media #{$md}{
            max-width: 420px;
        }
        
        & i{
            font-size: 60px;
            line-height: 50px;
            color: $theme-color;
            @include transform(rotate(180deg));
            margin-bottom: 10px;
        }
        & .text{
            font-size: 20px;
            font-style: italic;
            line-height: 40px;
            margin-bottom: 15px;
            
            @media #{$lg}{
                font-size: 18px;
                line-height: 36px;
            }
            @media #{$md}{
                font-size: 18px;
                line-height: 36px;
            }
            @media #{$xs}{
                font-size: 16px;
                line-height: 27px;
            }
            @media #{$sm}{
                font-size: 18px;
                line-height: 36px;
            }
        }
        & .testimonial-name{
            font-size: 16px;
            font-weight: 600;
            color: $heading-color;
            padding-bottom: 5px;
        }
        
        & span{
            color: $body-color;
            font-size: 15px;
        }
    }
    
    & .testimonial-image{
        position: absolute;
        bottom: -5px;
        right: -80px;
        max-width: 400px;
        
        @media #{$lg}{
            max-width: 380px;
        }
        @media #{$md}{
            right: 0;
            max-width: 230px;
        }
        @media #{$xs}{
            position: relative;
            right: 0;
            margin-top: 30px;
        }
        @media #{$sm}{
            max-width: 100%;
        }
        
        & img{
            width: 100%;
        }
    }
}






















