.footer {
  background-color: #222;
  color: #fff;
  padding: 20px;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer__social-link {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.footer__body {
  display: flex;
}

.footer__body>div {
  width: 25%;
  min-width: 20rem;
}

.footer__logo-container {
  display: block;
  position: relative;
  width: 15rem;
  aspect-ratio: 21 / 9;
}

.footer__section-title {
  color: var(--red);
  font-size: 2rem;
  font-weight: bolder;
}

.footer__list-item a {
  color: var(--white);
  text-decoration: none;
}

.footer__list-item {
  list-style: none;
  font-weight: bolder;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.5rem;
  margin: 1rem 0;
}

.footer__social-media-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .footer__body {
    flex-wrap: wrap;
    justify-content: center;
	gap: 1rem;
  }

  .footer__section-title {
    text-align: center;
  }

  .footer__logo-container {
    width: 90%;
    margin: 0 auto;
  }
	
	.footer__list-item {
		text-align: center;
	}
}