/* Algemene stijl voor het lettertype */
body {
  font-family: 'Roboto', sans-serif;
}

/* Footer container */
.footer-container {
  background: #2C3335;
  box-sizing: border-box;
  text-align: left;
  font: 16px;
  padding: 55px 50px;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-container .footer-left,
.footer-container .footer-center,
.footer-container .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */
.footer-container .footer-left {
  width: 40%;
}

/* Footer links */
.footer-container .footer-links {
  color: #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-container .footer-links a {
  display: inline-block;
  line-height: 1.8;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
}

.footer-container .footer-links a:before {
  content: "|";
  font-weight: 300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-container .footer-links .link-1:before {
  content: none;
}

/* Footer center */
.footer-container .footer-center {
  width: 35%;
}

.footer-container .footer-center i {
  background-color: #2C3335;
  color: #ffffff;
  font-size: 25px;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-container .footer-center i.fa-envelope {
  font-size: 25px;
  line-height: 38px;
}

.footer-container .footer-center p {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  vertical-align: middle;
  margin: 0;
}

.footer-container .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 16px;
  line-height: 2;
}

/* Footer right */
.footer-container .footer-right {
  width: 20%;
}

.footer-container .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}

.footer-container .footer-company-about span {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 175px;
  height: auto;
}

.footer-copyright {
  max-width: 1250px;
  margin: 0 auto;
  background-color: #252a2c; /* Iets donkerder */
  text-align: center;
  color: #aaa;
  font-size: 14px;
  padding: 15px 0;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}


/* Responsive */
@media (max-width: 880px) {
  .footer-container {
    font: bold 16px sans-serif;
  }

  .footer-container .footer-left,
  .footer-container .footer-center,
  .footer-container .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-container .footer-center i {
    margin-left: 0;
  }
}
