body {
  margin: 0;
}

/**** START Button Nav *****/
.button-nav-container {
  padding: 0 1rem;
}

.button-nav-container * {
  box-sizing: border-box;
}

.button-nav {
  color: #efeded;
  text-align: center;
  padding: 3rem 0;
  max-width: 1220px;
  margin: 0 auto;
}

.button-nav__links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

.button-nav__links > li {
  flex: 0 0 195px;
  border: 1px solid #efeded;
  align-items: stretch;
	background-color: #063b80;
}

.button-nav__hollow {
  font-family: "PT Sans", sans-serif;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  color: #efeded;
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-nav__hollow:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
/**** END Button Nav *****/
