footer {
  margin-top: 120px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: url("../img/noise.png") repeat;
  position: relative;
  /* background-size: 80%; */
  padding: 60px 112px 60px 80px;
  z-index: 100;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* backdrop-filter: blur(1px);  размывает всё, что под ним 
  -webkit-backdrop-filter: blur(1px); для Safari */
}
footer .logo-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: fit-content;
  height: fit-content;
}
footer .logo-block img {
  max-width: 300px;
}
footer .logo-block span {
  max-width: 400px;
  text-align: justify;
}

footer .mid-container {
  margin-left: 104px;
  margin-right: 173px;
  display: flex;
  flex-direction: row;
  gap: 75px;
}
footer .mid-container .text-menu {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 16px;
}

footer .mid-container .text-menu > * {
  text-decoration: none;
  color: #ffffff;
}
footer .mid-container .documents {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: fit-content;
}

footer .mid-container .documents > * {
  text-decoration: none;
  color: #ffffff;
}
footer .contacts {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 24px;
}
footer .contacts .direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .contacts .direct > * {
  cursor: pointer;
}

footer .contacts .socials {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
footer .contacts .socials > * {
  cursor: pointer;
}

.vk {
  width: 40px;
  height: 40px;
  background: url("./../img/vk.svg");
  &:hover {
    background: url("./../img/vk-hover.svg");
  }
  &:active {
    background: url("./../img/vk-active.svg");
  }
}

.telegram {
  width: 40px;
  height: 40px;
  background: url("./../img/telegram.svg");
  &:hover {
    background: url("./../img/telegram-hover.svg");
  }
  &:active {
    background: url("./../img/telegram-active.svg");
  }
}
@media (max-width: 360px) {
  footer {
    flex-direction: column;
    padding: 60px 16px;
    gap: 48px;
    margin-top: 72px;
  }
  footer .mid-container {
    text-align: left;
    margin: 0;
    flex-direction: column;
    gap: 48px;
  }
}
