.hs-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hs-slider-container {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.hs-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.hs-slide-radio {
  display: none;
}

.hs-slider-nav {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hs-slide-label {
  cursor: pointer;
  padding: 5px;
}

.hs-slide-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
}

.hs-slide-indicator.active {
  background: #333;
}

.hs-slide-image {
  width: 100%;
  height: auto;
  display: none;
}

.hs-slide-image__desktop {
  display: none;
}
.hs-slide-image__mobile {
  display: block;
}

@media screen and (min-width: 768px) {
  .hs-slide-image__desktop {
    display: block;
  }
  .hs-slide-image__mobile {
    display: none;
  }
}