footer {
  height: 232px;
  background-color: #1c1c1c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 18px;
}

.inner_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 652px;
  width: 100%;
  padding: 0;
  color: white;
}

footer ul li a {
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 20px 0;
  }

  .inner_footer {
    flex-direction: column;
    align-items: center;
  }

  .inner_footer p {
    margin-bottom: 30px;
    padding-top: 20px;
  }

  footer ul {
    flex-direction: column;
  }

  footer ul li {
    margin-bottom: 20px;
  }
}
