.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section--featured {
  height: 860rem;
  background-color: #eaeaea;
  overflow: hidden;
  margin-top: 180rem;
 }


.section--featured .row,
.section--featured .column,
.section--featured .ItemCard,
.section--featured .ItemCard__thumb {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
}

.section--featured .row {
  top: -400rem;
  right: 60vh;
  width: 960rem;
  transform: rotateX(60deg) rotateZ(-45deg) scale(2);
  justify-content: flex-end;
  column-count: 3;
  gap: 90rem;
}

.section--featured .column {
  margin-bottom: 90rem;
}


@media screen and (min-width: 720px) {
  .section--featured .row {
    right: 70vh;
  }
}
@media screen and (min-width: 860px) {
  .section--featured .row {
    top: -30rem;
    right: 90vh;
  }
}
@media screen and (min-width: 1000px) {
  .section--featured .row {
    right: -20vh;
  }
}

.section--featured .shadow {
  display: block;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.9;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  -webkit-animation: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) shadow 2;
          animation: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) shadow 2;
}

.section--featured .ItemCard__thumb img {
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translate3d(0, 0, 20px);
  -webkit-animation: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) levitate 2;
          animation: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) levitate 2;
}
/* 
@media screen and (min-width: 640px) {
  .column {
    width: 320rem;
    max-width: 50%;
    flex: 1 1 320rem;
  }
}
@media screen and (min-width: 940px) {
  .column {
    width: 313.33333333rem;
    max-width: 33.333%;
    flex: 1 1 313.33333333rem;
  }
} */
.ItemCard {
  position: relative;
  max-width: 510rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ItemCard__thumb {
  position: relative;
  padding: 0;
}

.ItemCard__thumb img {
  display: block;
  cursor: pointer;
}

.section--featured .column:hover .ItemCard__dest {
  z-index: 10;
}

.section--featured .column:hover .ItemCard__thumb img {
  transform: translate3d(0, 0, 50px) rotateX(-5deg);
  transform-origin: center bottom;
}

.section--featured .column:hover .ItemCard__thumb .shadow {
  opacity: 0.6;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.1);
}

@-webkit-keyframes levitate {
  0% {
    transform: translate3d(0, 0, 20px);
  }
  50% {
    transform: translate3d(0, 0, 1px);
  }
  100% {
    transform: translate3d(0, 0, 20px);
  }
}

@keyframes levitate {
  0% {
    transform: translate3d(0, 0, 20px);
  }
  50% {
    transform: translate3d(0, 0, 1px);
  }
  100% {
    transform: translate3d(0, 0, 20px);
  }
}
@-webkit-keyframes shadow {
  0% {
    opacity: 0.9;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  }
  50% {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.18);
  }
  100% {
    opacity: 0.9;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  }
}
@keyframes shadow {
  0% {
    opacity: 0.9;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  }
  50% {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.18);
  }
  100% {
    opacity: 0.9;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  }
}