.footer {
  margin-top: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: var(--footer-bg, #1e4e66);
  color: var(--footer-color, #fff);
}
.footer p {
  margin-bottom: 0;
}
.footer a {
  color: var(--footer-link-color, #30dd92);
}
.footer a:hover {
  color: var(--footer-link-hover-color, #fff);
}
.footer-columns-wrapper {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 1199.98px) {
  .footer-columns-wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .footer-columns-wrapper {
    justify-content: space-between;
  }
}

.footer-top,
.footer-columns,
.footer-bottom {
  position: relative;
  z-index: 0;
}
.footer-top::before,
.footer-columns::before,
.footer-bottom::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100vw;
  height: 100%;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: 0;
  background-color: transparent;
}

.footer-top {
  color: var(--footer-top-color, --footer-color);
}
.footer-top::before {
  background-color: var(--footer-top-bg, --footer-color-bg);
}
.footer-top a {
  color: var(--footer-top-link-color, --footer-link-color);
}
.footer-top a:hover {
  color: var(--footer-top-link-hover-color, --footer-link-hover-color);
}

.footer-columns {
  color: var(--footer-middle-color, --footer-color);
}
.footer-columns::before {
  background-color: var(--footer-middle-bg, --footer-color-bg);
}
.footer-columns a {
  color: var(--footer-middle-link-color, --footer-link-color);
}
.footer-columns a:hover {
  color: var(--footer-middle-link-hover-color, --footer-link-hover-color);
}

.footer-bottom {
  color: var(--footer-bottom-color, --footer-color);
}
.footer-bottom::before {
  background-color: var(--footer-bottom-bg, --footer-color-bg);
}
.footer-bottom a {
  color: var(--footer-bottom-link-color, --footer-link-color);
}
.footer-bottom a:hover {
  color: var(--footer-bottom-link-hover-color, --footer-link-hover-color);
}

.region-footer-left, .region-footer-middle, .region-footer-right {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .region-footer-left, .region-footer-middle, .region-footer-right {
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .region-footer-left, .region-footer-middle, .region-footer-right {
    padding-right: var(--base-gutter-x);
    padding-left: var(--base-gutter-x);
  }
}

@media (min-width: 1200px) {
  .region-footer-left {
    justify-content: flex-start;
  }
  .region-footer-middle {
    justify-content: center;
  }
  .region-footer-right {
    justify-content: flex-end;
  }
}
