.last-videos-container {
    margin: 80px 0;
}

.last-videos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.last-videos .video-cover {
    position: relative;
    transition: all .3s ease 0s;
    top: 0;
}

.last-videos .video-cover:hover {
    top: -5px;
}

.last-videos .video {
    max-width: calc(50% - 15px);
}

.last-videos .video-cover img {
    display: block;
}

.last-videos .play-img {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.last-videos-container .more-link {
    margin: 30px auto 0 auto;
    text-align: center;
}

@media (max-width:800px){

    .last-videos {
       flex-direction: column;
       gap: 15px;
    }

    .last-videos .video {
        max-width: 600px;
        margin: 0 auto;
    }

}

.home-youtube-section{
    padding: 30px 40px;
}

#lightbox-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 9999;
}

#lightbox-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

#lightbox-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#lightbox-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.lavelab-feed--wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2em;
}
.lavelab-feed--wrapper > a {
    text-align: center;
    width: 100%;
    border: 3px solid transparent;
    overflow: hidden;
}

.lavelab-feed--wrapper > a:hover {
    border: 3px solid #377dff;
}

.lavelab-feed--wrapper > a:hover img{
    transform: scale(1.1);
}

.lavelab-feed--wrapper > a img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

@media(min-width:500px){
    .lavelab-feed--wrapper > a {
        width: 60%;
    }
}

@media(min-width:800px){

    .lavelab-feed--wrapper {
        flex-direction: row;
    }

    .lavelab-feed--wrapper > a {
        width: 31.33%;
    }
}