

.imageGrid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
}

.imageGrid img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 200ms;
}

.imageGrid img:hover{
    opacity: 0.9;
    transition: 200ms;
}

.imagevideo{
    display: flex;
}

.imagevideo img, .imagevideo video{
    width: 50%;
}

@media only screen and (max-width: 991px) {
  .imageGrid{
    grid-template-columns: 1fr 1fr ;
}
.imageGrid img{
    width: 100%;
    height: 175px;
}

.imagevideo{
    flex-direction: column;
}

.imagevideo img, .imagevideo video{
    width: 100%;
    margin-bottom: 15px;
}


}