footer {
  background-color: #B24C55;
  text-align: center;
  padding-top: 30px;
  margin-top: auto;
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer li {
  list-style: none;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .menu a {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFEFBA; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, right top, left top, from(#FFFFFF), to(#FFEFBA));
  background: linear-gradient(to left, #FFFFFF, #FFEFBA); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 15px;
  margin-top: 30px;
  text-transform: capitalize;
}
footer .footer-copyright > a > span{
  display: flex; 
  align-items: center;
  justify-content:center;
  flex-wrap:wrap;
  color:#B24C55;
}
footer .footer-copyright p {
  margin-bottom: 0px;
  color:#B24C55;
}
@media (max-width:992px){
  footer .footer-copyright{
    justify-content: center;
    grid-gap: 15px;
  }
}