body {
    min-height: 100vh;
}

/* tabs for category*/
.btn-gallery {
  color: #000 !important;
  background-color: #fff !important;
  margin: 10px 0px;
  border: 2px solid #6C2217;
  font-size: 15px !important;
  font-weight: bold !important;
  transition: all 0.2s;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  display: none; /* Hide columns by default */
}
.tz-gallery {
    padding: 40px;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #6C2217 !important;
  color: #fff !important;
}
.image-size {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 450px;
  width: 100%;
  display: flex;
  margin-bottom: 30px;
}
/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    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;
    }
}