.video-bg {
    position: relative;
    overflow: hidden;
}

.video-bg .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    /* optional: background fill behind video */
    z-index: 0;
}

.video-bg .data {
    position: relative;
    z-index: 2;
    /* content above video */
    color: #fff;
}



.insights.insights.insights-main .item.videoPop {
    position: relative;
}

.insights.insights.insights-main .item.videoPop::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #00000052;
    z-index: 0;
}

.insights.insights.insights-main .item.videoPop figure {
    position: absolute;
    top: calc(50% - 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 10;
}

.insights.insights.insights-main .item.videoPop figure:hover {
    transform: translate(-50%, -50%) scale(0.9);
    cursor: pointer;
}

.insights.insights.insights-main .item.videoPop figure img {
    padding: 10px;
}

.insights.insights.insights-main .item.videoPop .data {
    position: relative;
    z-index: 5;
}


.videoPopWrap .popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.df {
    display: flex !important;
}

.videoPopWrap .popup-content {
    position: relative;
    /* background: white; */
    padding: 1px;
    width: 80%;
    max-width: 600px;
}

.videoPopWrap .popup-content iframe {
    width: 100%;
    height: 315px;
}

.videoPopWrap .close-btn {
    position: absolute;
    top: -10px;
  right: -15px;;
    font-size: 20px;
    cursor: pointer;
    background: #FFF;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 25%;
  line-height: 19px;
}



/* Only on Desktop */
@media (min-width: 768px) {

    .grid1 {
        display: grid !important;
        grid-auto-rows: 250px;
        grid-template-columns: repeat(3, 1fr);
        /* grid-template-rows: repeat(3, 1fr); */
        gap: 20px;
    }

    .grid1 .item {
        width: 100%;
        height: 100%;
    }

    .grid1 .item:nth-child(1) {
        grid-area: 1/1/2/2;
    }

    .grid1 .item:nth-child(2) {
        grid-area: 1/2/2/3;
    }

    .grid1 .item:nth-child(3) {
        grid-area: 2/2/3/3;
    }

    .grid1 .item:nth-child(4) {
        grid-area: 1/3/3/4;
    }

    .grid1 .item:nth-child(5) {
        grid-area: 2/1/4/2;
    }

    .grid1 .item:nth-child(6) {
        grid-area: 3/2/4/3;
    }

    .grid1 .item:nth-child(7) {
        grid-area: 3/3/4/4;
    }

}