
.swiper-wrapper{
  padding-left: initial;
  margin: 0;
}
.swiper-slide {
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  font-size: 18px;
  width: 80%;
  height: auto;
  /* 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;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  width: 35px;
  height: 35px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  background-color: rgba(255, 255, 255, .8);
  background-size: 9px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100%;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("images/icon-prev.svg");
  left: 0px;
  right: auto;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("images/icon-next.svg");
  right: 0px;
  left: auto;
}

.swiper-button-prev {
  background-position-x: 12px;
}

.swiper-button-next {
  background-position-x: 13px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  display: inline-block;
  border-radius: 100%;
  border: 2px solid rgba(255,255,255,1);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: rgba(255,255,255,1);
  border-radius: 100%;
}
.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
}
.mobile .swiper-container-horizontal>.swiper-pagination-bullets,
.mobile .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-content-fixed {
  max-width: 75ch;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 5em;
}
.swiper-content-fixed.dark,
.swiper-content-fixed.light {
  background: transparent;
}
.swiper-content-fixed .btn-cta-wrapper {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .swiper-content-fixed {
    padding: 2em;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next,
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
display: none;
}

  .swiper-content-fixed .btn-cta-wrapper {
    margin-top: 2.5em;
  }
}

.swiper-pagination-bullets {
  display: inline-block !important;
  background: rgba(10, 142, 98, 1);
  padding: 0 .25em;
  border-radius: 50px;
  width: auto !important;
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%);
}