.footer {
  display: block;
  align-items: center;
  justify-content: center;
  padding: 40px 0 20px 0;
}

.footer-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 500px;
}

.footer-logo img {
  height: 150px;
  width: 150px;
  display: block;
}

.footer-contact,
.footer-sitemap {
  display: flex;
  flex-direction: column;
  width: 500px;
}

.footer-contact h3,
.footer-sitemap h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
}

.footer-contact p {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-align: center;
  width: 100%;
}

.footer-contact a,
.footer-sitemap a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  display: block;
  width: fit-content;
  line-height: 1.5;
}

.footer-contact a::after,
.footer-sitemap a::after {
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 768px) {


}

@media (max-width: 428px) {
.footer-logo img {
  display: block;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.footer {
  display: block;
  align-items: center;
  justify-content: center;
  padding: 40px 0 20px 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 20px;
}

.footer-contact,
.footer-sitemap {
  width: 100%;
}


}