.swiper-container {
  width: 100%;
  /*height: 100%;*/
  height: 100vh;
}
.swiper-slide {
  text-align: left;
  /*font-size: 18px;*/
 /* background: #000;*/
   margin: 0;
  font-size: 48px;
  font-weight: 700;
  /*color: #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;
}
.swiper-slide:before {
  content: "";
  /*background: rgba(0, 0, 0, 0.6);*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.swiper-slide h1{
  color: #fff;
    font-size: 48px;
  font-weight: 700;
}
.swiper-pagination-bullet {
  background: #000;
}
.swiper-pagination-bullet-active .path{
  display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash linear 120s;
  animation-iteration-count: unset;
}
.path {
  display: none;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}
  