
.wa-slider1-content{margin: 30px}
.wa-slider1-content span{margin-bottom: 14px;font-size: 22px;display:block}
.wa-slider1-content span i{opacity: 0.5;font-size: 18px;margin-left: 10px}
.wa-slider1-content div{font-family: Roboto;font-size: 17px;line-height: 24px}


.wa-slider {
  position: relative;
}

.wa-slider__container {
  overflow: hidden;
}

.wa-slider__wrapper {
   overflow: hidden; 
   width: 94%;
margin: auto
}

.wa-slider__items {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.wa-slider_disable-transition {
  transition: none;
}

:root{ --slides-count:1; }

.wa-slider__item {
  flex: 0 0 100%;
  max-width: 100%;
  flex: 0 0 calc(100 / var(--slides-count) * 1%);
  max-width: calc(100 / var(--slides-count) * 1%);
  user-select: none;
  will-change: transform;
}

/* кнопки влево и вправо */

.wa-slider__control {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 50px;
  color: #fff;
  text-align: center;
  background: rgb(0 0 0 / 20%);
  border: none;
  transform: translateY(-50%);
  cursor: pointer;
}

.wa-slider__control_hide {
  display: none;
}

.wa-slider__control[data-slide="prev"] {
  left: 0;
}

.wa-slider__control[data-slide="next"] {
  right: 0;
}

.wa-slider__control:hover,
.wa-slider__control:focus {
  color: #fff;
  text-decoration: none;
  background: rgb(0 0 0 / 30%);
  outline: 0;
}

.wa-slider__control::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.wa-slider__control[data-slide="prev"]::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.wa-slider__control[data-slide="next"]::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* индикаторы */

.wa-slider__indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  margin: 0 15%;
  padding-left: 0;
  list-style: none;
}

.wa-slider__indicators li {
  flex: 0 1 auto;
  box-sizing: content-box;
  width: 30px;
  height: 5px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgb(255 255 255 / 50%);
  background-clip: padding-box;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  cursor: pointer;
}

.wa-slider__indicators li.active {
  background-color: rgb(255 255 255 / 90%);
}
