.slide-container {
  width: 100%;
  /*max-height: 500px;*/
  /*height: 500px;*/
  direction: ltr;
}

.sliders {
  width: 100%;
  height: auto;
  display: flex!important;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--color-bgbtn);
  overflow: hidden;
}

.slider__left {
  display: inline-block;
  width: 40%;
  min-width: 320px;
  height: 500px;
}

.slider-bg1 {
  background: url("../../assets/img/man11.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slider-bg2 {
  background: url("../../assets/img/man7.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slider-bg3 {
  background: url("../../assets/img/man8.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 300px) {
  .slider__left {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .slider__left {
    display: inline-block;
    width: 44%;
    min-width: 320px;
  }
}

.slider__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 56%;
  background: var(--color-bgbtn);
  height: 500px;
}

@media (min-width: 300px) {
  .slider__right {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .slider__right {
    width: 56%;
  }
}

.slider__right-txt {
  margin: 0 auto;
  padding: 20px 0;
  width: 100%;
  text-align: center;
}

.slider__title-main {
  text-align: center;
  font-size: 36px;
  color: var(--color-bg);
  margin-bottom: 40px;
}

.slider__title {
  text-align: center;
  font-size: 40px;
  color: var(--color-bg);
}

.slider__subtitle {
  text-align: center;
  color: var(--color-bg);
  font-size: 30px;
  font-weight: 300;
}

.slider__button {
  background: var(--color-bgbtn-b);
  color: var(--color-bg);
  width: 140px;
  border-radius: 22px;
  transition: all .5s;
}

.slider__button:hover {
  background: var(--color-bth-hover);
  color: var(--color-bg);
  border: 1px solid var(--color-txt);
  transition: all .5s;
}

