.slider {
  position: relative;
  margin:0 auto 10px auto;
  max-width:100%;
}

.slider__container {
  overflow: hidden;
}

.slider__wrapper {
  overflow: hidden;
  border-radius:10px;
}

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

.slider_disable-transition {
  transition: none;
}

.slider__item {
  flex: 0 0 100%;
  width: 100%;
  height: 500px;
  user-select: none;
  will-change: transform;
}
.bg_slide1, .bg_slide2, .bg_slide3, .bg_slide4, .bg_slide5, .bg_slide6 {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position:center;
}
.bg_slide1 {
  background-image: url(https://130.com.ua/images/slide1-bg.jpg);
}
.bg_slide2 {
  background-image: url(https://130.com.ua/images/slide2-bg.jpg);
}
.bg_slide3 {
  background-image: url(https://130.com.ua/images/slide3-bg.jpg);
}
.bg_slide4 {
  background-image: url(https://130.com.ua/images/slide4-bg.jpg);
}
.bg_slide5 {
  background-image: url(https://130.com.ua/images/slide5-bg.jpg);
}
.bg_slide6 {
  background-image: url(https://130.com.ua/images/slide6-bg.jpg);
}
.slider__item > a > img, .slider__item > img {
  display:block;
  width: 952px;
  height: 500px;
  margin: 0 auto;
  border-radius: 10px;
}

.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;
}

.slider__control_hide {
  display: none;
}

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

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

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

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

.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");
}

.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");
}

/* Slide Indicators */

.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;
}

.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;
}

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

@media screen and (max-width: 1300px) {
  .slider {
    max-width:762px;
  }
  .slider__item, .slider__item img {
    width: 762px;
    height: 400px;
  }
  .slider__item > a > img {
    width: 762px;
    height: 400px;
  }
}
@media screen and (max-width: 760px) {
  .slider {
    max-width:572px;
  }
  .slider__item, .slider__item img {
    width: 572px;
    height: 300px;
  }
  .slider__item > a > img {
    width: 572px;
    height: 300px;
  }
}
@media screen and (max-width: 570px) {
  .slider {
    max-width:350px;
  }
  .slider__item, .slider__item img {
    width: 350px;
    height: 184px;
  }
  .slider__item > a > img {
    width: 350px;
    height: 184px;
  }
}

@media screen and (max-width: 420px) {
  .slider__item p.slide_header {
    font-size:1.5rem;
    line-height:1.6rem;
    left:5px;
    right:5px;
    height:52px;
  }
  .slider__item p.slide_sub_header {
    top:50%;
    left:5px;
    right:5px;
    height:39px;
  }
  .slider__item a {
    top:65%;
    left:5px;
  }
}