/*============================================
          Footer						
============================================*/
.footer {
    background: url(../../dist/img/bg-footer.webp) no-repeat center top/contain;
  }
  
  .footer-inner {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 20px 34px;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .footer-inner {
      flex-wrap: wrap;
    }
  }
  @media screen and (max-width: 767px) {
    .footer-inner {
      flex-direction: column;
      padding-top: 37px;
    }
  }
  
  .footer-logo {
    width: 162px;
  }
  
  .footer-lists {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-left: auto;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .footer-lists {
      gap: 24px;
    }
  }
  @media screen and (max-width: 767px) {
    .footer-lists {
      flex-wrap: wrap;
      gap: 16px 43px;
      margin-top: 36px;
    }
  }
  
  .footer-list {
    font-family: "font-downey-thin";
    font-size: 12px;
    font-weight: 400;
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    margin-left: auto;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .copyright {
      text-align: center;
      width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .copyright {
      margin: 16px auto 0;
    }
  }
  