#video .grid {
    display: grid;
    grid-gap: 50px;
    grid-row-gap: 70px;
    justify-content: space-between;
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    margin: 50px 50px 0px 50px;
}
section#video {
    display: flex;
    justify-content: space-around;  
}
.videoFrame {
    display: flex;
    flex-direction: column;
    transition: opacity 0.7s ease;
    transition: filter 0.7s ease;
}

/*   VIDEO PHOTO    */
.video-container, .video-preview  {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background-size: cover;
    overflow: hidden;

    width: 100%;
    aspect-ratio: 16 / 9;
}
.video-container .video-preview {
    position: absolute;
}
.video-container svg#yt-button-bg, .video-container svg#play-button {
    position: absolute;
    width: 60px;
    aspect-ratio: 1;
    scale: 1;
    transition: all 0.4s ease;
}
.video-container:not(.loading) .video-preview:hover svg#yt-button-bg {
    scale: 1.1;
}


.video-container.loading .video-preview {
    transition: all 0.4s ease;
    width: 140%;
}
.video-container.loading .video-preview #yt-button-bg {
    transition: all 0.7s cubic-bezier(0.41, 0.01, 0.01, 1);
    width: 120%;
    animation: loading 3s ease 1s infinite;
}
.video-container.loading .video-preview #play-button {
    transition: d 0.7s /*cubic-bezier(0.59, 0.24, 0.3, 1)*/ linear(0 0%, 0.97 25.25%, 1 49.43%, 1 100%),
                opacity 0.1s ease;
    opacity: 1;
    d: path("M36.5 24 33 22.07V25.93");
}
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    30% {
        transform: rotate(360deg);
    }
    30.01% {
        transform: rotate(0deg);
    }
}
.video-container.loading iframe {
    transition: all 0.4s ease;
    scale: 0.2;
}

.video-container.loading.end .video-preview #yt-button-bg {
    transition: all 0.4s cubic-bezier(1, 0, 1, 0.30);
    width: 3000%;
}
.video-container.loading.end .video-preview #play-button {
    opacity: 0;
}
.video-container.loading.end iframe {
    scale: 1;
}


iFrame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

@media screen and (max-width: 992px) {
  #video .grid {
        grid-template-columns: 1fr;
  }
}