@font-face {
  font-family: 'Brandon_Grotesque bold';
  src: url('../fonts/HvDTrial_Brandon_Grotesque_bold-BF64a625c9151d5.otf') format('opentype');
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Brandon_Grotesque bold';
}

body {
  width: 100%;
}

/* LOGO STRIP */
.zx9-logo-strip {
  width: 100%;
  padding: 2vh 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.zx9-logo-strip img {
  width: 6vw;
  height: auto;
}

/* MAIN IMAGE SECTION */
.zx9-main {
  height: 85vh;
  width: 100%;
  background: url('../images/Deskstop.png') no-repeat center/cover;
}

/* MOBILE BG */
@media (max-width: 768px) {
  .zx9-main {
    height: 85vh;
    background: url('../images/mobile.png') no-repeat center/cover;
  }
}

/* FOOTER STRIP */
.zx9-footer-strip {
  width: 100%;
  padding: 2vh 0;
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 0.9rem;
}

.zx9-footer-strip a {
  color: #fff;
  text-decoration: none;
}

/* AGE GATE */
.zx9-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.60);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.zx9-box {
  width: 90%;
  max-width: 400px;
  padding: 2rem 2rem;
  background: #11111194;
  border-radius: 1rem;
  text-align: center;
  color: #fff;
}

.zx9-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.zx9-buttons {
  display: flex;
  gap: 2vw;
  justify-content: center;
}

.zx9-btn {
  padding: 0.5rem 1rem;
  font-size: 1.35rem;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  width: 40%;
}

.zx9-yes {
  background: #8ead52;
  color: #fff;
}

.zx9-no {
  background: #e3bb3f;
  color: #fff;
}

.zx9-hidden {
  display: none;
}

@media (max-width: 768px) {

  .zx9-logo-strip img {
    width: 25vw;
    height: auto;
  }

  .zx9-btn {
    padding: 0.6rem 1rem;
    font-size: 1.45rem;
  }

  /* FOOTER STRIP */
  .zx9-footer-strip {
    font-size: 1.1rem;
  }
}