#footer {
  background-color: rgb(0, 102, 51);
  height: 200px;
  display: flex;
  align-items: center;
  clear: both;
  font-family: var(--font-secondary);
}

.footer-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
}

.footer-section {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* debug */
  /* border: 1px solid black; */
  /* background-color: aqua; */
}

.footer-title {
  color: var(--color-white);
  margin: 20px 0px;
  text-align: center;
  font-weight: 700;
}

.footer-information {
  text-align: center;
}

.footer-information li {
  color: #fff;
  font-weight: 300;
}

.footer-information li > a {
  color: #fff !important;
}

/* SECTION  */
.customer-care {
  flex-basis: 35%;
}

/* SECTION */
.shops {
  flex-basis: 15%;
}
/* SECTION */
.legal-area {
  flex-basis: 30%;
}
/* SECTION */
.socials {
  flex-basis: 20%;
}

.socials-images {
  display: flex;
  justify-content: center;
}

.social-image {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 146, 73);
  box-shadow: 0 0 10px rgba(0, 146, 73, 0.5);
}

.social-image:hover {
  background-color: rgb(0, 102, 51);
  box-shadow: 0 0 10px rgba(0, 146, 73, 1);
  cursor: pointer;
}

.social-image a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.me-10 {
  margin-right: 10px;
}

.social-image i {
  font-size: 15px;
  color: #fff;
}

.social-image a:hover {
  text-decoration: none;
}

/* COPYRIGHT */
.container_copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin: 0 auto;
  padding: 2px 0px;
  color: var(--color-white);
}
.right_info_payments_copyright {
  display: flex;
}
.image_payment {
  margin: 0px 5px;
}
.image_payment img {
  height: 40px;
}

/*  DEFAULT MEDIA Query  */
/* Mobile Menu Open at 991px  */

/* Extra small devices (telefoni, 0-575px) */
@media only screen and (max-width: 575px) {
  /* Stili per dispositivi extra small */

  #footer {
    height: auto;
  }

  .footer-container {
    flex-wrap: wrap;
  }

  .footer-section {
    align-items: center;
  }
  
  .footer-information li {
    text-align: center;
  }

  .footer-title {
    margin-bottom: 5px;
  }
  

  /* SECTION */
  .customer-care {
    flex-basis: 100%;
  }

  /* SECTION */
  .shops {
    flex-basis: 100%;
  }
  /* SECTION */
  .legal-area {
    flex-basis: 100%;
  }
  /* SECTION */
  .socials {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
  .container_copyright {
    flex-direction: column;
    width: 95%;
    flex-wrap: wrap;
  }
}

/* Small devices (tablet verticali, 576-767px) */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* Stili per dispositivi small */

  #footer {
    height: auto;
  }

  .footer-container {
    flex-wrap: wrap;
  }

  .footer-section {
    align-items: center;
  }

  .footer-information li {
    text-align: center;
  }

  .footer-title {
    margin-bottom: 5px;
  }

  .socials-images {
    margin-top: 5px;
  }

  /* SECTION */
  .customer-care {
    flex-basis: 100%;
  }

  /* SECTION */
  .shops {
    flex-basis: 100%;
  }
  /* SECTION */
  .legal-area {
    flex-basis: 100%;
  }
  /* SECTION */
  .socials {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
  .container_copyright {
    flex-direction: column;
    width: 95%;
  }
}

/* Medium devices (tablet orizzontali, 768-991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Stili per dispositivi medium */

  #footer {
    height: auto;
  }

  .footer-container {
    flex-wrap: wrap;
  }

  .footer-section {
    align-items: center;
  }
  
  .footer-information li {
    text-align: center;
  }
  
  .footer-title {
    margin-bottom: 5px;
  }

  .socials-images {
    margin-top: 5px;
  }

  /* SECTION */
  .customer-care {
    flex-basis: 50%;
  }

  /* SECTION */
  .shops {
    flex-basis: 50%;
  }
  /* SECTION */
  .legal-area {
    flex-basis: 50%;
  }
  /* SECTION */
  .socials {
    flex-basis: 50%;
  }
  .container_copyright {
    width: 90%;
  }
}

/* Large devices (laptop/desktop, 992-1199px) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Stili per dispositivi large */
}

/* CUSTOM MEDIA QUERY */
@media only screen and (min-width: 1200px) and (max-width: 1350px) {
}
