@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 */
    .ag-logo-strip {
      width: 100%;
      padding: 2vh 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #fff;
    }

    .ag-logo-strip img {
      width: 6vw;
      height: auto;
    }

    /* MAIN IMAGE SECTION */
    .ag-main {
      height: 85vh;
      width: 100%;
      background: url('../images/Deskstop.png') no-repeat center/cover;
    }

    /* MOBILE BG */
    @media (max-width: 768px) {
      .ag-main {
        height: 85vh;
         background: url('../images/mobile.png') no-repeat center/cover;
      }
    }

    /* FOOTER STRIP */
    .ag-footer-strip {
      width: 100%;
      padding: 2vh 0;
      text-align: center;
      background: #000;
      color: #fff;
      font-size: 0.9rem;
    }

    .ag-footer-strip a {
      color: #fff;
      text-decoration: none;
    }

    /* AGE GATE */
    .ag-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;
    }

    .ag-box {
      width: 90%;
      max-width: 400px;
      padding: 2rem 2rem;
      background: #11111194;
      border-radius: 1rem;
      text-align: center;
      color: #fff;
    }

    .ag-box h2 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .ag-buttons {
      display: flex;
      gap: 2vw;
      justify-content: center;
    }

    .ag-btn {
      padding: 0.5rem 1rem;
      font-size: 1.35rem;
      border: none;
      cursor: pointer;
      border-radius: 0.5rem;
      width: 40%;
    }

    .ag-yes {
      background: #8ead52;
      color: #fff;
    }

    .ag-no {
      background: #e3bb3f;
      color: #fff;
    }

    .hidden {
      display: none;
    }
    
    @media (max-width: 768px) {
           .ag-logo-strip img {
      width: 25vw;
      height: auto;
    }

    .ag-btn {
      padding: 0.6rem 1rem;
      font-size: 1.45rem;
    
    }
    
     /* FOOTER STRIP */
    .ag-footer-strip {
      font-size: 1.1rem;
    }
    }