.footer {
  background: var(--black);
  width: 100%;
  border-top: 5px solid var(--dark-pink);
  padding-top: 50px;
  padding-bottom: 10px;
  padding-inline: 10px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-copyrights {
  padding: 20px 0 10px;
  color: var(--white);
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}
.footer-copyrights a {
  color: var(--white);
  text-decoration: none;
}

.footer-copyrights-col {
  width: 50%;
}

.footer-copyrights-left p {
  text-align: left;
}

.footer-copyrights-right p {
  text-align: right;
}

.footer-anpc-bagdes-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-anpc-bagde {
  max-width: 250px;
  width: 100%;
  display: block;
  transition: 0.2s ease;
}
.footer-anpc-bagde:hover {
  opacity: 0.85;
}
.footer-anpc-bagde img {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}

.footer-row {
  display: flex;
  flex-direction: row;
  gap: 25px;
}

.footer-row-column {
  width: 25%;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
}
.footer-menu .menu-item a {
  display: block;
  color: var(--white);
  text-decoration: none;
}
.footer-menu .menu-item a:hover {
  color: pink;
}

.footer-logo {
  max-width: 200px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block: 20px;
}

.footer-contact-info-item-link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  color: var(--white);
  text-decoration: none;
  transition: 0.2s ease;
}
.footer-contact-info-item-link svg {
  width: 20px;
  height: 20px;
  fill: var(--dark-pink);
}
.footer-contact-info-item-link:hover {
  color: var(--dark-pink);
}

.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.footer-socials-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.2s ease;
  border: 2px solid var(--white);
  width: 30px;
  height: 30px;
}
.footer-socials-item svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}
.footer-socials-item:hover {
  border-color: var(--dark-pink);
}
.footer-socials-item:hover svg {
  fill: var(--dark-pink);
}/*# sourceMappingURL=footer.css.map */