/* 
========================================= 
========================================= 

Bootstrapious Boilerplate Template

========================================= 
========================================= */
/*

=====================
GENERAL
=====================

*/

section.gallery {
    padding-bottom: 0;
  }
  
  section.gallery div[class*='col-'] {
    padding: 0;
  }
  
  section.gallery .gallery {
    margin-top: 70px;
  }
  
  section.gallery .gallery .item {
    position: relative;
    max-height: 230px;
    overflow: hidden;
  }
  
  section.gallery .gallery .overlay {
    width: 100%;
    height: 100%;
    background: rgba(152, 128, 62, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
/*    -webkit-transition: all 0.4s;
    transition: all 0.4s;*/
  }
  
  section.gallery .gallery .overlay span {
    font-size: 2rem;
  }
  
  section.gallery .gallery .overlay:hover {
    opacity: 1;
  }
  