.simple-slider {
  position: relative;
}

.simple-slider .swiper-slide {
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.simple-slider .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.simple-slider .row {
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.simple-slider p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.simple-slider hr {
  border-top: 2px solid #000;
  width: 50%;
  margin-bottom: 1rem;
}

.simple-slider span {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.simple-slider .swiper-button-next, .simple-slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  margin-left: 20px;
  margin-right: 20px;
  color: #00000000;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.simple-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000;
  opacity: 1;
}

.simple-slider .swiper-pagination-bullet-active {
  background-color: #f00;
}

@media (max-width: 767px) {
  .simple-slider .swiper-button-next, .simple-slider .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .simple-slider .swiper-slide {
    height: 360px;
  }
}

