/**
 * user/assets/styles/footer.css
 *
 * @author Pablo Rubio
 * @version 0.1
 */

#footer {
  text-transform: lowercase;
  padding: 20px;
  font-weight: bold;
  font-size: 1.16em;
  line-height: 1.3em;
}

#footer .inner {
  padding: 0px;
}

#footer .inner:before {
  height: 10px;
  width: 100%;
  display: block;
  content: '';
  margin-bottom: 20px;
  background-color: #ffffff;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.06);
}

#footer nav {
  float: left;
  width: 16.666%;
}

#footer nav h2 {
  display: none;
}

#footer nav ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

#footer nav ul li {
  padding-bottom: 10px;
}

#footer nav ul li a {
  color: #58595B;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(.25,.8,.25,1) 0ms;
}

#footer nav ul li a:hover {
  color: #F78E1E;
}

#footer p {
  float: right;
  text-align: right;
  padding: 0px;
  margin: 0px;
  width: 33.33%;
}

#footer p a {
  color: inherit;
}

@media screen and (max-width: 720px) {
  #footer nav {
    width: 25%;
  }
}

@media screen and (max-width: 520px) {
  #footer nav {
    width: 30%;
  }

  #footer p {
    width: 40%;
  }
}
