/*!
Theme Name: Brown & Co. Starter Theme
Theme URI: http://browndesign.com/
Author: Brown & Co. Design
Author URI: http://browndesign.com/
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bc_starter
*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url(https://fonts.googleapis.com/css?family=Bitter);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,400italic,600,700);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-width: 300px;
  height: 100%;
  font: normal 16px/24px 'Raleway', Arial, sans-serif;
  color: #234b5d;
}

.wrap {
  max-width: 1124px;
  width: 92%;
  padding: 40px 0;
  margin: 0 auto;
}

strong, b {
  font-weight: bold;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #397e9b;
}
a:hover, a:focus {
  text-decoration: underline;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 20px;
  list-style-type: circle;
}

ol {
  list-style-type: decimal;
}

.primary-button {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #9ad4df;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  color: #397e9b;
  -webkit-transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out, color 250ms ease-in-out;
          transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out, color 250ms ease-in-out;
  cursor: pointer;
}
.primary-button:hover, .primary-button:focus {
  background-color: #397e9b;
  border-color: #397e9b;
  text-decoration: none;
  color: #ffffff;
}

input[type="text"],
input[type="email"],
select,
textarea {
  position: relative;
  max-width: 100%;
  width: 100% !important;
  height: 49px !important;
  background-color: transparent !important;
  padding: 12px 28px !important;
  border-radius: 0;
  border: 1px solid #9ad4df;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: bold 15px/25px 'Raleway', Arial, sans-serif;
  text-transform: uppercase;
  color: #397e9b !important;
  -webkit-appearance: none;
  -webkit-transition: border-color 250ms ease-in-out, color 250ms ease-in-out;
          transition: border-color 250ms ease-in-out, color 250ms ease-in-out;
}

select {
  padding-right: 58px !important;
  background: url("assets/img/down-arrow.svg") no-repeat right 26px center;
  background-size: 16px;
  cursor: pointer;
}

textarea {
  height: 200px !important;
}

input[type="submit"],
input[type="button"] {
  max-width: 100%;
  width: auto;
  height: 47px;
  padding: 12px 28px;
  background-color: #9ad4df;
  border: 0;
  border-radius: 0;
  font: bold 15px/25px 'Raleway', Arial, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
          transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}
input[type="submit"]:hover, input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  background-color: #ffffff;
  color: #397e9b;
}

::-webkit-input-placeholder {
  color: #9ad4df;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #9ad4df;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #9ad4df;
}

:-ms-input-placeholder {
  color: #9ad4df;
}

*:focus {
  outline: 0;
}

/* ========================
	 Basic Grid Styles
=========================*/
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -2.5rem;
}

.columns {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ========================
	 Grid Style Modifiers
=========================*/
/* Vertical row alignment */
.row.align-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ========================
	 Responsive Styles
=========================*/
/* small screens */
@media screen and (min-width: 18rem) {
  .small-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .small-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.6666%;
        -ms-flex: 0 0 91.6666%;
            flex: 0 0 91.6666%;
  }

  .small-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.3333%;
        -ms-flex: 0 0 83.3333%;
            flex: 0 0 83.3333%;
  }

  .small-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }

  .small-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.6666%;
        -ms-flex: 0 0 66.6666%;
            flex: 0 0 66.6666%;
  }

  .small-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.3333%;
        -ms-flex: 0 0 58.3333%;
            flex: 0 0 58.3333%;
  }

  .small-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .small-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.6666%;
        -ms-flex: 0 0 41.6666%;
            flex: 0 0 41.6666%;
  }

  .small-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .small-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .small-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666%;
        -ms-flex: 0 0 16.6666%;
            flex: 0 0 16.6666%;
  }

  .small-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.3333%;
        -ms-flex: 0 0 8.3333%;
            flex: 0 0 8.3333%;
  }

  .small-offset-12 {
    margin-left: 100%;
  }

  .small-offset-11 {
    margin-left: 91.6666%;
  }

  .small-offset-10 {
    margin-left: 83.3333%;
  }

  .small-offset-9 {
    margin-left: 75%;
  }

  .small-offset-8 {
    margin-left: 66.6666%;
  }

  .small-offset-7 {
    margin-left: 58.3333%;
  }

  .small-offset-6 {
    margin-left: 50%;
  }

  .small-offset-5 {
    margin-left: 41.6666%;
  }

  .small-offset-4 {
    margin-left: 33.3333%;
  }

  .small-offset-3 {
    margin-left: 25%;
  }

  .small-offset-2 {
    margin-left: 16.6666%;
  }

  .small-offset-1 {
    margin-left: 8.3333%;
  }

  .small-hide {
    display: none !important;
  }

  .small-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* medium screens */
