/*============================================================================================*/
/* GALLERY PAGE */
/*============================================================================================*/
.item-img {
  position: relative;
}
.ffc-titleRed {
    color: #ff0000;
    font-size: 30px;
}

.ffc-h2 {
    color: rgba(0, 0, 0, 0.65);
    padding-top: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.ffc-marg30 {
    padding-bottom:30px;
}

.ffc-aboutBanner {
    height: auto;
    overflow: hidden;
    position: relative;
}

.content_general_row {
    padding-bottom: 30px;
}

.content_general_row p {
    font-size: 16px;
}

    .content_general_row p.lead {
        font-size: 22px;
    }

.ffc-justify-content {
    justify-content: center;
}

.item-img img {
  max-width: 100%;
}
.item-img .content {
  position: absolute;
  text-align: center;
  height: 0;
  width: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  transition: 0.2s ease-in-out;
  opacity: 0;
}
.item-img .content a {
  opacity: 0;
  transition: 0.2s ease;
  font-size: 24px;
  width: 100%;
  height: 100%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item:hover .content {
  height: calc(100% - 30px);
  width: calc(100% - 30px);
  opacity: 1;
}

.item:hover .content a {
  opacity: 1;
  color: #fff;
}

.grid ul {
  margin: 0 0 25px 0;
  padding: 0;
  width: 100%;
  text-align: center;
  font-size: 0;
}
.grid ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin: 0;
  min-height: 100%;
  width: 25%;
  list-style: none;
}
@media (max-width: 991px) {
  .grid ul li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .grid ul li {
    width: 100%;
    min-height: 100%;
    float: none;
  }
}