.slide-cont {
  position: relative;
  display: flex;
  flex-direction: column;
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(400px);
  }
}
@keyframes mv{
  from{
    background-position: 0 0;
  }
  to{
    background-position: 0 100%;
  }
}

.slider {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 400px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  animation: mv 50s linear infinite;
  background-size: contain;
  background: url("https://recruit.jobda.im/hubfs/ATS_OnlineStore/%EA%B3%A0%EA%B0%9D%EC%84%B1%EA%B3%B5%EC%82%AC%EB%A1%80/pc_logo_img%20(1).png") repeat-y;
}

.slider .slide-track {
  animation: scroll 10s linear infinite;
  display: flex;
}
.slider .slide {
  display: flex;
  align-items: center;
  height: 80px;
  width: 250px;
}

.slide img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.slide-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  background:rgba(0,0,0,0.4);
}
.slide-text p {
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  color: #fff;
  text-align: center;
}

@media (max-width:1023px){
  .slider {
    background: url("https://recruit.jobda.im/hubfs/ATS_OnlineStore/%EA%B3%A0%EA%B0%9D%EC%84%B1%EA%B3%B5%EC%82%AC%EB%A1%80/mobile_logo_img.png") repeat-x;
  }
  .slide-text p {
    line-height: 66px;
    font-size: 48px;
    word-break: keep-all;
  }
  .mbBr {
    display: block;
  }
}


@media (max-width:500px){
  .slide-text p {
    line-height: 32px;
    font-size: 24px;
  }
}

@media (max-width:360px){
  .slider {
height: 188px;
  }
}