@charset "UTF-8";
footer {
  background-color: #f5f5f5;
}
footer .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}
footer .logo {
  width: 180px;
}
footer .logo img {
  width: 100%;
  vertical-align: bottom;
}
footer nav {
  width: 70%;
}
footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
footer nav ul li {
  width: 32%;
  margin: 5px 1% 5px 0;
  position: relative;
}
footer nav ul li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15px;
  margin: auto;
  width: 5px;
  height: 2px;
  background-color: #ccc;
}
footer nav ul li a {
  display: block;
  text-decoration: none;
  color: #e95513;
}
footer small {
  display: block;
  font-size: 13px;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  background-color: #69c3c7;
}
@media screen and (max-width:1050px) {
  footer .inner {
    display: block;
    padding: 40px 0 25px;
  }
  footer .logo {
    width: 140px;
    margin-bottom: 30px;
  }
  footer nav {
    width: auto;
  }
  footer nav ul {
    display: block;
  }
  footer nav ul li {
    width: auto;
    margin: 0 auto 10px 15px;
  }
  footer small {
    font-size: 12px;
    padding: 15px 0 90px;
  }
}