

@font-face {
  font-family: visoki;
  src: url(fonts/Deutschlander-O5we.ttf);
}

@font-face {
    font-family: light;
    src: url(fonts/TerminaTest-Light.otf);
}


@font-face {
    font-family: extralight;
    src: url(fonts/TerminaTest-ExtraLight.otf);
}



@font-face {
    font-family: reg;
    src: url(fonts/TerminaTest-Regular.otf);
}

@font-face {
    font-family: mid;
    src: url(fonts/TerminaTest-Medium.otf);
}

@font-face {
  font-family: demi;
  src: url(fonts/TerminaTest-Demi.otf);
}

@font-face {
  font-family: bold;
  src: url(fonts/TerminaTest-Bold.otf);
}
body {
    margin: 0;
    font-family: light;
    background-color: rgb(6, 6, 6);
    
}

.menu {
    position: fixed;
    z-index: 9999999999;
    min-width: 100%;
    display: flex;
    background: linear-gradient(to top, transparent 0%, rgb(7, 7, 7) 100%);
    justify-content: space-between;
    top: 0;
    width: 100vw;
    height: 6rem;
    align-items: center;
    margin: 0;
    padding: 0;
    left: 0;
    
}
.nav-container {
    position: absolute;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    padding: 0rem;
    margin: 0;
    flex-wrap: wrap; /* Add this line */
}

.nav-item-container {
    position: relative;
    display: inline-flex; /* Add this line */
    margin: 0 1.5rem;

  }
  


.logo img {
    width: 3.7rem ;
    padding: 0rem 2rem;
    fill: gold;
}

.nav-item a {
    text-decoration: none;
    color: rgb(255, 255, 255) !important;
    padding-bottom: 5px;
    white-space: nowrap;
    opacity: 0.6; /* Add this line */
    transition: 0.3s;
  }
  
  .nav-item.active a {
    opacity: 1; /* Add this line */
  }
  
  .nav-item a:hover {
      opacity: 1;
  }


.underline {
    position: absolute;
    height: 1px;
    background-color: rgb(208, 198, 55);
    transition: all 0.3s ease;
}

.button-wrapper {
    padding: 0rem 2rem;
    z-index: 9;
    display: flex;
    gap: 0.7rem;
}

  .nav-button {
    border-radius: 20rem;
    height: 1.35rem;
    display: flex;
    align-items: center;
    border: none;
    padding: 0rem 0.2rem;
    
  }
  
  .nav-button .button-text {
    max-width: 0;
    overflow: hidden;
    transform: translateX(0.2rem);
    transition: max-width 0.4s, padding 0.4s;
  }
  
  .nav-button i, .nav-button .button-text {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
  }

  .nav-button:nth-child(1) img {
      width: 1.5rem;
      transform: translateX(-0.05rem);
      height: 1.6rem;
  }
  .nav-button:nth-child(2) img {
    width: 1.45rem;
    height: 1.55rem;
}

  .button-text {
    display: inline-block;
    font-size: 0.9rem;
    vertical-align: middle;
    font-family: reg;
    white-space: nowrap;
  }
  
  .nav-button:hover .button-text {
    margin-right: 0;
    max-width: 200px;
    padding: 0rem 0.5rem;
  }
  

  
  .switch {
    position: relative;
    display: inline-block;
    margin: 0 5px;

  }
  
  .switch > span {
    position: absolute;
    top: 0.3rem;
    pointer-events: none;
    font-family: 'mid', Arial, sans-serif;
    font-weight: bold;
    font-size: 0.6rem;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: 50%;
    text-align: center;
  }
  
  input.check-toggle-round-flat:checked ~ .off {
    color: #ffffff;
  }
  
  input.check-toggle-round-flat:checked ~ .on {
    color: rgb(0, 0, 0);
  }
  
  .switch > span.on {
    left: 0;
    padding-left: 2px;
    color: #ffffff;
  }
  
  .switch > span.off {
    right: 0;
    padding-right: 4px;
    color: rgb(0, 0, 0);
  }
  
  .check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
  }
  .check-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  input.check-toggle-round-flat + label {
    padding: 2px;
    width: 4rem;
    height: 1.1rem;
    background-color: #ffffff;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
  }
  input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
    display: block;
    position: absolute;
    content: "";
  }
  
  input.check-toggle-round-flat + label:before {
    top: 2px;
    left: 3px;
    bottom: 2px;
    right: 2px;
    background-color: #ffffff;
    -webkit--moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
  }

  input.check-toggle-round-flat + label:after {
    top: 2px;
    left: 3px;
    bottom: 2px;
    width: 2rem;
    background-color: rgb(0, 0, 0);
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
  }
  
  input.check-toggle-round-flat:checked + label:after {
    margin-left: 1.8rem;
  }

  .mobilemenu {
    width: 100vw;
    height: 10vh;
    position: fixed;
    left: 0;
    top: 1rem;
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
  }

  .burger {
    display: none;
  }

  @media (max-width: 767px) {




    .nav-container {
      position: fixed;
      top: 0;
      display: flex;
      left: 0;
      height: 100vh;
      background-color: black;
      z-index: 0;
      align-items: center;
      
  }
    .nav-links {
      position: absolute;
      width: 100vw;
      display: flex;
      flex-direction: column;
      display: flex;
      top: 15vh;
      justify-content: center;
      text-align: left;


      
  }

  .nav-item-container {
    display: flex;
    left: 8%;    
    padding: 1rem 0rem;
    margin: 0;
    font-family: light;
    font-size: 1.1rem;


  }




.nav-item a{
  color: rgb(255, 255, 255) !important;
  


}
.nav-item.active a{
    border-bottom: 1px solid gold;
    padding-bottom: 0rem;


  }


    .nav-button:nth-child(1) {
      display: none;
    }


    .nav-button:nth-child(2) {
      display: none;
    }
    .logo {
      transform: scale(0.9);
      z-index: 999999999999999999999999999999;
    }

    


   
    
  
  
    .burger {
      position: relative;
      margin-top: 0.3rem;
      width: 22px;
      height: 14px;
      cursor: pointer;
      transform: scale(1.2);
      background: transparent;
      border: 0;
      outline: none;
      display: flex;
    }

    .burger span {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 0.5px;
      transition: all 0.2s, background 0s;
      background: rgb(215, 215, 215);
    }
    .burger span:nth-child(2) {
      top: 6px;
    }
    .burger span:last-child {
      top: 12px;
    }
    
    .nav-open span:first-child, .nav-open span:last-child {
      top: 8px;
    }
    .nav-open span:first-child   {
      transform: rotate(45deg);
    }
    .nav-open span:last-child   {
      transform: rotate(-45deg);
    }
    .nav-open span:nth-child(2)    {
      opacity: 0;
      visibility: hidden;
    }
    
    .hidden {
      display: none;
    }
  
  
  
  
    .nav-container {
      /* Assuming a 1s animation, modify to your needs */
      transition: clip-path 0.4s ease-in-out;
      clip-path: inset(0 0 0 100%);
  }
  
  .nav-container.closed {
      clip-path: inset(0 0 0 0);
  }
  

  }



  

  .nav-button {
    padding: 0.1rem 0.25rem!important;
  }
