
.header-mobile-bottom ul {
  list-style: none;
}

.header-mobile-bottom a {
  text-decoration: none;
}

.header-mobile-bottom img {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.header-mobile-bottom .section {
  padding: 4.5rem 0 2rem;
}

.header-mobile-bottom .section__title {
  
  
  text-align: center;
  margin-bottom: 1.5rem;
}

.header-mobile-bottom .section__height {
  height: 100vh;
}

/*=============== LAYOUT ===============*/
.header-mobile-bottom .container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}

/*=============== HEADER ===============*/
.header-mobile-bottom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  transition: .4s;
}

/*=============== NAV ===============*/
.header-mobile-bottom .nav {
  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-mobile-bottom .nav__img {
  width: 32px;
  border-radius: 50%;
}

.header-mobile-bottom .nav__logo {
  
  font-weight: 600;
}

@media screen and (max-width: 986px) {
    .header-mobile-bottom{
        visibility: visible;
    }
    .header-mobile-bottom .nav__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: white !important;
        width: 100%;
        height: 4rem;
        padding: 0 1rem;
        display: grid;
        align-content: center;
        border-radius: 1.25rem 1.25rem 0 0;
        border-style: dashed;
        border-color: rgb(172, 171, 171);
        border-width: 1px;
        transition: .4s;
        padding-top: 10px;
    }
}


@media screen and (min-width: 986px) {
    .header-mobile-bottom{
        visibility: hidden;
    }
}

.header-mobile-bottom .nav__list, 
.header-mobile-bottom .nav__link {
  display: flex;
}

.header-mobile-bottom .nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: black !important;
  font-weight: 600;
  font-weight: bolder !important;
}

.header-mobile-bottom .nav__list {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 5px;
}

.header-mobile-bottom .nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  
  transition: .3s;
}
