.footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #303030;
  padding-top: 60px;
  padding-inline: 15px;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-content-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-content-col-of-4 {
  max-width: 25%;
  width: 100%;
}

.footer-copyrights {
  padding: 40px 0 15px;
  color: var(--background-primary);
}

.footer-background {
  position: absolute;
  opacity: 0.8;
  bottom: -26px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  z-index: 0;
}

.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-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list .menu-item a {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--background-primary);
  transition: 0.2s ease;
}
.footer-nav-list .menu-item a:hover {
  color: var(--accent-orange-primary);
}

.footer-socials-container {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.footer-socials-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-orange-primary);
  transition: 0.2s ease;
}
.footer-socials-item svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: var(--background-primary);
}
.footer-socials-item:hover {
  background-color: var(--accent-orange-primary-80);
}

.footer-logo-container {
  padding-top: 50px;
}

.footer-contact-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.footer-contact-link-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-orange-primary);
  transition: 0.2s ease;
}
.footer-contact-link-icon-container svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: var(--background-primary);
}

.footer-contact-link {
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
  text-decoration: none;
  color: var(--background-primary);
  transition: 0.2s ease;
}
.footer-contact-link span {
  margin-top: 3px;
  text-transform: uppercase;
  width: calc(100% - 32px);
  font-weight: 700;
}
.footer-contact-link:hover {
  color: var(--accent-orange-primary);
}

.footer-col-title {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.footer-col-title .heading-6 {
  color: var(--background-primary);
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  max-width: 50px;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange-primary);
}/*# sourceMappingURL=footer.css.map */