footer {
  padding: 40px 0 20px;
  background-color: #048940;
  border-top: 10px solid #fbb517;
}

footer .title {
  color: #fff;
  font-size: 17px;
  margin-bottom: 15px;
  min-height: 40px;
}

footer .links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .links li {
  margin-bottom: 5px;
}

footer .links li a {
  color: #f4f4f4;
  font-size: 13px;
}

footer .social li {
  display: inline-block;
  margin-bottom: 5px;
}

footer .social li a {
  font-size: 22px;
  border-radius: 23px;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #05a24c;
  -webkit-transition: -webkit-transform .8s ease;
  transition: -webkit-transform .8s ease;
  transition: transform .8s ease;
  transition: transform .8s ease, -webkit-transform .8s ease;
}

footer .social li a:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

footer .copyright {
  color: #f5f5f5;
  font-size: 13px;
}

footer .footerLogo img {
  width: 100%;
}

@media (max-width: 992px) {
  footer .links {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  footer .links:not(.social) li {
    display: inline-block;
    padding-right: 15px;
    position: relative;
    margin-right: 4px;
  }
  footer .links:not(.social) li::after {
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    color: #f1f1f1;
  }
  footer .title {
    min-height: auto;
  }
  footer .links.social li {
    margin-right: 10px;
  }
}
/*# sourceMappingURL=footer.css.map */