/* NAVBAR */

.navbar {
  position: sticky;
  z-index: 0;
  background-color: white;
  top: 0;
  left: 0;
  padding: 1rem 2rem;
  width: 100%;
  box-shadow: 0px 2px 8px rgb(58, 128, 78);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-item {
  margin: 0 1.25rem;
}

.logo {
  height: 80px;
}

.nav-links {
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 300;
}

.nav-links:hover {
  text-decoration: underline;
}

.responsive-navbar {
  height: 100vh;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgb(58, 128, 78);
  padding: 2rem 3rem;
}

.responsive-navbar img {
  position: absolute;
  top: 2.8rem;
  right: 4rem;
  width: 25px;
  cursor: pointer;
}

.response-menu-btn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.response-menu-btn img {
  width: 25px;
}

.response-menu-btn:focus {
  outline: none;
  border: none;
  background-color: transparent;
}

.responsive-navbar-nav {
  list-style: none;
  padding: 2rem 0;
}

.responsive-nav-item {
  margin-bottom: 1rem;
}

@media screen and (max-width: 1200px) {
  .navbar-nav {
    display: none;
  }
  .responsive-navbar.show {
    width: 30%;
  }
}

@media screen and (max-width: 992px) {
  .navbar-nav {
    display: none;
  }
  .responsive-navbar.show {
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .responsive-navbar.show {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .responsive-navbar.show {
    width: 70%;
  }
}

@media screen and (max-width: 0px) {
  .responsive-navbar.show {
    width: 70%;
  }
}