/* _variables.scss */
:root {
  --main_color: #0D0D0D;
  --secondary_color: #C5A059;
  --title_color: #333333;
  --text_color: #555555;
  --gray: #E0E0E0;
  --red: #C01919;
  --button_red: #d84f4f;
}
:root {
  --cards_img_size: 160px;
  --cards_width: calc(var(--cards_img_size) * 12 * 2);
  --cards_scroll: calc(var(--cards_img_size) * 12 * -1);
}

@media (max-width: 600px) {
  :root {
    --cards_img_size: 140px;
  }
}
#maincards {
  position: relative;
  margin-top: -10px;
  z-index: 10;
}
#maincards .cardsArea {
  position: relative;
  text-align: center;
  margin: 0;
  overflow: hidden;
}
#maincards .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;
}
#maincards .cardsArea .content {
  max-width: 100vw;
  background: none;
  margin: 0px auto;
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0;
  width: 100vw;
}
#maincards .cardsArea .content::before, #maincards .cardsArea .content::after {
  background: none;
}
#maincards .cardsArea .content ul {
  animation: 40s 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;
}
#maincards .cardsArea .content ul li {
  width: 32vw;
  text-align: center;
}
#maincards .cardsArea .content ul li img {
  width: 95%;
}
@media (max-width: 600px) {
  #maincards {
    margin-top: -8px;
    padding-bottom: 4px;
  }
}

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