.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-wrapper{
  padding-left: initial;
  margin: 0;
}
.swiper-slide {
  background-color: rgba(25, 30, 35, 1);
  text-align: center;
  font-size: 18px;
  width: 100%;
  height: 100%;
  /* 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-slide img {
  width: 100%; /* IE */
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("../img/icon-prev.svg");
  left: 30px;
  right: auto;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("../img/icon-next.svg");
  right: 30px;
  left: auto;
}
.swiper-pagination-bullet {
  width: 60px;
  height: 10px;
  background: rgba(255, 255, 255, .5);
  display: inline-block;
  border-radius: 0;

  opacity: 1;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: rgba(255, 255, 255, 1);
}
.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 100px;
}
.mobile .swiper-container-horizontal>.swiper-pagination-bullets,
.mobile .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 1em 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;
  }
}