.footer {
  a {
    color: inherit;
    text-decoration: none;
  }
}

.footer__content-top {
  padding: 5rem;
  display: block;
  @media screen and (min-width: 768px) {
    padding: 5rem 8rem;
  }
  
  .footer__newsletter {
    p {
      margin-top: 0;
      color: #9ca3af;
      line-height: 1.5rem;
      font-size: 1.2rem;
      @media screen and (min-width: 768px) {
        width: 90%;
      }
    }

    .newsletter-form {
      @media screen and (min-width: 768px) {
        width: 90%;
      }
      input.newsletter-form__field::placeholder {
        color: #9ca3af;
        opacity: 1;
        text-transform: uppercase;
        font-family: var(--font-body-family);
      }

      button {
        font-size: 1.3rem;
        text-transform: uppercase;
        padding: 0;
        display: block;
        text-align: right;
        &:hover {
          background-color: transparent;
          color: black;
        }
      }
    }
  }

  .footer__image {
    padding: 30px 0;
    text-align: center;
    img {
      max-width: 100px;
    }
  }

  .footer__menu-link {
    display: flex;
    flex-wrap: wrap;

    .footer__menu-items {
      columns: 2;
      -webkit-columns: 2;
      -moz-columns: 2;
      column-gap: 50px;
      @media screen and (min-width: 1280px) {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
      }
  
      a {
        font-size: 1.3rem;
        text-transform: uppercase;
        transition: all 0.3s ease-in-out;
        &:hover {
          color: #9ca3af;
        }
      }
    }
  }

  .footer__payment {
    flex:  0 0 100%;
    margin-top: 30px;
  }

  @media screen and (min-width: 768px) {
    display: flex;

    .footer__newsletter {
      flex: 0 0 35%;
    }
  
    .footer__image {
      flex: 0 0 30%;
      padding: 0;
    }
  
    .footer__menu-link {
      flex: 0 0 35%;
    }
  }
}

.footer__content-bottom {
  background-color: #f5f5f5;
  padding: 0;

  .page-width {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social_menu {
    .list-social__item {
      svg {
        display: none;
      }
      .name-social {
        text-transform: uppercase;
      }
    }
  }
}

.copyright__content {
  font-size: 1.1rem;
}

.copyright__content a {
  color: currentColor;
  text-decoration: none;
}