:root {
  --footer-elem-size: 1rem;
}
.footer {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  text-align: center;
  /* margin: 3rem; */
  padding: 3rem;
  /* margin-bottom: 5rem; */
  /* padding-bottom: 2rem; */
  font-size: 1.3rem;
}
.footer-list {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 1rem; */
  flex-wrap: wrap;
}
.footer-brand {
  margin-bottom: 3rem;
  margin-right: 3rem;
}
.footer-brand-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand-details img {
  width: 10rem;
}
.footer-brand-description {
  width: 50ch;
  text-align: justify;
}

.footer-quick-link,
.footer-contact,
.footer-find-us {
  display: flex;
  flex-direction: column;
  text-align: start;
  margin-bottom: 3rem;
  margin-right: 3rem;
}

.footer-quick-link-items,
.footer-contact-items,
.footer-find-us-items {
  display: flex;
  flex-direction: column;
  text-align: start;
}
.footer-quick-link-items a,
.footer-contact-items a,
.footer-find-us-items a,
.footer-developer a {
  text-decoration: none;
  color: var(--primary-color);
}

/* hr line */
hr {
  color: var(--tertiary-color);
  margin: 1rem 0;
}

/* below hr line */

.footer-developer {
  margin-top: 3rem;
}
.footer-developer a {
  font-weight: bold;
}

/* Small Size Mobile Screen */
@media (max-width: 400px) {
  .footer-brand-details {
    flex-direction: column;
  }
  .footer-item-title {
    margin-bottom: 1rem;
  }
  .footer-brand-description {
    width: 85vw;
  }
}

/* Developer */
.footer-developer-links-container {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  font-size: small;
}

.footer-developer-links-container a {
  color: var(--primary-color);
  background-color: var(--tertiary-color);
  padding: 5px 7px;
  border-radius: 5px;
  margin: 0.5rem;
}

.footer-developer-links-container a i {
  font-size: medium;
  vertical-align: middle;
}
