.short-video {
  position: relative;
  background-color: var(--color-gray-light);
  margin-bottom: 80px;
  overflow: hidden;
  background-image: url("https://storage.yandexcloud.net/ficomp/r3/compressed/short-video.webp");
  background-size: cover;
  background-position: center;

  width: 100vw;
  max-width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  max-height: 600px;
}

.short-video__content {
  color: white;
  width: min(90vw, 2000px);
  padding: 100px 0;
  position: relative;
  margin: 0 auto;
}

@media (min-width: 2000px) {
  .short-video__content {
    width: min(90vw, calc(100% - 160px));
  }
}

.short-video-play-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  box-shadow: 0px 0px 64px 0px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  transition: all 0.2s;
}
/* .short-video-play-icon:hover {
  transform: translateY(-50%) scale(1.1);
} */

.short-video__header {
  max-width: 800px;

  span {
    font-weight: 400;
  }
}
.short-video__header {
  cursor: pointer;
  display: block;
}

.short-video__description {
  max-width: 600px;
  margin-top: 20px;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.video-modal.open {
  display: flex;
}
.video-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}
.video-modal__content {
  position: relative;
  padding: 20px;
  max-width: 80vw;
  width: 90%;
  max-height: 90vh;
  z-index: 2;
}
.video-modal__close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  width: 20px;
  height: 20px;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.video-modal__video {
  width: 100%;
  height: auto;
}


@media (max-width: 990px) {
  .short-video-play-icon {
    right: auto;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
  }
  .short-video-play-icon:hover {
  transform: translate(-50%, -50%); scale(1.1);
}
  .short-video__content {
    padding: 100px 0 550px 0;
  }
  .short-video {
    margin-bottom: 40px;
  }
}