body {
  color: #000;
  font-size: 16px;
  line-height: 1.9em;
  font-family: "europa",sans-serif;
  font-style: normal;
  font-weight: 400;
  background: #b2cce0;
  -webkit-font-smoothing: antialiased
}

body, html { height: 100%; }
body.nav-active,
html.nav-active {
  overflow: hidden;
}
/* ---------------------------------------------------------------- */

* {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
a, a:link, a:visited { color: #000; text-decoration: underline; }
a:focus, a:hover { color: #000; text-decoration: none; }


h1 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 3px;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1170px;
  padding: 0 30px;
  margin: 0 auto;
}

.site-header {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
}

.logo {
  width: 100%;
  max-width: 180px;
  float: left;
}

.intro {
  font-size: 32px;
  line-height: 1.3em;
  padding: 85px 0;
}

/* nav */
/* menu handle - hamburger animation */
#menu-handle {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  z-index: 100;
}
#menu-handle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#menu-handle:hover span {
  background: #000;
  transition: none;
}
#menu-handle span:nth-child(1) {
  top: 0px;
}
#menu-handle span:nth-child(2),
#menu-handle span:nth-child(3) {
  top: 8px;
}
#menu-handle span:nth-child(4) {
  top: 16px;
}
#menu-handle.nav-active span:nth-child(1),
#menu-handle.nav-active span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}
#menu-handle.nav-active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu-handle.nav-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


/* nav */
#main-nav {
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #f7e05e;
  padding: 30px;
  position: fixed;
  top: -100%;
  left: 0;
  transition: all 0.3s ease-out;
  z-index: 99;
}
#main-nav.nav-active {
  top: 0;
}
#main-nav ul {
  padding: 0;
  margin: 0;
}
#main-nav li {
  position: relative;
  display: block;
  line-height: 1em;
  padding: 22px 0;
}
#main-nav a,
#main-nav a:link,
#main-nav a:visited {
  color: #000;
  text-decoration: none;
}
#main-nav a:hover,
#main-nav a:active {
  text-decoration: none;
}

/* subnav */
#main-nav .subnav {
  overflow: hidden;
  max-height: 0;
  padding: 0;
  margin-left: 20px;
	transition: all 0.3s ease-in-out;
  position: absolute;
  top: 70px;
  z-index: 1000;
}
#main-nav .subnav.active {
  max-height: 75em;
}
.subnav-item > a {
  display: table;
}
.subnav-item-text {
  padding-right: 7px;
}
.subnav-caret {
  display: table-cell;
  vertical-align: middle;
  font-size: 9px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.subnav-item.active .subnav-caret {
  transform: rotate(-180deg);
  transform-origin: center center;
}
#main-nav ul li:hover > ul {
  display: block;
}
#main-nav .subnav li {
  display: block;
  clear: both;
  /* padding: 10px 0; */
}


.splash-banner {
  height: 450px;
  background: url('../images/splash-image.jpg') no-repeat center center;
  background-size: cover;
}

.content {
  padding-top: 40px;
  padding-bottom: 40px;
}
.content-heading {
  margin-bottom: 30px;
}
.content-body {
  font-size: 18px;
}


footer {
  text-align: center;
  background: #e4e2e3;
  padding: 80px 0;
}
footer .container {
  position: relative;
}
.footer-logo {
  width: 120px;
  margin: 0 auto 80px;
}
.footer-info {
  text-transform: uppercase;
}
.footer-legal {
  font-size: 14px;
  padding-top: 40px;
  clear: both;
}
