#featured {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
#featured .container {
  width: min(1200px, 100%);
  height: 250px;
  margin: auto;
}
#featured .container h2 {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-bottom: 44px;
}
#featured .container p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.045em;
  font-weight: 400;
}
#featured .container .wrap {
  height: 120px;
  background-color: #e8e8e8;
  display: flex;
  flex-direction: row;
  gap: 1px;
  border: 1px solid #e8e8e8;
  position: absolute;
  animation: scroll 40s linear infinite;
}
@keyframes scroll {
  0% {
    left: 0;
  }
  to {
    left: -4400px;
  }
}
#featured .container .wrap .card {
  height: 100%;
  width: 300px;
  padding: 0 40px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#featured .container .wrap .card .image-wrap {
  position: relative;
  width: 220px;
  height: 48px;
}
#featured .container .wrap .card .image-wrap img {
  object-fit: contain;
}
@media screen and (max-width: 860px) {
  #featured {
    padding: 40px 0;
  }
  #featured .container .section_title {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: -0.045em;
    font-weight: 500;
  }
  #featured .container .wrap {
    height: 94px;
  }
  #featured .container .wrap .card {
    width: 240px;
  }
}
