.footer {
  color: var(--black-100);
  background-color: var(--black-100);
  padding-top: 8rem;
  position: relative;
}
.footer .footer_content {
  background-color: var(--green-400);
  border-radius: 1rem 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1.5rem 1rem;
}
.footer .footer_content .footer_logo {
  width: 4rem;
  height: 4rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer_content .footer_logo svg {
  stroke: none;
  width: 100%;
  height: 100%;
}
.footer .footer_content .footer_contacts h4, .footer .footer_content .footer_quick_links h4, .footer .footer_content .footer_legal h4 {
  padding-bottom: 0.5rem;
}
.footer .footer_content .footer_contacts .contacts__email p a, .footer .footer_content .footer_contacts .contacts__tel p a {
  text-decoration: underline !important;
}
.footer .footer_content .footer_quick_links .quick_nav .quick_link {
  padding-bottom: 0.5rem;
  list-style: none;
}
.footer .footer_content .footer_technical {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.footer .footer_content .footer_technical .cmplz-manage-consent {
  all: unset;
  background-color: transparent;
  cursor: pointer;
  font-size: 1rem;
}
.footer .footer_content a, .footer .footer_content button, .footer .footer_content p {
  color: var(--black-100);
  font-size: 1rem;
}
.footer .footer_content a:focus, .footer .footer_content button:focus {
  outline-offset: 0.5rem !important;
}
.footer .footer_content a::after {
  display: none;
}

.logo-whatsapp {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 16px;
  width: 44px;
  height: 44px;
  background-color: #25d366;
  border-radius: 1rem;
  padding: 20px;
  display: grid;
  place-content: center;
}
.logo-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  stroke-width: 0;
}

@media screen and (min-width: 768px) {
  .footer .footer_content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "a a" ". ." "b d" "c d" "e e";
  }
  .footer .footer_content .footer_logo {
    grid-area: a;
  }
  .footer .footer_content .footer_contacts {
    grid-area: b;
  }
  .footer .footer_content .footer_quick_links {
    grid-area: c;
  }
  .footer .footer_content .footer_legal {
    grid-area: d;
  }
  .footer .footer_content .footer_technical {
    display: flex;
    gap: 3rem;
    align-items: flex-end;
    grid-area: e;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding-top: 12.5rem;
  }
  .footer .footer_content {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 5rem;
    grid-template-areas: "a a a" "b c d" "e e e";
  }
  .footer .footer_content .footer_logo {
    margin-bottom: 3rem;
  }
  .footer .footer_content .footer_contacts h4, .footer .footer_content .footer_quick_links h4, .footer .footer_content .footer_legal h4 {
    padding-bottom: 1rem;
  }
  .footer .footer_content .footer_quick_links {
    justify-self: center;
  }
  .footer .footer_content .footer_legal {
    justify-self: end;
  }
}

/*# sourceMappingURL=footer.css.map */
