body {
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 100vw;
  font-family: 'Oswald', sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
     
.header {
  width: 100%;
  max-width: 100vw;
  position: fixed;
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.45);
  box-shadow: none;
  top: 0;
  left: 0;
  z-index: 15;
  >img {
    max-width: 80px;
    margin: 0 10px;
  }
  >div {
    padding: 0 20px;
    width: calc(60% - 80px);
    display: flex;
    flex-direction: row;
    color: white;
    align-items: center;
    >a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      cursor: pointer;
    }
    >a:hover {
      color: #00E016;
      
    }
  }
  >.header-left-nav {
    justify-content: start;
    >a {
      margin-right: 30px;
    }
  }
  >.header-right-nav {
    justify-content: end;
    >a {
      margin-left: 30px;
    }
  }
}


.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  margin-right: 20px;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: #00E016;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Стилі мобільного меню */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 45vw;
  max-width: 320px;
  height: 100%;
  background-color: #121B19;
  color: white;
  padding: 20px;
  z-index: 19;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-transform: uppercase;
  transition: right 0.3s ease;
}

.mobile-menu.active {
  right: 0;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
  >img {
    margin-top: 50px;
    max-width: 80px;
    justify-self: start;
  }
}

.mobile-menu-nav a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-nav a:hover {
  color: #00E016;
}

 
@media (max-width: 960px) {

  .header {
    justify-content: end;
    align-items: center;
    .logo {
      display: none;
    }
    >.header-right-nav {
      display: none;
    }
    >.header-left-nav {
      display: none;
   }
  }
  .burger {
    display: flex;
  }

  .mobile-menu-header {
    width: 100%;
    >.logo {
      display: block;
    }
  }
 
}

@media (max-width: 720px) {
  /* стилі для екранів до 720px */
}