.section-videos {
  background: url("img/bg.png") no-repeat;
  background-size: cover;
}
.section-videos__slider {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.section-videos__slider-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.section-videos__item {
  max-width: 440px;
  margin: 0 auto;
}
.section-videos__item-preview {
  display: block;
  position: relative;
}
.section-videos__item-preview img {
  max-width: 100%;
  display: block;
}
.section-videos__item-preview:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35) url("img/play-circle.svg") no-repeat center;
  background-size: 60px;
  pointer-events: none;
  transition: all 200ms;
}
.section-videos__item-preview:hover:after {
  background-size: 75px;
}
.section-videos__item-text {
  margin-top: 25px;
  text-align: center;
  line-height: var(--lh-text);
  font-size: var(--fz-text);
  color: #212529;
}
.section-videos__item-name {
  line-height: var(--lh-text-h);
  font-size: var(--fz-text-h);
  font-weight: 700;
}
.section-videos__item-name:not(:last-child) {
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .section-videos__item-text {
    margin-top: 25px;
    padding: 0 15px;
  }
}
