.slider-container {
  position: relative;
  width: 730px; /* Ширина контейнера */
  height: 250px; /* Высота контейнера */
  overflow: hidden;
  border-radius: 5px;
  display: inline-block;
}

.slider {
  width: 730px;
  height: 250px;
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slide {
  flex: 0 0 730px; /* Ширина и высота слайда */
  width: 730px;
  height: 250px;
  text-align: center;
  background-size: cover;
  position: relative;
}

.slider-dots {
text-align: center;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #ff5722;
}
.slide > .but-s{
  width: 150px;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #0099da;
  padding: 15px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  border-radius: 4px;
  text-decoration: none;
}

.slide > h2{
  width: 350px;
  display: block;
  position: absolute;
  top: 30px;
  left: 10px;
  padding: 5px;
  color: #fff;
  font-size: 30px;
  text-align: left;
  font-weight: 700;
  border-radius: 5px;
}