.footer {
  position: relative;
  height: 24rem;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer {
    height: 18rem;
  }
}

.footer__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.footer__content {
  position: absolute;
  display: grid;
  height: 100%;
  width: 100%;
  padding-top: 6rem;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1920px;
  width: 80%;
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
}

.footer__social-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__social-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--secondary);
  padding: 15px;
  transition: background-color 0.2s;
}

.footer__social-link svg {
  height: 20px;
  width: auto;
}

.footer__social-link:hover {
  background-color: var(--white);
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo img {
  height: 5rem;
  width: auto;
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer__info {
    align-items: flex-end;
  }
  .footer__social-nav {
    justify-content: flex-start;
  }
}

.footer__info-text {
  font-weight: bold;
  color: var(--white);
  text-align: right;
}

.footer__info-link {
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
}

.footer__info-link:hover {
  color: var(--secondary);
}
