/*----------------------------------
 nav footer
----------------------------------*/
.nav-footer {
    margin-bottom: 10px;
  }
  
  .nav-footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .nav-footer ul li {
    width: 16.6%;
    height: 130px;
    padding: 5px;
    display: flex;
    align-items: center;
  }
  
  .nav-footer ul a {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #edf1f5;
    border: 1px solid #ffffff;
    box-shadow: #fff 0 0 10px;
    border-radius: 10px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .nav-footer ul li i {
    font-size: 35px;
    color: #5e6b79;
    margin-bottom: 10px;
  }
  
  .nav-footer ul a p {
    font-size: 17px;
    font-family: Ala;
    margin-bottom: -5px;
    color: #9756db;
  }
  
  .nav-footer ul a span {
    color: #3d3d6d;
    font-size: 23px;
    font-family: Plasma;
  }
  
  .nav-footer ul a:hover span,
  .nav-footer ul a:hover p,
  .nav-footer ul a:hover i {
    color: #b49c68;
  }
  
  /*----------------------------------
   ریسپانسیو 
  ----------------------------------*/
  @media screen and (max-width: 799px) {
    .nav-footer ul li {
        width: 33.3%;
        height: 120px;
      }

      .nav-footer ul li i {
        font-size: 30px;
      }
  }

  @media screen and (max-width: 420px) {
    .nav-footer ul li {
        width: 50%;
      }
  }

  @media screen and (max-width: 300px) {
    .nav-footer ul li {
        width: 100%;
      }
  }
