.swiper-controls{
  position: absolute;  
  margin-top: 10px;
}
.swiper-controls.white{
  color: #fff;
}
.swiper-controls.black{
  color: #000;
}
@media screen and (max-width: 767px) {
  .swiper-controls{
    margin-top:20px;
  }
}

.swiper-controls .controls_inner{
  position: relative;
}

.swiper-button-next, .swiper-button-prev {
  color: #000;
  z-index: 100;
}
.swiper-slide-duplicate,
.swiper-slide {
  /* background-position: center center;
  background-size: cover;
  text-align: left;
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
   */
}
.swiper-slide-duplicate .description,
.swiper-slide-duplicate .title,
.swiper-slide .description,
.swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.swiper-slide-duplicate-active .description,
.swiper-slide-duplicate-active .title,
.swiper-slide-active .description,
.swiper-slide-active .title {
  opacity: 1;
}
.swiper-slide-duplicate-active .title,
.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
.swiper-slide-duplicate-active .description,
.swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

.swiper-progress-bar {
  position: relative;
  width: 100px;
  display: inline-block;
  z-index: 1;
  height: 25px;
  margin-left:30px;
}
.swiper-pagination{
  bottom: 0;
  margin-left:60px;
  top: 0;
  display: flex;
  align-items: center;
  width: 80%;
}
.swiper-pagination-current{
  display: block;
  left:0;
}
.swiper-pagination-total{
  display: block;
  position: absolute;
  right:0;
}
.swiper-progress-bar .slide_progress-bar {
  position: absolute;
  height: 5px;
  background: rgba(255,255,255, 0.5);
  width: auto;
  clear: both;
  opacity: 0;
  left: 50%;
  right: 0;
  top: 50%;
  transform: translate(-50%,-50%);
  width:100%;
}
@media screen and (max-width: 767px) {
  .swiper-progress-bar .slide_progress-bar{
    background: rgba(0,0,0, 0.1);
  }
}

.swiper-progress-bar .slide_progress-bar:after {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  height: 100%;
  width: 0;
  content: "";
  transition: 0.1s width linear;
}



.swiper-progress-bar.active .slide_progress-bar {
  opacity: 1;
}
.swiper-progress-bar.active .slide_progress-bar.gary{
  background: #adadad;
}
 .swiper-progress-bar.animate .slide_progress-bar.gary:after{
  background: #000;
}


.swiper-progress-bar.animate .slide_progress-bar:after {
  transition: width linear;
  transition-delay: unset;
  width: 100%;
  transition-duration: 4s;
}
