#FOOTER {
  background-color: #333333;
  width: 100%;
}

#footers {
  min-height: 50px;
  max-width: 81%;
  margin: auto;
  font-size: 12px;
}

#footers .top {
  color: #cccccc;
  min-height: 100px;
  padding: 20px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px dotted ghostwhite;
}

#footers .contact {
  padding-top: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: inherit;
}

#footers .contact .img {
  display: block;
  height: 140px;
  overflow: hidden;
  margin-right: 10px;
}

#footers .contact img {
  transform: translateY(-100%);
  display: block;
  height: 100%;
  filter: drop-shadow(0 140px 0 white);
}

#footers .contact .list {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

#footers .contact .list li {
  color: white;
  font-size: 18px;
}

#footers .contact .list .name1 {
  font-size: 24px;
  font-weight: bold;
}

#footers .contact .list .name2 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

#footers .wx {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

#footers .wx .img {
  width: 80px;
  height: 80px;
  margin-bottom: 5px;

}

#footers .wx .img img {
  width: inherit;
  height: inherit;
}

#footers .wx .txt {
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  flex-direction: column;

}

#footers .wx .txt label {
  display: block;
}

#footers .bottom {
  color: #777777;
  min-height: 50px;
  padding: 10px 10px 10px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  font-size: 16px;
  border-top: 1px dotted ghostwhite;
}

#footers .bottom span {
  display: block;
  margin: 5px 0;
}

#footers .bottom a:hover {
  text-decoration: underline;
}