/* ------------ reset css ------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: OceanSansStd;
  src: url(../fonts/OceanSansStd-Semibold.otf);
}
.hide {
  display: none;
}
article {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*
VIDEO STYLE OLD
.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.video-container video {
  min-width: 100%; 
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.video-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden; 
  background: #000;
}
.video-container video {
  width: auto;
  height: 100vh;
}*/

.video-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: black;
  opacity: 0.2;
  z-index: 99;
}
.overlay-logo {    
  position: absolute;
  height: auto;
  width: 300px;
  z-index: 999;
  transition: all 5s ease;
  top: 50%;
  left: 50%;
  transform: translate( -50%,-50%);
}
.overlay-logo.animate-width {
  width: 150px;
  /*top: 20px;*/
  /*transform: translate( 0%,0%);*/
}
.overlay-logo.animate-top {
  top: 20px;
  transform: translate( -50%,0%);
}
.menu { display: none; }
.overlay-message {
  position: absolute;
  bottom: 30px;
  color: white;
  font-family: OceanSansStd;
  font-size: 20px;
}

