body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.content {
  position: fixed;
  top: 0;
  left:  0;
  color: #fff;
  width: 100%;
  padding: 3%;
  text-align: left;
  /* float: right; */
}

.content img {
  max-width: 70px;
  height: auto;
}

.content_contact {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 3%;
  text-align: right;
  color: #fff;
  line-height: 1.3em;

}

/* unvisited link */
a:link {
  color: #fff;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #fff;
}

/* mouse over link */
a:hover {
  color: #b5ba06;
}

/* selected link */
a:active {
  color: #fff;
}


.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

.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%;
  }
}

@media (max-width: 767px) {
  .fullscreen-bg {
    /* background: url('background.jpg') center center / cover no-repeat; */
  }

  .fullscreen-bg__video {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: auto;
    left: -125%;
  }


  @media only screen and (max-width: 600px) {

    .content {
      position: fixed;
      top: 0;
      left: 0;
      color: #b5ba06;
      /* width: 100%; */
      padding: 4%;
      text-align: left;
      float: left;
    }

    .content_contact {

      left: 0;
      padding: 4%;
      text-align: left;


    }
  }

}