/**
 * @file
 * The footer components.
 *
 * It includes styles for the footer itself and its
 * components.
 */


/**
 * Block Footer
 */


.block-footer::before {
  content: "";
  height: 3px;
  display: block;
  position: relative;
  background-color: var(--brand-secondary-light-color);
  width: 100%;
  margin: 0 auto;
}
.block-footer__images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}
@media all and (min-width: 750px) {
  .block-footer::before {
    width: 90%;
    max-width: 1120px;
  }
}


/**
 * Menu Footer
 */
.menu--footer {
  background-color: var(--brand-primary-color);
}
.menu--footer .menu {
  padding: 1rem;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.menu--footer a {
  color: var(--brand-white);
}
.menu--footer a:hover {
  color: var(--brand-secondary-color);
}
.menu--footer .menu__item:not(:last-child){
  margin-bottom : 0.5rem;
}
@media all and (min-width: 750px) {
  .menu--footer .menu {
    flex-direction: row;
  }
  .menu--footer .menu__item:not(:last-child){
    margin-right : 2rem;
    margin-bottom: 0;
  }
}
