@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700,800");
.center-vertical, #mobile-menu .menu-items p, #splash .highlight-book-now a.book-now {
  display: block;
  position: relative;
  float: left;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%); }

.center-horizontal, article#our-cruises .cruise a.book-now {
  position: relative;
  float: left;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%); }

.center-both, hr.divider:before {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%); }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 30px;
  height: 21px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #FFF;
    border-radius: 1px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -9px; }
  .hamburger-inner::after {
    bottom: -9px; }

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
  -o-transition-duration: 0.13s;
  transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -18px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
    -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
  transform: translate3d(0, -9px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
  -o-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
    -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

html, body {
  margin: 0; }

#wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative; }

a, a:active, a:visited {
  text-decoration: none; }
  a:hover, a:active:hover, a:visited:hover {
    cursor: pointer; }

p, h1, h2, h3, h5 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 100%;
  line-height: 130%;
  margin: 0; }

h1 {
  font-size: 180%;
  font-weight: bold; }

h2 {
  font-size: 150%;
  line-height: 120%;
  font-weight: 500; }

h5 {
  font-weight: normal;
  font-size: 110%; }

div, img, p, a, article, section {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box; }

#mobile-menu {
  position: absolute;
  padding-top: 30px;
  right: 50px;
  width: 100%;
  max-width: 1000px;
  z-index: 9999; }
  @media screen and (max-width: 1200px) {
    #mobile-menu {
      right: 40px; } }
  @media screen and (max-width: 992px) {
    #mobile-menu {
      right: 0px;
      left: 0px;
      padding: 0;
      height: 0; } }
  #mobile-menu .hamburger {
    display: none;
    float: right;
    outline: none;
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999; }
    @media screen and (max-width: 992px) {
      #mobile-menu .hamburger {
        display: block; } }
  #mobile-menu .menu-items {
    float: right;
    height: 50px; }
    @media screen and (max-width: 992px) {
      #mobile-menu .menu-items {
        margin-right: -410px;
        opacity: 0;
        width: 100%;
        height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
        max-width: 500px;
        padding-top: 80px;
        background-color: rgba(13, 58, 110, 0.98);
        -webkit-transition: .5s ease all;
        -o-transition: .5s ease all;
        transition: .5s ease all; }
        #mobile-menu .menu-items.is-active {
          opacity: 1;
          margin-right: 0px; } }
    #mobile-menu .menu-items a {
      height: 100%;
      display: block;
      position: relative;
      float: left;
      padding-left: 50px; }
      @media screen and (max-width: 1200px) {
        #mobile-menu .menu-items a {
          padding-left: 30px; } }
      @media screen and (max-width: 992px) {
        #mobile-menu .menu-items a {
          width: 100%;
          height: 50px; } }
      @media screen and (max-width: 992px) {
        #mobile-menu .menu-items a:hover {
          background-color: #E6680B; } }
      #mobile-menu .menu-items a:hover p {
        color: #F4822D; }
        @media screen and (max-width: 992px) {
          #mobile-menu .menu-items a:hover p {
            color: white; } }
        #mobile-menu .menu-items a:hover p:after {
          content: '';
          position: absolute;
          bottom: -5px;
          left: 0px;
          height: 2px;
          width: 100%;
          background-color: #F4822D; }
          @media screen and (max-width: 992px) {
            #mobile-menu .menu-items a:hover p:after {
              display: none; } }
    #mobile-menu .menu-items p {
      color: white;
      font-weight: 500;
      font-size: 120%;
      text-transform: uppercase;
      -webkit-transition: .3s ease all;
      -o-transition: .3s ease all;
      transition: .3s ease all; }

hr.divider {
  display: block;
  position: relative;
  float: left;
  width: calc(100% - 80px);
  margin: 70px 40px 0px 40px;
  border: none;
  height: 1px;
  background-color: #999999;
  overflow: visible; }
  @media screen and (max-width: 480px) {
    hr.divider {
      width: calc(100% - 40px);
      margin-right: 20px;
      margin-left: 20px; } }
  hr.divider:before {
    content: '';
    display: block;
    position: absolute;
    width: 80px;
    height: 50px;
    background-color: white;
    background-image: url("/img/ww-icon.png");
    background-size: 85%;
    background-position: center center;
    background-repeat: no-repeat; }

article:not(#splash) {
  display: block;
  position: relative;
  float: left;
  width: 100%;
  padding: 60px 40px; }
  @media screen and (max-width: 480px) {
    article:not(#splash) {
      padding-right: 20px;
      padding-left: 20px; } }
  article:not(#splash) h5 {
    text-align: center;
    margin: -40px auto 50px auto;
    max-width: 1000px; }
  article:not(#splash) h2 {
    text-align: center;
    color: #F4822D;
    font-size: 210%;
    margin-bottom: 50px; }

