/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-radius: 20px;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
  margin: 5px;
  max-height: 300px;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  border-radius: 20px;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}