.mgv-home-video-process{
  position: relative;
  height: 550px;
  width: 100%;
  overflow: hidden;
}

.mgv-home-video-process__bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.mgv-home-video-process__bg iframe{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mgv-home-video-process__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,.18);
}

.mgv-home-video-process__content{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.mgv-home-video-process__content-inner{
  width: 100%;
  max-width: 520px;
  padding: 28px 30px;
  background: rgba(7, 87, 91, 0.78);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: -3px 3px 10px rgba(0,0,0,.28);
  text-align: left;
  backdrop-filter: blur(2px);
}

.mgv-home-video-process__title{
  margin: 0 0 12px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  color: #fff;
}

.mgv-home-video-process__text{
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.5;
  color: rgba(255,255,255,.94);
}

@media (max-width: 575px){
  .mgv-home-video-process{
    height: 290px;
  }

  .mgv-home-video-process__content{
    padding: 0 16px;
    justify-content: center;
  }

  .mgv-home-video-process__content-inner{
    max-width: 100%;
    padding: 22px 18px;
  }

  .mgv-home-video-process__title{
    font-size: 2rem;
  }

  .mgv-home-video-process__text{
    font-size: 1rem;
  }
}