.main-section {
  width: 100%;
  height: 100vh;
  position: relative;
}
.main-section__text {
  position: absolute;
  width: 100%;
  bottom: calc(50% - 30px);
  z-index: 9;
  display: block;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  z-index: 30;
}
.main-section__text span {
  display: block;
  margin-bottom: 20px;
  font-weight: 400;
}
.main-section__text span:last-child {
  margin-bottom: 0;
}
.main-section__text a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.main-section:before {
  content: "";
}
.main-section.open:before {
  opacity: 1;
}
.main-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
.main-section__bg-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
  display: none;
}
.main-section video.__mobile {
  display: none;
}
.main-section .video.__mobile {
  display: none;
}
.main-section .video.__desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.main-section .video.__desktop iframe {
  min-height: 100%;
  width: 120%;
  left: -10%;
  position: relative;
  height: 120%;
}
.main-section .video.__desktop:after{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
}
@media (max-width: 767px) {
  .main-section video.__mobile {
    display: block;
  }
  .main-section .video.__mobile {
    display: block;
  }
  .main-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 0;
    object-position: 50% 0;
  }
  .main-section .video.__mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 0;
    object-position: 50% 0;
  }
  .main-section .video.__mobile iframe{
    height: 100%;
    min-width: 120%;
    left: -10%;
    position: relative;
  }
  .main-section__bg {
      display: none;
  }
  .main-section__bg-mobile {
      display: block;
  }
}