@charset "UTF-8";
/* CSS Document */

.footer {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #f0f0f0;
}

.footer-left,
.footer-center,
.footer-right {
  margin-bottom: 0px;
padding:10px;
	box-sizing: border-box;
}

.footer-logo {
  max-width: 60%;
  height: auto;
}

.footer-center ul,
.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-center ul li,
.footer-right ul li {
  margin-bottom: 5px;
}

.footer-center ul li a,
.footer-right ul li a {
  text-decoration: none;
  color: #000;
}

@media (min-width: 781px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1;
    margin-bottom: 0;
  }
}