@media screen and (min-width: 52rem) {
  .medium-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .medium-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.6666%;
        -ms-flex: 0 0 91.6666%;
            flex: 0 0 91.6666%;
  }

  .medium-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.3333%;
        -ms-flex: 0 0 83.3333%;
            flex: 0 0 83.3333%;
  }

  .medium-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }

  .medium-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.6666%;
        -ms-flex: 0 0 66.6666%;
            flex: 0 0 66.6666%;
  }

  .medium-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.3333%;
        -ms-flex: 0 0 58.3333%;
            flex: 0 0 58.3333%;
  }

  .medium-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .medium-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.6666%;
        -ms-flex: 0 0 41.6666%;
            flex: 0 0 41.6666%;
  }

  .medium-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .medium-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .medium-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666%;
        -ms-flex: 0 0 16.6666%;
            flex: 0 0 16.6666%;
  }

  .medium-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.3333%;
        -ms-flex: 0 0 8.3333%;
            flex: 0 0 8.3333%;
  }

  .medium-offset-12 {
    margin-left: 100%;
  }

  .medium-offset-11 {
    margin-left: 91.6666%;
  }

  .medium-offset-10 {
    margin-left: 83.3333%;
  }

  .medium-offset-9 {
    margin-left: 75%;
  }

  .medium-offset-8 {
    margin-left: 66.6666%;
  }

  .medium-offset-7 {
    margin-left: 58.3333%;
  }

  .medium-offset-6 {
    margin-left: 50%;
  }

  .medium-offset-5 {
    margin-left: 41.6666%;
  }

  .medium-offset-4 {
    margin-left: 33.3333%;
  }

  .medium-offset-3 {
    margin-left: 25%;
  }

  .medium-offset-2 {
    margin-left: 16.6666%;
  }

  .medium-offset-1 {
    margin-left: 8.3333%;
  }

  .medium-hide {
    display: none !important;
  }

  .medium-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* large screens */
@media screen and (min-width: 76rem) {
  .large-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .large-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.6666%;
        -ms-flex: 0 0 91.6666%;
            flex: 0 0 91.6666%;
  }

  .large-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.3333%;
        -ms-flex: 0 0 83.3333%;
            flex: 0 0 83.3333%;
  }

  .large-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }

  .large-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.6666%;
        -ms-flex: 0 0 66.6666%;
            flex: 0 0 66.6666%;
  }

  .large-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.3333%;
        -ms-flex: 0 0 58.3333%;
            flex: 0 0 58.3333%;
  }

  .large-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .large-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.6666%;
        -ms-flex: 0 0 41.6666%;
            flex: 0 0 41.6666%;
  }

  .large-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .large-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .large-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666%;
        -ms-flex: 0 0 16.6666%;
            flex: 0 0 16.6666%;
  }

  .large-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.3333%;
        -ms-flex: 0 0 8.3333%;
            flex: 0 0 8.3333%;
  }

  .large-offset-12 {
    margin-left: 100%;
  }

  .large-offset-11 {
    margin-left: 91.6666%;
  }

  .large-offset-10 {
    margin-left: 83.3333%;
  }

  .large-offset-9 {
    margin-left: 75%;
  }

  .large-offset-8 {
    margin-left: 66.6666%;
  }

  .large-offset-7 {
    margin-left: 58.3333%;
  }

  .large-offset-6 {
    margin-left: 50%;
  }

  .large-offset-5 {
    margin-left: 41.6666%;
  }

  .large-offset-4 {
    margin-left: 33.3333%;
  }

  .large-offset-3 {
    margin-left: 25%;
  }

  .large-offset-2 {
    margin-left: 16.6666%;
  }

  .large-offset-1 {
    margin-left: 8.3333%;
  }

  .large-hide {
    display: none !important;
  }

  .large-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.site-header {
  width: 100%;
  height: 100px;
}

.site-title {
  float: left;
  margin-top: 8px;
  margin-left: -7px;
}
.site-title img {
  display: block;
  width: 310px;
  height: auto;
}
@media screen and (max-width: 52rem) {
  .site-title {
    margin-top: 16px;
  }
  .site-title img {
    width: 236px;
  }
}

.site-navigation {
  float: right;
  margin-top: 35px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
}
.site-navigation.active div.menu-top-bar-menu-container {
  display: block;
}
.site-navigation.active .mobile-nav-open {
  display: none;
}
.site-navigation.active .mobile-nav-close {
  display: block;
}
.site-navigation div.menu-top-bar-menu-container {
  display: none;
  position: absolute;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  padding: 48px 0;
  background-color: #234b5d;
}
.site-navigation div.menu-top-bar-menu-container ul {
  max-width: 1024px;
  width: 92%;
  margin: 0 auto;
}
.site-navigation li {
  position: relative;
  display: block;
}
.site-navigation li a {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  border-color: transparent;
  color: #397e9b;
  text-decoration: none;
  -webkit-transition: color 250ms ease-in-out, border-color 250ms ease-in-out;
          transition: color 250ms ease-in-out, border-color 250ms ease-in-out;
}
.site-navigation li a:hover, .site-navigation li a:focus {
  color: #9ad4df;
}
.site-navigation li.menu-item-has-children:hover ul, .site-navigation li.menu-item-has-children:focus ul {
  display: block;
}
.site-navigation li.menu-item-has-children ul {
  width: 94%;
  margin: 0 2% 0 4%;
  padding-left: 0;
}
@media screen and (min-width: 76rem) {
  .site-navigation li.menu-item-has-children ul {
    display: none;
    position: absolute;
    z-index: 1;
    top: 28px;
    left: 20px;
    min-width: 224px;
    margin: 0;
    padding: 8px 12px;
    background-color: #9ad4df;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .site-navigation li.menu-item-has-children ul li {
    display: block;
  }
  .site-navigation li.menu-item-has-children ul li a {
    margin-left: 0;
    color: #ffffff;
  }
  .site-navigation li.menu-item-has-children ul li a:hover, .site-navigation li.menu-item-has-children ul li a:focus {
    border-bottom: 0;
    color: #397e9b;
  }
  .site-navigation li.menu-item-has-children ul li a:before {
    content: '';
  }
  .site-navigation li.menu-item-has-children ul li.current-menu-item a {
    color: #397e9b !important;
  }
}
.site-navigation li.current-menu-item a {
  color: #9ad4df !important;
}
.site-navigation .facebook-link {
  display: none;
  margin-top: -7px;
  margin-left: 10px;
}
.site-navigation .facebook-link img {
  display: block;
  width: 32px;
  height: auto;
}
.search-form{
  height: 0;
  visibility: hidden;
  max-width: 1000px;
  width: 100%;
  transition: .4s ease al;
  margin: 0 auto;
  padding-left: 5px;
}
.search-form.show{
  visibility: visible;
  height: 60px;
  transition: .3s ease all;
}
.home .site-header.show{
  margin-top: 60px;
  transition: .3s ease all;
}
.site-header.show{
  border-top: 2px solid #397e9b;
}
.search-form input{
  display: inline-block;
  max-width: 800px;
  width: 70% !important;
  height: 49px;
  margin: 5.5px 2px;
}
.site-navigation .search-button {
  cursor: pointer;
  margin-top: -5px;
  padding: 0 10px;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}
