.image-grid-section{
    display: flex;
    padding: 40px 20px;
    gap: 40px;
    font-size: 0;
}
.image-grid-section.fullwidth{
    padding-left: 0;
    padding-right: 0;
}
.image-grid-section .grid-item{
    flex:1;
    line-height: 0;
}
.image-grid-section .grid-item img,
.image-grid-section .grid-item video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-grid-section.grid-style_2{
    display: flex;
    padding:40px 0;
    gap:0;
}
.image-grid-section.grid-style_2 .one-thirds,
.image-grid-section.grid-style_2 .two-thirds{
    padding: 0 20px;
}
.image-grid-section.grid-style_2 .one-thirds{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.image-grid-section.grid-style_2 .two-thirds .grid-item{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 850px){
    .image-grid-section,
    .image-grid-section.fullwidth,
    .image-grid-text-section,
    .image-grid-section.grid-style_2{
        padding: 14px;
    }
    .image-grid-section{
        gap: 28px;
    }
    .image-grid-text-section,
    .image-grid-section.grid-style_2{
        gap: 28px;
    }
    .image-grid-text-section .one-thirds, .image-grid-text-section .two-thirds,
    .image-grid-section.grid-style_2 .one-thirds, .image-grid-section.grid-style_2 .two-thirds{
        padding: 0;
        gap: 28px;
    }
    

}
@media screen and (max-width: 480px){
    .image-grid-section{
        flex-direction: column;
    }
}