*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: sans-serif;
    min-height: 320px;
}

body{
    background: #fff;
    position: relative;
    display: block;
    width: 100%; 
    height: 100%;
    background-size: auto auto;
    font-size: 78%;
    /*background-size: 10% 70%;*/
    left: 0;
    top: 0;
    color: #000;
}

body > .disclaymer-wrapper{
   
    position: relative;
    min-height: 400px;
    width: 100%;
    text-align: center;
    height: 100%;
    display: block;
    vertical-align: middle;
}

.disclaymer{
    width: 100%;
    background: transparent url(../../images/newinterhouse/new-interhouse-compact-logo.svg) 50% 25% no-repeat;
    background-size: auto 140px;
    top: auto;
    position: absolute;
    bottom: 40%;
   /* pointer-events: none;*/

}

.disclaymer h1{
    color: #e04f60;
    font-weight: 600;
    padding-top: 190px;
    text-transform: uppercase;
    /*display: none;*/
}

.disclaymer h2{
    -webkit-font-smoothing: auto;
    color: #614c44;
    font-weight: 300;
}

/* Portrait */
@media only screen 
  and (max-device-width: 580px){
      body{
          font-size: 10pt;
      }
      .disclaymer{
          background-size: auto 100px;
          
      }
      
      .disclaymer h1{
          font-size: 16pt;
          padding-top: 140px;
      }
      
      .disclaymer h2{
          font-size: 12pt;
      }
}


/* VIDEO */

fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
    /*pointer-events: none;*/
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}

video::-webkit-media-controls-start-playback-button {
    display: none;
}



/* Landscape */
@media only screen 
  and (max-device-width: 480px)
  and (orientation: landscape){   
      body{
          background-position: 50% 130%;
          background-size: auto 50%
      }
      .disclaymer{
          top: 5%;
          background-size: auto 80px;
      }
      
      .disclaymer h1{
          font-size: 14pt;
          padding-top: 120px;
      }
      
  }