footer {
  margin: 100px 0;
}
footer .logo {
  margin: 0 0 30px;
}

.footer-box {
  margin: 0 auto 0 0;
}
.footer-box:last-child {
  margin: 0;
  text-align: right;
}

.list-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 30px;
}
.list-social li {
  margin: 0 10px 0 0;
}
.list-social li:last-child {
  margin: 0;
}
.list-social li a:hover {
  opacity: 0.7;
}

.copyright, .meta-text {
  margin: 30px 0 0;
  opacity: 0.5;
}

.link-document {
  margin: 0 0 20px auto;
  color: #F7F7F7;
  opacity: 0.8;
}
.link-document:hover {
  color: #855C29;
}
.link-document:last-child {
  margin: 0 0 0 auto;
}

.modal__div {
  position: fixed;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  overflow: auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
  opacity: 0;
}

.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.modal__close::before, .modal__close:after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 12px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #09261F;
  border-radius: 5px;
}
.modal__close::before {
  transform: rotate(45deg);
}
.modal__close::after {
  transform: rotate(135deg);
}

.modal__wrapper {
  background: #F7F7F7;
  color: #121715;
  width: 100%;
  height: auto;
  overflow: auto;
  margin: 50px auto;
  padding: 10px 10px;
  box-sizing: border-box;
  position: relative;
}

.overlay {
  z-index: 100;
  position: fixed;
  background-color: #000;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}