.video-bg {
  position: relative;
  color: #fff;
}
.video-bg__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: min(52.8vw, 760px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.video-bg__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.video-bg__bg > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: var(--mask-desktop);
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: var(--mask-desktop);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}
.video-bg__bg > span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: var(--mask-desktop);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.video-bg__content {
  max-width: 27.5rem;
}
.video-bg__title {
  margin-bottom: 1.5rem;
  font-size: max(2.5rem, 12px);
  line-height: 98%;
}
.video-bg__title > * {
  color: #fff;
}
.video-bg__button {
  margin-top: 1.5rem;
}
.video-bg__button .btn {
  width: 100%;
  max-width: 100%;
}
.video-bg .section-text {
  font-size: max(1.125rem, 14px);
  line-height: normal;
}
@media (max-width: 768px) {
  .video-bg__bg > video {
    -webkit-mask-image: var(--mask-mobile, var(--mask-desktop));
    mask-image: var(--mask-mobile, var(--mask-desktop));
  }
  .video-bg__bg > span {
    background-image: var(--mask-mobile, var(--mask-desktop));
  }
  .video-bg__container {
    min-height: min(131.3vw, 650px);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 45px 0;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .video-bg__title {
    max-width: 314px;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    line-height: 98%;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .video-bg .section-text {
    max-width: 298px;
    font-size: 14px;
    line-height: normal;
  }
  .video-bg__button {
    margin-top: 14px;
  }
  .video-bg__content {
    width: 100%;
  }
  .video-bg .section-text {
    max-width: 314px;
    margin-left: auto;
    margin-right: auto;
  }
}