html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, 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;
}

sup {
  vertical-align: super;
  font-size: 0.7em;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
}

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;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

strong {
  font-weight: bold;
}

small {
  font-size: 0.85em;
}

em {
  font-style: italic;
}

/*** Variables ***/
/* light blue */
/*** Mixins ***/
/*
	SHOELACE is my custom CSS reset/base file/framework.
	Like Bootstrap. Get it?
	- Anna

	I get it!
	- Arty
*/
/* This version of shoelace has been customized to fit the needs of the NPY site. Copy to other projects at your own risk. */
html {
  font-size: 1rem;
}

body {
  font-family: Source Sans Pro;
  color: #333;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0.75em auto;
  line-height: 1.45;
}
h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
  margin-top: 0;
}

a {
  border-bottom: 1px solid transparent;
  color: #B32737;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
a > svg {
  fill: #B32737;
}
a:hover, a:active, a:focus {
  border-color: #741924;
  color: #741924;
}
a:hover > svg, a:active > svg, a:focus > svg {
  fill: #741924;
}

ul:not(.no-list-style) {
  margin: 0.75em 0;
  padding-left: 2em;
  list-style: disc;
}
ul:not(.no-list-style) li:not(:first-of-type) {
  padding-top: 10px;
}
ul:not(.no-list-style) ul {
  list-style: circle;
}

ol:not(.no-list-style) {
  margin: 0.75em 0;
  padding-left: 2em;
  list-style: decimal;
}
ol li:not(:first-of-type) {
  padding-top: 5px;
}
ol:not(.no-list-style) ol {
  list-style-type: lower-alpha;
}

hr {
  margin: 1.5em auto;
  border: none;
  border-top: 1px solid #ccc;
}

code {
  display: block;
  margin: 1em auto;
  padding: 1em;
  background-color: rgba(204, 204, 204, 0.85);
  font-family: monospace;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Heading Styles */
h1 {
  margin-bottom: 10px;
  font-size: 2.5em;
}

h2, h3, h4, h5, h6 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}

h2 {
  margin-top: 15px;
  font-size: 1.75em;
}
h1 + h2 {
  margin-top: 0;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1.1em;
}

/* Button Styles */
button, input[type=submit], input[type=button], .button {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  padding: 9px 15px;
  border: 0;
  border-radius: 4px;
  background-color: #B32737;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  font-family: Source Sans Pro;
  text-align: center;
  cursor: pointer;
}
button svg, button img, input[type=submit] svg, input[type=submit] img, input[type=button] svg, input[type=button] img, .button svg, .button img {
  height: 1.15em;
  margin-bottom: -0.15em;
  margin-right: 0.15em;
  fill: #fff;
}
button:hover, button:active, button:focus, input[type=submit]:hover, input[type=submit]:active, input[type=submit]:focus, input[type=button]:hover, input[type=button]:active, input[type=button]:focus, .button:hover, .button:active, .button:focus {
  background-color: #741924;
  color: #fff;
}
button:hover svg, button:active svg, button:focus svg, input[type=submit]:hover svg, input[type=submit]:active svg, input[type=submit]:focus svg, input[type=button]:hover svg, input[type=button]:active svg, input[type=button]:focus svg, .button:hover svg, .button:active svg, .button:focus svg {
  fill: #fff;
}
button.button-small, input[type=submit].button-small, input[type=button].button-small, .button.button-small {
  padding: 5px 12px 4px;
  font-size: 0.85em;
}
button.button-small svg, button.button-small img, input[type=submit].button-small svg, input[type=submit].button-small img, input[type=button].button-small svg, input[type=button].button-small img, .button.button-small svg, .button.button-small img {
  height: 1em;
}
button.button-feature, input[type=submit].button-feature, input[type=button].button-feature, .button.button-feature {
  clear: both;
  margin: 1em auto;
  padding: 15px 30px 13px;
  font-size: 1.35em;
}
button.button-inverse, input[type=submit].button-inverse, input[type=button].button-inverse, .button.button-inverse {
  background-color: #fff;
  color: #B32737;
}
button.button-inverse svg, input[type=submit].button-inverse svg, input[type=button].button-inverse svg, .button.button-inverse svg {
  fill: #B32737;
}
button.button-inverse:hover, button.button-inverse:active, button.button-inverse:focus, input[type=submit].button-inverse:hover, input[type=submit].button-inverse:active, input[type=submit].button-inverse:focus, input[type=button].button-inverse:hover, input[type=button].button-inverse:active, input[type=button].button-inverse:focus, .button.button-inverse:hover, .button.button-inverse:active, .button.button-inverse:focus {
  color: #741924;
}
button.button-inverse:hover svg, button.button-inverse:active svg, button.button-inverse:focus svg, input[type=submit].button-inverse:hover svg, input[type=submit].button-inverse:active svg, input[type=submit].button-inverse:focus svg, input[type=button].button-inverse:hover svg, input[type=button].button-inverse:active svg, input[type=button].button-inverse:focus svg, .button.button-inverse:hover svg, .button.button-inverse:active svg, .button.button-inverse:focus svg {
  fill: #741924;
}
button[disabled], input[type=submit][disabled], input[type=button][disabled], .button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Standard Form Styles */
form input[type=text], form input[type=email], form input[type=tel], form input[type=password], form select, form textarea {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 0;
  background-color: #fff;
  outline: none;
  font-size: 0.9em;
  font-family: Source Sans Pro;
}
form input[type=text]:hover, form input[type=email]:hover, form input[type=tel]:hover, form input[type=password]:hover, form select:hover, form textarea:hover {
  border-color: #999999;
}
form input[type=text]:focus, form input[type=email]:focus, form input[type=tel]:focus, form input[type=password]:focus, form select:focus, form textarea:focus {
  border: 1px solid rgba(179, 39, 55, 0.5);
  box-shadow: 0 0 5px rgba(179, 39, 55, 0.5);
}
form input[type=text].has-error, form input[type=email].has-error, form input[type=tel].has-error, form input[type=password].has-error, form select.has-error, form textarea.has-error {
  border-color: rgba(204, 0, 0, 0.5);
  background-color: #fff0f0;
}
form input[type=text].has-error:hover, form input[type=email].has-error:hover, form input[type=tel].has-error:hover, form input[type=password].has-error:hover, form select.has-error:hover, form textarea.has-error:hover {
  border-color: rgba(204, 0, 0, 0.75);
}
form input[type=text].has-error:focus, form input[type=email].has-error:focus, form input[type=tel].has-error:focus, form input[type=password].has-error:focus, form select.has-error:focus, form textarea.has-error:focus {
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.25);
}
form input[type=checkbox], form input[type=radio] {
  cursor: pointer;
}
form select {
  background-image: url("../images/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center right 8px;
  background-size: 20px;
  cursor: pointer;
  /* TODO: figure out how to make select placeholder gray */
}
form textarea {
  height: 80px;
  min-width: 100px;
  max-width: 100%;
}
form label {
  display: block;
  margin: 12px 0 4px 0;
  font-weight: bold;
  font-size: 0.95em;
}
form p {
  margin: 0.25em 0 0 0;
  font-size: 0.95em;
}
form .label-wrapper {
  /* for checkbox and radio. wrap label/input pairs in div with this class */
  margin: 3px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
form .label-wrapper input[type=checkbox], form .label-wrapper input[type=radio] {
  margin: 0;
  cursor: pointer;
}
form .label-wrapper label {
  margin: 0;
  padding-left: 7px;
  font-weight: normal;
  cursor: pointer;
}
form button, form input[type=submit], form input[type=button] {
  display: block;
  margin: 15px auto 0;
}
@media (min-width: 800px) {
  form .grid-2 > div:first-child {
    padding-right: 1.5%;
  }
  form .grid-2 > div:last-child {
    padding-left: 1.5%;
  }
}

.form-box {
  max-width: 600px;
  border: 1px solid #ccc;
  margin: 15px auto;
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .form-box {
    padding: 20px 30px;
  }
}
.form-box > h2:first-child, .form-box > h3:first-child, .form-box > h4:first-child, .form-box > h5:first-child, .form-box > p:first-child, .form-box > label:first-child {
  margin-top: 0;
  padding-top: 0;
}

::-webkit-input-placeholder {
  color: #8c8c8c;
}

::-moz-placeholder {
  color: #8c8c8c;
}

:-ms-input-placeholder {
  color: #8c8c8c;
}

:-moz-placeholder {
  color: #8c8c8c;
}

select::-ms-expand {
  opacity: 0;
}

.errors {
  border-radius: 6px;
  background-color: #ffe6e6;
}
.errors p {
  margin: 0;
  padding: 5px 20px;
}
.errors p:first-of-type:before {
  display: block;
  content: "There was an error with your form:";
  font-weight: bold;
  padding: 10px 0;
}
.errors p:last-of-type {
  padding-bottom: 10px;
}
.errors ul {
  margin-bottom: 0;
}
.errors li {
  margin: 0 0 0 30px;
}
.errors li:not(:first-of-type) {
  padding-top: 5px;
}

.g-recaptcha > div {
  margin: 1em auto 0;
}

/* Table Styles */
table {
  width: 100%;
  text-align: left;
}
table thead {
  border-bottom: 2px solid #ccc;
}
table thead th {
  padding: 8px 0;
  font-weight: bold;
}
table tfoot {
  border-top: 2px solid #ccc;
  color: #737373;
  font-size: 0.9em;
}
table tfoot th {
  padding: 8px 0;
}
table tbody th {
  padding: 8px 0;
  font-weight: bold;
}
table tbody td {
  padding: 8px;
  padding-left: 0;
}

.table-rows {
  /* table with separated rows */
}
.table-rows tbody tr:not(:last-child) td, .table-rows tbody tr:not(:last-child) th {
  border-bottom: 1px solid #ccc;
}

.table-columns {
  /* table with separated columns */
}
.table-columns thead th, .table-columns tfoot th {
  padding: 8px;
}
.table-columns thead th:not(:last-child), .table-columns tfoot th:not(:last-child) {
  border-right: 1px solid #ccc;
}
.table-columns tbody td, .table-columns tbody th {
  padding: 8px;
}
.table-columns tbody td:not(:last-child), .table-columns tbody th:not(:last-child) {
  border-right: 1px solid #ccc;
}

.table-striped {
  /* table with alternating striped rows */
}
.table-striped thead th, .table-striped tfoot th {
  padding: 8px;
}
.table-striped tbody tr:nth-child(even) td, .table-striped tbody tr:nth-child(even) th {
  background-color: #ededed;
}
.table-striped tbody td, .table-striped tbody th {
  padding: 8px;
}

/* Grid Styles 
	Basically, use .grid on the wrapper element, and all direct children should be divs.
	Add the .grid-2 or .grid-3 etc class based on how many items you want on largest screen size.
	Add the .grid-margins class if you want margins between the grid items.
*/
.grid {
  overflow: hidden;
}
@media (min-width: 650px) {
  .grid {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 650px) {
  .grid > div {
    float: left;
  }
}
.grid.grid-margins > div {
  margin: 10px 0;
  padding: 10px;
}
@media (min-width: 650px) {
  .grid.grid-margins > div {
    margin: 1%;
  }
}

@media (min-width: 650px) {
  .grid-2 > div, .grid-4 > div {
    width: 50%;
  }
}
@media (min-width: 650px) {
  .grid-2.grid-margins > div, .grid-4.grid-margins > div {
    width: 49.5%;
  }
}
@media (min-width: 650px) {
  .grid-2.grid-margins > div:nth-child(odd), .grid-4.grid-margins > div:nth-child(odd) {
    margin: 0.5% 0.5% 0.5% 0;
  }
}
@media (min-width: 650px) {
  .grid-2.grid-margins > div:nth-child(even), .grid-4.grid-margins > div:nth-child(even) {
    margin: 0.5% 0 0.5% 0.5%;
  }
}

@media (min-width: 650px) {
  .grid-3 > div, .grid-6 > div {
    width: 33.333%;
  }
}
@media (min-width: 650px) {
  .grid-3.grid-margins > div, .grid-6.grid-margins > div {
    width: 32.666%;
    margin: 0.5% 0;
  }
}
@media (min-width: 650px) {
  .grid-3.grid-margins > div:nth-child(3n-1), .grid-6.grid-margins > div:nth-child(3n-1) {
    margin: 0.5% 1%;
  }
}

@media (min-width: 900px) {
  .grid-4 > div {
    width: 25%;
  }
}
@media (min-width: 900px) {
  .grid-4.grid-margins > div {
    width: 24.25%;
  }
}
@media (min-width: 900px) {
  .grid-4.grid-margins > div:nth-child(odd), .grid-4.grid-margins > div:nth-child(even) {
    margin: 0.5% 0;
  }
}
@media screen and (min-width: 900px) {
  .grid-4.grid-margins > div:nth-child(4n-2) {
    margin: 0.5% 0.5% 0.5% 1%;
  }
}
@media screen and (min-width: 900px) {
  .grid-4.grid-margins > div:nth-child(4n-1) {
    margin: 0.5% 1% 0.5% 0.5%;
  }
}

@media (min-width: 1000px) {
  .grid-6 > div {
    width: 16.666%;
  }
}
@media (min-width: 1000px) {
  .grid-6.grid-margins > div {
    width: 15.8%;
    margin: 0.5%;
  }
}
@media (min-width: 1000px) {
  .grid-6.grid-margins > div:nth-child(3n-1) {
    margin: 0.5%;
  }
}
@media (min-width: 1000px) {
  .grid-6.grid-margins > div:nth-child(6n-5) {
    margin-left: 0;
  }
}
@media (min-width: 1000px) {
  .grid-6.grid-margins > div:nth-child(6n) {
    margin-right: 0;
  }
}

/* Components */
.required {
  color: red;
}

.nowrap {
  white-space: nowrap;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.leading {
  font-size: 1.05em;
}
@media (min-width: 900px) {
  .leading {
    font-size: 1.15em;
    line-height: 1.6;
  }
}

.float-right {
  display: block;
  margin: 1em auto;
  max-width: 100%;
}
@media (min-width: 900px) {
  .float-right {
    float: right;
    width: 35%;
    margin: 0 0 0.25em 1em;
  }
}

.float-left {
  display: block;
  margin: 1em auto;
  max-width: 100%;
}
@media (min-width: 900px) {
  .float-left {
    float: left;
    width: 35%;
    margin: 0 1em 0.25em 0;
  }
}

/*** Variables ***/
/* light blue */
/*** Mixins ***/
.slideup {
  -o-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: fixed;
  bottom: -50%;
  left: 0;
  width: 100%;
}
.slideup.showing {
  bottom: 0;
}

.slideup-cookies {
  z-index: 99999;
  overflow: hidden;
  border-top: 1px solid #ddd;
  background-color: rgba(238, 238, 238, 0.95);
  padding: 10px;
}
@media (min-width: 700px) {
  .slideup-cookies {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.slideup-cookies > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .slideup-cookies > div {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 700px) {
  .slideup-cookies .slideup-message {
    float: left;
    margin: 0 1em;
  }
}
.slideup-cookies .button-wrapper {
  margin-top: 10px;
  text-align: center;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .slideup-cookies .button-wrapper {
    width: 200px;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .slideup-cookies .button-wrapper {
    margin-top: 0;
  }
}
.slideup-cookies .button-wrapper .button {
  display: inline-block;
  width: 250px;
  max-width: 48.5%;
  margin: 1% 0.5%;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .slideup-cookies .button-wrapper .button {
    max-width: 100%;
  }
}
.slideup-cookies .button-wrapper .button-neg {
  text-transform: none;
}

/* Components and specialized CSS here */
main, footer {
  /*max-width:1000px;*/
  /*margin:0 auto; padding:2em;*/
}

footer {
  /*text-align:center; color:lighten($text,25%);*/
}

/* General Styling */
* {
  font-family: "Source Sans Pro", sans-serif, "Arial";
  font-weight: 400;
}

a {
  color: #606060;
  border: none;
}

.white {
  color: white;
}
.white:hover {
  border-bottom: solid 1px white;
  color: white;
}

a:hover, .red-text {
  color: #B32737;
}

.button,
.button.button-feature {
  background-color: #B32737;
  color: white;
  border: solid 2px white;
  border-radius: 0;
  text-transform: uppercase;
  padding: 4px 18px;
  font-size: 1em;
  white-space: nowrap;
}

.button:hover,
.button.button-feature:hover {
  background-color: white;
  border: solid 2px #B32737;
  color: #B32737;
}

.uppercase {
  text-transform: uppercase;
}

/**********/
/* HEADER */
/**********/
header.header-landing {
  position: fixed;
  z-index: 99;
}

/* This container is used so that when the header becomes fixed for the mobile nav, it does not stop taking up space */
.header-container {
  height: 70px;
}

.header {
  height: 70px;
  /*transform: translateY(10px);*/
  width: 100%;
  background-image: linear-gradient(white 60%, #DDDCDB 100%);
  border-bottom: solid 1px #B32737;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*overflow: hidden;*/
  /* Removing overflow hidden to accomodate for boats dropdown */
  z-index: 1;
  /*-webkit-transition: all .2s;*/
  /*-webkit-backface-visibility: hidden;*/
  /*-webkit-transform:translate3d(0,0,0);*/
  /*transition: fixed .5s;*/
}
.header.header-landing {
  background-image: linear-gradient(rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.86) 100%);
  height: 100px;
  justify-content: center;
}
.header.fixed {
  position: fixed;
}

/* This is to help vertically center things */
/*.header div:before,
.header nav:before {
	content: "";
	display: inline-block;
    height: 100%;
    vertical-align: middle;
}*/
/* HEADER LOGO */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  padding: 5px 20px;
  vertical-align: middle;
  max-height: 60px;
  max-width: calc(100vw - 60px);
  width: auto;
  height: auto;
}

.header-logo a:hover,
.header-logo a:active {
  border: none;
}

/* HEADER NAVIGATION */
.header-nav {
  padding: 0px;
}

.header-nav a {
  font-weight: 400;
  padding: 24px 8px;
  display: inline-block;
}
.header-nav a.current {
  color: #B32737;
}

.header-nav a:hover {
  color: #B32737;
  border: none;
}

.header-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0 20px 0 0;
}

.header-nav ul li {
  display: inline;
  margin: 0px;
  text-transform: uppercase;
}

.header-nav .mobile-nav span {
  color: #606060;
  padding-right: 25px;
  font-size: 2.5em;
  cursor: pointer;
}

/* Mobile Overlay nav */
.mobile-nav {
  padding: 15px 5px;
  margin-right: 10px;
  cursor: pointer;
}

.navigation-icon {
  /*-webkit-transition: all .2s;*/
  transition: all 0.2s;
  position: relative;
  width: 2em;
  height: 0.3125rem;
  /*background: #3165ab;*/
  border-radius: 2.5rem;
  /*background:transparent;*/
  background: #B32737;
  /*    &:before {
          top:0;
          transform:rotate(45deg); -webkit-transform:rotate(45deg);
      }
      &:after {
          top:0;
          transform:rotate(-45deg); -webkit-transform:rotate(-45deg);
      }*/
}

.navigation-icon:before {
  top: -0.625rem;
}

.navigation-icon:after {
  top: 0.625rem;
}

.navigation-icon:after, .navigation-icon:before {
  /*-webkit-transition: all .2s;*/
  transition: all 0.2s;
  z-index: 1;
  display: block;
  position: absolute;
  height: 0.3125rem;
  width: 2rem;
  border-radius: 1rem;
  background: #606060;
  content: "";
}

.mobile-nav.opened .navigation-icon {
  background: transparent;
}
.mobile-nav.opened .navigation-icon:before {
  top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.mobile-nav.opened .navigation-icon:after {
  top: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

/*#mobile-nav-close {
	font-size: 60px;
	display: none;
}*/
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 70px;
  left: 0;
  background-color: rgba(239, 239, 239, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*border-right: solid 1px $npyDarkGrey;*/
}
.overlay ul:first-child {
  box-shadow: 10px 0px 10px #606060;
}
.overlay ul:first-child li {
  border-bottom: solid 1px #606060;
}
.overlay ul:first-child li:first-child {
  border-top: solid 1px #606060;
}
.overlay ul:nth-child(2) {
  width: 0;
  background-color: rgba(179, 39, 55, 0.9);
  color: white;
  transition: 0.5s;
}
.overlay ul:nth-child(2) a {
  color: white;
}
.overlay ul:nth-child(2) a:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #B32737;
}
.overlay ul:nth-child(2) li {
  border-bottom: solid 1px white;
}
.overlay ul:nth-child(2) li:first-child {
  border-top: solid 1px white;
}

.overlay .overlay-content ul li {
  padding-top: 0px;
}

.overlay-content {
  display: flex;
  flex-direction: row;
  position: relative;
  /*top: 20%;*/
  width: 100%;
  text-align: center;
  height: calc(100% - 70px);
  /*margin-top: 30px;*/
}

.overlay a {
  padding: 10px;
  text-decoration: none;
  font-size: 30px;
  color: #606060;
  display: block;
  transition: 0.3s;
}
.overlay a.opened {
  background-color: rgba(179, 39, 55, 0.9);
  color: white;
}

#boat-sub-nav.opened {
  width: 100%;
}

.overlay a:hover,
.overlay a:focus,
.overlay a:active {
  color: white;
}

.overlay li a:hover,
.overlay li a:focus,
.overlay li a:active {
  background-color: rgba(179, 39, 55, 0.9);
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 4em;
}

.boats-dropdown {
  position: relative;
}

.boats-dropdown-content {
  display: none;
  position: absolute;
  left: 0px;
  background-color: rgba(96, 96, 96, 0.85);
  min-width: 200px;
  /*width: auto;*/
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 0px;
  z-index: 1;
  color: white;
}

.boats-dropdown:hover .boats-dropdown-content {
  display: block;
}

.header-nav .boats-dropdown-content a {
  color: white;
}

.boats-dropdown-content ul {
  padding: 0px;
}

.boats-dropdown-content ul li {
  text-transform: none;
}

.boats-dropdown-content a {
  width: 100%;
  padding: 10px 20px;
}
.boats-dropdown-content a:hover {
  background-color: #B32737;
}

/********************/
/* HOMEPAGE STYLING */
/********************/
.home-banner, .banner-404 {
  width: 100%;
  /*height: 600px;*/
  /* 70px is the header and 54 px is the boats nav */
  height: calc(100vh - 70px - 54px);
  position: relative;
  /*  */
  background-image: url("/images/icons/points_bg.png"), linear-gradient(rgba(126, 137, 168, 0.7) 0%, rgba(0, 0, 0, 0) 30%), url("https://ucarecdn.com/b8777b72-45e9-444f-85de-89c7dd8acb0c/-/quality/lightest/");
  background-repeat: repeat-x, no-repeat, no-repeat;
  background-size: auto, auto, cover;
  background-position: left bottom, center top, 50% 50%;
  /*&.offset {
  	padding-top: 70px;
  }*/
  /*	background-position: 50% 60%;*/
  /*box-shadow:inset 0 0 0 400px rgba(255,0,150,0.3);*/
}

.home-banner .baner-points, .banner-404 .baner-points {
  background-image: url("/images/icons/points_bg.png");
  background-repeat: repeat-x;
  background-size: auto;
  background-position: left bottom;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.home-banner .banner-npy-logo img, .banner-404 .banner-npy-logo img {
  width: 20%;
  position: absolute;
  top: 20px;
  right: 30px;
  opacity: 0.2;
}

.home-banner .banner-controls, .banner-404 .banner-controls {
  position: absolute;
  top: calc(50% - 46px);
  right: 0;
}

.home-banner .banner-controls div, .banner-404 .banner-controls div {
  display: none;
  width: 60px;
  padding: 10px 9.5px;
}

.home-banner .banner-controls .controls-next, .banner-404 .banner-controls .controls-next {
  /* Removing line between header controls per Jon's request */
  /*border-bottom: solid 1px $npyDarkGrey;*/
}

.home-banner .banner-arrow-down img, .banner-404 .banner-arrow-down img {
  z-index: 10161;
  position: absolute;
  bottom: 40px;
  right: 30px;
}

.banner-text {
  text-align: center;
  position: absolute;
  bottom: 7.5%;
  left: 0;
  width: 100%;
  /*transform: translate(-50%, -50%);*/
  color: white;
  width: 100%;
}

.banner-text h1 {
  font-family: "Cinzel", "Source Sans Pro", serif, "Arial";
  font-weight: 400;
  margin: 0;
  font-size: 4em;
  text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.5);
}

/* Boats Nav */
.boats-nav-container {
  background-image: linear-gradient(white 60%, #DDDCDB 100%);
}

.boats-nav {
  height: 54px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /*vertical-align: middle;*/
  overflow: hidden;
}

.boats-nav a {
  font-weight: 400;
}
.boats-nav a.current {
  color: #B32737;
}

.boats-nav ul {
  display: flex;
  justify-content: space-around;
  margin: 0px 50px;
  padding: 0;
  width: 100%;
}

.boats-nav li {
  text-decoration: none;
  display: inline;
  padding: 10px 0px;
}

.boats-nav li span {
  font-size: 2em;
}

.boats-nav .previous,
.boats-nav .next {
  display: none;
}

/* Home Content */
.home-content {
  display: flex;
  height: auto;
}

.home-content > div {
  width: 50%;
  font-weight: 300;
}

.home-content .content-left {
  padding: 50px 40px;
}

.home-content .content-left .content-heading {
  font-size: 1.5em;
  color: #B32737;
  margin-top: 0;
}

.home-content .content-right {
  background-image: url("https://ucarecdn.com/980fd3e8-c4ba-438f-b237-346e39212139/-/quality/lightest/image.jpg");
  background-size: cover;
}

/* Testimonials */
.testimonials-container {
  width: 100%;
  height: auto;
  /*padding: 30px 20%;*/
  background-image: url("/images/icons/quote.png"), linear-gradient(#DDDCDB 0%, #EFEFEF 2.5%);
  background-repeat: no-repeat;
  background-size: auto 75%, auto auto;
  /* quotes, gradient */
  background-position: 30px 50%, center;
  /* Experimenting below */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /*width: 500%;*/
}

/* EXPERIMENT */
.testimonials-text {
  display: flex;
  flex-direction: row;
  width: 500%;
  /* Experiment */
  position: relative;
  left: 0%;
  transition: all 0.6s;
  align-items: center;
}

.testimonial {
  height: auto;
  /* EXPERIMENTING */
  margin: 30px 20vw 0px;
  flex-basis: 100%;
  /*transition: 0.5s ease;*/
  /*width: 100vw;*/
}

.testimonial p {
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.75em;
}

.testimonial span {
  color: #B32737;
  font-weight: 700;
}

.testimonials-navigation {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin: 20px 0px;
}

.testimonials-navigation .dot {
  height: 16px;
  width: 16px;
  background-color: transparent;
  border: solid 1px #606060;
  border-radius: 50%;
  display: inline-block;
  margin: 0px 10px;
  transition: all 0.3s;
}
.testimonials-navigation .dot.active {
  background-color: #B32737;
  border-color: #B32737;
}

.testimonials-navigation .dot:hover {
  background-color: #B32737;
  border-color: #B32737;
  cursor: pointer;
}

/* TODO: come up with way to style active element instead of first */
/*.testimonials-navigation .dot:first-child {
	background-color: $npyRed;
	border-color: $npyRed;
}*/
/**********/
/* FOOTER */
/**********/
/* Footer - Main */
.footer-main {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.65em;
  font-family: "Source Sans Pro", sans-serif, "Arial";
  font-weight: 400;
  background-image: linear-gradient(#DDDCDB 0%, white 2.5%);
  overflow: hidden;
  padding: 10px 20px;
}

.footer-main > div {
  min-width: 16.66%;
  padding: 10px 20px;
  /*border: solid 1px $npyRed;*/
  /*margin: 5px;*/
}

.footer-main h2 {
  font-size: 1em;
  text-align: left;
  /*padding-left: 2em;*/
  color: #B32737;
}

.footer-main ul {
  padding: 0;
}

.footer-main .footer-images {
  /*padding-left: 2em;*/
  text-align: right;
  display: flex;
  flex-direction: row-reverse;
  min-width: auto;
  width: auto;
}

.footer-main .footer-images a {
  display: inline-block;
  margin: auto 0px;
}

.footer-main img {
  margin: 10px 5px 10px 0px;
}

.footer-main .footer-models {
  flex-grow: 1;
}

.footer-quick-links li {
  text-transform: uppercase;
}

.footer-main ul {
  list-style-type: none;
  text-align: left;
}

.footer-main li {
  padding: 0;
}

.footer-main li,
.footer-main a {
  display: block;
  font-weight: 400;
}

.footer-main .footer-mailing-list {
  display: none;
  /* Temporarily hiding until we have a plan for this */
}

.footer-main .footer-mailing-list h2 {
  padding: 0;
}

.footer-main .footer-mailing-list div {
  min-width: 250px;
  width: 75%;
  margin-right: 20px;
  font-size: 1.3em;
}

.footer-main .footer-mailing-list input[type=submit] {
  background-color: #B32737;
  color: white;
  border: solid 2px white;
  border-radius: 0;
  text-transform: uppercase;
  padding: 4px 18px;
  font-size: 1em;
  display: inline;
}

.footer-main .footer-mailing-list input[type=submit]:hover {
  background-color: white;
  border: solid 2px #B32737;
  color: #B32737;
}

/* Footer - Bottom */
.footer-bottom {
  display: flex;
  height: 70px;
  color: #606060;
  font-size: 0.7em;
  border-top: solid 2px #DDDCDB;
  background-image: linear-gradient(#DDDCDB 0%, white 5%);
}

.footer-bottom > div {
  width: 50%;
  padding: 15px 30px;
}

.footer-bottom .content-full {
  text-align: center;
  width: 100%;
}

.footer-bottom .content-left {
  text-align: left;
}

.footer-bottom .content-left p {
  margin: 0;
}

.footer-bottom .content-right {
  text-align: right;
}

.footer-bottom .content-right a {
  color: #606060;
  border: none;
}

.footer-bottom .content-right a:hover {
  color: #B32737;
}

.footer-bottom .content-right i {
  padding: 5px;
}

/* PAGE STYLING */
.page {
  /*padding: 0px 30px;*/
}

.secondary-page.gallery-only {
  margin-bottom: 2em;
}
.secondary-page.gallery-only a {
  margin-bottom: 1em;
}

.secondary-page .content {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 35px 15px;
  font-size: 1.2em;
}
.secondary-page .content.content-centered {
  text-align: center;
}
.secondary-page .content a {
  color: #B32737;
}
.secondary-page .content a:hover {
  border-bottom: solid 1px #B32737;
}
.secondary-page .content .secondary-slideshow a:hover {
  border-bottom: none;
}
.secondary-page .content ul {
  list-style: none;
  border-left: solid 3px #B32737;
  margin: 1.5em 0 1.5em 1em;
}
.secondary-page .content .introduction {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.secondary-page .content .introduction ul {
  /*border-left: none;*/
  margin: 0px;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
.secondary-page .content .introduction div:first-child {
  padding-right: 25px;
}
.secondary-page .content .special {
  color: #B32737;
}

.secondary-page.fifty-nine-pilothouse .content .introduction, .secondary-page.forty-nine-pilothouse-e .content .introduction {
  flex-direction: column;
}
.secondary-page.fifty-nine-pilothouse .content .introduction .specifications, .secondary-page.forty-nine-pilothouse-e .content .introduction .specifications {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.secondary-page.fifty-nine-pilothouse .content .introduction .specifications.multi-line-fix ul, .secondary-page.forty-nine-pilothouse-e .content .introduction .specifications.multi-line-fix ul {
  padding-top: 0;
  padding-bottom: 0;
}
.secondary-page.fifty-nine-pilothouse .content .introduction .specifications ul, .secondary-page.forty-nine-pilothouse-e .content .introduction .specifications ul {
  height: auto;
  width: 50%;
  /*font-size: 0.9em;*/
}

.secondary-page.forty-nine-pilothouse-e .content .introduction {
  flex-direction: row;
}
.secondary-page.forty-nine-pilothouse-e .content .introduction > div:first-child {
  flex: 3;
}

.secondary-page .secondary-slideshow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 15px;
}
.secondary-page .secondary-slideshow a {
  display: none;
}
.secondary-page .secondary-slideshow a:first-child {
  display: block;
}
.secondary-page .secondary-slideshow img {
  max-width: 100%;
}
.secondary-page .secondary-slideshow.remainder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 35px;
}
.secondary-page .secondary-slideshow.remainder a {
  display: block;
  width: 20%;
  min-width: 150px;
  padding: 5px;
}

body.landing, html.landing {
  height: 100%;
  margin: 0px;
}

.landing-page {
  height: 100%;
}
.landing-page .landing-content {
  min-height: 100%;
}
.landing-page .landing-content main {
  padding-bottom: 80px;
}
.landing-page footer {
  height: 80px;
  margin-top: -80px;
}

.page .page-banner {
  /*height: 20vh;*/
  min-height: 70vh;
  background-size: cover;
  background-position: 40%;
  display: flex;
  /*align-items: center;*/
  justify-content: space-between;
  flex-direction: row;
  position: relative;
}
.page .page-banner.secondary-page {
  min-height: 30vh;
}
.page .page-banner.about {
  background-image: url("https://ucarecdn.com/a881ebdb-e6f2-47e6-9b16-6971a8962620/-/quality/lightest/banner.jpg");
}
.page .page-banner.blog {
  background-image: url("https://ucarecdn.com/925c4197-91b0-4e9f-b05e-83200071d10f/-/quality/lightest/banner.jpg");
}
.page .page-banner.news {
  background-image: url("https://ucarecdn.com/a881ebdb-e6f2-47e6-9b16-6971a8962620/-/quality/lightest/banner.jpg");
}
.page .page-banner.nz-landing {
  background-image: url("https://ucarecdn.com/168dc86c-3ae2-4db1-9715-2d876c44c2f7/-/quality/lightest/banner.jpg");
  min-height: 65vh;
}
.page .page-banner.nz-landing .banner-text {
  bottom: 12%;
}
.page .page-banner.nz-landing .banner-text h1 {
  background: none;
  font-family: "Cinzel", "Source Sans Pro", serif, "Arial";
  font-weight: 400;
  margin: 0;
  font-size: 4.3em;
  padding: 0px;
  text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.9);
  text-transform: none;
}
@media only screen and (min-width: 700px) {
  .page .page-banner.nz-landing .banner-text h1 {
    font-size: 2.6em;
  }
}
@media only screen and (min-height: 700px) {
  .page .page-banner.nz-landing .banner-text {
    bottom: 9%;
  }
}
@media only screen and (min-height: 700px) {
  .page .page-banner.nz-landing {
    min-height: 50vh;
  }
}
.page .page-banner.contact {
  background-image: url("https://ucarecdn.com/a881ebdb-e6f2-47e6-9b16-6971a8962620/-/quality/lightest/banner.jpg");
}
.page .page-banner.forty-four-sedan {
  background-image: url("https://ucarecdn.com/a4036aac-c943-4341-bcce-a3e64f78979c/-/quality/lightest/banner.jpg");
}
.page .page-banner.forty-five-pilothouse {
  background-image: url("https://ucarecdn.com/7975f55b-f35e-4fba-a4b7-73088d2f0f4e/-/quality/lightest/banner.jpg");
}
.page .page-banner.forty-nine-pilothouse {
  background-image: url("https://ucarecdn.com/017ddb9b-1be9-4635-8e0e-c2d8d4ba5238/-/quality/lightest/banner.jpg");
}
.page .page-banner.fifty-nine-pilothouse {
  background-image: url("https://ucarecdn.com/e2d33550-426b-4ac0-816b-80138ffe007a/-/quality/lightest/banner.jpg");
}
.page .page-banner.forty-nine-pilothouse-e {
  background-image: url("https://ucarecdn.com/7c2c60f7-a9ef-499a-a7cd-7378a2083b03/-/quality/lightest/banner.jpg");
}
.page .page-banner.forty-nine-pilothouse-e-specifications {
  background-image: url("https://ucarecdn.com/c799dd65-f75e-49a0-943c-45050dde59fb/-/quality/lightest/banner.jpg");
}
.page .page-banner.forty-nine-pilothouse-e-layouts {
  background-image: url("https://ucarecdn.com/2437cf4b-b384-4a5b-8cce-67493a658e67/-/quality/lightest/banner.jpg");
}
.page .page-banner.forty-nine-pilothouse-e-interior {
  background-image: url("https://ucarecdn.com/3ec94363-3b33-4601-a79a-7cf254cb9de5/-/quality/lightest/banner.jpg");
}
.page .page-banner.forty-nine-pilothouse-e-exterior {
  background-image: url("https://ucarecdn.com/7a97fc8e-9127-4158-9cbb-2b28364251b3/-/quality/lightest/banner.jpg");
}

.blog-preview a {
  color: black;
}

.blog-preview a:hover {
  color: #B32737;
}

.blog-preview a.view-post-link {
  text-transform: uppercase;
  color: #B32737;
}

.blog-preview a.view-post-link:hover {
  color: black;
}

ul.pagination {
  list-style: none;
  margin: auto auto;
  margin-bottom: 5vw;
  padding: 0;
  text-align: center;
}
ul.pagination li {
  display: inline;
  margin: 0;
  padding: 0;
  background-image: none;
}
ul.pagination a, ul.pagination span {
  display: inline-block;
  margin: 0 0.15em;
  padding: 0 0.5em;
}
ul.pagination span {
  background-color: black;
  color: white;
}

.page-banner.overview-page {
  height: calc(100vh - 70px - 54px);
}

.page.about .page-banner {
  /*min-height: 30vh;*/
}

.page .page-banner-text h1 {
  white-space: nowrap;
}

.page .page-banner .video-buttons-container {
  bottom: 0px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 10301;
}

.page .page-banner .video-buttons-container div {
  display: inline-block;
  margin: 16px 16px;
}

.page .page-banner .video-buttons-container a {
  background-image: url("/images/icons/video-icon.png");
  background-position: 6px center;
  background-repeat: no-repeat;
  border: none;
  margin-top: 8px;
  padding: 6px 12px 6px 64px;
  white-space: nowrap;
  width: 14.5em;
}

.page .page-banner .video-buttons-container a:hover {
  background-image: url("/images/icons/video-icon-hover.png");
}

.boat-section .video-button-container {
  text-align: center;
  padding: 45px 0px;
}

.boat-section .video-button-container div {
  display: inline-block;
  width: auto;
}

.boat-section .video-button-container a {
  background-image: url("/images/icons/video-icon.png");
  background-position: 6px center;
  background-repeat: no-repeat;
  margin-top: 8px;
  padding: 6px 12px 6px 64px;
  white-space: nowrap;
  width: 14.5em;
}

.boat-section .video-button-container a:hover {
  background-image: url("/images/icons/video-icon-hover.png");
}

.specifications.with-video-button-container {
  justify-content: right;
}

.page .page-banner h1,
.page .page-banner h2 {
  position: relative;
  top: 30px;
  margin: 0px 0px 5px 0px;
  background-color: #B32737;
  padding: 4px 9px 0px 30px;
  color: white;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 400;
  font-family: "Cinzel", "Source Sans Pro", serif, "Arial";
}

.page-banner .banner-npy-logo {
  position: relative;
  flex-shrink: 1;
  height: 100%;
  max-width: 250px;
  margin: 5px 30px 0px 10px;
  margin-bottom: auto;
  /*margin-left: 30px;*/
  /*margin-right: 30px;*/
}

.page-banner .banner-npy-logo img {
  /*height: 150px;*/
  /*position: relative;*/
  /*top: 20px;*/
  /*right: 30px;*/
  opacity: 0.2;
  width: 100%;
}

/* Slideshow controlls */
.slideshow-navigation {
  height: 100%;
  width: 100%;
  position: absolute;
  display: none;
}

.home-banner:hover .slideshow-navigation, .banner-404:hover .slideshow-navigation, .page-banner:hover .slideshow-navigation {
  display: flex;
}

.slideshow-navigation button {
  background-color: inherit;
  width: 50%;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: white;
  font-size: 3rem;
}

.slideshow-navigation button:focus {
  outline: none;
}

.slideshow-navigation .slideshow-next {
  text-align: right;
}

.slideshow-navigation .slideshow-prev {
  text-align: left;
}

/* Videos Page*/
.videos-page {
  padding: 70px 0px;
  text-align: center;
  width: 100%;
}

.videos-page .content {
  display: inline-block;
  max-width: inherit;
}

.videos-page .content h3 {
  margin-left: 8px;
  padding-bottom: 35px;
  text-align: left;
}

.videos-section {
  display: flex;
  flex-wrap: wrap;
}

.videos-section div {
  margin: 0px 8px;
}

.videos-section div iframe, .videos-section div img {
  height: 220pt;
  width: 375pt;
}

/* Boat page! */
.boat-sections {
  display: flex;
  flex-direction: column;
  /*height: 500px;*/
}

.boat-section {
  width: 100%;
  /*max-height: 450px;*/
  /*height: 60vh;*/
  display: flex;
  flex-direction: row;
  /*border-top: solid 4px $npyDarkGrey;*/
  /*&.red {
  	background-color: $npyRed;
  }*/
}

.introduction .specifications {
  width: auto;
  flex: 2 2;
}

.introduction div:first-child {
  width: auto;
  flex: 1 1 70%;
}

.specifications {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.specifications ul {
  list-style: none;
  padding-left: 1em;
}
.specifications ul:first-child {
  padding-left: 0;
}
.specifications ul:first-child {
  border-left: none;
  text-align: right;
  padding-right: 1em;
  /*padding-left: 0em;*/
}
.specifications ul:nth-child(2) {
  border-left: solid 3px #B32737;
}
.specifications table td {
  width: 50%;
}
.specifications table td:first-child {
  padding-right: 1em;
  text-align: right;
}
.specifications table td:last-child {
  border-left: solid 3px #B32737;
  padding-left: 1em;
  text-align: left;
}

.boat-sections .boat-section:nth-child(2n) {
  background-color: #B32737;
  color: white;
}
.boat-sections .boat-section:nth-child(2n) p {
  font-weight: 400;
}
.boat-sections .boat-section:nth-child(2n) ul.section-bullets {
  border-color: white;
}

.boat-section div {
  width: 50%;
  /*height: 100%;*/
  /*border: solid 1px blue;*/
}
.boat-section div:first-child {
  /*border-right: solid 4px $npyDarkGrey;*/
}

.boat-section .content {
  padding: 35px 30px;
  margin-top: auto;
  margin-bottom: auto;
}
.boat-section .content h2 {
  margin-top: 0px;
}
.boat-section .content p {
  font-weight: 300;
  font-size: 1.25em;
}
.boat-section .content ul.section-bullets {
  list-style: none;
  border-left: solid 3px #B32737;
  margin: 1.5em 0 1.5em 1em;
  font-size: 1.1em;
}

.section-introduction .content {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.section-introduction .content div:first-child {
  width: 60%;
  max-width: 600px;
  /*margin-right: 20px;*/
  /*margin: auto 20px auto 0;*/
  margin: auto 20px auto auto;
}
.section-introduction .content div:nth-child(2) {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}

.section-introduction.about .content div:first-child {
  width: 100%;
  max-width: 800px;
  /*margin-right: 20px;*/
  /*margin: auto 20px auto 0;*/
  margin: auto;
}

.slideshow a {
  display: none;
  width: 100%;
  height: 100%;
}

.slideshow a:first-child {
  display: block;
}

.slideshow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*border: solid 1px green;*/
}

.news li img {
  display: block;
  padding: 20px 0px;
  max-width: 100%;
}

.boat-section-nav {
  display: flex;
  flex-direction: column;
}
.boat-section-nav div {
  width: 100%;
  text-align: center;
  padding: 5px;
  background-color: #B32737;
  border-top: solid 2px white;
}
.boat-section-nav div:first-child {
  background-color: white;
  color: #B32737;
  border-top: solid 2px #B32737;
}
.boat-section-nav div h3 {
  margin: 0;
}
.boat-section-nav div a {
  display: block;
  width: 100%;
  color: white;
  font-size: 1.3em;
}

.contact .additional-contact {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 60px 0px;
}

.additional-contact.additional-contact-header {
  margin-bottom: 0px;
}

/********************/
/* ERRORPAGE STYLING */
/********************/
.banner-404 {
  background-image: url("https://ucarecdn.com/85ca7d91-c271-4027-8736-d4b470081717/-/quality/lightest/image.jpg");
  background-size: cover;
}

.banner-404-bottom {
  width: 100%;
  background-image: linear-gradient(rgba(250, 250, 250, 0) 0%, rgba(0, 30, 60, 0.7) 50%);
  background-size: auto;
  bottom: 0px;
  position: absolute;
}

.banner-404-text {
  color: white;
}

.banner-404-text h1 {
  font-family: "Source Sans Pro", sans-serif, "Arial";
  font-weight: bold;
  margin: 0;
  font-size: 6vw;
  text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.banner-404-text h3 {
  font-family: "Source Sans Pro", sans-serif, "Arial";
  font-weight: bold;
  margin: 0;
  font-size: 1.7em;
  text-align: center;
}

.banner-404-bottom .button {
  border: none;
  position: absolute;
  bottom: 7.5%;
}

.banner-404-bottom .button:hover {
  border: solid 2px #B32737;
}

.banner-404-text-secondary {
  display: flex;
  margin-bottom: 20px;
  margin-top: 20px;
}

.banner-404-text-secondary .content-left, .banner-404-text-secondary .content-right {
  position: relative;
  width: 50%;
}

.banner-404-text-secondary .content-left h3 {
  text-align: right;
}

.banner-404-text-secondary .content-right {
  padding-left: 40px;
}

/*****************/
/* Media Queries */
/*****************/
@media only screen and (max-width: 1200px) {
  .home-banner, .banner-404 {
    /*height: calc(95vh - 70px - 54px);*/
  }

  .banner-text {
    font-size: 0.9em;
  }
}
/* > 1028 */
@media only screen and (min-width: 1028px) {
  .header-nav .mobile-nav {
    display: none;
  }
}
/* < 1028 */
@media only screen and (max-width: 1028px) {
  .home-banner, .banner-404 {
    /*height: calc(90vh - 70px - 54px);*/
  }

  .banner-text {
    font-size: 0.8em;
  }

  .banner-arrow-down {
    display: none;
  }

  .home-content {
    flex-direction: column;
    height: auto;
  }

  .home-content div {
    width: 100%;
    height: auto;
  }

  .home-content .content-right {
    height: 40vh;
    background-position: center;
  }

  .header-nav .desktop-nav {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .boat-section {
    flex-direction: column;
    border-top: solid 10px #B32737;
    max-height: none;
  }
  .boat-section div {
    width: 100%;
  }
  .boat-section:first-child {
    border-top: none;
  }
  .boat-section:nth-child(2n) {
    flex-direction: column-reverse;
    border-top: solid 10px white;
  }
  .boat-section .button {
    float: right;
    font-size: 1.5em;
  }

  .about .boat-section {
    flex-direction: column-reverse;
    border-top: solid 10px #B32737;
    max-height: none;
  }
  .about .boat-section div {
    width: 100%;
  }
  .about .boat-section:first-child {
    border-top: none;
  }
  .about .boat-section:nth-child(2n) {
    flex-direction: column;
    border-top: solid 10px white;
  }
  .about .boat-section .button {
    float: right;
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 850px) {
  .home-banner, .banner-404 {
    height: calc(85vh - 70px - 54px);
  }

  .page-banner.overview-page {
    height: calc(85vh - 70px - 54px);
  }

  .banner-text {
    font-size: 0.7em;
  }

  .banner-404-text h1 {
    font-size: 8vw;
  }

  .footer-main > div {
    padding: 10px 5px;
    /*border: solid 1px $npyRed;*/
    /*margin: 5px;*/
  }

  .header-logo img {
    padding: 5px 10px;
  }

  .footer-main .footer-mailing-list div {
    min-width: 0px;
    width: 100%;
  }

  .testimonial {
    margin: 30px 10vw;
  }

  .banner-controls {
    display: none;
  }

  .boats-nav ul {
    justify-content: space-around;
  }

  .boats-nav li:not(.active) {
    display: none;
  }

  .boats-nav .previous,
.boats-nav .next {
    display: block;
    padding: 0px 15px;
    /*background-color: $npyLightGrey;*/
    margin: auto;
    border-radius: 2px;
    font-size: 30px;
    height: 100%;
    color: #606060;
  }

  .boats-nav .previous:hover,
.boats-nav .next:hover {
    cursor: pointer;
    color: white;
    background-color: #B32737;
  }

  .boats-nav-container {
    display: none;
  }

  .page .boats-nav-container {
    display: none;
  }

  .contact .additional-contact {
    flex-direction: column;
    text-align: center;
  }
  .contact .additional-contact div {
    margin: 10px 0px;
  }
}
@media only screen and (min-width: 850px) {
  .mobile {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .home-banner, .banner-404 {
    height: calc(80vh - 70px - 54px);
  }

  .page-banner.overview-page {
    height: calc(80vh - 70px - 54px);
  }

  .banner-text {
    font-size: 0.6em;
  }

  .banner-404-text h3 {
    font-size: 1.3em;
  }

  .secondary-page .content {
    padding: 35px 20px;
  }

  .secondary-page .secondary-slideshow {
    padding: 0px;
    /*& a:nth-child(2) {
    	display: none;
    }*/
  }
  .secondary-page .secondary-slideshow a {
    width: 100%;
  }
  .secondary-page .secondary-slideshow.remainder a {
    display: block;
  }

  /*.secondary-page .secondary-slideshow.remainder a {*/
  /*}*/
}
@media only screen and (max-width: 600px) {
  .home-banner, .banner-404 {
    height: calc(75vh - 70px - 54px);
  }

  .page-banner.overview-page {
    height: calc(75vh - 70px - 54px);
  }

  .banner-text {
    font-size: 0.55em;
  }

  .home-content .content-left {
    padding: 45px 35px;
  }

  .section-introduction .content {
    flex-direction: column;
    justify-content: center;
  }
  .section-introduction .content div:first-child {
    width: 100%;
    margin: 0px;
  }
  .section-introduction .content ul {
    width: 50%;
  }

  .section-introduction .content div:nth-child(2) {
    width: 100%;
  }

  .footer-main img:nth-child(1) {
    height: 70px;
  }

  .footer-main img:nth-child(2) {
    height: 70px;
  }
}
@media only screen and (max-width: 550px) {
  .banner-text {
    font-size: 0.5em;
  }
}
@media only screen and (max-width: 500px) {
  .home-banner, .banner-404 {
    height: calc(70vh - 70px - 54px);
  }

  .page-banner.overview-page {
    height: calc(70vh - 70px - 54px);
  }

  .banner-text {
    font-size: 0.45em;
  }

  .banner-404-text h1 {
    font-size: 10vw;
  }

  .banner-404-text h3 {
    font-size: 4.1vw;
  }

  .home-content .content-left {
    padding: 40px 25px;
  }

  .header-logo {
    min-width: calc(100vw - 60px);
    width: auto;
  }
}
@media only screen and (max-width: 450px) {
  .banner-text {
    font-size: 0.4em;
  }
}
@media only screen and (max-width: 350px) {
  .banner-text {
    font-size: 0.35em;
  }
}
@media only screen and (max-width: 325px) {
  .banner-text {
    font-size: 0.3em;
  }
}
.fotorama {
  margin-bottom: 40px;
}
.fotorama .fotorama__nav__shaft {
  margin-top: 24px;
}

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