.footer-2024 {
  background-color: var(--black-900);
  padding: 80px 20px;
}

.footer-2024--wrapper {
  margin: 0 auto;
  max-width: 1052px;  
}

.footer-2024 :where(h2, h3, p, a, span) {
  color: var(--white);
}

/* App Icons */

.footer-2024__app-icons {
  margin-bottom: 80px;
  text-align: center;
}

.footer-2024__app-icons-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
  max-width: 767px;
}

.footer-2024__app-icons h2 {
  font-size: 28px;
  padding-bottom: 32px;
}

.footer-2024__app-icon {
  max-width: 100%;
}

.footer-2024__app-icons-wrapper img {
  height: 50px !important;
  max-height: 50px;
  width: auto;
}

/* Navigation */

.footer-2024__navigation {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  justify-content: space-between;
}

.footer-2024__menu {
  display: flex;
  flex-direction: column;
}

.footer-2024__menu h3 {
  font-size: 20px;
}

.footer-2024__menu a {
  opacity: 0.8;
  padding: 6px 0;
  transition: var(--transition);  
}

.footer-2024__menu a:hover {
  opacity: 1;
}

.footer-2024__menu a:last-child {
  padding: 6px 0 0;
}

/* Logo row */

.footer-2024__logo-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-2024__logo {
  display: flex;
  flex-direction: column;
}

.footer-2024__logo img {
  margin-bottom: 20px;
  max-width: 150px !important;
}

.footer-2024__logo span {
  font-family: Edenred, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

/* Badges */

.footer-2024__badges {
  align-items: flex-end;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer-2024__badges img {
  max-height: 90px !important;
  max-width: auto !important;
  object-fit: contain;    
  width: auto !important;
}

/* Legal row */

.footer-2024__legal-row {
  align-items: center;
  border-top: 1px solid var(--white);
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}

.footer-2024__legal-row :where(a, p) {
  font-size: 13px;
}

.footer-2024__consent {
  align-items: center;
  display: flex;
  gap: 16px;
}

.footer-2024__consent-link {
  margin-bottom: 0;
}

.footer-2024__consent a {
  line-height: 1 !important;
  opacity: 0.8;  
}

.footer-2024__consent a:hover {
  opacity: 1;
}

/* Some Icons */

.footer-2024__some {
  display: flex;
  gap: 8px;
}

.footer-2024__some-icon a {
  align-items: center;
  background-color: var(--white);
  border-radius: 50%;
  cursor: pointer;  
  display: flex;
  height: 36px;
  justify-content: center;
  line-height: 0;  
  padding: 10px;
  transition: var(--transition);
  width: 36px;
}

.footer-2024__some-icon a:hover {
  background-color: var(--red);
}

@media screen and (max-width: 900px) {
  .footer-2024__menu {
    flex: 0 0 50%;
  }
  .footer-2024__menu:not(:nth-last-child(-n+2)) {
    margin-bottom: 30px;
  } 
}

@media screen and (max-width: 767px) {
  .footer-2024 {
    padding: 50px 20px 30px;
  }
  .footer-2024__app-icons {
    margin-bottom: 30px;
  }
  .footer-2024__app-icons-wrapper {
    flex-direction: column;
  }
  .footer-2024__app-icons h2 {
    font-size: 22px;
  }
  .footer-2024__navigation {
    flex-direction: column;
    margin-bottom: 30px;
    text-align: center;
  }  
  .footer-2024__menu:not(:last-child) {
    margin-bottom: 30px;
  } 
  .footer-2024__menu a {
    padding: 8px 0;
    font-size: 15px;
  }
  .footer-2024__logo-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-2024__logo img {
    margin-bottom: 10px;
    max-height: 120px !important;
  }
  .footer-2024__logo span {
    font-size: 16px;
  }
  .footer-2024__badges {
    align-items: center;
    justify-content: center;
    margin-top: 30px;
  }
  .footer-2024__badges img {
    max-height: 80px !important;
  }
  
  .footer-2024__legal-row {
    flex-direction: column;
    justify-content: center;
  }
  .footer-2024__consent {
    flex-direction: column;
    margin: 30px 0;
    text-align: center;
  }  