:root {
  --cards_img_size: 160px;
  --cards_img_height: 172px;
  --cards_width: calc(var(--cards_img_size) * 6 * 2);
  --cards_scroll: calc(var(--cards_img_size) * 6 * -1);
}

@media (max-width: 600px) {
  :root {
    --cards_img_size: 140px;
    --cards_img_height: 175px;
  }
}
.cardsArea {
  position: relative;
  text-align: center;
  margin: 24px 0px 16px;
}
.cardsArea h3 {
  color: rgb(84, 84, 84);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 5px 0px;
  display: inline-block;
  position: relative;
  padding: 0px 35px;
}
.cardsArea h3::before, .cardsArea h3::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: rgb(228, 145, 42);
}
.cardsArea h3::before {
  left: 0px;
}
.cardsArea h3::after {
  right: 0px;
}
.cardsArea .content {
  height: var(--cards_img_height);
  margin: 0px auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.cardsArea .content::before, .cardsArea .content::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: var(--cards_img_height);
  position: absolute;
  width: 120px;
  z-index: 1;
  visibility: inherit;
}
.cardsArea .content::before {
  left: 0px;
  top: 0px;
}
.cardsArea .content::after {
  right: 0px;
  top: 0px;
  transform: rotateZ(180deg);
}
.cardsArea .content ul {
  animation: 30s linear 0s infinite normal none running scroll;
  display: flex;
  width: var(--cards_width);
  max-width: -moz-fit-content;
  max-width: fit-content;
  list-style: none;
}
.cardsArea .content ul li {
  width: 160px;
  text-align: center;
}
.cardsArea .content ul li img {
  width: 95%;
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(var(--cards_scroll));
  }
}/*# sourceMappingURL=cards.css.map */