.Footer {
  background-color: var(--clr-greyLight);
}

.Footer-logoList {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding: 52px 0;
}

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

.Footer-logoList {
    flex-direction: row;
    gap: 100px;
}
  }

.Footer-linkList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: var(--spaces);
  gap: var(--spaces);
  padding: 20px 0;
  border: 1px solid var(--clr-greyDark);
  border-right: none;
  border-left: none;
}

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

.Footer-linkList {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 16px;
}
  }

@media screen and (min-width: 1026px) {

.Footer-linkList {
    grid-template-columns: repeat(4, 1fr);
}
  }

.Footer-linkList-chunk {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.Footer-linkList-item {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--clr-greyDark);
  transition: color 0.2s ease-in-out;
}

.Footer-linkList-item:hover {
    color: var(--clr-primary);
  }

.Footer-bottomBar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  padding: 30px 0;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

.Footer-bottomBar {
    flex-direction: row;
    gap: 0;
}
  }

.Footer-linkBar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

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

.Footer-linkBar {
    flex-direction: row;
}
  }

.Footer-linkBar-item {
  color: var(--clr-greyDark);
  transition: color 0.2s ease-in-out;
}

.Footer-linkBar-item:hover {
    color: var(--clr-primary);
  }
