  /* Image Cropping */
.section-photo-gallery figure {
  overflow: hidden;
  margin: 0;
  width: 200px;
  height: 200px;
}
   @media (min-width: 576px) {
    .section-photo-gallery figure {
      width: 240px;
      height: 240px;
    }
  }
  @media (min-width: 768px) {
    .section-photo-gallery figure {
      width: 210px;
      height: 210px;
    }
  }
  @media (min-width: 992px) {
    .section-photo-gallery figure {
      width: 180px;
      height: 180px;
    }
    .section-photo-gallery figure.no-menu {
      width: 210px;
      height: 210px;
    }
  }
  @media (min-width: 1200px) {
    .section-photo-gallery figure {
      width: 220px;
      height: 220px;
    }
    .section-photo-gallery figure.no-menu {
      width: 255px;
      height: 255px;
    }
  }

.change-ratio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-image {
  overflow: hidden;
}

/* @media (min-width: 576px) {
  .change-ratio img {
    margin: 0 -15%;
    width: auto;
    height: 100%;
  }
} */

/* Fade Container for 12+ Photos */
.fade-container {
  margin-bottom: 52px;
  position: relative;
}

.fade-content {
  max-height: 600px;
  overflow: hidden;
}
  @media (min-width: 740px) {
    .fade-content {
      max-height: 800px;
      overflow: hidden;
    }
  }
  @media (min-width: 992px) {
    .fade-content {
      max-height: 600px;
    }
  }
  @media (min-width: 1200px) {
    .fade-content {
      max-height: 700px;
    }
  }

.fade-anchor {
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 75%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 75%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 75%,rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00e9e9e9', endColorstr='#e9e9e9',GradientType=0 );
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  /*height: 500px;*/
  height: 300px;
  padding-top: 300px;
  position: absolute;
  /*top: 0;*/
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  -webkit-transition: background 150ms ease-in;
  transition: background 150ms ease-in;
}

.fade-anchor-text {
  text-decoration: none;
  transition: .3s;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}