/*=============== NAV ===============*/
.nav {
  height: var(--header-height) !important;
  display: flex;
  justify-content: center;
  align-items: center !important;
}

.nav__img {
  width: 32px !important;
  border-radius: 50% !important;
}

.nav__logo {
  color: var(--title-color) !important;
  font-weight: 600 !important;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: -1px;
    left: 0;
    z-index:999999;
    background-color: #010063;
    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, 
.nav__link {
  display: flex !important;
}

.nav__link {
  flex-direction: column !important;
  align-items: center !important;
  row-gap: 4px !important;
  color: white !important;
  font-weight: 600 !important;
}

.nav__list {
  justify-content: space-around !important;
  list-style: none;
  margin-bottom: 0rem;
  padding-left: 0rem;
}

.nav__name {
  font-size: var(--tiny-font-size) !important;
  display: none !important;
}

.nav__icon {
  font-size: 1.5rem !important;
}

/*Active link*/
.active-link {
  position: relative !important;
  transition: .3s !important;
}

/* 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 {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15) !important;
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
  .nav__name {
    display: none !important;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center !important;
    column-gap: 3rem !important;
  }
    .nav__name {
    display: none !important;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0 !important;
  }
  .section {
    padding: 7rem 0 2rem !important;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
  }
  .nav__img {
    display: none !important;
  }
  .nav__icon {
    display: none !important;
  }
  .nav__name {
    font-size: var(--normal-font-size);
    display: none !important;
  }
  .nav__link:hover {
    color: white !important;
  }
  
  .containerss{
      display:none;
  }

  /* First design, remove if you choose the minimalist design */
  .active-link::before {
    content: '' !important;
    position: absolute !important;
    bottom: -.75rem !important;
    width: 4px !important;
    height: 4px !important;
    background-color: var(--first-color) !important;
    border-radius: 50% !important;
  }

  /* Minimalist design */
  /* .active-link::before{
      bottom: -.75rem;
  } */
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .containerss {
   display:none !important;
  }
}