

.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    padding: 30px 50px;
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
  /*  font-family: 'Droid Sans', sans-serif; */
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
    padding: 0px;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 1px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 60%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e003';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}

@media(max-width: 768px) {
    body {
        padding: 0;
    }
}

/* gallery text */

/* relevant styles */
.img__wrap {
  position: relative;


}

.img__description_layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /*background: rgba(36, 62, 206, 0.6); */
  color: #fff;
  visibility: hidden;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
    z-index:99;

  /* transition effect. not necessary */
  transition: opacity .5s, visibility .0s;
}

.img__wrap:hover .img__description_layer {
  visibility: visible;
  opacity: 1;
}

.img__description {
  transition: .2s;
  transform: translateY(1em);
}

.img__wrap:hover .img__description {
  transform: translateY(0);
}

/* for normal image */
.img__wrap2 {
  position: relative;


}

.img__description_layer2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 110, 110, 0.4); 
  color: #fff;
  visibility: hidden;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
    z-index:99;

  /* transition effect. not necessary */
  transition: opacity .5s, visibility .0s;
}

.img__wrap2:hover .img__description_layer2 {
  visibility: visible;
  opacity: 1;
}

.img__description2 {
  transition: .2s;
  transform: translateY(1em);
}

.img__wrap2:hover .img__description2 {
  transform: translateY(0);
}