#splash {
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  background-size: cover;
  background-attachment: scroll;
  background-image: url("/img/harbor-cruise-splash.jpg");
  background-repeat: no-repeat;
  background-position: top center; }
  #splash .wildwood-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 270px; }
    @media screen and (max-width: 1200px) {
      #splash .wildwood-logo {
        width: 220px; } }
    @media screen and (max-width: 480px) {
      #splash .wildwood-logo {
        left: 30px;
        top: 30px;
        width: 200px; } }
  #splash .background-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: scroll; }
  #splash .highlight-book-now {
    height: auto;
    width: 100%;
    position: absolute;
    bottom: 80px;
    background-color: rgba(225, 105, 11, 0.7);
    padding: 30px 430px 30px 50px;
    text-align: center; }
    @media screen and (max-width: 992px) {
      #splash .highlight-book-now {
        padding-right: 50px;
        bottom: 120px; } }
    @media screen and (max-width: 480px) {
      #splash .highlight-book-now {
        padding-right: 20px;
        padding-left: 20px; } }
    #splash .highlight-book-now h2 {
      color: white;
      font-size: 260%;
      text-align: left; }
      @media screen and (max-width: 992px) {
        #splash .highlight-book-now h2 {
          text-align: center;
          font-size: 220%; } }
    #splash .highlight-book-now p {
      color: white;
      font-size: 130%;
      text-align: left;
      margin-top: 5px; }
      @media screen and (max-width: 992px) {
        #splash .highlight-book-now p {
          font-size: 120%;
          text-align: center; } }
    #splash .highlight-book-now a.book-now {
      position: absolute;
      right: 50px;
      font-family: "Montserrat", Arial, sans-serif;
      font-weight: bold;
      text-transform: uppercase;
      color: white;
      padding: 20px 40px;
      border-radius: 6px;
      background-color: rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.4); }
      #splash .highlight-book-now a.book-now:hover {
        background-color: rgba(0, 0, 0, 0.3); }
      @media screen and (max-width: 992px) {
        #splash .highlight-book-now a.book-now {
          left: auto;
          top: auto;
          float: none;
          transform: none;
          -ms-transform: none;
          -webkit-transform: none;
          position: relative;
          right: auto;
          display: inline-block;
          margin-top: 20px; } }

article#our-cruises {
  float: left; }
  article#our-cruises .box-wrapper {
    text-align: center;
    width: 100%;
    margin-left: -10px;
    margin-right: -10px; }
    @media screen and (max-width: 768px) {
      article#our-cruises .box-wrapper {
        margin: 0; } }
  article#our-cruises .cruise {
    font-size: 100%;
    position: relative;
    float: left;
    width: calc(33.33% - 20px);
    margin-left: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    height: auto;
    min-height: 390px;
    padding-bottom: 100px;
    overflow: hidden; }
    @media screen and (max-width: 768px) {
      article#our-cruises .cruise {
        width: 100%;
        margin: 0 0 20px 0; } }
    article#our-cruises .cruise h3 {
      display: block;
      background-color: #00a8e1;
      font-size: 130%;
      padding: 10px 20px 10px 20px;
      color: white; }
      @media screen and (max-width: 1200px) {
        article#our-cruises .cruise h3 {
          font-size: 120%; } }
    article#our-cruises .cruise p {
      padding: 30px 20px 0px 20px;
      text-align: left; }
    article#our-cruises .cruise span {
      display: none; }
    article#our-cruises .cruise .header-image {
      width: 100%;
      height: 150px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; }
    article#our-cruises .cruise:nth-child(1) .header-image {
      background-image: url("/img/harbor-cruise.jpg"); }
    article#our-cruises .cruise:nth-child(2) .header-image {
      background-image: url("/img/dinner-cruise.jpg"); }
    article#our-cruises .cruise:nth-child(3) .header-image {
      background-image: url("/img/magical-mystery.jpg"); }
    article#our-cruises .cruise a.book-now {
      font-family: "Montserrat", Arial, sans-serif;
      padding: 10px 20px;
      text-transform: uppercase;
      background-color: #F4822D;
      color: white;
      position: absolute;
      bottom: 20px;
      border-radius: 6px;
      -webkit-transition: .3s ease background-color;
      -o-transition: .3s ease background-color;
      transition: .3s ease background-color; }
      article#our-cruises .cruise a.book-now:hover {
        background-color: #E6680B; }

.view-cruises {
  width: 100%;
  float: left;
  background-color: #1F5BA0;
  padding: 60px 20px;
  text-align: center; }
  .view-cruises a {
    display: inline-block;
    padding: 60px;
    border: 1px solid;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 20px 40px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4); }
    .view-cruises a:hover {
      background-color: rgba(0, 0, 0, 0.3); }

@media screen and (max-width: 768px) {
  article#cruise-schedule h2 {
    padding-left: 20px;
    padding-right: 20px; } }

@media screen and (max-width: 768px) {
  article#cruise-schedule {
    padding-left: 0;
    padding-right: 0; } }

article#contact .starboard-logo {
  margin: 0 auto;
  display: block;
  width: 90%;
  max-width: 300px; }