.search-form input[type="submit"]{
  width: 25% !important;
}
@media screen and (max-width: 567px) {
  .search-form input,
  .search-form input[type="submit"]{
    width: 48% !important;
  }
}
.site-header .icon {
  display: inline-block;
  width: 100%;
  height: 100%;
  stroke-width: 0;
  fill: #88D2DD;
}
.home .site-header .icon{
  fill: #fff;
}

.site-navigation .mobile-nav-open {
  display: inline-block;
  vertical-align: middle;
}
.site-navigation .mobile-nav-open svg {
  width: 28px;
  height: 28px;
  margin-top: -2px;
  fill: #9ad4df;
  -webkit-transition: fill 250ms ease-in-out;
          transition: fill 250ms ease-in-out;
}
.site-navigation .mobile-nav-open:hover svg, .site-navigation .mobile-nav-open:focus svg {
  fill: #234b5d;
}
.site-navigation .mobile-nav-close {
  display: none;
  position: relative;
  z-index: 9999;
}
.site-navigation .mobile-nav-close svg {
  width: 28px;
  height: 28px;
  margin-top: -2px;
  fill: #397e9b;
  -webkit-transition: fill 250ms ease-in-out;
          transition: fill 250ms ease-in-out;
}
.site-navigation .mobile-nav-close:hover svg, .site-navigation .mobile-nav-close:focus svg {
  fill: #9ad4df;
}
@media screen and (min-width: 76rem) {
  .site-navigation div.menu-top-bar-menu-container {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: auto;
    padding: 0;
    background-color: transparent;
  }
  .site-navigation div.menu-top-bar-menu-container ul {
    width: auto;
    margin: 0;
  }
  .site-navigation li {
    display: inline-block;
  }
  .site-navigation li a {
    margin-left: 20px;
    padding-bottom: 0;
  }
  .site-navigation .facebook-link {
    display: inline-block;
    vertical-align: middle;
  }
  .site-navigation .mobile-nav-open {
    display: none;
  }
}

.home .site-header {
  position: absolute;
  z-index: 9999;
  top: 0;
  height: 45px;
}
.home .site-title img {
  width: 58px;
}
.home .site-navigation li a {
  color: #397e9b;
}
.home .site-navigation li a:before {
  color: #9ad4df;
}
.home .site-navigation li a:hover, .home .site-navigation li a:focus {
  color: #9ad4df;
}
.home .site-navigation .facebook-link img {
  width: 38px;
}
.home .site-navigation .mobile-nav-open:hover svg, .home .site-navigation .mobile-nav-open:focus svg {
  fill: #ffffff;
}
@media screen and (min-width: 76rem) {
  .home .site-navigation li a {
    color: #ffffff;
  }
}

.site-banner {
  position: relative;
  height: 460px;
  background-color: #234b5d;
  overflow: hidden;
}
.site-banner video {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  display: block;
  width: 275%;
  height: auto;
}
.site-banner .site-logo {
  position: absolute;
  top: 120px;
  bottom: auto;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
  max-width: 420px;
  width: 84%;
  height: auto;
  margin: 0 auto;
}
.site-banner:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: #397e9b;
  opacity: 0.25;
}
@media screen and (min-width: 52rem) {
  .site-banner {
    height: 512px;
  }
  .site-banner video {
    width: 150%;
  }
  .site-banner .site-logo {
    max-width: 500px;
    width: 64%;
  }
}
@media screen and (min-width: 76rem) {
  .site-banner {
    height: 0;
    padding-top: 40%;
  }
  .site-banner video {
    width: 100%;
  }
  .site-banner .site-logo {
    position: absolute;
    top: auto;
    bottom: 80px;
  }
}

.site-content {
  position: relative;
}

