﻿.four-corners header {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.four-corners header.sticky {
  position: sticky;
  top: 0;
}
.four-corners nav a {
  color: var(--link-color);
}
.four-corners nav > div {
  position: absolute;
  padding: 20px;
  pointer-events: all;
}
.four-corners nav {
  height: var(--cover-height);
  width: var(--cover-width);
  z-index: 15;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  position: fixed;
  display: block;
  top: 0;
  bottom: 0;
}
.four-corners .tl {
  top: 0;
  left: 0;
}
.four-corners .tr {
  top: 0;
  right: 0;
}
.four-corners .bl {
  bottom: 0;
  left: 0;
}
.four-corners .br {
  bottom: 0;
  right: 0;
}
.four-corners footer .content > .copyright {
  text-align: right;
}
.four-corners footer .content > .branding {
  text-align: left;
  padding-left: 20px;
}
.four-corners footer .content > .links {
  padding-left: 5px;
  justify-content: flex-start !important;
}
.phone .four-corners nav {
  display: none;
}