  section.wrapper {
	width: 100%;
  }
  
  .photo-gallery__wrapper {
	width: 622px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: right;
  }
  .photo-gallery__wrapper div {
	height: 80px;
	overflow: hidden;
	margin-right: 12px;
  }
  
  .image-holder {
	width: 620px;
	height: 400px;
	overflow: hidden;
	margin: 0 auto;
  }
  .image-holder img {
	width: 620px;
	height: 400px;
	object-fit: cover;
	object-position: 50% 50%;
  }
  .image-thumbnail img {
	width: 90px;
	height: 80px;
	object-fit: cover;
	transition: transform 0.35s;
	transform: scale(1);
  }
  .image-thumbnail img.active {
	filter: none;
  }
  .image-thumbnail img:hover {
	transition: transform 0.35s, filter 0.35s linear;
	transform: scale(1.12);
	filter: none;
  }