#footer {
  width: 100%;
  background-color: var(--c-lightgrey);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 2rem 15%;
  gap: 2rem;
}
#footer .footer-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
#footer .footer-lines .footer-line {
  width: 90%;
  height: 2px;
  background-color: white;
}
#footer .footer-lines .footer-line-one {
  align-self: flex-start;
}
#footer .footer-lines .footer-line-two {
  align-self: flex-end;
}
#footer #footer-top {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  width: 100%;
}
#footer #footer-top .footer-widget {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  min-width: 250px;
}
#footer #footer-top #footer-widget-second {
  display: flex;
  width: 100%;
  flex: 1;
  flex-wrap: wrap;
  gap: 2rem;
}
#footer #footer-top #footer-widget-second .footer-widget-two img {
  clip-path: none;
  height: 3rem;
  width: auto;
}
#footer #footer-files {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#footer-second {
  border-top: 1px solid var(--c-lightgrey);
  width: 100%;
  padding-top: 2rem;
  margin-top: 2rem;
}
#footer-second #footer-socialmedia {
  display: flex;
  gap: 1rem;
}
#footer-second #footer-socialmedia a {
  color: var(--c-darkgrey);
}
#footer-second #footer-socialmedia a:hover {
  color: var(--c-grey);
}

@media only screen and (max-width: 600px) {
  #footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
  }
  #footer #footer-top {
    display: flex;
    flex-direction: column;
  }
  #footer #footer-files {
    display: flex;
    flex-direction: column;
  }
}

/*# sourceMappingURL=footer.css.map */
