.mainVideos-slider-wrapper {
  margin-top: 30px;
}

.video {
  position: relative;
}

.icon.mainDoctorVideo-img__play-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mainDoctorVideo-img__play-icon svg {
  fill: var(--orange);
  transition: 0.15s linear;
}

.video:hover .mainDoctorVideo-img__play-icon svg {
  fill: var(--white);
}

.mainVideos-prev,
.mainVideos-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mainVideos-prev {
  left: -70px;
}
.mainVideos-next {
  right: -70px;
}

@media (max-width: 1279px) {
  .mainVideos-prev {
    left: -30px;
  }
  .mainVideos-next {
    right: -30px;
  }
}

@media (max-width: 575px) {
  .mainVideos-prev,
  .mainVideos-next {
    display: none;
  }

  .video {
    max-width: 70%;
  }
}
