// See Our Video section here 

.see-our-video-section {
    margin-top: 76px;
    .video-bg {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 100%;
        min-height: 730px;
        border-radius: 10px;
    }
}

.testimonial-carousel-five {
    .owl-nav {
        .owl-prev {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 4%;
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background: rgba(249, 249, 255, 0.2);
            font-size: 28px;
            color: #fff;
            border-radius: 6px;
            border: 1px solid #F9F9FF;
            transition: .5s all ease;
            &:hover {
                background: #fff;
                border-color: #fff;
                color: var(--main-color-one);
            }
        }
        .owl-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 4%;
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background: rgba(249, 249, 255, 0.2);
            font-size: 28px;
            color: #fff;
            border-radius: 6px;
            border: 1px solid #F9F9FF;
            transition: .5s all ease;
            &:hover {
                background: #fff;
                border-color: #fff;
                color: var(--main-color-one);
            }
        }
    }
    .owl-dots {
        display: flex;
        justify-content: space-around;
        .owl-dot {
            width: 12px;
            height: 12px;
            // color: #fff;
            border-radius: 50%;
            position: relative;
            &::after {
                content: '2005';
                position: absolute;
                top: -65px;
                left: 0;
                color: #fff;
            }
            &::before {
                content: '\e915';
                position: absolute;
                font-family: 'icomoon';
                font-weight: 900;
                left: 0;
                top: 0;
            }
        }
    }
}