.footer {
  background: #111;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.footer .layout__basic {
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer__logo {
  height: 32px;
}

.footer__company {
  font-size: 20px;
  font-weight: 600;
}

.footer__menu {
  display: flex;
  gap: 30px;
}

.footer__menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.footer__menu a:hover {
  text-decoration: underline;
}

.footer__line {
  border: none;
  border-top: 1px solid #444;
  margin: 20px 0;
}

.footer__mid {
  position: relative;
}

.footer__addr {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__contact li {
  margin-bottom: 4px;
}

.footer__contact strong {
  display: inline-block;
  width: 60px;
}

.footer__policy {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer__policy:hover {
  text-decoration: underline;
}

.footer__copy {
  margin-top: 28px;
  font-size: 13px;
  opacity: 0.7;
}