/* 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;
 z-index: 10;
}

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

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

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

/* 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;
  }
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1; /* same behavior as videos behind content */
}

/* Desktop background */
.bg-desktop {
  background-image: url('background.png');
}

/* Mobile background */
.bg-mobile {
  background-image: url('background.png');
}

/* Only show the correct one per device */
@media (max-width: 768px) {
  .bg-desktop { display: none; }
}
@media (min-width: 769px) {
  .bg-mobile { display: none; }
}

button#fake-subscribe {
    border:none;    border: 0px;background:none;color:#f5f1eb;
    padding: 12px 10px 10px 10px;font-size:14px;
}