html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}
h2 {
  background: #115ac1;
  color: #fff;
  font: 16px Cabin, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin: 0;
  padding: 10px;
  text-transform: uppercase;
}
.logo {
  padding: 20px;
}
.logo img {
  display: block;
  margin: 0 auto;
  width: 155px;
  height: auto;
}

.branding .hero img {
  width: 100%;
  height: auto;
  display: block;
}
.links-to-us {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.links-to-us a {
  display: block;
  text-decoration: none;
  color: #333;
  background: #fff;
  padding: 8px 16px;
}
.links-to-us a:hover {
  background: #eaeaea;
}
.links-to-us h4 {
  margin: 0;
  color: #115ac1;
  font-size: 14px;
}
.links-to-us p {
  margin: 0 0 5px;
  font-size: 12px;
}

.things-to-do__wrapper {
  background: #115ac1;
  color: #fff;
  padding: 16px;
}

.things-to-do__wrapper h3 {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
}

.things-to-do ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.things-to-do ul li {
  list-style: none;
  display: inline-block;
}
.things-to-do ul li::after {
  content: ', '
}

.things-to-do ul a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
