* {
  padding: 0;
  margin: 0;
  outline: none;
  border: 0;
  list-style: none;
}

@font-face {
  font-family: 'OratorStd';
  src: local("OratorStd"), local("OratorStd"), url("../fonts/OratorStd.woff2") format("woff2"), url("../fonts/OratorStd.woff") format("woff"), url("../fonts/OratorStd.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  font-size: 16px;
}

p, li, a, h1, h2, h3, h4, h5, h6 {
  font-family: "OratorStd", sans-serif;
}

.layout {
  height: 100vh;
  background: #fff;
  color: #000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  height: 15vh;
}
header h1 {
  overflow: hidden;
  height: 6vh;
  width: 100%;
  background: url("img-interface/logo.png") no-repeat center center;
  background-size: contain;
  text-indent: -9999px;
}

main {
  height: 65vh;
  margin-bottom: 3vh;
}
@media screen and (max-width: 800px) {
  main {
    height: 45vh;
  }
}
main .player .controls-wrapper {
  display: none !important;
}
main .video-container {
  height: 100%;
  position: relative;
  overflow: hidden;
}
main .video-container video, main .video-container iframe {
  /*object-position: center center;
  object-fit: fill;*/
  display: block;
  /*max-height: 65vh;*/
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

footer {
  /*display: flex;
  align-items: flex-end;
  justify-content: center;*/
  height: 15vh;
}
footer nav {
  display: block;
  width: 100%;
  margin-bottom: 8vh;
}
footer nav ul {
  display: flex;
  justify-content: center;
}
footer nav li {
  position: relative;
  padding: 0 1rem 0.5rem;
  font-size: .9rem;
}
footer nav li:after {
  content: '/';
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(50%);
}
footer nav li:last-of-type:after {
  content: none;
}
footer nav a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
}
footer nav a:before {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  background: #000;
  height: 1px;
  -webkit-transition: right 0.25s;
  -moz-transition: right 0.25s;
  -ms-transition: right 0.25s;
  -o-transition: right 0.25s;
  transition: right 0.25s;
}
footer nav a:hover:before {
  right: 0;
}
footer .center {
  text-align: center;
  display: block;
  width: 100%;
}
footer .center p {
  font-size: .9rem;
  padding-bottom: 1.5rem;
  text-transform: uppercase;
}

/**-----RESPONSIVE TABLET-----*/
@media screen and (max-width: 1100px) {
  main .video-container video {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  header h1 {
    margin: 0;
  }
  header nav ul {
    flex-direction: column;
    text-align: center;
  }
  header nav li::after {
    content: '';
  }
}
/**-----RESPONSIVE MOBILE-----*/
@media screen and (max-width: 700px) {
  header {
    padding: 0 2rem;
  }

  footer nav li::after {
    display: none;
  }
  footer nav ul {
    display: block;
    text-align: center;
  }
}
