.video_gallery_1 {
    background-color: var(--light-primary-bkgd);
    padding-top: 75px;
    padding-bottom: 75px;
}

.video_gallery_1 .columns .column_1 {
    width: 40%;
    padding-right: 65px;
}

.video_gallery_1 .columns .column_1 .primary_button {
    background-color: transparent;
    padding: 0px;
    text-decoration: underline;
    font-size: 18px;
    color: var(--light-link);
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    text-align: left;
    border-radius: 0px;
    min-width: 0px;
}

.video_gallery_1 .columns .column_1 .primary_button:hover {
    cursor: pointer;
    text-decoration: none;
}

.video_gallery_1 .columns .column_2 {
    width: 60%;
}

.video_gallery_1 .repeater {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    column-gap: 10px;
    row-gap: 50px;
}

.video_gallery_1 .repeater .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
}

.video_gallery_1 .repeater .video_gallery_thumbnail {
    width: 100%;
    height: 300px;
}

.video_gallery_1 .repeater h3 {
    color: var(--secondary);
    font-size: 25px;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-bottom: 10px;
    min-height: 60px;
}

.video_gallery_1 .repeater .excerpt p {
    max-width: 95%;
    font-size: 14px;

}

.video_gallery_1 .repeater .primary_button {
position: absolute;
bottom: 25px;
left: 25px;
    max-width: 50%;

}

@media (max-width: 992px)
{
    .video_gallery_1 .repeater, .video_gallery_1 .columns {
        display: flex;
        flex-direction: column;
    }

    .video_gallery_1 {
        padding-bottom: 20px;
    }

    .video_gallery_1 .columns .column_1 {
        width: 100%;
        padding-right: 0px;
    }
    
    .video_gallery_1 .columns .column_2 {
        width: 100%;
    }

    .video_gallery_1 .repeater .item {

       margin-bottom: 35px;
    }

    .video_gallery_1 .repeater .primary_button {
        margin-top: 15px;
        margin-left: 0px;
        max-width: 100%;
        position: static;
    
    }

    .video_gallery_1 .repeater .video_gallery_thumbnail {
        height: 400px;
    }

    .video_gallery_1 .repeater h3 {

        min-height: unset;
        margin-bottom: 25px;
    }
    
    .video_gallery_1 .repeater .excerpt {
        max-width: unset;
    }
    
    
}