.burger {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 1001;
  margin-top:10px;
}

.burger__lines {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--green);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.burger__lines:nth-child(1) { top: 0; }
.burger__lines:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger__lines:nth-child(3) { bottom: 0; }

.burger.burger-is-active .burger__lines:nth-child(1) { opacity: 0; }
.burger.burger-is-active .burger__lines:nth-child(2) { transform: rotate(45deg); }
.burger.burger-is-active .burger__lines:nth-child(3) { bottom: 15px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: var(--dark-gray);
  z-index: 1000;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Ubuntu", sans-serif;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  margin-top: 1rem;
}

.mobile-menu-item {
  margin: 1rem 0;
  font-size: 2rem;
  padding: 1.25rem 0;
  font-weight: 700;
}

.mobile-menu-item a {
  color: var(--green) !important;
  text-decoration: none !important;

}
.mobile-menu img {
max-width: 150px;
margin-top: -2rem;
}


@media (max-width: 992px) {
  .nav {
    display: none;
  }
  .burger {
    display: block;
  }
}