/*** T H E - M A G I C - O F - O B J E C T - F I T ***/
/*****************************************************/
.video-container {
  height: 50vh;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) {
  .video-container {
    height: 100vh;
  }
}

video {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

/*** F O N T S ***/
/***************************/
@font-face {
    font-family: GraphikRegular;
    font-weight: normal;
    font-style : normal;
    src        : url('font/Graphik-Regular.otf') format('opentype');
}

@font-face {
    font-family: GraphikLight;
    font-weight: normal;
    font-style : normal;
    src        : url('font/Graphik-Light.otf') format('opentype');
}

@font-face {
    font-family: GraphikMedium;
    font-weight: normal;
    font-style : normal;
    src        : url('font/Graphik-Medium.otf') format('opentype');
}

@font-face {
    font-family: GraphikBold;
    font-weight: normal;
    font-style : normal;
    src        : url('font/Graphik-Bold.otf') format('opentype');
}

@font-face {
    font-family: GraphikBlack;
    font-weight: normal;
    font-style : normal;
    src        : url('font/Graphik-Black.otf') format('opentype');
}

/*** A E S T H E T I C S ***/
/***************************/
* {
  box-sizing: border-box;
}

body {
  background: #333;
  color: white;
}

.video-container:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

h1 {
  /*text-transform: uppercase;*/
  font-weight: 900;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1;
  font-family: GraphikMedium;
  /*font-family: Futura, Helvetica, sans-serif;*/
  font-size: 10vw;
  letter-spacing: -0.05em;
}
@media (max-width: 400px) {
  h1 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 150px;
  }
}

.callout {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
}

.support {
  position: fixed;
  /*text-decoration:none;*/
  color: white;
  bottom: 0px;
  font-size: 20px;
  text-transform: uppercase;
  right: 0px;
  letter-spacing: 1px;
  text-align: right;
  position: relative;
  z-index: 10;
  font-family: GraphikLight;
}
.support a {
  color: white;
  text-decoration: none;
  /*position: relative;*/
  display: inline-block;
  /*margin-top: 10px;*/
}
.support a:before {
  display: block;
  position: absolute;
  content: "";
  bottom: -2px;
  width: 0;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}
.support a:hover:before {
  width: 100%;
}
