html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

body {
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font: 300 20px/28px "Raleway", sans-serif;
  background-color: #3B9AB2;
  margin: 0;
  padding: 0; }

a {
  color: #EBCC2A;
  text-decoration: none; }

nav#top-nav {
  text-transform: uppercase;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  width: 100%; }
  nav#top-nav .top-nav {
    max-width: 50%;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 1 0 auto;
    -moz-box-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-flex-direction: horizontal;
    -moz-flex-direction: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    padding: 1em 0; }
    @media only screen and (max-width: 767px) {
      nav#top-nav .top-nav {
        max-width: 100%;
        display: block;
        text-align: center; } }
    nav#top-nav .top-nav li.menu-icon {
      display: none; }
      @media only screen and (max-width: 767px) {
        nav#top-nav .top-nav li.menu-icon {
          display: inline-block;
          float: right;
          margin-right: 20px; } }
      nav#top-nav .top-nav li.menu-icon .icon {
        padding: 0;
        margin: 1em;
        width: 28px; }
        nav#top-nav .top-nav li.menu-icon .icon:before, nav#top-nav .top-nav li.menu-icon .icon:after {
          background-color: #EBCC2A;
          content: "";
          display: block;
          position: absolute;
          position: relative;
          -webkit-border-radius: 3px;
          -moz-border-radius: 3px;
          border-radius: 3px;
          height: 1px;
          margin: 8px 0;
          -webkit-transition: all 0.2s ease-in-out;
          -moz-transition: all 0.2s ease-in-out;
          -ms-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
        nav#top-nav .top-nav li.menu-icon .icon:before {
          box-shadow: 0 8px 0 #EBCC2A;
          margin-bottom: 16px; }
      nav#top-nav .top-nav li.menu-icon .close:before {
        box-shadow: 0 0 0 #fff;
        -webkit-transform: translateY(9px) rotate(45deg);
        -moz-transform: translateY(9px) rotate(45deg);
        transform: translateY(9px) rotate(45deg);
        background-color: #fff; }
      nav#top-nav .top-nav li.menu-icon .close:after {
        -webkit-transform: translateY(-9px) rotate(-45deg);
        -moz-transform: translateY(-9px) rotate(-45deg);
        transform: translateY(-9px) rotate(-45deg);
        background-color: #fff; }
    nav#top-nav .top-nav li:not(.menu-icon) {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex: 1 0 0;
      -moz-box-flex: 1 0 0;
      -ms-flex: 1 0 0;
      -webkit-flex: 1 0 0;
      flex: 1 0 0;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-flex-direction: vertical;
      -moz-flex-direction: vertical;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-align-items: center;
      align-items: center;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      nav#top-nav .top-nav li:not(.menu-icon):hover {
        background-color: #EBCC2A; }
        nav#top-nav .top-nav li:not(.menu-icon):hover a {
          color: #fff; }
      nav#top-nav .top-nav li:not(.menu-icon) a {
        padding: 1em; }
      nav#top-nav .top-nav li:not(.menu-icon) ul.dropdown-content {
        position: absolute;
        z-index: -1;
        background-color: #EBCC2A;
        width: 300px;
        margin-left: calc(-300px + (50% / 8));
        padding: 0;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        nav#top-nav .top-nav li:not(.menu-icon) ul.dropdown-content li {
          padding: 1em 2em; }
          nav#top-nav .top-nav li:not(.menu-icon) ul.dropdown-content li a {
            height: 0;
            color: #fff; }
        nav#top-nav .top-nav li:not(.menu-icon) ul.dropdown-content li:last-of-type {
          padding-bottom: 3em; }
      nav#top-nav .top-nav li:not(.menu-icon):hover ul.dropdown-content {
        z-index: 1;
        opacity: 1; }
      @media only screen and (max-width: 767px) {
        nav#top-nav .top-nav li:not(.menu-icon) {
          display: none;
          padding: 0.5em 0; }
          nav#top-nav .top-nav li:not(.menu-icon) a {
            font: 700 28px/40px "Raleway", sans-serif;
            color: #fff; }
          nav#top-nav .top-nav li:not(.menu-icon).active {
            display: block; } }

.main {
  height: 100%;
  max-width: 70%;
  padding: 1em 0 1em 1em;
  font: 700 72px/108px "Raleway", sans-serif;
  color: #EBCC2A;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out; }
  .main .contrast {
    color: #fff; }
  .hover-fade {
    opacity: 0.5;
    filter: alpha(opacity=50); }
  @media only screen and (max-width: 767px) {
    .main {
      max-width: 100%;
      padding: 2em 1em;
      font-size: 48px;
      line-height: 60px; } }

/*# sourceMappingURL=style.css.map */
