footer {
  background-color: var(--white);
  height: auto;
  padding: 25px;
  display: flex;
  align-items: center;
  font-size: 13px;
  overflow: hidden;
}

footer .wrapper {
  max-width: 1200px;
  margin: auto;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

footer .wrapper .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  footer .wrapper .top {
    flex-direction: column;
  }
}

footer .wrapper .top .column {
  display: flex;
  flex-direction: column;
}

footer .wrapper .top .column .title {
  text-transform: uppercase;
  margin-bottom: 20px;
}

footer .wrapper .top .column .content {
  display: flex;
}

footer .wrapper .top .column .content .picture {
  width: 200px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  overflow: hidden;
}

footer .wrapper .top .column .content .picture picture {
  width: 100%;
  height: 100%;
}

footer .wrapper .top .column .content .picture picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer .wrapper .top .column .content .text {
  width: 100%;
}

footer .wrapper .top .column .content .text li {
  list-style: none;
}

footer .wrapper .top .column .content .text li .contacts p {
  display: flex;
}

footer .wrapper .top .column .content .text li .contacts p img {
  width: 15px;
  height: auto;
  margin-right: 10px;
}

footer .wrapper .top .column.about {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  footer .wrapper .top .column.about {
    width: 100%;
  }
}

footer .wrapper .top .column.contact {
  width: 25%;
}

@media screen and (max-width: 1024px) {
  footer .wrapper .top .column.contact {
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 1024px) {
  footer .wrapper .top .column.contact .contacts p:first-of-type {
    margin-top: 0;
  }
}

footer .wrapper .bottom {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  footer .wrapper .bottom {
    flex-direction: column;
  }
}

footer .wrapper .bottom .links, .copyright {
  display: flex;
	align-items: center;
}

footer .wrapper .bottom .links li {
  list-style: none;
}

footer .wrapper .bottom .links li ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  footer .wrapper .bottom .links li ul {
    flex-direction: column;
  }
}

footer .wrapper .bottom .links li ul li {
  margin-right: 20px;
}

@media screen and (max-width: 1024px) {
  footer .wrapper .bottom .links li ul li {
    height: 30px;
    display: flex;
    align-items: center;
  }
}
