#image-container {
    width: 100vw;
    height: 50vmax;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    float: left;
    width: 100vw;
    height: 50vmax;
    object-fit: cover;
}
.slide_inactive {
    left: 0px;
}

.row {
    width: 100vw;
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 0.5vw;
  }
  
  /* Create four equal columns that sits next to each other */
.column {
    -ms-flex: 23.5vw; /* IE10 */
    flex: 23.5vw;
    max-width: 23.5vw;
    padding: 0 0.5vw;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    /* height: 50%; */
    object-fit: cover;
	transition: 0.5s;
	border-radius: 5px;
}

.column img:hover {
	transform: scale(1.03);
	box-shadow: 0 10px 20px 10px rgba(0,0,0,0.4);
}
  
  /* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
      	-ms-flex: 47.5vw;
      	flex: 47.5vw;
      	max-width: 47.5vw;
    }
}
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
/* @media screen and (max-width: 450px) {
    .column {
	    -ms-flex: 96vw;
      	flex: 96vw;
      	max-width: 96vw;
    }
} */