.site-footer {
  margin-top: 28px;
  background: url("assets/img/Footer-Waves.png") repeat center;
  text-align: center;
}
.site-footer .subscribe-bar {
  padding: 14px 0;
  background-color: #397e9b;
  color: #ffffff;
}
.site-footer .subscribe-bar .subscribe-bar--title {
  display: block;
  vertical-align: top;
  margin-bottom: 0;
  padding-bottom: 12px;
  font: normal 30px/1 'Bitter', Georgia, serif;
}
@media screen and (min-width: 52rem) {
  .site-footer .subscribe-bar .subscribe-bar--title {
    display: inline-block;
    padding-bottom: 0;
    line-height: 46px;
  }
}
.site-footer .subscribe-bar .subscribe-bar--form {
  display: inline-block;
  vertical-align: top;
  margin-left: 4px;
  text-align: center;
}
.site-footer .subscribe-bar .subscribe-bar--form input[type="email"],
.site-footer .subscribe-bar .subscribe-bar--form input[type="submit"] {
  display: inline-block;
  vertical-align: top;
  margin-left: 8px;
}
.site-footer .subscribe-bar .subscribe-bar--form input[type="email"] {
  width: 240px !important;
  color: #9ad4df !important;
}
@media screen and (max-width: 52rem) {
  .site-footer .subscribe-bar .subscribe-bar--form {
    max-width: 100%;
    width: 240px;
    margin: 0 auto;
  }
  .site-footer .subscribe-bar .subscribe-bar--form input[type="email"],
  .site-footer .subscribe-bar .subscribe-bar--form input[type="submit"] {
    display: block;
    width: 100% !important;
    margin-left: 0;
    text-align: center;
  }
}
.site-footer .subscribe-bar .facebook-link {
  display: inline-block;
  vertical-align: top;
  margin-top: -7px;
  margin-left: 8px;
}
.site-footer .subscribe-bar .facebook-link img {
  display: block;
  width: 52px;
  height: auto;
}
@media screen and (max-width: 52rem) {
  .site-footer .subscribe-bar .facebook-link {
    display: none;
  }
}
.site-footer .address-bar {
  padding: 28px 0 36px;
  text-transform: uppercase;
  color: #234b5d;
}

.page-header {
  margin-bottom: 48px;
  padding: 48px 0 32px;
  background-color: #f8f7f4;
  text-align: center;
  color: #234b5d;
}
.page-header .page-title {
  margin-bottom: 1rem;
  font: normal 36px/42px 'Bitter', Georgia, serif;
}

.featured-image {
  padding: 0;
  background-color: #397e9b;
  color: #ffffff;
}
.featured-image .wrap {
  position: relative;
}
.featured-image .wrap:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 14px;
  background-color: #9ad4df;
}
.featured-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.single-post {
  margin-bottom: 48px;
}
.single-post iframe {
  max-width: 100%;
}
iframe{
  min-height: 200px;
}

.highlight-content {
  padding: 0;
  background-color: #397e9b;
  text-align: center;
  color: #ffffff;
}
.highlight-content .wrap {
  padding: 10px 0;
}
.highlight-content.alt-background {
  background-color: #f8f7f4;
  color: #234b5d;
}
@media screen and (max-width: 52rem) {
  .highlight-content .columns {
    padding-bottom: 42px;
  }
}
.highlight-content a.highlight-content--link {
  color: #ffffff;
}
.highlight-content a.highlight-content--link:hover {
  text-decoration: none;
}
.highlight-content .highlight-content--icon {
  margin-bottom: 12px;
}
.highlight-content .highlight-content--title {
  margin-bottom: 42px;
  font: normal 30px/42px 'Bitter', Georgia, serif;
}
.highlight-content .highlight-content--title .highlight {
  color: #9ad4df;
}
.highlight-content .highlight-content--subtitle {
  margin-bottom: 4px;
  font: bold 18px/30px 'Raleway', Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 52rem) {
  .highlight-content .social-links {
    margin: 14% 0;
  }
}

.blog-scrape {
  text-align: center;
  padding-bottom: 48px;
  word-break: break-word;
}
.blog-scrape .blog-scrape--title {
  display: inline-block;
  margin-bottom: 42px;
  padding: 12px 42px;
  background-color: #9ad4df;
  font: normal 30px/42px 'Bitter', Georgia, serif;
  color: #ffffff;
}
.blog-scrape .blog-scrape--post-thumbnail {
  display: block;
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto 18px;
}
.blog-scrape .blog-scrape--post-title {
  margin-bottom: 12px;
  font: normal 20px/26px 'Bitter', Georgia, serif;
}
.blog-scrape .more-button {
  margin-top: 28px;
}

.highlight-text-links {
  background-color: #9ad4df;
  overflow: hidden;
}
.highlight-text-links .highlight-text-links--title {
  margin-bottom: 20px;
  font: normal 30px/42px 'Bitter', Georgia, serif;
  color: #234b5d;
}
.highlight-text-links .highlight-text-links--photo {
  height: 0;
  margin-top: 48px;
  padding-top: 50%;
  background-color: #397e9b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.highlight-text-links .highlight-text-links--list {
  margin-bottom: 48px;
  padding: 24px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style-type: none;
}
.highlight-text-links .highlight-text-links--list li {
  margin-bottom: 10px;
  font-size: 18px;
}
.highlight-text-links .highlight-text-links--list li a {
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (min-width: 52rem) {
  .highlight-text-links .highlight-text-links--photo {
    float: left;
    width: 66.666%;
    height: 340px;
    margin-top: 0;
    padding-top: 0;
  }
  .highlight-text-links .highlight-text-links--list {
    float: left;
    width: 33.333%;
    padding: 48px 0 0 48px;
  }
}

.boats-filter-bar {
  margin-bottom: 48px;
  text-align: center;
  color: #234b5d;
}
.boats-filter-bar .boats-filter-bar--title {
  margin-bottom: 1rem;
  font: normal 30px/42px 'Bitter', Georgia, serif;
}
.boats-filter-bar .boats-filter-bar--form {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}
.boats-filter-bar .boats-filter-bar--form select {
  -webkit-transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out, color 250ms ease-in-out;
          transition: background-color 250ms ease-in-out, border-color 250ms ease-in-out, color 250ms ease-in-out;
}
.boats-filter-bar .boats-filter-bar--form select:hover, .boats-filter-bar .boats-filter-bar--form select:focus {
  background-color: #397e9b !important;
  border-color: #397e9b;
  text-decoration: none;
  color: #ffffff !important;
}

.boat-card {
  position: relative;
  display: block;
  margin-bottom: 42px;
  padding: 40px 18px;
  border: 1px solid #9ad4df;
  font-size: 15px;
  text-align: center;
  color: #234b5d;
}
.boat-card .boat-card--type-icon {
  display: inline-block;
  width: 100px;
  height: auto;
  margin-bottom: 8px;
}
.boat-card .boat-card--status-icon {
  display: inline-block;
  width: 62px;
  height: auto;
  margin-top: 8px;
  margin-bottom: 8px;
}
.boat-card .boat-card--title {
  margin-bottom: 12px;
  font: normal 24px/28px 'Bitter', Georgia, serif;
}
.boat-card--title__link:hover{
  text-decoration: none;
}
.boat-card p span.label {
  font-weight: 600;
  color: #397e9b;
}
.boat-card:before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  border-top: 14px solid #397e9b;
  -webkit-transition: border-color 250ms ease-in-out;
          transition: border-color 250ms ease-in-out;
}
a.boat-card:hover, a.boat-card:focus {
  text-decoration: none;
}
.boat-card:hover:before, .boat-card:focus:before {
  border-top: 14px solid #9ad4df;
}

