.video-section{
    padding:80px 0;
    background:#fff;
}

.video-card{

    display:flex;
    align-items:center;

    flex-direction:row;

    border-radius:60px 0px 60px 0px;

    overflow:hidden;

    /* background:#fdf1ea; */

    box-shadow:0 8px 25px rgba(0,0,0,0.08);

    transition:0.5s ease;

    height:100%;
    
}

.video-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* VIDEO / IMAGE */

.video-card iframe{

    width:45%;
    height:220px;

    border-radius:50px 0px 50px 0px;

    padding:15px;
}

/* CONTENT */

.video-content{

    width:55%;

    padding:20px 25px;

    /* background:transparent !important; */
}

.video-content h3{

    font-size:26px;

    color:#1d1d1d;

    margin-bottom:12px;

    font-weight:700;
}

.video-content p{

    font-size:15px;

    line-height:28px;

    color:#666;
}
/* GRID */
.row.g-5{
    row-gap:35px !important;
}

/* RESPONSIVE */

@media(max-width:992px){

    .video-card{
        flex-direction:column;
    }

    .video-card iframe{
        width:100%;
        height:250px;
    }

    .video-content{
        width:100%;
    }
}

.video-content h3,
.video-content p{
    color:#fff;
}

/* CARD BACKGROUND COLORS */

.col-lg-6:nth-child(1) .video-card{
    background:#fcaf26;
}

.col-lg-6:nth-child(2) .video-card{
    background:#152553;
}

.col-lg-6:nth-child(3) .video-card{
    background:#E15517;
}

.col-lg-6:nth-child(4) .video-card{
    background:#00BEAE;
}

.col-lg-6:nth-child(5) .video-card{
    background:#fcaf26;
}

.col-lg-6:nth-child(6) .video-card{
    background:#E15517;
}