@charset "utf-8";
/* CSS Document */
.slider-container1 {
  display: grid;
  width: 400px;
  height: 900px;
  float: left
}
.slider-container2 {
  display: grid;
  width: 400px;
  height: 900px;
  float: right
}
.slider {
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
}
.slider-list {
  display: flex;
  flex-direction: column-reverse;
  margin: 0;
  padding: 0;
  align-items: center;
  animation: slideShow 20s infinite linear;
  list-style: none;
}
.slider-list2 {
  display: flex;
  flex-direction: column-reverse;
  margin: 0;
  padding: 0;
  align-items: center;
  animation: slideShow2 20s infinite linear;
  list-style: none;
}
.slider-item {
  width: 400px;
  height: 300px;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .slider-item {
    width: 100%;
    height: 300px;
  }
  .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
  }
  .slider-container1 {
    display: none;
  }
  .slider-container2 {
    display: none;
  }
  .slider-item {
    width: 100%;
    height: 300px;
  }
}
@keyframes slideShow {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes slideShow2 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}