/* ============================= 
    GALLERY-2 CSS
================================ */
.gallery-style-2 {
  padding: 100px 0 70px;
  background: #f3f3f3;
}

.gallery-style-2 .single-gallery {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.gallery-style-2 .single-gallery:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.gallery-style-2 .single-gallery:hover .overlay .action {
  transform: translateY(0px);
}

.gallery-style-2 .single-gallery .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 5px;
}

.gallery-style-2 .single-gallery .image img {
  width: 100%;
}

.gallery-style-2 .single-gallery .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  background: rgba(47, 128, 237, 0.3);
}

.gallery-style-2 .single-gallery .overlay .action {
  transform: translateY(20px);
  transition: all 0.3s ease-out 0s;
}

.gallery-style-2 .single-gallery .overlay .action a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: #323450;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-style-2 .single-gallery .info {
  transition: all 0.3s ease-out 0s;
}

.gallery-style-2 .single-gallery .info h5 {
  margin-bottom: 15px;
}
