/* Footer styles */
.footer {
  background-color: #11122b;
  color: #cbcbcb;
  font-family: "Ubuntu Condensed",sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin:10px 0;
  height: 300px;
  padding: 20px;
  clear: both;

}
.footer > .logo-footer img {
  width: 120px;
  height: auto;
  filter: brightness(70%);
  opacity: 0.5;

}
.footer > .footer-phone-hours span {
  margin: 10px 0;
  font-size: 1em;
  letter-spacing: 2px;

}
.footer > .footer-phone-hours > .hours {
  font-size: 0.8em;
  color: #cea135;
  text-transform: uppercase;
}
.footer > .links-wrapper {
  margin: 10px 0;
  width: 400px;
}
.footer > .social-media-icons-wrapper {
  margin: 10px 0;
  width: 300px;
  display: flex;
  justify-content: space-around;
}
.footer > .social-media-icons-wrapper a {
  font-size: 1.5em;
  color: #cbcbcb;
  transition: 0.5s;
}
.footer > .social-media-icons-wrapper a:hover {
  color: #cea135;
}
.footer > .copyright-wrapper {
  margin-top: 10px;
  text-align: center;
  font-size: 0.7em;
  color: #858585;
}