.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 40px;
  /*display: flex;
  gap:40px;*/
  margin: 0.625rem 0 8.125rem 0;
  width: 64.583vw;
  max-width: 77.5rem;
}
@media screen and (max-width: 1439.8px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1023.8px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }
}
@media screen and (max-width: 969.8px) {
  .footer__nav {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }
}
@media screen and (max-width: 768.8px) {
  .footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: flex-start;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768.8px) {
  .footer__nav--area:last-child {
    width: calc(50% - 20px);
  }
}