header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: transparent;
    width: 100%;
    margin: 0 auto;
    font-size: 22px;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    cursor: default;
  }

  .header-container{
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
  }


.last-section .footer.footer-ipad-height{
	max-height: 200px;
}
  nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }

  nav li.active a{
    color: #F2C2F7;
  }

  nav li.discover-bar{
    width: 216px;
  }
  
  nav li.faq{
    width: 46px;
  }

  nav li.contact-us{
    width: 118px;
  }

  nav li.about-us{
    width: 98px;
  }

  nav li.home{
    width: 60px;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    
    font-weight: 400; 
  }
  
  nav a:hover {
    font-weight: 700; 
    text-decoration: underline;
    color: #F2C2F7; 
  } 

  .auth-buttons{
    display: flex;
    gap: 15px;
  }

  .auth-buttons button{
    background-color: transparent;
    padding: 11px 18px;
    border: 1px solid #5BBDE0;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 22px;
  }

  .auth-buttons button:hover{
    background-color: #5BBDE0;
    border: 1px solid #5BBDE0;
    color: #000;
    font-weight: 900;
  }

  @media (max-width: 1366px) {
    header a, .auth-buttons button{
        font-size: 18px;
    }

    .header-container{
        width: 80%;
    }
  }

  @media (max-width: 1160px) {

    .header-container{
        width: 90%;
    }

    header a, .auth-buttons button{
        font-size: 15px;
    }

    nav li.discover-bar{
        width: 140px;
    }
    
    nav li.faq{
     width: 38px;
    }

    nav li.contact-us{
        width: 79px;
    }

    nav li.about-us{
        width: 67px;
    }

    nav li.home{
        width: 45px;
    }
    header{
        font-size: 14px;
    }
  }

  /* Hamburger Hidden by Default */
.hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 960px) {
    .hamburger {
      display: block;
    }

    .header-container{
        width: 90%;
    }

    nav li{
        width: auto !important;
    }
  
    nav {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: #111;
      display: none;
      text-align: center;
      z-index: 999;
    }
  
    nav ul {
      flex-direction: column;
      padding: 20px 0;
    }
  
    nav a {
      padding: 10px 0;
      display: block;
    }
  
    nav.active {
      display: block;
    }

    .auth-buttons button{
        padding: 11px 10px;
        font-size: 1rem;
    }

  }
  .innerTop a,  .innerTop i, .faqBx{color: #fff}
  
  .innerTop{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 90%;
    margin: 0 auto;
    color: #fff;
  }
  .faqBx .containclr {
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    color: #fff;
    padding-top: 10px;
  }

  *{
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standard syntax */
}

  .background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
  } 

  @media (max-width: 768px) {
    header{
      font-size: 1rem;
      padding: 10px 0;
    }

    .auth-buttons button{
        padding: 11px 10px;
        font-size: 1rem;
    }  
    .header-container{
        width: 90%;
    } 

    nav li{
        width: auto !important;
    }
  }