.footer {
  /* border-radius: 0 0 32px 32px; */
  background-color: var(--black30);
}
.footer-content_logo {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 20px 30px 20px;
}
.footer-content_copyright {
  color: #c6c6d0;
}
.footer-content_language {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-content_language span {
  color: #ffffff;
  font-size: 24px;
}
.footer-content_language div {
  width: 30px;
  height: 23px;
}
.footer-content .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-content_links {
  display: flex;
  gap: 20px;
}
.footer-content .container > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-content_links-item {
  background-color: #7c7c83;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.footer-content_links-item:hover {
  background-color: var(--pink);
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.footer-content_links-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  order: -1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  gap: 12px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav li {
  color: #75767f;
  line-height: 21px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.footer-nav a {
  color: #c6c6d0;
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.footer-nav a:hover {
  transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  color: var(--pink);
}
.footer-copyright .container {
  padding: 20px 20px 20px 20px;
  display: flex;
  /* text-align: center; */
  position: relative;
}
@media (min-width: 769px) {
  .footer-nav {
    order: 0;
  }
  .footer-content .container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 901px) {
  .footer-content .container {
    justify-content: space-between;
  }
  .footer-nav li {
    white-space: nowrap;
  }
  .footer-nav {
    flex-direction: row;
  }
}
@media (min-width: 1201px) {
  .footer-nav li {
    font-size: 18px;
    line-height: 32.4px;
  }
}
