.linkMobile a {
  color: black;
  text-decoration: none;
  font-family: sans-serif;
}

.linkMobile a:hover {
  background: rgba(0, 0, 0, 0.05);
}

#logo {
  font-size: 1.5rem;
  font-weight: bold;
}

#header {
  display: none;
  box-sizing: border-box;
  height: 50px;
  padding: 1px;
  margin-top: 18px;
  align-items: center;
  justify-content: space-between;
  border: #e7e7e7 solid 2px;
  background: #e7e7e700;
  border-radius: 10%;
}

#menu {
  display: none;
  list-style: none;
  gap: 0.5rem;
}

#menu a {
  display: block;
  padding: 0.5rem;
}

#btn-mobile {
  display: none;
}

@media (max-width: 1300px) {
  #header{
    display: flex;
  }
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 90px;
    right: 0px;
    background: #23232e;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }
  #nav.active #menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }
  #menu a {
    margin: 0 1rem;
    margin-top: 10px;
    padding-bottom: 13px;
    border-bottom: 2px solid rgba(201, 192, 192, 0.144);
  }
  #menu a:hover {
    border-bottom: 2px solid rgba(201, 192, 192, 0.801);
    transition: 0.5s;
    -webkit-box-shadow: inset 0px -11px 20px -20px rgb(255, 255, 255);
    -moz-box-shadow: inset 0px -11px 20px -20px rgb(255, 255, 255);
    box-shadow: inset 0px -11px 20px -20px rgb(255, 255, 255);
  }
  #menu a:active {
    background-color: #e7e7e728;
    border-radius: 20px 20px 0% 0%;
    transition: 0.5s;
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
}
