/*==============+
| PHOTO GALLERY |
+==============*/
.change-ratio img {
 	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}

.section-photo-gallery figure {
	overflow: hidden;
	margin: 0;
}

/* .section-photo-gallery h2 {
	text-transform: uppercase;
	color: #001a70;
} */

/* Fade container for 12+ photos */
.fade-container {
	margin-bottom: 100px;
	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: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 75%,rgba(255,255,255,1) 100%);
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 300px;
  padding-top: 300px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  transition: background 150ms ease-in;
}

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