@media (max-width: 480px) {
  .navbar {
    width: 100%;
    height: 8vh;
    background-color: var(--color-bg);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 10px 20px -20px;

    .navbar__logo {
      display: flex;
      flex-direction: row;
      gap: 0.5rem;
      align-items: center;
      justify-content: center;

      .navbar__logo-text {
        font-family: "Playfair", serif;
        font-size: 1.5rem;
        font-weight: 600;
        letter-spacing: 0.025em;
        color: var(--color-text);
      }
    }

    .Hamburger {
      width: 32px;
      height: 32px;

      img {
        width: 32px;
        height: 32px;
      }
    }

    .Hamburger span {
      background-color: #003049;
      height: 3px;
      width: 100%;
      border-radius: 5px;
      transition: 0.3s;
    }

    .Menu {
      width: 100%;
      height: auto;
      position: absolute;
      top: 4rem;
      right: 0;
      background-color: var(--color-bg);
      padding: 1rem;
      display: none;
      flex-direction: column;
      z-index: 9999;

      .menu__items {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
      }

      .menu__item {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        gap: 0.8rem;

        .menu__link {
          font-size: 1.15rem;
          color: var(--color-text);
          text-decoration: none;
          padding: 0.5rem 0;
        }
      }

      .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--color-primary);
        border-radius: 0.8rem;
        padding: 0.5rem;

        .menu__link {
          color: var(--color-bg);
        }
      }
    }

    .Menu.show {
      display: flex;
      justify-content: center;
      z-index: 1;
      background-color: var(--color-bg);
      box-shadow: rgba(0, 0, 0, 0.45) 0px 10px 20px -20px;
      border-bottom: 0.5rem;
    }
  }

  .navbar.scrolled {
    box-shadow:
      rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
      rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background-color: var(--color-bg);
    border-bottom: none;
    transition: 1s;
  }
  .navbar__actions {
    display: none;
  }
}

@media (min-width: 1200px) {
  .navbar {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding-top: 1rem;

    .navbar__logo {
      grid-column: 1/5;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;

      img {
        width: 40px;
        height: 40px;
      }

      .navbar__logo-text {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--color-primary);
        text-transform: uppercase;
        letter-spacing: -1px;
        width: 30vh;
      }
    }

    .Hamburger {
      display: none;
    }

    .Menu {
      grid-column: 5/13;
      height: auto;
      background-color: var(--color-bg);
      padding: 1rem;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      z-index: 9999;

      .menu__items {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
      }

      .menu__item {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        gap: 0.8rem;

        .menu__link {
          font-size: 1.15rem;
          color: var(--color-text);
          text-decoration: none;
          padding: 0.5rem 0;
        }
      }

      .btn_disable {
        display: none;
      }
    }
  }
}
