.textslider {
  padding: 90px 0;
}
.textslider__container-m {
  display: flex;
  align-items: flex-start;
  gap: 32px 75px;
  flex-wrap: wrap;
}
.textslider__section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 300px;
}
.textslider__section-head h2 {
  color: var(--darkred);
  margin-bottom: 10px;
}

.textslider__section-head .textslider__image {
  margin-top: 60px;
}

.textslider__section-head .textslider__video {
    margin-top: 60px;
    display: flex;
    width: 100%;
    height: 100%;
}

.textslider .textslider__base {
  flex: 1 300px;
}
.textslider .swiper.textslider-list .swiper-wrapper {
  align-items: stretch;
}
.textslider .textslider-slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
}
.textslider .textslider-slide__head {
  color: var(--darkred);
  margin-bottom: 15px;
}
.textslider .textslider-list__nav.slider-navigation-wrap {
  display: none;
  justify-content: flex-end;
  margin-top: 50px;
}

@media screen and (max-width: 1023px) {
  .textslider {
    padding: 60px 0;
  }
  .textslider__container-m {
    gap: 32px;
  }
  .textslider__section-head .textslider__image {
    margin-top: 32px;
  }

  .textslider__section-head .textslider__video {
    margin-top: 32px;
  }
}
@media screen and (max-width: 663px) {
  .textslider__section-head {
    flex: none;
    width: 100%;
  }
  .textslider .textslider__base {
    flex: none;
    width: 100%;
  }
  .textslider .swiper.textslider-list {
    overflow: visible;
    min-width: 0;
    width: 100%;
  }
  .textslider .swiper.textslider-list .swiper-wrapper {
    align-items: stretch;
  }
  .textslider .textslider-slide {
    max-width: 335px;
  }
  .textslider .textslider-list__nav.slider-navigation-wrap {
    display: flex;
    margin-top: 32px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}