/* NAVBAR */

.navbar {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

.logo {
  color: #000000;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

hr {
  border: none;
  background: #000000;
  width: 90%;
  height: 2px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar-item {
  height: 80px;
}

.navbar-link {
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  height: 100%;
}

.navbar-link:hover {
  color: #d9bbaf;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 600px) {
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 1;
    width: 100%;
    padding: 0;
  }

  .navbar-menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background: #ffffff;
  }

  .navbar-menu.active {
    top: 100%;
    opacity: 1;
    transition: all 0.5 ease;
    z-index: 99;
    font-size: 1.6rem;
  }

  .logo {
    padding-left: 25px;
  }

  .navbar-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #000000;
  }

  .navbar-toggle {
    cursor: pointer;
  }

  .navbar-item {
    width: 100%;
    height: 30px;
  }

  .navbar-links {
    text-align: center;
    width: 100%;
    display: table;
  }

  #mobile-menu {
    margin-right: 1rem;
    transition: translate(5%, 20%);
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}