.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #FFDBEB;
  color: dimgray;
  padding: 10px;
  font-size: 16px;
}

.footer__info, .footer__links, .footer__social {
  flex: 1;
  margin: 20px;
}

.footer__info h3, .footer__links h3, .footer__social h3 {
  margin-bottom: 10px;
}

.footer__info p, .footer__links ul li {
  margin: 0;
  padding-left: 20px;
}

.footer__info i, .footer__links ul li:before {
  margin-right: 10px;
  font-size: 20px;
}

.footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links ul li:before {
  content: "\2022";
}

.footer__links ul li a {
  text-decoration: none;
}


.footer__social .social__icons {
  display: flex;
}

.footer__social .social__icons a {
  display: block;
  margin-right: 10px;
  color: dimgray;
  text-decoration: none;
  font-size: 20px;
}

.footer__social .social__icons a:hover {
  color: dimgray;
}

.footer__social .social__icons i {
  transition: color 0.3s ease-in-out;
}

.footer__copyright {
  text-align: center;
  width: 100%;
/*  margin-top: 40px;*/
}

/*
li:hover {
  background-color: #ffe5f0;
}

*/