.boat-page-content {
  position: relative;
  padding: 24px 0 64px;
  background-color: #ffffff;
  color: #397e9b;
}
.boat-page-content a {
  color: #397e9b;
}
.boat-page-content .boat-name {
  margin-bottom: 20px;
}
.boat-page-content .boat-name h1 {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 12px 10px 0;
  font: normal 36px/1 'Bitter', Georgia, serif;
}
.boat-page-content .boat-name h2{
  position: relative;
  display: inline;
  vertical-align: middle;
  margin-top: 10px;
  margin-left: 20px;
  font-size: 20px;
}
.boat-page-content .boat-name h2:before{
  content:'|';
  position: absolute;
  left: -20px;
  top: 0;
}

.boat-page-content .boat-name img {
  display: inline-block;
  vertical-align: top;
  width: 54px;
  height: auto;
}
.boat-page-content .school-name h2 {
  margin-bottom: 6px;
  font: 600 26px/32px 'Raleway', Arial, sans-serif;
}
.boat-page-content .school-name p.label {
  margin-bottom: 6px;
  font-size: 14px;
  text-transform: uppercase;
}
.boat-page-content .school-name p.school-website {
  margin-bottom: 28px;
  font-size: 14px;
  font-style: italic;
}
.boat-page-content .boat-data p {
  margin-bottom: 8px;
}
.boat-page-content:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  max-width: 1124px;
  width: 92%;
  margin: auto;
  height: 14px;
  background-color: #fff;
}

.photo-lightbox,
.specs-lightbox {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
  max-width: 1124px;
  width: 92%;
  margin: 0 auto;
  padding: 56px 48px 64px;
  background-color: #9ad4df;
  text-align: center;
}
.photo-lightbox img,
.specs-lightbox img {
  display: block;
  max-width: 100%;
  margin: 0 auto 28px;
}
.photo-lightbox .photo-lightbox--close,
.photo-lightbox .specs-lightbox--close,
.specs-lightbox .photo-lightbox--close,
.specs-lightbox .specs-lightbox--close {
  position: absolute;
  top: 16px;
  right: 16px;
}
.photo-lightbox .photo-lightbox--close svg,
.photo-lightbox .specs-lightbox--close svg,
.specs-lightbox .photo-lightbox--close svg,
.specs-lightbox .specs-lightbox--close svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  -webkit-transition: fill 250ms ease-in-out;
          transition: fill 250ms ease-in-out;
}
.photo-lightbox .photo-lightbox--close:hover svg, .photo-lightbox .photo-lightbox--close:focus svg,
.photo-lightbox .specs-lightbox--close:hover svg,
.photo-lightbox .specs-lightbox--close:focus svg,
.specs-lightbox .photo-lightbox--close:hover svg,
.specs-lightbox .photo-lightbox--close:focus svg,
.specs-lightbox .specs-lightbox--close:hover svg,
.specs-lightbox .specs-lightbox--close:focus svg {
  fill: #397e9b;
}
.photo-lightbox.active,
.specs-lightbox.active {
  display: block;
}

#map {
  width: 100%;
  height: 0;
  margin-bottom: 40px;
  padding-bottom: 50%;
}


.voyage-switcher {
  margin: 0 -5px 15px;
  padding: 0;
  font-size: 0;
  list-style: none;
}

.voyage-switcher li {
  display: inline-block;
  font-size: 1rem;
  margin: 5px;
  vertical-align: middle;
}

.voyage-switcher a {
  display: block;
  padding: 5px 8px;
  border-radius: 4px;
  background-color: rgba(57,126,155, .3);
}

.voyage-switcher a:focus {
  text-decoration: none;
}

.voyage-switcher a:hover {
  text-decoration: none;
  background-color: #009eaf;
}

.voyage-switcher a.active {
  background-color: #397e9b;
  color: #ffffff;
}

.boat-current-status {
  padding: 5px 8px;
  margin-left: -8px;
  margin-right: -8px;
  color: #397e9b;
  background: #fff;
  border-radius: 4px;
}

.boat-voyage-content {
  margin-top: 30px;
}

.boat-voyage-content__block + .boat-voyage-content__block {
  margin-top: -1px;
}

