.swiper {
  width: 100%;
  height: 100%;
  padding: 1em 0 4em 0;
}
.mySwiper{
	max-width: 1500px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s;
  height: auto;
}

.swiper-slide-active {
  opacity: 1;
}

.swiper-slide .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  padding: 0;
}

.card-body {
  flex: 1;
}

.card-footer {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  padding: 1em;
}

.quote-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background: none !important;
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27 44"><path fill="none" stroke="%23000" stroke-width="2" d="M1 1l21 21-21 21"/></svg>');
}

.swiper-button-prev {
  left: 10px;
  right: auto;
}

.swiper-button-next {
  right: 10px;
  left: auto;
}

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