.navbar-mobile {
  background-color: #2ad768;
  min-height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.navbar-mobile a img {
  max-width: 150px;
}

.navbar-mobile input[type="checkbox"] {
  appearance: none;
  -webkit-apearance: none;
}

.navbar-mobile input[type="checkbox"]:checked ~ ul {
  left: 0;
}

.navbar-mobile label {
  cursor: pointer;
  color: #fff;
}

.navbar-mobile ul {
  list-style: none;
  display: flex;
  font-size: 1.2em;
  position: absolute;
  flex-direction: column;
  left: -100%;
  align-items: center;
  justify-content: center;
  background-color: #333333;
  gap: 2em;
  top: 60px;
  width: 100%;
  height: calc(100vh - 56px);
  transition: 0.5s;
  z-index: 20;
}

.navbar-mobile ul span .social-media {
  position: unset;
  height: unset;
  flex-direction: row;
  margin-top: 52px;
}

.navbar-mobile ul a {
  padding: 0.5em;
  color: #fff;
}

@media (min-width: 768px) {
  .navbar-mobile {
    display: none;
  }
}
