footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
  margin: auto;
  background-color: #333;
}

.footer-wrapper {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  margin: auto;
  color: #fff;
  padding: 3rem 0;
}

.footer-left {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  height: 100%;
  gap: 2rem;
}

.footer-left a {
  text-decoration: none;
}

.footer-left a:hover {
  color: #bbb;
}

.footer-left-logo {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.footer-left-logo p {
  font-size: 1.5rem;
  font-weight: 600;
  height: 100%;
  color: #fff;
}

.footer-left-text a {
  color: #fff;
  text-decoration: underline;
}

.footer-right-contacts {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  gap: 0.75rem;
  width: 100%;
}

.footer-right-contacts a {
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
}

.footer-right-contacts a:hover {
  color: #bbb;
}

.footer-right-contacts-socials {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}

.footer-right-contacts-socials i {
  font-size: 2rem;
  color: #fff;
}

.footer-right-contacts-socials i:hover {
  scale: 1.1;
  color: #bbb;
}
