/*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: 0px 48px;
      margin-top: 0;
    }
    }
  footer nav{
    margin: 0 0 0 auto;
  }
  .footer-logo{
    margin: unset;
    text-align: left;
  }
  @media screen and (max-width:768px){
    .footer-logo{
      margin: 60px auto;
text-align: center;
    }
    }
  .footer-logo img{
    width: 35%;
  }
  @media screen and (max-width:768px){
    .footer-logo img{
      width: 50%;
    }
    }
  .list_nav_footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
    margin: unset;
font-weight: bold;
text-align: center;
  }
  @media screen and (max-width:768px){
	    .list_nav_footer{
			justify-content: center;
	  }
    .list_nav_footer{
      padding: 0 0 60px;
    }
    .list_nav_footer li{
      width: 40%;
    }
    }
  .copyright{
    text-align: center;
    padding: 8px;
    background-color: #efefef;
    width: 100%;
  }