/* IMAGES */
img {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}

.image_img {
  display: block;
  width: 100%;
  height: auto;
  background-size: cover;
}

.image {
  position: relative;
  width: 100%;
}
/* IMAGE OVERLAY */
.image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
/* IMAGE OVERLAY */
.artist_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content:end;
  transition: opacity 0.25s;
}
.artist_image_overlay h3 {
  padding-left: 15px;
  font-size: 15px;
}

.image_overlay {
  opacity: 0;
}
.artist_image_overlay {
  opacity: 0;
}

.image_overlay:hover {
  opacity: 1;
}

.image_overlay--blur {
  backdrop-filter: blur(5px);
}

.image_overlay--solid {
  background: #c51f5d;
}

.artist_image_overlay:hover {
  opacity: 1;
}

.artist_image_overlay--blur {
  backdrop-filter: blur(5px);
}

.artist_image_overlay--solid {
  background: #c51f5d;
}












.gallery_container {
  display: flex;
  flex: 1;
  max-width: 100%;
  margin: 0 auto;
  overflow: auto;
  align-items: flex-start;
  justify-content: center;
}

.gallery_card {
  flex: 1 1 1%;
  position: relative;
  opacity: 0.2;
  transition: flex 600ms cubic-bezier(0.25, 1, 0.5, 1), opacity 250ms ease;
}
.gallery_card:hover {
  flex-basis: 30%;
}
.gallery_card_inner {
  /* margin: 0.25rem; */
  background: #fff;
  /* border-radius: 8px; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.gallery_card picture {
  width: 100%;
  height: 0;
  padding-bottom: 600px;
  overflow: hidden;
  position: relative;
}
.gallery_card picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery_card.is-active, .gallery_card:hover {
  opacity: 1;
}
/* .card:nth-child(2), .card:nth-child(5), .card:nth-child(9) {
  margin-top: 0;
}
.card:nth-child(2), .card:nth-child(4), .card:nth-child(6), .card:nth-child(8), .card:nth-child(10) {
  margin-top: 2.5%;
}
.card:nth-child(3), .card:nth-child(7) {
  margin-top: 5%;
} */