section#carousel img {
  display: block;
  max-width: 100%;
}

section#carousel .wrapper {
  overflow: hidden;
  height: 60vh;
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-gap: 10px;
  box-shadow: 0 6px 16px 1px rgba(0,0,0,.08);
  margin-bottom: 24px;
}

section#carousel .gallery {
  overflow: scroll;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

section#carousel .gallery__img {
  scroll-snap-align: start;
  margin-bottom: 10px;
  min-height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}

section#carousel .lil-nav {
  overflow-y: scroll;
  overflow-x: hidden;
  margin-right: 1px solid black;
}
section#carousel .lil-nav a {
  height: 150px;
  display: flex;
  margin-bottom: 10px;
}

section#carousel .lil-nav__img {
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0);
  transition: 0.3s ease all;
}
section#carousel .lil-nav__img:hover {
  transform: scale(1.05);
  filter: saturate(1);
}
