.p-facility {
  background-color: #FFF8E9;
  overflow: hidden;
}

.slideshow-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  margin-top: 10vh;
  margin: 10vh 0 25vh 0;
}

.slideshow-track {
  display: flex;
  width: max-content;
}

.slideshow-list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  will-change: transform;
}

.slideshow-item {
  width: 450px;
  height: 300px;
}

.slideshow-item>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-btn-facility {
  display: block;
  margin: 40px auto 0 auto;
  background: white;
  border: 2px solid #707070;
  color: #707070;
  padding: 6px 45px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

.more-btn-facility:hover {
  background: #f0f0f0;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .slideshow-container {
    margin: 6vh 0 10vh 0;
  }

  .slideshow-item {
    width: 350px;
    height: 230px;
  }

  .more-btn-facility {
    margin-top: 30px;
    padding: 8px 40px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .slideshow-container {
    margin: 5vh 0 15vh 0;
  }

  .slideshow-item {
    width: 250px;
    height: 170px;
  }

  .more-btn-facility {
    margin-top: 25px;
    padding: 6px 30px;
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .slideshow-container {
    margin: 6vh 0 7vh 0;
  }

  .slideshow-item {
    width: 200px;
    height: 150px;
  }
}