@font-face {
  font-family: "Vectora";
  src: url("./fonts/VectoraLTStd-Roman.ttf") format("truetype"), url("./fonts/VectoraLTStd-Roman.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vectora";
  src: url("./fonts/VectoraLTStd-Light.ttf") format("truetype"), url("./fonts/VectoraLTStd-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vectora";
  src: url("./fonts/VectoraLTStd-Bold.ttf") format("truetype"), url("./fonts/VectoraLTStd-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Vectora";
}

/* Breakpoints */
/*
*   (C) 2021 Kieweg und Freiermuth Werbeagentur GmbH
*
*   Mixins File
*   
*   Predefined mixins for global usage
*/
/* Media Query Mixins */
#PremiereHero {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("background.jpg") center center no-repeat;
  background-size: cover;
}
#PremiereHero .content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  #PremiereHero .content {
    width: 100%;
  }
}
#PremiereHero .content h2, #PremiereHero .content h3 {
  margin: 0;
  font-size: 3vw;
  line-height: 3.5vw;
  text-transform: uppercase;
  padding: 0;
}
@media (max-width: 767px) {
  #PremiereHero .content h2, #PremiereHero .content h3 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 24px;
    line-height: 30px;
  }
}
#PremiereHero .content img {
  display: block;
  margin-top: 0.5vw;
  margin-bottom: 0.7vw;
}
#PremiereHero .content .premiere {
  width: 60vw;
}
@media (max-width: 767px) {
  #PremiereHero .content .premiere {
    width: 90vw;
  }
}
#PremiereHero .content .spacing {
  letter-spacing: -0.25vw;
}
#PremiereHero .content .badge {
  position: absolute;
  right: -9vw;
  bottom: -9vw;
}
#PremiereHero .content .badge img {
  width: 18vw;
}
@media (max-width: 767px) {
  #PremiereHero .content .badge {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
    margin-bottom: -200px;
  }
  #PremiereHero .content .badge img {
    width: 200px;
  }
}
#PremiereHero video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}