.footer {
  position: relative;
  display: flex;

  flex-direction: column;

  margin-top: 70px;

  width: 100%;

  background: white;
}

.footer-body {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  width: 100%;

  padding: 20px 20px;
}

.footer-about {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
  min-width: 200px;
  max-width: 250px;

  padding: 20px 20px;
}

.footer-about-logo {
  position: relative;
  display: flex;

  flex-direction: row;

  margin-bottom: 20px;

  width: 100%;
}

.footer-about-logo img {
  position: relative;
  display: flex;

  flex-direction: row;

  width: 100%;
  max-height: 30px;

  object-fit: contain;
  object-position: right center;
}

.footer-about-title {
  position: relative;

  margin-bottom: 10px;

  font-size: 16px;
  font-weight: 600;
}
.footer-about-subtitle {
  position: relative;

  font-size: 16px;
  font-weight: 400;

  color: rgba(0, 0, 0, 0.6);
}

.footer-menu-title {
  position: relative;

  margin-bottom: 10px;

  font-size: 16px;
  font-weight: 600;
}

.footer-menu {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
  min-width: 150px;
  max-width: 200px;

  padding: 20px 20px;
}

.footer-menu-list {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  font-size: 16px;
  font-weight: 400;
}

.footer-menu-link {
  position: relative;
  display: flex;

  flex-direction: row;

  padding: 5px 0;

  text-decoration: none;

  color: rgba(0, 0, 0, 0.5);

  transition: 0.3s all ease-out;
}
.footer-menu-link:hover {
  color: rgba(0, 0, 0, 1);
}



.footer-about-socials {
  position: relative;
  display: flex;
  gap: 5px;

  align-content: center;
  justify-content: flex-start;

  flex-direction: row;

  margin: 10px 0;

  width: 100%;
}
.footer-about-social {
  position: relative;
  display: flex;

  align-content: center;
  justify-content: center;

  flex-direction: row;

  padding: 10px 10px;

  font-size: 24px;

  text-decoration: none;

  border-radius: 6px;

  color: inherit;
  transition: 0.3s all ease-out;
  background: rgba(25, 30, 40, 0.05);
}
.footer-about-social:hover {
  background: rgba(25, 30, 40, 0.1);
}



.footer-copyright {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 100%;

  padding: 10px 20px;

  background: rgba(0, 0, 0, 0.05);
}
