/* Footer */
footer {
  background: url('../img/footer.png') no-repeat bottom left;
  background-size: 60% auto;
  width: 100%;
  height: auto;
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #ffffff;
  z-index: 99;
}
footer .nav-content {
  width: 50%;
  height: auto;
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
}
footer nav {
  width: 60%;
  height: auto;
  padding: 7% 10% 2% 30%;
}
footer nav h5 {
  margin-bottom: 10px;
}
footer nav a.nav-link {
  width: fit-content;
  font-size: 12px;
  color: #4A2C78;
  padding: 10px 15px;
  display: block;
  font-weight: 700;
  border-radius: 50px;
}
footer nav a.nav-link:hover {
  background-color: #4A2C78;
  color: #ffffff;
}
footer nav a h3 {
  font-size: 14px;
  font-weight: 300;
}
footer .address {
  width: 40%;
  color: #4A2C78;
  font-size: 12px;
  margin-top: 20px;
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 5%;
  text-align: center;
}
footer .address img {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
}
.business-infos {
  background-color: #333333;
  width: 100%;
  color: #ffffff;
  font-size: 12px;
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  padding: 30px 110px 35px 30px;
}
.business-infos .medias {
  width: 90px;
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.business-infos .medias .social-media {
  width: 45px;
  height: 45px;
}

@media (max-width: 900px) {
  footer {
    background: none;
    background-color: #d9dad2;
  }
  footer .nav-content {
    width: 100%;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer nav {
    width: 100%;
    padding: 10% 10% 5%;
  }
  footer .address {
    width: 100%;
    padding: 0 0 10%;
    margin: 0;
  }
  .business-infos {
    justify-content: center;
    padding: 40px 20px 60px;
    text-align: center;
  }
}