@layer components {
  /*
   * Site footer
   */
  
  .site-footer {
    background-color: var(--color-grey-050);
    border-top: 1px solid var(--color-grey-100);
    padding: 5rem 0 3rem 0;
  
    @media (max-width: 991.98px) {
      font-size: 0.938rem;
      padding: 3rem 0 2rem 0;
    }
  
    @media (max-width: 639.98px) {
      padding: 2.5rem 0 2rem 0;
    }
  
    .list-unstyled {
      li {
        margin-bottom: 0.25rem;
      }
    }
  
    .site-footer-brand {
      @media (max-width: 991.98px) {
        display: none;
      }
    }
  
    .site-footer-newsletter,
    .site-footer-newlstter {
      @media (max-width: 639.98px) {
        margin-top: 2rem;
      }
  
      p {
        max-width: 20rem;
      }
    }
  
    .site-footer-bottom-bar {
      border-top: 1px solid var(--color-grey-100);
      display: flex;
      font-size: 0.938rem;
      margin-top: 5rem;
      padding-top: 3rem;
  
      @media (max-width: 991.98px) {
        margin-top: 3rem;
        padding-top: 2rem;
      }
  
      @media (max-width: 639.98px) {
        display: block;
        margin-top: 2rem;
      }
  
      .list-unstyled {
        display: flex;
        flex-wrap: wrap;
        flex-grow: 2;
        margin-top: 0.25rem;
  
        li {
          flex-shrink: 0;
          margin-right: 1rem;
          margin-bottom: 0.5rem;
          padding: 0;
        }
      }
    }
  
    .site-footer-app-buttons {
      display: flex;
      justify-content: flex-end;
      padding-top: 0.25rem;
  
      @media (max-width: 639.98px) {
        justify-content: flex-start;
        margin-top: 0.5rem;
      }
  
      .btn-app {
        &:first-child {
          margin-right: 0.25rem;
        }
      }
    }
  
    .site-footer-link {
      color: var(--color-grey-900);
      transition: 0.2s ease;
  
      &:hover {
        color: var(--color-primary);
      }
    }
  
    .form-inline {
      input {
        background-color: var(--color-white);
        margin-right: 0.5rem;
      }
    }
  }
}
