:root {
    --header-height: 3rem;
  
    /*========== Colors ==========*/
    --hue: 174;
    --sat: 63%;
    --first-color: hsl(var(--hue), var(--sat), 40%);
    --first-color-alt: hsl(var(--hue), var(--sat), 36%);
    --title-color: hsl(var(--hue), 12%, 15%);
    --text-color: hsl(var(--hue), 8%, 35%);
    --body-color: hsl(var(--hue), 100%, 99%);
    --container-color: #FFF;
  
    /*========== Font and typography ==========*/
    --body-font: 'Open Sans', sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;
    --tiny-font-size: .625rem;
  
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
  }
  
  @media screen and (min-width: 968px) {
    :root {
      --h1-font-size: 2.25rem;
      --normal-font-size: 1rem;
    }
  }
  .mobile-menu-ftr{
    display: none;
  }
  ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  a {
    text-decoration: none;
  }
  


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

  
  @media screen and (max-width: 767px) {
    .footer {
        padding-bottom: 70px;
    }
    .mobile-menu-ftr{
        display: block;
      }
    .nav__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background: rgba(255, 255, 255, .4);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(4px);
        box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
        max-width: 100%;
        width: -webkit-fill-available;
        padding: 10px 16px;
        display: grid;
        align-content: center;
        border-radius: 60px;
        transition: .4s;
        z-index: 9999;
        margin: 15px;
    }
  }
  
  .nav__list, 
  .nav__link {
    display: flex;
  }
  
  .nav__link {
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    color: var(--title-color);
    font-weight: 600;
  }
  
  .nav__list {
    justify-content: space-around;
  }
  
  .nav__name {
    font-size: var(--tiny-font-size);
    /* display: none;*/ /* Minimalist design, hidden labels */
  }
  
  .nav__icon {
    font-size: 1.5rem;
  }
  
  /*Active link*/
  .active-link {
    position: relative;
    color: var(--first-color);
    transition: .3s;
  }
  
  /*=============== MEDIA QUERIES ===============*/
  /* For small devices */
  /* Remove if you choose, the minimalist design */
  @media screen and (max-width: 320px) {
    .nav__name {
      display: none;
    }
  }
  
  /* For medium devices */
  @media screen and (min-width: 576px) {
    .nav__list {
      justify-content: space-between;
      column-gap: 3rem;
    }
  }
  
  @media screen and (min-width: 767px) {
    .nav__icon {
      display: none;
    }
    .nav__name {
      font-size: var(--normal-font-size);
      /* display: block; */ /* Minimalist design, visible labels */
    }
    .nav__link:hover {
      color: var(--first-color);
    }
  
    /* First design, remove if you choose the minimalist design */
    .active-link::before {
      content: '';
      position: absolute;
      bottom: -.75rem;
      width: 4px;
      height: 4px;
      background-color: var(--first-color);
      border-radius: 50%;
    }
  
  }
