 /*---------------------------------------
     Gallery CSS             
  -----------------------------------------*/

  #gallery {
    padding-bottom: 0;
  }

  #gallery .container {
    width: 100%;
  }

  #gallery .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .gallery-thumb img {
    width: 100%;
    transition: 0.5s;
  }

  .gallery-thumb:hover img {
    transform: scale(1.15);
  }

  #gallery .gallery-thumb {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    width: 102%;
	padding: 10px;
  }

  .gallery-thumb .gallery-info {
    position: absolute;
    top: 60%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-align: left;
    padding: 25px 30px;
    transition: 0.5s 0.2s;
  }

  .gallery-info .gallery-item {
    float: left;
  }

  .gallery-info .gallery-price {
    float: right;
  }

  .gallery-info .gallery-price span {
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
    display: block;
    margin-top: 10px;
  }

  .gallery-thumb .gallery-info h3,
  .gallery-thumb .gallery-info p,
  .gallery-thumb .gallery-info span {
    transform: translateY(100%);
    opacity: 0;
    display: block;
    transition: 0.5s 0.2s;
    color: #ffffff;
    z-index: 2;
    position: relative;
  }

  .gallery-thumb .gallery-info h3 {
    margin-top: 0;
  }

  .gallery-thumb .gallery-info p {
    color: #d9d9d9;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .gallery-thumb:hover .gallery-info h3,
  .gallery-thumb:hover .gallery-info p,
  .gallery-thumb:hover .gallery-info span {
    transform: translateY(0px);
    opacity: 1;
  }

  .gallery-thumb:hover .gallery-info {
    background: rgba(0,0,0,0.8);
  }

