/* @import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;700&display=swap'); */

@font-face {
  font-family: 'Aquire';
  src:  url('../fonts/Aquire/Aquire-BW0ox.otf') format('woff'),
        url('../fonts/Aquire/AquireBold-8Ma60.otf') format('woff'),
        url('../fonts/Aquire/AquireLight-YzE0o.otf') format('woff');
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: Aquire, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

body {
  overflow: hidden; /* Hide scrollbars */
  background-color: rgb(0, 0, 29);
}

a {
  color: inherit;
  text-decoration: none;
}

header{
  position: sticky;
  z-index: 30;
  top: 0;
}

nav{
  display: flex;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(0, 0, 29);
}

.nav-menu-bars {
  display: flex;
  flex-direction: column;
  padding-right: 35px;
  row-gap: 6px;
  cursor: pointer;
}

.nav-menu-bars div {
  width: 40px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
}

.nav-menu-list {
  display: flex;
  flex-direction: column;
  
  position: fixed;
  top: 100px;
  width: 288px;
  row-gap: 24px;
  right: -288px;
  padding: 24px 16px;
  transition: all 0.2s;
  min-height: calc(100vh - 60px);
  background-color: rgba(0, 0, 29, 0.9);
}

.nav-menu-list.active{
  top: 100px;
  right: 0;
}

.NavItem {
  font-size: 18px; 
  position: relative;
  transition: all 0.2s;
  color: white;
}

.NavItem:hover{
  font-weight: bold;
  color: white;
}

.nav-item-container {
  padding-right: 100px;
}

@media screen and (min-width: 768px) {
  .nav-menu-bars{
      display: none;
  }
  .nav-menu-list{
      position: unset;
      flex-direction: row;
      min-height: fit-content;
      width: fit-content;
      column-gap: 24px;
      align-items: center;
  }
  .NavItem::before{
      content: '';
      position: absolute;
      width: 0%;
      height: 6px;
      bottom: -16px;
      left: 0;
      background-color: white;
      transition: all 0.2s;
  }

  .NavItem:hover:before{
      width: 100%;
  }

  .nav-item-container {
    padding-right: 100px;
  }
}

.nav-logo {
  padding-left: 35px;
  color: white;
  font-size: 64px;
}

