.footer {
  position: relative;
  height: 70px;
  width: 100%;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.footer-inner {
  max-width: 1115px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-parent {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translate(-50%);
}

.footer-inner img {
  width: 136px;
}

@media (max-width: 800px) {
  .footer {
    height: 140px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: space-evenly;
  }

  .image-parent {
    top: 30px;
  }

  .footer-links {
    position: absolute;
    top: 90px;
  }
}

.footer-links a {
  margin-left: 40px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
}

.footer-links a:hover {
  color: #feba5b;
}
