#footer {
  width: 100%;
  height: 400px;

  background-color: var(--color-accent);
  color: var(--color-white);

  padding-top: 30px;
}

#footer .top {
  max-width: 1000px;
  width: 70%;
  height: 80%;
  margin: auto;

  display: flex;
  flex-direction: row;
}

#footer .top .left {
  flex: 0.5;
  height: 80%;
  margin: auto;
}

#footer .top .right {
  flex: 0.5;
  height: 80%;
  margin: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#footer .top .right h2 {
  margin: 0;
}

#footer .top .right a {
  font-weight: 400;
}

#footer .top .left .info {
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 100%;
  height: 30%;
}

#footer .top .left .info .logo {
  width: 70px;
  height: 70px;
}

#footer .top .left .info .logo img {
  width: 100%;
  height: 100%;
  stroke: var(--color-white) !important;
}

#footer .top .left .info .infotext {
  width: 90%;
  height: 100%;
  margin-left: 20px;

  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.infotext h3 {
  font-size: 25px;
  font-weight: bold;
}

.infotext p {
  font-weight: 200;
  margin-top: 5px;
}

#footer .top .left .contact {
  width: 100%;
  height: 70%;

  margin-top: 30px;
}

#footer .top .left .contact .entry {
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

#footer .top .left .contact .entry .title a {
  text-decoration: none;
  color: var(--color-white);
  font-weight: 400;
}
#footer .top .left .contact .entry .title p {
  margin: 0;
}

#footer .top .left .contact .entry .icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer div.top div.right div.services a {
  line-height: 2em;
  font-size: 18px;

}

#footer .bottom {
  max-width: 1000px;
  width: 70%;
  height: 20%;
  margin: auto;
}

#footer .bottom p {
  opacity: 0.9;
}

#footer .bottom .line {
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.5;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  #footer {
    height: auto;
    padding: 30px 20px;
  }

  #footer .top {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  #footer .top .left,
  #footer .top .right {
    width: 100%;
    flex: none;
    margin-bottom: 30px;
    align-items: flex-start;
  }

  #footer .top .right {
    align-items: flex-start;
  }

  #footer .top .left .info {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  #footer .top .left .info .infotext {
    margin-left: 0;
    margin-top: 10px;
    line-height: normal;
  }

  #footer .top .left .contact .entry {
    align-items: flex-start;
  }

  #footer .bottom {
    width: 100%;
    text-align: center;
  }

  #footer .bottom .line {
    margin-bottom: 15px;
  }

  .infotext h3 {
    font-size: 20px;
  }

  .infotext p {
    font-size: 14px;
  }

  #footer .top .right h2 {
    font-size: 18px;
  }

  #footer .top .right a p {
    font-size: 14px;
  }

  #footer .top .left .contact .entry .icon svg {
    width: 20px;
    height: 20px;
  }

  #footer .top .left .contact .entry .title a,
  #footer .top .left .contact .entry .title p {
    font-size: 14px;
  }
}