.boat-voyage-content__block h3,
.boat-voyage-content__block ul.new-boat-content li h4 {
  position: relative;
  font-size: 1.3em;
  cursor: pointer;
  padding: 10px;
  padding-left: 40px;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.boat-voyage-content__block h3:before,
.boat-voyage-content__block ul.new-boat-content li h4:before {
  content: '+';
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  font-size: 48px;
  color: #397e9b;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.boat-voyage-content__block.active h3:before,
.boat-voyage-content__block ul.new-boat-content li.active h4:before {
  content: '-';
  padding-bottom: 6px;
}

.boat-voyage-content__block-inner .gallery-columns-3 {
  font-size: 0;
}

.boat-voyage-content__block-inner .gallery-columns-3 .gallery-item {
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
  margin-right: 7px;
}

.boat-voyage-content__block-inner {
  padding: 10px;
  display: none;
}

.boat-voyage-content__block.active .boat-voyage-content__block-inner {
  display: block;
}

@supports (display: flex) {
  .boat-voyage-content__block h3 {
    padding: 0 10px;
    padding-left: 40px;
    height: 55px;
    display: flex;
    align-items: center;
  }
}

.map-popup {
  color: #000;
}

.map-popup :first-child {
  margin-top: 0;
}

.map-popup :last-child {
  margin-bottom: 0;
}

.map-popup h4 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 5px;
}

.awi-clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.event-boat__block {
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.event-boat__link + .event-boat__link {
  border-top: 1px solid;
}

.event-boat__link h3 {
  position: relative;
  padding: 5px 25px 5px 5px;
  font-size: 1.125em;
}

.event-boat__link a {
  display: block;
}

.event-boat__link a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, .1);
}

.boat-arrow {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background: #fff;
}

.boat-arrow::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 2px;
  background: #fff;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.boat-arrow::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 2px;
  background: #fff;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.event-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.event-boat__block ~ .event-img {
  margin-top: 20px;
}

.event-card__boats {
  display: block;
  width: calc(100% - 20px);
  margin: 0 auto;
}

.event-card__boats p {
  padding: 10px 0 10px 20px;
  margin-bottom: 10px;
  text-align: left;
  border-top: 1px solid #397e9b;
  border-bottom: 1px solid #397e9b;
}

.event-card__links {
  text-align: left;
  list-style-type: disc;
  margin-bottom: 0;
}


/*------------ NEW THEME STYLES ----------- */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;

  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
}

.clearfix::after,
.container::after {
  content: '';
  display: block;
  clear: both;
}

.container {
  max-width: 1300px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  border: 0;
}

[style*='background-image'] {
  background-position: center;
  background-size: cover;
}

.home-services {
  padding: 50px 0;
  position: relative;
  text-align: center;
}

.home-services h2{
  margin: 0 auto 10px;
  font-size: 30px;
}

.home-services ul.links {
  font-size: 0;
  padding-left: 0;
}

.home-services ul.links li {
  display: inline-block;
  vertical-align: bottom;
  font-size: 1rem;
  width: 33.333%;
  padding: 15px;
}

.home-services ul.links li a{
  display: block;
}

.home-services ul.links li a:hover{
  text-decoration: none;
}

.home-services ul.links li h3{
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #31728D;
}

.home-services ul.links li a img{
  position: relative;
  width: auto;
  height: 250px;
  margin: 0 auto 10px;
}

.home-section-bg{
  height: 600px;
  position: relative;
  color: #fff;
  text-align: center;
}

.home-section-bg:before{
  content:'';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, .5);
}

