footer {
  width: 100vw;
  height: auto;

  background-color: #e0091d;
}

.footer-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;

  width: 100%;
  height: 100%;

  padding: 20px;
}

.footer-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;

  align-items: flex-start;

  width: 100%;

  gap: 20px;
}

.footer-top img {
  width: 20px;
}

.footer-down {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;

  text-align: center;

  width: 100%;
  height: 50%;

  margin-top: 30px;

  gap: 20px;
}

.footer-topic {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;

  color: #fff;

  gap: 10px;
}

.footer-topic a {
  color: #fff;
}

.footer-topic-title {
  font-size: 16px;
  font-weight: 700;
  color: white;

  text-align: center;
}

.footer-contact {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;

  gap: 10px;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.footer-topic-contact-items {
  display: flex;
  align-items: center;
  flex-direction: row;

  align-items: center;
  justify-content: center;

  gap: 10px;
}

.footer-topic-nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 2px;

  padding: 2px 8px;
  width: 100%;

  color: white;
  background-color: #e0091d;
}

.footer-topic-nav-buttons:hover {
  background-color: white;
  color: #e0091d;

  text-align: center;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-topic-contact-items p {
    font-size: 12px;
  }
}
