/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&display=swap');

/*Basic Settings*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body{
    height: 100vh;
}

.wrapper{
    height: 100%;
    width: 100%;
}



/**********Testimonials***************/

.Testimonials p{
    margin-bottom: 0 !important;
}

/*Banner Section*/

.Testimonials section.banner_section {
    height: 600px;
    width: 100%;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.Testimonials .banner_section .title{
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-left: 4em;
}
.Testimonials .banner_section .title > div{
    width: 100%;
    max-width: 700px;
}




/*AllTestimonials*/
.Testimonials .AllTestimonials{
    text-align: center;
    padding: 50px 0 0 0;
}
.Testimonials .AllTestimonials .buttons_group{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto 50px auto;
    max-width: 1000px;
}
.Testimonials .AllTestimonials .buttons_group ._button{
    display: flex;
    justify-content: center;
    align-items: center;
    border:0;
    border-radius: 20px !important;
    font-size: 20px;
    font-weight: 400;
    width: 300px;
    height: 60px;
    border-radius: 8px;
    color: #ffffff;
    background-color: #172C54;
    border: 1px solid #172C54;
    transition: all 0.2s ease;
}
._button.active{
    background-color: #00ACFF !important;
    border: 1px solid #00ACFF !important;
    color: #ffffff !important;
}
._button:hover{
    transform: scale(1.1);
}



/*Client Testimonials*/

.Testimonials .AllTestimonials .clientTestimonials{
    text-align: left;
    color: #172C54;
    font-size: 30px;
    font-weight: 600;
}
.Testimonials .AllTestimonials .clientTestimonials .grey_bg{
    background-color: #EBEBEB;
}
.Testimonials .AllTestimonials .clientTestimonials .content_row{
    padding: 40px 0;
}

.Testimonials .AllTestimonials .clientTestimonials .content_row .img_column{
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Testimonials .AllTestimonials .clientTestimonials .content_row .img_column > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.Testimonials .AllTestimonials .clientTestimonials .content_row .img_column .client_img{
    width: 100px;
    height: 100px;
    border-radius: 50%;

}
.Testimonials .AllTestimonials .clientTestimonials .content_row .img_column .client_logo{
    width: 120px;
}
.Testimonials .AllTestimonials .clientTestimonials .content_row .text_column{
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .name{
    color: #00ACFF;
    font-size: 26px;
    margin-bottom: 15px;
}
.Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .designation{
    color: #172C54;
    font-size: 16px;
    margin-bottom: 30px;
}
.Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .quote{
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

/*Video Testimonials*/


.Testimonials .AllTestimonials .videoTestimonials{
    padding: 50px 0 50px 0;
}
.Testimonials .AllTestimonials .videoTestimonials .heading{
    font-size: 24px;
    font-weight: 600;
}
.Testimonials .AllTestimonials .videoTestimonials .content_row{
    padding: 40px 20px;
}
.Testimonials .AllTestimonials .videoTestimonials .content_row:nth-of-type(even){
    flex-direction: row-reverse;
}
.Testimonials .AllTestimonials .videoTestimonials .content_row .video_column{
    padding: 0;
}
.Testimonials .AllTestimonials .videoTestimonials .content_row .video_column > video{
    border: 1px solid #efefef;
    height: unset !important;
}

.Testimonials .AllTestimonials .videoTestimonials .content_row .text_column{
    display: flex;
    align-items: center;
    justify-content: center;
}
.Testimonials .AllTestimonials .videoTestimonials .content_row .text_column .company_logo{
    width: 200px;
}
.Testimonials .AllTestimonials .videoTestimonials .content_row .text_column .name{
    font-size: 30px;
    color: #00ACFF;
    font-weight: 600;
}
.Testimonials .AllTestimonials .videoTestimonials .content_row .text_column .designation{
    font-size: 16px;
    color: #172C54;
    font-weight: 600;
}










/*Media Queries*/

@media screen and (max-width:576px){
    
    .Testimonials .banner_section .title{
        font-size: 16px;
    }
    .Testimonials .AllTestimonials .buttons_group{
        align-items: center;
        flex-direction: column;
    }
    .Testimonials .AllTestimonials .buttons_group ._button{
        width: 250px;
        font-size: 16px;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column{
        text-align: center;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .name{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .designation{
        font-size: 14px;
        margin-bottom: 30px;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .quote{
        font-size: 14px;
    }



    .Testimonials .AllTestimonials .videoTestimonials .heading{
        font-size: 20px;
    }
    .Testimonials .AllTestimonials .videoTestimonials .content_row .text_column .name{
        font-size: 20px;
    }
    .Testimonials .AllTestimonials .videoTestimonials .content_row .text_column .designation{
        font-size: 14px;
    }
}




@media screen and (min-width:576px) and (max-width:767px){
    
    .Testimonials .banner_section .title{
        font-size: 24px;
    }
    .Testimonials .banner_section .title > div {
        max-width: 450px;
    }
    .Testimonials .AllTestimonials .buttons_group ._button{
        width: 250px;
        font-size: 16px;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column{
        text-align: center;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .name{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .designation{
        font-size: 14px;
        margin-bottom: 30px;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .quote{
        font-size: 14px;
    }



    .Testimonials .AllTestimonials .videoTestimonials .heading{
        font-size: 20px;
    }
    .Testimonials .AllTestimonials .videoTestimonials .content_row .text_column .name{
        font-size: 20px;
    }
    .Testimonials .AllTestimonials .videoTestimonials .content_row .text_column .designation{
        font-size: 16px;
    }
}
@media screen and (min-width:768px) and (max-width:991px){
    .Testimonials .banner_section .title > div {
        max-width: 600px;
    }
    .Testimonials .AllTestimonials .videoTestimonials .content_row{
        padding: 20px 20px;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .name{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .designation{
        font-size: 14px;
        margin-bottom: 30px;
    }
    .Testimonials .AllTestimonials .clientTestimonials .content_row .text_column .quote{
        font-size: 14px;
    }

    .Testimonials .AllTestimonials .videoTestimonials .content_row .text_column .name{
        font-size: 24px;
    }
}