/* Fonts */
@font-face {
  font-family: 'GrotesqueMTStdLight';
  src: url('grotesquemtstd-light.eot');
  src: url('grotesquemtstd-light.eot?#iefix') format('embedded-opentype'),
       url('grotesquemtstd-light.woff') format('woff'),
       url('grotesquemtstd-light.ttf') format('truetype'),
       url('grotesquemtstd-light.svg#GrotesqueMTStdLight') format('svg');
}

/* Reset */
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'GrotesqueMTStdLight', sans-serif;
}

/* Background Videos */
#myVideo1,
#myVideo2 {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  display: none;
}

#myVideo1 {
  display: block;
}

@media (max-width: 697px) {
  #myVideo1 {
    display: none;
  }
  #myVideo2 {
    display: block;
  }
}

/* Centering the container */
.center-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Logo Styles */
.logo,
.logo2 {
  width: 520px;
  max-width: 90vw;
}

@media (max-width: 997px) {
  .logo,
  .logo2 {
    width: 320px;
  }
}

@media (max-width: 697px) {
  .logo,
  .logo2 {
    width: 300px;
  }
}

/* Fade-in Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

.fade-in.logo {
  animation-delay: 0.5s;
}

.fade-in.logo2 {
  animation-delay: 2s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}