.video-section{
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.video-bg{
    position: absolute;
    inset: 0;
background: linear-gradient(
    135deg,
    #d7efff 0%,
    #b8e3ff 35%,
    #8fd2f7 100%
);     background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .9;
    z-index: -1;
}

.video-section .section-title h2{
    font-size: 45px;
    font-weight: 800;
    color: #006FA3;
    line-height: 1.2;
    margin-bottom: 10px;
}

.video-section .section-title span{
     display: block;
    width: 150px;
    height: 5px;
    background: #0093DA;
    border-radius: 50px;
    margin: 18px auto 25px;
}


.section-tag{
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #0093DA;
    margin-bottom: 8px;
}


.video-card{
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    transition: .45s;
    margin-bottom: 30px;
}

.video-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

.video-image{
    position: relative;
    overflow: hidden;
}

.video-image img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .6s;
}

.video-card:hover img{
    transform: scale(1.08);
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    transition:.3s;
    background: transparent;
}

.play-btn svg{
    width:60px;
    height:auto;
    filter:drop-shadow(0 10px 25px rgba(0,0,0,.25));
}

.video-card:hover .play-btn{
    transform:translate(-50%,-50%) scale(1.08);
}

.video-card:hover .play-btn i{
    color:#e60000;
}
.video-content{
    padding: 30px;
}

.video-content span{
    color: #0093DA;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-content h3{
    margin-top: 15px;
    font-size: 24px;
    line-height: 1.6;
    color: #006FA3;
    font-weight: 600;
}

.video-content p{
    margin-top: 18px;
    color: #444;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 400;
}

.videoSlider{
    width:100%;
    overflow:hidden;
    padding:40px 5px 55px;
    justify-content: space-between;
    cursor: grab;
}

.videoSlider .swiper-wrapper{
    display:flex;
    align-items:center;
}

.videoSlider:active {
    cursor: grabbing;
}

.videoSlider .swiper-slide{
    display:flex;
    justify-content:center;
    height: auto;
    transition:transform .45s ease;
}

.videoSlider .swiper-slide-active .video-card{
    transform:scale(1.18);
    opacity:1;
    z-index:10;
}

.videoSlider .video-card{
    transform:scale(.90);
    opacity:.65;
    transition:all .45s ease;
}

.videoSlider .swiper-slide-prev .video-card,
.videoSlider .swiper-slide-next .video-card{
    transform:scale(.88);
    opacity: .85;
}

.video-grid{
    display:block;
}

.swiper-button-next,
.swiper-button-prev{
    position:absolute;
    bottom:15px;
    top:auto;
    width: 35px;
    height: 35px;
    border-radius:50%;
    background:white;
    border:1px solid #ddd;
    color:#006FA3;
    margin-bottom: 30px;

}

.videoSlider .swiper-slide-active img{
    height:280px;
}

.swiper-button-prev{
    left:50%;
    transform:translateX(-45px);   
}

.swiper-button-next{
    left:50%;
    transform:translateX(5px);  
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:12px;
    font-weight:bold;
}

.videoSlider .video-card{
    transition:
    transform .5s ease,
    opacity .5s ease,
    box-shadow .5s ease;
}

.video-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.view-all-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content: center;
    margin-top: 10;
    margin-bottom: 20;
    padding:12px 25px;
    color:#006FA3;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    border-radius:30px;
    overflow:hidden;
    transition:.4s ease;
    background:white;
    left: 90%;
}

.view-all-btn::before{
    content:"";
    position:absolute;
    right:-100%;
    inset:0;
    border-radius:40px;
    padding:2px;
    background:
        repeating-linear-gradient(
            90deg,
            #0093DA 0 10px,
            transparent 10px 18px
        );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
}

.view-all-btn span,
.view-all-btn{
    position:relative;
}

.view-all-btn span{
    z-index:2;
}

.view-all-btn{
    isolation:isolate;
}

.view-all-btn:hover::before{
    right:0;
    opacity: 1;
    animation: movingDash .9s linear infinite;
}

.view-all-btn span{
  transition:.3s ease;
}

.view-all-btn:hover span{
    transform:translateX(6px);
}

@keyframes movingDash{
    from{
        background-position: 0 0;
    }
    to{
        background-position: 28px 0;
    }
}

@media (max-width:480px){

    .video-section{
        padding:60px 0;
    }

    .video-section .container{
        padding:0 16px;
    }

    .video-section .section-title h2{
        font-size:30px;
        line-height:1.3;
    }

    .video-section .section-title span{
        width:90px;
        margin:15px auto 20px;
    }

    .section-tag{
        font-size:15px;
    }

    .view-all-btn{
        position:static;
        display:flex;
        justify-content:center;
        align-items:center;
        width:fit-content;
        margin:20px auto 35px;
        left:auto;
        padding:12px 24px;
        font-size:15px;
    }

    .videoSlider{
        padding:15px 0 70px;
        overflow:hidden;
    }

    .videoSlider .swiper-slide{
        width:100% !important;
        display:flex;
        justify-content:center;
    }

    .videoSlider .video-card,
    .videoSlider .swiper-slide-active .video-card,
    .videoSlider .swiper-slide-prev .video-card,
    .videoSlider .swiper-slide-next .video-card{
        width:100%;
        transform:none;
        opacity:1;
        box-shadow:0 12px 30px rgba(0,0,0,.10);
    }

    .video-card{
        border-radius:18px;
    }

    .video-image img{
        height:210px;
        width:100%;
        object-fit:cover;
    }

    .play-btn{
    width:auto;
    height:auto;

        font-size:24px;
    }

    .video-content{
        padding:18px;
    }

    .video-content span{
        font-size:13px;
    }

    .video-content h3{
        font-size:19px;
        line-height:1.4;
        margin-top:10px;
    }

    .video-content p{
        font-size:15px;
        line-height:1.7;
        margin-top:12px;
    }

    .swiper-button-prev,
    .swiper-button-next{
        width:40px;
        height:40px;
        bottom:10px;
    }

    .swiper-button-prev{
        left:calc(50% - 20px);
    }

    .swiper-button-next{
        right:calc(50% - 20px);
    }

    .swiper-button-prev::after,
    .swiper-button-next::after{
        font-size:16px;
    }

    .video-button{
        margin-top:40px;
    }

    .video-button a{
        width:100%;
        display:block;
        text-align:center;
    }
}