@keyframes fade-in-now {
  from { opacity: 0; transform: scale(0.7);}
  to { opacity: 1; transform: scale(1);}
}

.cover .list-item {
  font-family: "Brandon Grotesque Light" !important;
  margin-left: 2vw;
  color: white;
  font-size: 1.4vw;
  display: flex;
  margin-top: 7vh;
  margin-bottom: 7vh;
  align-items: center;
  justify-content: start;
  -webkit-transform-origin-x: 0;
}

.cover .list-item svg {
  width: 2.6vw;
  height: 2.6vw;
  margin-right: 3vw;
}

.cover .list-item svg.fill {
  fill: white;
}

.cover .list-item svg.stroke {
  stroke: white;
  stroke-width: 1.5;
}

.cover .list-item {
  animation: fade-in-now 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.cover .list-item.first {
  animation-delay: 0.5s;
}

.cover .list-item.second {
  animation-delay: 1s;
}

.cover .list-item.last-one {
  animation-delay: 1.5s;
}