@charset "UTF-8";
input, button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="radio"] {
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
div, section, h1, h2, p {
	box-sizing: border-box;
}
img {
	display: block;
	width: 100%;
}
html {
	height: 100%;
	width: 100%;
}
body {
	line-height: 1;
	font-size: 16px;
	margin: 0px;
	padding: 0px;
	min-height: 100%;
	margin-top: 68px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	background: #fff;
	color: #091f40;
	width: 100%;
}
::selection { 
	background: #93a7cb; 
	color: #fff;
}
h1, h2, h3, h4 {
	text-align: center;
	font-size: 5vw;
	text-transform: uppercase;
	font-weight: 300;
	color: #091f40;
}
h2, h3 {
	position: relative;
	font-size: 4vw;
	padding: .75em .75em 1.5em .75em;
	display: inline-block;
	margin: 0 auto;
}
h3 {
	position: relative;
	font-size: 4em;
	padding: .75em;
	display: inline-block;
	margin: 0 auto;
}
h4 {
	font-size: 1.5em;
	text-align: left;
	font-weight: 300;
	margin-bottom: .5em;
}
h2:after {
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	display: block;
	height: 1px;
	width: 100%;
	background: #93a7cb;
}
strong {
	font-weight: 700;
}
p {
	line-height: 1.5em;
}
p + p {
	margin-top: 30px;
}
sup {
	font-size: .35em;
	display: inline-block;	
}
h1 sup, h2 sup {
	transform: translate(20%, -140%);
}
p sup {
	font-size: .5em;
	transform: translate(0, -30%);
}
ul sup {
	font-size: .7em;
	transform: translate(0, -20%);
}
ul {
	font-size: 1em;
	line-height: 1.75em;
	margin-left: 2em;
}
ul + ul {
	margin-top: 30px;
}
ul li {
	margin-bottom: 10px;
}
header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	min-height: 138px;
	padding: 24px 24px 32px 24px;
	background: #fff;
	box-sizing: border-box;
	z-index: 100;
	text-align: center;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
header h1 {
	display: inline-block;
  font-size: 3em;
}
header h1:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	opacity: 0;
	background: #93a7cb;
	transform: translateY(6px) scaleX(0);
	transition: all 0.3s ease-out;
}
header h1.underline:after {
	opacity: 1;
	transform: translateY(6px) scaleX(1);
	transition-delay: 0.4s;
}
#wayfinder {
	transition: all 0.3s ease-out;
}
#wayfinder.fade-out {
	opacity: 0;
}
#wayfinder {
	opacity: 1;
}
#logo {
	width: 100%;
	max-width: 275px; 
	margin: 0 auto;
	transform: translateY(-20px);
}
nav {
	position: fixed;
	top: 200px;
	right: 20px;
	z-index: 100;
}
.nav-elem {
	position: relative;
	text-align: right;
	height: 26px;
	margin: 20px 0;
	overflow: hidden;
}
.nav-elem span {
	display: inline-block;
	background: rgba(255,255,255,0.8);
	padding: 5px 25px 5px 15px;
	border-radius: 20px;
	z-index: 1;
	opacity: 0;
	transition: all 0.3s ease-out;
}
.nav-elem a {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 20px;
	height: 20px;
	z-index: 10;
	cursor: pointer;
}
.nav-elem a:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: #93a7cb;
	transform: translate(50%, 50%);
	transition: background 0.3s ease-out;
}
.nav-elem a:hover + span {
	right: 0px;
	opacity: 1;
}
.nav-elem a:hover:after {
	background: #091f40;
}
.nav-elem a.active:after {
	background: #091f40;
}
nav a {
	position: relative;
	display: block;
	margin-bottom: 30px;
	width: 20px;
	height: 20px;
	z-index: 100;
	cursor: pointer;
}
nav a:after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 10px;
	height: 10px;
	background: #93a7cb;
	transition: all 0.3s ease-out;
	border-radius: 10px;
}
nav a span {
	position: absolute;
	top: 1px;
	right: 24px;
	display: block;
	min-width: 160px;
	text-align: right;
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	color: #091f40;
	transform: translateX(-10px);
	text-shadow: 1px 1px 0px #fff;
	transition: all 0.3s ease-out;
}
nav a.active:after {
	background: #091f40;
	transform: scale(1.4);
}
.row {
	display: block;
}
.row:after {
	content: '';
	display: block;
	clear: both;
}
section, .section {
	padding: 50px 0px;
	text-align: center;
}
section:last-of-type {
	margin-bottom: 200px;
}
.cover {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.parallax {
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.constrained {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.constrained:after {
	content: '';
	display: block;
	clear: both;
}
.left, .right, .wide-left, .wide-right {
	float: left;
	display: inline-block;
	text-align: left;
}
.left, .right {
	width: 50%;
}
.left + .right {
	padding-left: 50px;
}
.wide-left, .wide-right {
	width: 70%;
}
.wide-left {
	padding-right: 50px;
}
.wide-right {
	padding-left: 50px;
}
.wide-left + .right {
	width: 30%;
}
.wide-right + .left {
	width: 30%;
}
.large-padded {
	padding: 50px;
}
.bigger {
	font-size: 2em;
}
.smaller {
	font-size: .6em;
}
.blue-texture {
	background-image: url(images/blue-texture.jpg);
	background-repeat: repeat;
	background-size: 200px;
}
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	z-index: 1;
}
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: #000;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.25);
}
.capabilities {
	margin-top: 50px;
}
.capabilities p {
	display: block;
	margin-bottom: 2em;
	line-height: 2em !important;
}
.numbered {
	font-size: .6em;
	list-style: none;
	margin: 50px 0;
}
.numbered li {
	position: relative;
	margin-bottom: 10px;
}
.numbered li:before {
	display: block;
	position: absolute;
	top: 0px;
	left: -1.4em;
	font-size: 1.5em;
	font-weight: 300;
}
.numbered li:nth-child(1):before {
	content: '1)';
}
.numbered li:nth-child(2):before {
	content: '2)';
}
.numbered li:nth-child(3):before {
	content: '3)';
}
.numbered li:nth-child(4):before {
	content: '4)';
}
.numbered li:nth-child(5):before {
	content: '5)';
}
.numbered li:nth-child(6):before {
	content: '6)';
}
.numbered li:nth-child(7):before {
	content: '7)';
}
.numbered li:nth-child(8):before {
	content: '8)';
}
.numbered li:nth-child(9):before {
	content: '9)';
}
#intro-hero {
	width: 100%;
	height: 600px;
	background-image: url(images/main-hero.jpg);
}
#history {
	position: relative;
	width: 90%;
	height: 300px;
	margin-bottom: 50px;
	margin-top: 30px;
}
.history-slide {
	position: absolute;
	width: 440px;
	padding: 10px;
	background: #fff;
	border: 1px solid #93a7cb;
	overflow: hidden;
	text-align: left;
}
.history-slide img {
	width: 100%;
	margin-bottom: 5px;
}
.history-slide .icon-arrow-1 {
	display: inline-block;
	font-size: 1.2em;
	transform: translateY(4px);
}
#history-slide-1 {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-60%) rotate(-3deg);
	z-index: 3;
}
#history-slide-2 {
	position: absolute;
	top: 0px;
	right: 50%;
	transform: translateX(60%) rotate(3deg);
	z-index: 1;
}
#history-arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	width: 50px;
	height: 1px;
	background: #93a7cb;
}
#history-arrow:before, #history-arrow:after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: #93a7cb;
	position: absolute;
	right: 0px;
}
#history-arrow:before {
	transform: rotate(45deg) translate(-4px, -7px);
}
#history-arrow:after {
	transform: rotate(-45deg) translate(-4px, 7px);
}
#history-slide-1, #history-slide-2, #history-arrow {
	transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition-delay: 0.4s;
}
#history-arrow {
	transition-delay: 0.5s;
}
#history.in-viewport #history-slide-1 {
	position: absolute;
	top: 0px;
	left: 0px;
	transform: rotate(-10deg);
}
#history.in-viewport #history-slide-2 {
	position: absolute;
	top: 0px;
	right: 0px;
	transform: rotate(6deg);
}
#history.in-viewport #history-arrow {
	width: 220px;
}
#sqf {
	max-width: 260px;
	margin-top: 30px;
}
.gallery {
	max-width: 500px;
	margin: 10px auto 0px auto;
	padding: 10px;
	background: #fff;
	border: 1px solid #93a7cb;
	overflow: hidden;
}
.gallery-images {
	position: relative;
	width: 478px;
	height: 665px;
}
.gallery-images img {
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	transition: opacity 0.7s ease-in;
}
.gallery-images img.visible {
	opacity: 1;
}
.gallery-dots {
	display: block;
	margin: 0 auto;
	padding: 10px;
	text-align: center;
}
.dot {
	display: inline-block;
	margin: 0 10px;
	background: #93a7cb;
	width: 7px;
	height: 7px;
	border-radius: 7px;
	transition: background 0.3s ease-out;
}
.dot.active {
	background: #091f40;
}
#logistics-flowchart-mobile {
	display: none;
}
#pure-ocean-hero {
	width: 100%;
	height: 440px;
	background-image: url(images/pure-ocean-hero.jpg);
	box-shadow: inset 0px 20px 20px -20px rgba(0,0,0,0.5), inset 0px -20px 20px -20px rgba(0,0,0,0.5);
}
#gourmet-hero {
	width: 100%;
	height: 440px;
	background-image: url(images/gourmet-hero.jpg);
	box-shadow: inset 0px 20px 20px -20px rgba(0,0,0,0.5), inset 0px -20px 20px -20px rgba(0,0,0,0.5);
}
#smoked-hero {
	width: 100%;
	height: 440px;
	background-image: url(images/smoked-hero.jpg);
	box-shadow: inset 0px 20px 20px -20px rgba(0,0,0,0.5), inset 0px -20px 20px -20px rgba(0,0,0,0.5);
}
#flavored-hero {
	width: 100%;
	height: 440px;
	background-image: url(images/flavored-hero.jpg);
	box-shadow: inset 0px 20px 20px -20px rgba(0,0,0,0.5), inset 0px -20px 20px -20px rgba(0,0,0,0.5);
}
#optically-clean-icon {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
#optically-clean-icon:before {
	content: '';
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
	background: #93a7cb;
	transform: translateY(42px);
}
#optically-clean-icon img {
	position: relative;
	max-width: 80px;
	margin: 0 auto;
}
footer {
	text-align: center;
	padding: 24px;
	color: #777;
}
a {
	text-decoration: none;
	color: #4e6a9d;
}
#contact a {
	display: inline-block;
	font-size: 5em;
	margin: 0 30px;
	transition: all 0.3s ease-out;
}
.fade-content-in, .slide-down, .slide-left-right, .slide-right-left {
	transition: all 0.8s ease-out;
	transition-delay: 0.3s;
}
.fade-content-in {
	opacity: 0;
}
.in-viewport.fade-content-in {
	opacity: 1;
}
.slide-down {
	transform: translateY(-60px);
}
.in-viewport.slide-down {
	transform: translateY(0);
}
.slide-left-right {
	transform: translateX(-120px);
}
.in-viewport.slide-left-right, .in-viewport.slide-right-left {
	transform: translateX(0);
}
.slide-right-left {
	transform: translateX(120px);
}
#pre-footer h3 {
	font-size: 3.5vw;
}
#woods {
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
	font-size: .6em;
	margin-top: 30px;
}
#woods span {
	display: inline-block;
	font-size: 2.2em;
	transform: translate(-5px, 10px);
	opacity: 0.8;
}
#video-grid {
  margin: 20px auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  font-size: 1.25em;
}
.icon-youtube-play {
  display: inline-block;
  margin-right: 0.5em;
  transform: translateY(3px);
}
#salt-bowl-grid {
  display: grid;
  grid-column-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 60px;
  padding: 60px 20px;
}
.salt-bowl h4, .salt-bowl ul{  
  padding: 20px;
}
.salt-bowl h4 {
  margin-bottom: 0px;
  text-align: center;
  margin-top: 20px;
}
.salt-bowl ul {
  list-style: none;
  margin: 0px;
}
@media (hover:hover) {
	nav a:hover span {
		opacity: 1;
		transform: translateX(0);
	}
	nav a:hover:after {
		background: #091f40;
	}
	footer a:hover {
		text-decoration: underline;
	}
	#contact a:hover {
		transform: scale(1.2);
	}
}
@media screen and (max-width:768px) {
	nav {
		display: none;
	}
	section {
		padding: 20px 0;
	}
	header {
		min-height: 0px;
		padding: 24px;
	}
	.left, .right, .wide-left, .wide-right {
		display: block;
		float: none;
		margin: 0;
		padding-right: 0;
		width: 100%;
		text-align: center;
		padding-bottom: 20px;
	}
	.wide-left + .right, .left + .right {
		width: 100%;
		margin: 0;
		padding: 0;
	}
	#sqf {
		max-width: 200px;
		margin: 20px auto 0 auto;
	}
	ul {
		text-align: left;
	}
	header h1 {
		font-size: 2em;
	}
	.large-padded {
		padding: 20px;
	}
	h1, h2, h3 {
		font-size: 1.75em;
		padding: .75em 0;
	}
	h4 {
		text-align: center;
	}
	.slide-down {
		transform: translateY(0);
	}
	.in-viewport.slide-down {
		transform: translateY(0);
	}
	.slide-left-right {
		transform: translateX(0);
	}
	.in-viewport.slide-left-right, .in-viewport.slide-right-left {
		transform: translateX(0);
	}
	.slide-right-left {
		transform: translateX(0);
	}
	.numbered {
		padding-left: 2em;
	}
	#capabilities-intro {
		margin-bottom: 30px;
	}
  #salt-bowl-grid {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 60px;
    padding: 60px 20px;
    text-align: center;
  }
  .salt-bowl ul {
    text-align: center;
  }
}
@media screen and (max-width:450px) {
	body {
		margin-top: 46px;
	}
	header h1 {
		font-size: 5.5vw;
	}
	h1, h2, h3 {
		font-size: 1.5em;
		padding: .75em 0;
		font-weight: 300;
	}
	h4 {
		font-size: 1.25em;
	}
	#wayfinder {
		padding: 0 !important;
	}	
	.bigger, .smaller {
		font-size: 1em;
	}	
	#intro-hero, #gourmet-hero, #smoked-hero, #flavored-hero {
		height: 300px;
	}
	.numbered {
		font-size: 1em;
		margin-top: 20px;
		margin-bottom: 30px;
	}
	section:last-of-type {
		margin-bottom: 60px;
	}
	#logistics-flowchart {
		display: none;
	}
	#logistics-flowchart-mobile {
		display: block;
	}
	.gallery {
		margin-top: 10px;
		padding: 10px;
		background: #fff;
		border: 1px solid #93a7cb;
		overflow: hidden;
	}
	.gallery-images {
		position: relative;
		width: 314px;
		height: 438px;
	}
	.parallax {
		background-attachment: scroll;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	#history {
		height: 400px;
	}
	.history-slide {
		width: 300px;
	}
	.history-slide img {
		width: 100%;
	}
	.history-slide .icon-arrow {
		display: inline-block;
		font-size: 1.5em;
		transform: translateY(6px);
	}
	#history-slide-1, #history.in-viewport #history-slide-1 {
		transform: translateX(0%) rotate(-3deg);
		position: absolute;
		top: 0px;
		left: 0px;
	}
	#history-slide-2, #history.in-viewport #history-slide-2 {
		transform: translate(0%, 95%) rotate(3deg);
		position: absolute;
		top: 0px;
		right: 0px;
	}
	#history-arrow {
		display: none;
	}
  #logo {
		max-width: 120px;
	}
	#capabilities .capabilities {
		padding-bottom: 0px;
	}
	.capabilities {
		margin-top: 0px;
	}
	.capabilities p {
		line-height: 1.5em !important;
	}
	#pre-footer h3 {
		font-size: 1.5em;
		line-height: 1.5em;
	}
	#woods {
		display: none;
	}
  #video-grid {
    grid-template-columns: 1fr 1fr;
  }
  #video-grid a {
    margin-bottom: 1em;
  }
  #salt-bowl-grid {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    padding: 60px 20px;
    text-align: center;
  }
}