.region-footer-bottom {

  height: 147px;
  padding: 0 6rem 0 2rem;
  border-radius: 8px;
  background-color: var(--mid-cream-efeae-0);

  border: solid 1px var(--card);

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.region-footer-bottom h2 {
  margin: 0;
}

footer ul.menu {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}

footer ul.menu li {
  padding: 0;
}

footer ul.menu a {
  color: currentColor;
  font-size: 1em;
  text-decoration: none;
}

footer ul.menu a:hover {
  font-size: 1em;
  text-decoration: underline ;
}

.region-footer-below {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5;
  color: #6b6b6b;
  padding: 0 2rem;
  margin-block: 64px 0;
}

.region-footer-below h2 {
  font-size: 18px;
  display: flex;
  align-items: center;
}

.region-footer-below h2::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 16px;
  background-color: #6b6b6b;
  mask-image: url(../images/caution.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  margin-right: 10px;
}

.region-footer-below span {
  display: none;
}


