.gallery {
  position: relative;
  width: 75vw;
  min-width: 500px;
	max-width: 1500px;
  margin: 50px auto 0;
  overflow: hidden;
  padding: 16px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
	background: #2a398f;
  box-sizing: border-box;
	box-shadow: inset 0 0 15px 0 rgba(0,0,0,0.5),
									0 0 10px 0 rgba(0,0,0,0.3);
}
@media only screen and (max-width: 600px) {
  .gallery { min-width: auto; width: 90vw; }
}
.gallery h1 {
	position: absolute;
	top: 30px;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	padding: 0 30px;
	color: #fff;
	font-size: 24px;
	text-align: center;
	text-shadow: 0 4px 8px rgba(0,0,0,.7);
}
@media only screen and (max-width: 600px) {
	.gallery h1 {
		font-size: 16px;
	}
}
.gallery .slider_track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  scroll-snap-type: x mandatory;
	border-radius: 4px;
}
.gallery .slider_track::-webkit-scrollbar {
  display: none;
}
.gallery .slider_track {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.gallery .slider_track .main_image {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  scroll-snap-align: center;
	object-fit: cover;
	box-shadow: 0 0 5px 0 rgba(0,0,0,1);
}
.gallery .arrows {
  position: absolute;
  top: 16px;
  bottom: 16px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  z-index: 4;
  border: none;
  padding: 0;
  margin: 0;
  transition: background-color .15s ease, opacity .15s ease;
  opacity: 0;
  pointer-events: none;
}
.gallery .arrows:hover {
	background-color: rgba(255, 255, 255, 0.5);
}
.gallery .arrows.visible {
  opacity: 1;
  pointer-events: auto;
}
.gallery .arrow_left {
	transform: rotate(180deg);
}
.gallery .arrow_left  { left: 10px; border-radius: 0 4px 4px 0; }
.gallery .arrow_right { right: 10px; border-radius: 0 4px 4px 0; }

/* icon */
.gallery .arrow_icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}