.ViewPortSection {
  min-height: 100vh;
  position: relative;
}
.ViewPortSection__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.ViewPortSection__image,
.ViewPortSection__image img,
.ViewPortSection__image video,
.ViewPortSection__image picture {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ViewPortSection__container {
  padding: 36px 12px;
  position: relative;
  min-height: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.ViewPortSection__container.__center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ViewPortSection__container.__left {
  -webkit-box-pack: left;
  -webkit-justify-content: left;
     -moz-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.ViewPortSection__container.__right {
  -webkit-box-pack: right;
  -webkit-justify-content: right;
     -moz-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.ViewPortSection__container.__middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ViewPortSection__container.__top {
  -webkit-box-align: top;
  -webkit-align-items: top;
     -moz-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}
.ViewPortSection__container.__bottom {
  -webkit-box-align: bottom;
  -webkit-align-items: bottom;
     -moz-box-align: bottom;
      -ms-flex-align: bottom;
          align-items: bottom;
}
.ViewPortSection__content {
  position: relative;
  z-index: 1;
}
