.navbar {
  padding: 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;

  @media (max-width: 860px) {
    padding: 1.5rem;
  }

  @media (max-width: 420px) {
    padding: 0.5rem;
  }
}

.navbar .clocks-logo {
  width: 150px;

  @media (max-width: 720px) {
    width: 80px;
  }
}

.navbar ul {
  width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 600;

  @media (max-width: 860px) {
    width: 400px;
    gap: 10px;
  }

  @media (max-width: 720px) {
    width: 350px;
    font-size: 16px;
    gap: 4px;
  }

  @media (max-width: 520px) {
    width: 300px;
    font-size: 13px;
  }

  @media (max-width: 420px) {
    width: 250px;
  }
}

.navbar ul li {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: #e76012 solid 1px;
}

.navbar ul li a {
  color: #000;
}