.home-section-bg .content{
  position: absolute;
  top:50%;
  left:50%;
  z-index: 3; 
  padding: 0 10px;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.home-section-bg .content h2{
  font-size: 46px;
  line-height: 1;
  padding-bottom: 10px;
}
.home-section-bg .content a.button{
  font-size: 21px;
  width: auto;
  height: auto;
  padding: .6em 1.25em;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  background: #62A0BA;
  border: none;
  border-radius: 0;
  -webkit-transition: .3s ease all;
  -o-transition: .3s ease all;
  transition: .3s ease all;
  -webkit-appearance: none;
}

.home-section-bg .content a.button:hover {
    text-decoration: none;
    background: #fff;
    color: #447E97;
}

@media screen and (max-width: 1024px) {
  .home-services ul.links li a.button{
    font-size: 24px;
  }
  .home-services ul.links li {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .home-services ul.links li {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 10px;
  }
  .home-services ul.links li a img {
    height: auto;
  }
  .home-section-bg{
    height: 400px;
  }
}

@media screen and (max-width: 567px) {
  .home-section-bg .content a.button{
    font-size: 18px;
  }
}

.header {
  position: relative;
  padding: 10px 0 0;
  background-color: #31728D;
  -webkit-transition: .5s ease all;
       -o-transition: .5s ease all;
          transition: .5s ease all;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header:after{
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  height: 29px;
  width: 100%;
  background-image: url(assets/img/downwave.png);
  background-repeat: repeat;
  z-index: 9;
}

.header.sticky{
  padding: 0;
}

.header.sticky:after{
  display: none;
}

.header.sticky img.wave{
  height: 0;
}

.header .logo-wrap {
  float: left;
  text-align: center;
}

.header .logo-wrap img{
  max-width: 80px;
  -webkit-transition: .5s ease all;
       -o-transition: .5s ease all;
          transition: .5s ease all;
  margin-right: 10px;
}

.header .logo-wrap img,
.header .logo-wrap .text{
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.header .logo-wrap h4{
  color: #fff;
  font-size: 24px;
  line-height: 1;
  margin: 0;
  -webkit-transition: .5s ease all;
       -o-transition: .5s ease all;
          transition: .5s ease all;
}

.header .logo-wrap p{
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  margin: 2px 0 0;
  -webkit-transition: .5s ease all;
       -o-transition: .5s ease all;
          transition: .5s ease all;
}

.header .logo-wrap p span{
  color: #ABCCDA;
}

.header.sticky .logo-wrap img{
  max-width: auto;
  max-height: 40px;
  width: auto;
}

.header.sticky .right-wrap{
  float: right;
}

.header.sticky .right,
.header.sticky .nav{
  float: none;
  clear: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.header.sticky .logo-wrap .text{
  height: 55px;
  padding: 5px 0 0;
}
.header.sticky .logo-wrap  h4{
  font-size: 22px;
}

.header .right{
  float: right;
  margin-top: 15px;
  margin-bottom: 5px;
  margin-right: -5px;
}

.header .right a.button{
  margin: 0 5px;
  border-radius: 10px;

  display: inline-block;
  width: auto;
  height: auto;
  padding: .6em 1.25em;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  background: #62A0BA;
  border: none;
  -webkit-transition: .3s ease all;
  -o-transition: .3s ease all;
  transition: .3s ease all;
  -webkit-appearance: none;
}

.header .right a.button:hover {
    text-decoration: none;
    background: #fff;
    color: #447E97;
}

.header .menu-top-bar-menu-container {
  display: inline-block;
  vertical-align: middle;
}

.header .icons{
  line-height: 55px;
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
}

.header .icons svg {
  height: 18px;
  width: 18px;
  margin: 0 3px;
  fill: #fff;
}

@media screen and (max-width: 1023px) {
  .header .right a.button {
    font-size: 14px;
  }
  .header .container{
    padding: 0 10px;  
  }
}

@media screen and (max-width: 767px) {
  .header{
    padding: 20px 0 10px;
  }
  .header .logo-wrap {
    float: none;
    display: block;
    margin: 0 auto 10px;
  }
  .header .right{
    float: none;
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  .header .right a.button{
    margin: 2px;
  }
  .header .nav{
    position: absolute;
    top: 0;
    right: 10px;
  }
  .header.sticky{
    padding: 5px 0
  }
  .header.sticky .right-wrap{
    text-align: center;
    float: none;
  }
  .header.sticky .logo-wrap{
    margin: 0 auto 5px;
  }
}

@media screen and (max-width: 567px) {
  .header:after{
    content: none;
  }
  .header .logo-wrap img{
    display: block;
    margin: 0 auto 5px;
  }
  .header.sticky .logo-wrap {
    margin-top: 35px;
  }
  .header.sticky .logo-wrap img{
    display: inline-block;
  }
  .header.sticky .right a.button{
    font-size: 13px;
    margin: 2px 0;
  }
}

.search-modal {
  position: fixed;
  z-index: 99999;
  display: none;
  width: 100vw;
  height: 100vh;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, .75);
}

.search-modal .form-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.search-modal form input[type='text'] {
  margin-bottom: 5px;
  background-color: #fff !important;
}

.search-modal svg {
  position: absolute;
  top: 120px;
  right: 120px;
  width: 35px;
  height: 35px;
  cursor: pointer;

  fill: #fff;
}

.nav {
  float: right;
  clear: right;
  margin-top: 20px;
}

.nav .container {
  padding: 0;
}

.mNav__trigger,
.mNav-wrap .mNav__close,
.mNav-wrap .mNav__togglesub,
.mNav-cover {
  display: none;
}

.mNav {
  position: relative;
  z-index: 200;
  padding: 0;
  margin: 0;
  font-size: 0;
  list-style: none;
}

.mNav.collapsable {
  white-space: nowrap;
}

.mNav li {
  position: relative;
  margin: 0;
}

.mNav > li {
  display: inline-block;
  height: 40px;
  font-size: 1rem;
  line-height: 40px;
}

.mNav a {
  display: block;
  padding: 0 15px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.mNav ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: .5em 0;
  margin: 0;
  border-top: 2px solid #fff;
  line-height: 1;
  list-style: none;
  background: #20586F;
}

.mNav > li:last-child ul {
  right: 0;
  left: auto;
}

.mNav ul ul {
  top: -.5em;
  right: auto;
  left: 100%;
}

.mNav > li:last-child ul ul {
  right: 100%;
  left: auto;
}

.mNav ul a {
  padding-top: .5em;
  padding-bottom: .5em;
  color: #fff;
}

.mNav ul a:hover{
  background: #0E3B4E;

}

@media screen and (min-width: 768px) {
  .mNav li:hover > ul {
    display: block;
  }
}

@media screen and (max-width: 767px) {
.mNav-cover {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: calc(100vh + 200px);
  background: rgba(0, 0, 0, .6);
}

.mNav-cover,
.mNav__trigger {
  width: 100%;
  cursor: pointer;
}

.mNav__trigger {
  position: relative;
  display: block;
  height: 55px;
  width: 40px;
  float: right;
  padding: 0;
  margin: 0;
  line-height: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
}

.mNav__trigger:hover {
  background: transparent;
}

.mNav__trigger:active {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.mNav__trigger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 3px;
  margin: -2px 0 0 -20px;
  background: #fff;
  border-radius: 2px / 50%;
  -webkit-box-shadow: 0 -8px 0 #fff, 0 8px 0 #fff;
          box-shadow: 0 -8px 0 #fff, 0 8px 0 #fff;
}

.mNav-wrap {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 999999;
  width: calc(100% - 45px);
  max-width: 320px;
  height: calc(100vh + 200px);
  padding-bottom: 200px;
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:         transform .3s ease-out;
          transition: -webkit-transform .3s ease-out;
          transition:         transform .3s ease-out;
          transition:         transform .3s ease-out, -webkit-transform .3s ease-out;
  background: #31728D;
}

.mNav-wrap.nav-shown {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.mNav-wrap .mNav__close {
  position: relative;
  display: block;
  width: 100%;
  height: 45px;
  padding-left: 50px;
  font-size: .9rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 1px dotted #fff;
  border-radius: 0;
  color: #fff;
}

.mNav-wrap .mNav__close:hover,
.mNav a:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.mNav-wrap .mNav__close:active {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.mNav__close span {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 3px;
  -webkit-transform: rotate(45deg) translateX(4px);
      -ms-transform: rotate(45deg) translateX(4px);
          transform: rotate(45deg) translateX(4px);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  background: #fff;
  border-radius: 2px;
}

.mNav__close span ~ span {
  -webkit-transform: rotate(-45deg) translateX(-4px);
      -ms-transform: rotate(-45deg) translateX(-4px);
          transform: rotate(-45deg) translateX(-4px);
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
}

.mNav {
  width: 100%;
  max-height: calc(100% - 45px);
  text-align: left;
  overflow-y: auto;
}

.mNav.nav-hidden,
.mNav .nav-hidden {
  display: none;
}

.mNav.nav-shown,
.mNav .nav-shown {
  display: block;
}

.mNav li,
.mNav > li {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  line-height: 1.2;
  border-bottom: 1px dotted rgba(255, 255, 255, .1);
}

.mNav__links {
  position: relative;
}

.mNav a,
.mNav ul a {
  display: block;
  padding: calc(22.5px - .6rem) 15px;
  font-size: 1rem;
  color: #fff;
  white-space: normal;
}

.mNav .mNav__links > a {
  display: inline-block;
  width: calc(100% - 45px);
  vertical-align: middle;
}

.mNav-wrap .mNav .mNav__togglesub {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 45px;
  height: 100%;
  font-size: 0;
  vertical-align: middle;
  text-indent: -9999px;
  background: rgba(255, 255, 255, .1);
}

.mNav-wrap .mNav__togglesub.nav-hidden {
  display: none;
}

.mNav__togglesub::before {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 0;
  height: 0;
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:         transform .3s ease-out;
          transition: -webkit-transform .3s ease-out;
          transition:         transform .3s ease-out;
          transition:         transform .3s ease-out, -webkit-transform .3s ease-out;
  border-width: 10px 5px 0 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.sub-shown > .mNav__links > .mNav__togglesub::before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.mNav ul {
  position: static;
  padding: 0;
  background: rgba(255, 255, 255, .1);
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
}

.interior-banner {
  position: relative;
  height: 300px;
  text-align: center;
}

.interior-banner:before{
  content:'';
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0, 0, 0, .5);
  z-index: 2;
}

.interior-banner h1{
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  margin-right: -50%;
  z-index: 5 !important;
  color: #fff;
  font-size: 52px;
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  .interior-banner{
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .interior-banner{
    height: 250px;
  }
  .interior-banner h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 567px) {
  .interior-banner{
    height: 200px;
  }
}

.footer {
  position: relative;
  padding: 20px 0 40px;
  background: #31728D;
  color: #fff;
  text-align: center;
}

.footer:before{
  content: '';
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  height: 30px;
  width: 100%;
  background-image: url(assets/img/upwave.png);
  background-repeat: repeat;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  z-index: 3;
}

.footer .container{
  font-size: 0;
  padding: 0 10px;
}

.footer h2{
  font-size: 36px;
  line-height: 1.2;
}

.footer .contact-button,
.footer .stay-connected,
.footer .social-media,
.footer .stay-connected input,
.footer .social-media li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
}

.footer .contact-button,
.footer .stay-connected,
.footer .social-media{
  width: 33.333%;
}

.footer .contact-button a{
  height: 40px;

      width: auto;
    padding: .6em 1.25em;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    background: #62A0BA;
    border: none;
    border-radius: 0;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    -webkit-appearance: none;
}

.footer .contact-button a:hover,
.footer .stay-connected input[type="submit"]:hover{
    text-decoration: none;
    background-color: #fff !important;
    color: #447E97;
}

.footer .stay-connected input{
  margin: 0 3px;
  height: 40px !important;
  border: none;
  font-weight: 400;
}

.footer .stay-connected input[type="email"]{
  width: 300px;
  max-width: calc(100% - 100px);
  width: auto !important;
  background-color: #ffffff !important;
}

.footer .stay-connected input[type="submit"]{
  padding: 5px 25px;
  background-color: #62A0BA !important;
}

.footer .social-media li {
  width: 25px;
  height: 25px;
  margin: 0 6px;
}

.footer .social-media li svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.copyright {
  padding: 10px 0;
  margin: 0;
  font-size: 0;
  color: #fff;
  text-align: center;
  list-style: none;
  background: #333;
}

.copyright li {
  display: inline-block;
  padding: 0 6px;
  font-size: .625rem;
  line-height: 1;
  border-left: 1px solid #fff;
}

.copyright li:first-child {
  border: none;
}

.copyright a {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer .contact-button,
  .footer .stay-connected,
  .footer .social-media{
    width: 100%;
    margin-bottom: 20px;
  }
}
