.gallery .vGroup {
  position: relative;
  overflow: hidden;
  max-height: 864px;
}

.gallery .vGroup img {
  width: 100%;
  height: auto;
  display: block;
  height: 100%;
  object-fit: cover;
}

.gallery .vGroup img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}

.gallery .vGroup img.default {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

.gallery .vGroup:hover img.hover {
  opacity: 1;
}

.gallery .vGroup:hover img.default {
  opacity: 0;
}

@media screen and (max-width: 770px) {
  .gallery .bottomContent {
    display: none;
  }
}
