footer {
  background: #232323;
  color: rgba(236, 236, 236, 0.8);
  padding: 0 0 100px;
  font-size: 32px;
}
footer .box-text {
  opacity: 0.7;
}
footer .h1 {
  text-align: center;
  margin: 0 auto 80px;
  color: #F4F4F4;
  opacity: 0.5;
  text-align: center;
}
footer .list-social {
  margin: 0 auto;
}

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

.footer-bottom {
  margin: 30px 0 0;
  font-size: 28px;
  opacity: 0.5;
}
.footer-bottom .container {
  align-items: center;
  justify-content: space-between;
}

.modal__div {
  position: fixed;
  max-width: 700px;
  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: 10px;
  top: 10px;
  color: #4B6359;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close::before, .modal__close:after {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  border-radius: 2px;
  background: #4B6359;
}
.modal__close::before {
  transform: rotate(135deg);
}
.modal__close:after {
  transform: rotate(45deg);
}

.modal__wrapper {
  background: #F4F4F4;
  width: 100%;
  height: auto;
  overflow: auto;
  margin: 50px auto;
  padding: 3px;
  padding-top: 30px;
  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;
}