

/*=============== HEADER ===============*/
.header_bottom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: 99;
  transition: .4s;
}

/*=============== NAV ===============*/
.nav_bottom {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__img_bottom {
  width: 32px;
  border-radius: 50%;
}

.nav__logo_bottom {
  color: var(--title-color);
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .nav__menu_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #a6975f;
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
  }
}

.nav__list_bottom, 
.nav__link_bottom {
  display: flex;
}

.nav__link_bottom {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list_bottom {
  justify-content: space-around;
}

.nav__name_bottom {
  font-size: var(--tiny-font-size);color: white;
  /* display: none;*/ /* Minimalist design, hidden labels */
}

.nav__icon_bottom {
  font-size: 1.5rem;
}

/*Active link*/
.active-link_bottom {
  position: relative;
  color: var(--first-color);
  transition: .3s;
}

/* Minimalist design, active link */
/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

/* Change background header */
.scroll-header_bottom {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
  .nav__name_bottom {
    display: none;COLOR: #a6975f;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list_bottom {
    justify-content: center;
    column-gap: 3rem;
  }
}

@media screen and (min-width: 767px) {
 div#nav-menu_bottom {
    display: none;
}
}