.navbar {
  background-image: url(../images/navbar/bg.jpg);
  background-repeat: no-repeat;
  width: 2000px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .navbar {
    width: 768px;
  }
}
.navbar .container {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  margin: auto;
  gap: 34px;
}
@media (max-width: 576px) {
  .navbar .container {
    width: 100%;
    flex-direction: row-reverse;
    padding-right: 28px;
  }
}
.navbar .container .menu-mb {
  display: none;
}
@media (max-width: 576px) {
  .navbar .container .menu-mb {
    background-image: url(../images/navbar/menu.png);
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    z-index: 1;
  }
}
.navbar .container ul {
  position: relative;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  font-size: 24px;
  text-transform: uppercase;
  gap: 40px;
}
@media (max-width: 576px) {
  .navbar .container ul {
    position: absolute;
    width: 100%;
  }
}
.navbar .container ul li {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 34px;
}
@media (max-width: 576px) {
  .navbar .container ul li {
    display: none;
  }
}
.navbar .container ul li::after {
  content: "";
  background-image: url(../images/navbar/line.png);
  background-repeat: no-repeat;
  width: 15px;
  height: 80px;
  display: block;
}
.navbar .container ul li:last-child::after {
  display: none;
}
.navbar .container ul li a {
  cursor: pointer;
  color: white;
}
.navbar .container ul.active {
  top: 80px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 31vh;
  flex-direction: column;
  font-size: 24px;
  padding-top: 30px;
}
.navbar .container ul.active li {
  display: flex;
  width: 85%;
  height: 100%;
  justify-content: center;
  padding: 24px 0;
  border-bottom: 1px solid;
}
.navbar .container ul.active li:after {
  display: none;
}
.navbar .container ul.active + .layer-mb {
  display: block;
}
.navbar .container .layer-mb {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 2000px;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Code Login */
#showLogin {
  text-align: left;
  font-size: 28px;
  color: #8e0702;
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1%;
}
@media (max-width: 576px) {
  #showLogin {
    width: 62%;
    right: unset;
    left: 28px;
  }
}
#showLogin .Logged {
  color: white;
  text-align: center;
  align-items: center;
  height: 100%;
  font-size: 22px;
  gap: 22px;
  justify-content: flex-end;
}
#showLogin .Logged span {
  color: #ffd200;
}
@media (max-width: 576px) {
  #showLogin .Logged {
    justify-content: space-between;
    padding-right: 18px;
  }
}

