
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}


@media (max-width: 990px) {
    .swiper {
    width: 100%;
    height: 200px;
    margin: 20px auto;
    }
    .swiper-slide img {
        display: block;
        width: 100%;
        height: 50%;
        object-fit: cover;
        margin: 20% 0 0 0;
    }

    .swiper-slide p {
        margin-top: 10%;
        font-size: 15px;
        color: #fd9d0d;
    }
}

@media (min-width: 990px) {
    .swiper {
    width: 100%;
    height: 300px;
    margin: 20px auto;
    }

    .swiper-slide img {
        display: block;
        width: 75%;
        height: 75%;
        object-fit: cover;
        margin: 5% 0 0 13%;
    }

    .swiper-slide p {
        margin-top: 5%;
        font-size: 20px;
        color: #fd9d0d;
    }
}
.append-buttons {
  text-align: center;
  margin-top: 20px;
}

.append-buttons button {
  display: inline-block;
  cursor: pointer;
  border: 1px solid #007aff;
  color: #007aff;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 0 10px;
  font-size: 13px;
}
