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

/*body{*/
/*    background:#f8f9f5;*/
/*}*/

/*==============================
        Video Gallery
==============================*/

.video-section{
    padding:80px 10%;
    background:#ffffff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#699403;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.video-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.video-card:hover{
    transform:translateY(-8px);
}

.video-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    background:#699403;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:28px;
    transition:.3s;
}

.play-btn:hover{
    background:#1f5e24;
    transform:translate(-50%,-50%) scale(1.1);
}

.video-title{
    background:#fff;
    padding:18px;
    text-align:center;
}

.video-title h3{
    color:#2e7d32;
    font-size:20px;
}

@media(max-width:768px){

.section-title h2{
    font-size:34px;
}

.video-card img{
    height:220px;
}

}