.header {
  z-index: 1000;
  width: 100vw;
  max-width: 100vw;
  height: 112px;
  background-color: var(--header-color);
  border: 2px solid var(--gray-color);
  padding: 24px 96px 24px 64px;
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(24px);
}

.logo {
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  padding-bottom: 1px;

  .burgerBtn{
    display: none;
  }

  img {
    width: 186px;
    height: 33px;
  }
}

.nav-bar {
  display: flex;
  width: 945px;
  height: 64px;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;

  a{
    border-radius: 12px;
    padding: 18px 24px;
    gap: 10px;
    background-color: var(--dark-color);
    color: var(--light-gray-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-family: var(--roboto-mono-font);
    font-weight: 500;
    width: fit-content;
    white-space: nowrap;
    transition: color 0.3s ease;
  }

  .nav-item{
    background-color: var(--btn-bgc-idle);
    color: var(--btn-txt-idle);
    border: none;
  }

  .nav-item:hover{
    background-color: var(--btn-bgc-hover);
    color: var(--btn-txt-hover);
    border: 2px solid var(--btn-border-hover);
  }

  .contact-us{
    background-color: var(--pp-btn-bgc-idle);
    color: var(--pp-btn-txt-idle);
  }

  .contact-us:hover{
    background-color: var(--pp-btn-bgc-hover);
    color: var(--pp-btn-txt-hover);
  }

  .home-btn{
    color: var(--logo-color);
  }

  .home-btn:hover{
    border: 2px solid var(--logo-color);
  }
}

@media screen and (max-width: 786px) {
  .header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 16px;
    align-items: center;
    justify-content: start;
    background: none;
    border: none;
  }

  .nav-bar {
    width: 100vw;
    height: auto;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    display: none;
    padding: 16px;
  }

  .nav-bar a {
    width: 100%;
    text-align: center;
  }

  .logo{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    .burgerBtn{
      display: flex;
      width: 52px;
      height: 52px;
    }

    img{
      width: 135px;
      height: 25px;
    }
  }
}