footer {
  padding: 130px 0 0 0;
}
footer .attention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}
footer .attention p {
  font-size: 12px;
  font-weight: 400;
}
footer .attention-img {
  width: 100%;
  max-width: 170px;
  position: relative;
  bottom: -9px;
}
footer .copyright {
  background-color: #000;
  text-align: center;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .copyright p {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  footer {
    padding: 100px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 60px 0 110px 0;
  }
  footer .attention {
    width: 92%;
    margin: 0 auto 20px;
    display: block;
  }
  footer .attention p {
    font-size: 10px;
    line-height: 1.6;
  }
  footer .attention-img {
    max-width: 132px;
    margin-bottom: 20px;
  }
  footer .copyright {
    height: 40px;
  }
  footer .copyright p {
    font-size: 13px;
  }
}