/* :root {
    --font-myriad: "myriad-pro", sans-serif;
    --text-body: #485560;
    --primary-blue: #243746;
    --beige: #DECAA4;
    --beige-light: #F7F3EB;
    --green: #D3E6CB;
    --green-light: #F0F5EF;
    --blue: #CADBEB;
    --blue-light: rgba(202, 219, 235, 0.35);
    --border-color: rgba(222, 202, 164, 0.75);
    --border-radius: 12px;
    --grey: #DDE2E2;
    --grey-rgb: 221, 226, 226;
    --bg-page: #F7F8F8;
    --white: #fff;
    --error-text: #fb0000;
    --black: #000;
    --transition: all 400ms ease-in-out;
    --green-gradient: linear-gradient(180deg, #DDE8D9 0%, #FDFDFD 100%);
    --blue-gradient: linear-gradient(180deg, var(--blue-light) 0%, #FDFDFD 100%);
} */

/* Testimonial Video Slider */
.testimonial_video_slider{
    margin-bottom: 75px;
    overflow: hidden;
}
.testimonial_video_slider .section_header_wrap{
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.testimonial_video_slider .section_header_wrap h2{
    margin-bottom: 0;
    flex-grow: 1;
}
.testimonial_video_slider .section_header_wrap .testimonial_video_slider_arrows{
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.testimonial_video_carousel {
    margin-right: calc(50% - 50vw - -23px);
}

.testimonial_video_slider .testimonial_video_slider_arrows .slick-arrow:not(:last-child){
    margin-right: 15px;
}
.testimonial_video_slider .testimonial_video_slider_arrows .slick-arrow{
    width: 50px;
    height: 50px;
    border-radius: 3px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.testimonial_video_slider .testimonial_video_slider_arrows .slick-arrow:hover{
    background: var(--primary-blue);
}
.testimonial_video_slider .testimonial_video_slider_arrows .slick-arrow.prev-btn img,
.testimonial_video_slider .testimonial_video_slider_arrows .slick-arrow.prev-btn svg{
    transform: rotate(180deg);
}
.testimonial_video_slider .testimonial_video_slider_arrows .slick-arrow img,
.testimonial_video_slider .testimonial_video_slider_arrows .slick-arrow svg{
    width: 24px;
    height: 24px;
}
.testimonial_video_slider .testimonial_video_slider_arrows .slick-arrow svg path{
    transition: var(--transition);
}
.testimonial_video_slider .testimonial_video_slider_arrows .slick-arrow:hover svg path{
    fill: var(--white);
}
.testimonial_video_slider .testimonial_video_slider_arrows .slick-disabled{
    opacity: 0.5;
    pointer-events: none;
}

.testimonial_video_carousel .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}
.testimonial_video_carousel .slick-track {
    display: flex;
}
.testimonial_video_carousel .slick-slide {
    min-height: 591px;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.video_testimonial{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 35px;
}
.video_testimonial .media-box-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.video_testimonial .media-box-wrap .mute-btn{
    position: absolute;
    top: 35px;
    left: 35px;
    width: 50px;
    height: 50px;
    z-index: 2;
    border-radius: 3px;
    background-color: #FDFDFD;
    align-items: center;
    justify-content: center;
    display: flex;
}
.video_testimonial .media-box-wrap .mute-btn .puase_img{
    display: none;
}
.video_testimonial .media-box-wrap .mute-btn.active .puase_img{
    display: block;
}
.video_testimonial .media-box-wrap .mute-btn.active  .play_img{
    display: none;
}
.video_testimonial .media-box-wrap .mute-btn:hover{
    background-color: var(--blue);
}

.video_testimonial .media-box-wrap .mute-btn img{
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.video_testimonial .media-box-wrap video{
    object-position: bottom;
}
.video_testimonial .media-box-wrap::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(36, 55, 70, 0.00) 45.47%, #243746 100%);
}


.video_testimonial .video_testimonial_bottom {
    position: relative;
    z-index: 3;
    margin-top: auto;
    display: flex;
    align-items: center;
    transition: var(--transition);
}


.video_testimonial.hide_content .video_testimonial_bottom{
    opacity: 0;
    visibility: hidden;
}
.video_testimonial .video_testimonial_bottom *{
    color: var(--white);
}

.video_testimonial .video_testimonial_bottom .img_wrap {
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 25px;
    flex-shrink: 0;
}
.video_testimonial .video_testimonial_bottom .img_wrap img{
    height: 100%;
    object-fit: cover;
}
.video_testimonial .video_testimonial_bottom .content-text-right {
    flex-grow: 1;
}

.video_testimonial .video_testimonial_bottom .content-text-right h5 {
    margin-bottom: 5px;
    line-height: 0.75;
}

.video_testimonial .video_testimonial_bottom .content-text-right .position {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}



.quote_testimonial,
.video_testimonial {
    border-radius: var(--border-radius);
    overflow: hidden;
}
.quote_testimonial{
    background-color: var(--green);
    padding: 35px;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.quote_testimonial .quote_icon{
    width: 50px;
    height: 50px;
}
.quote_testimonial .quote_icon::before{
    background-image: url(../images/icons/bxs_quote-left.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    position: relative;
    top: 0;
    width: 50px;
    height: 50px;
}
.quote_testimonial .quote_text_content{
    margin: 25px 0;
}
.quote_testimonial .quote_text_content p{
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 145.455% */
}
.quote_testimonial .quote_content_btm .name{
    margin-bottom: 5px;
    line-height: 0.75;
}
.quote_testimonial .quote_content_btm .position{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 131.25% */
}



/* Testimonial Video Slider */