/*footer*/
footer{
    height: 200px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 48px;
    width: 100%;
  }
  @media screen and (max-width:768px){
    footer{
      height: auto;
      display: block;
      padding: 40px 48px;
      margin-top: 0;
    }
    }
  footer nav{
    margin: 0 0 0 auto;
  }
  .footer-logo{
    margin: unset;
    text-align: center;
  }
  @media screen and (max-width:768px){
    .footer-logo{
      margin: 60px auto;
    }
    }
  .footer-logo img{
    width: 70%;
  }
  @media screen and (max-width:768px){
    .footer-logo img{
      width: 50%;
    }
    }
  .list_nav_footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin: unset;
font-weight: bold;
  }
  @media screen and (max-width:768px){
    .list_nav_footer{
      padding: 0 0 60px;
    }
    .list_nav_footer li{
      width: 40%;
    }
    }
  .copyright{
    text-align: center;
    padding: 8px;
    background-color: #efefef;
    width: 100%;
  }