section.parts li {
  list-style: none;
}
section.parts li a {
  height: 100%;
  display: block;
  background-color: var(--chapter-color);
  border-radius: 2.5rem;
  text-align: center;
  padding: 2.5rem;
  color: var(--black);
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  border: 2px solid transparent;
}
section.parts li a:hover {
  background-color: var(--grey);
  color: var(--chapter-color-dark);
  border-color: var(--chapter-color-dark);
}
section.parts li a h2 {
  padding-bottom: 20px;
}
section.parts li a h3 {
  font-variation-settings: "wght" 300;
}
section.parts li a .img-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
section.parts li a .img-wrapper .lottie {
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 1 !important;
  -webkit-transform: none !important;
          transform: none !important;
}
section.parts li a .img-wrapper img,
section.parts li a .img-wrapper svg {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.parts li a .img-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}