.foot {
  background-color: var(--secondary);
}

.foot--front {
  margin-bottom: 50px;
}

.foot__wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 var(--g-side);
  box-sizing: border-box;
}

.foot--front .foot__wrapper {
  gap: 25px;
  padding: 0 var(--g-side);
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .foot__wrapper {
    justify-content: center;
  }

  .foot--front .foot__wrapper {
    flex-direction: column-reverse;
  }
}

.foot--front .foot__media {
  position: relative;
  bottom: -27px;
}

.foot__logo {
  display: block;
}

@media (max-width: 1024px) {
  .foot__logo {
    margin: 0 auto;
  }
}

.foot__menu {
  display: flex;
  align-items: flex-end;
  color: #fff;
  margin: 2rem 0;
}

.foot--front .foot__menu {
  margin: 0 0 4.375rem;
}

@media (max-width: 1024px) {
  .foot__menu {
    justify-content: center;
    padding: 0 var(--g-side);
  }
  
  .foot--front .foot__menu {
    margin: 2.1875rem 0 4.375rem;
  }
}

.foot__menu ul:not(.contextual-links) {
  display: flex;
  gap: 10px;
}

@media (max-width: 1024px) {
  .foot__menu ul:not(.contextual-links) {
    flex-wrap: wrap;
    justify-content: center;
  }
}