footer {
  width: 100%;
  background-color: var(--primary);
  color: white;
  padding: 40px 30px 20px;
}

footer ul {
  max-width: 90vw;
  margin: auto;
  list-style: none;
  display: flex;
  gap: 15px;
  flex-direction: column;
}

footer ul li {
  display: flex;
  align-items: center;
}

footer p {
  font-weight: 600;
  line-height: 2rem;
}

footer p + ul {
  margin-top: 10px;
}

footer a {
  text-decoration: none;
  color: white;
}

footer i {
  font-size: 1.4rem;
  margin-right: 10px;
}

footer > ul {
  direction: ltr;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

footer .social-accounts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer .social-accounts ul {
  margin-top: 10px;
  flex-direction: row;
}

footer .social-accounts li {
  cursor: pointer;
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
}

/* footer .logo {
  width: 70px;
  border-radius: 50%;
} */

footer div > p:first-child {
  font-size: 1.3rem;
}

.contacts ul * {
  direction: ltr;
}
.copyright {
  width: fit-content;
  margin-top: 10px;
  margin-inline: auto;
  font-weight: 500;
}

@media (max-width: 767px) {
  ul.footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .copyright {
    margin-top: 20px;
    font-size: 0.65rem;
    text-align: center;
  }
}
