﻿

  /*HOMEPAGE_GALLERY*/

.gallery {
  width: 100%;
  display: flex;
  height: 400px;
  
}
.galleryContent {
  flex: 1;
  transition: flex 500ms ease-out;
  padding: 1px;
  position: relative;
}

.galleryContent img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.galleryContent:hover {
  flex: 70%;
}













    


