/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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; }

i {
  font-style: normal; }

em {
  font-style: italic; }

strong {
  font-weight: 600; }

/* -- Fonts -- */
@font-face {
  font-family: 'Proxima-Nova';
  src: url("../fonts/PN-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/PN-Regular.otf") format("opentype"), url("../fonts/PN-Regular.woff") format("woff"), url("../fonts/PN-Regular.ttf") format("truetype"), url("../fonts/PN-Regular.svg#PN-Regular") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Proxima-Nova';
  src: url("../fonts/PN-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/PN-Bold.otf") format("opentype"), url("../fonts/PN-Bold.woff") format("woff"), url("../fonts/PN-Bold.ttf") format("truetype"), url("../fonts/PN-Bold.svg#PN-Bold") format("svg");
  font-weight: bold;
  font-style: normal; }
/*
@font-face {
  font-family: 'Proxima-Nova-Semi';
  src: url('../fonts/PN-Semibold.eot?#iefix') format('embedded-opentype'),  url('../fonts/PN-Semibold.otf')  format('opentype'),
	     url('../fonts/PN-Semibold.woff') format('woff'), url('../fonts/PN-Semibold.ttf')  format('truetype'), url('../fonts/PN-Semibold.svg#PN-Semibold') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/* Must match JS calcHero() */
/* -- Global Standards -- */
html, body {
  height: 100%;
  margin: 0;
  padding: 0; }

body {
  font-family: 'Proxima-Nova', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: normal;
  line-height: normal;
  color: #221f1f;
  text-align: center;
  background: #f7f7f8;
  overflow-x: hidden; }

a:link {
  transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease; }

a:link, a:hover, a:visited, a img {
  border: none;
  outline: none;
  text-decoration: none; }

a {
  text-transform: uppercase;
  color: #221f1f; }

a:hover {
  color: #f13c3d; }

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 400; }

button, select, input {
  outline: none;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none; }

img {
  max-width: 100%; }

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

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

.clear {
  clear: both;
  display: table;
  width: 0;
  height: 0;
  visibility: hidden; }

.clear-after::after {
  content: "";
  clear: both;
  display: table; }

/* -- Animations -- */
/* Loading Spinner */
.spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear; }

.drop1, .drop2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #f13c3d;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  -webkit-animation: sk-bounce 1.4s infinite ease;
  animation: sk-bounce 1.4s infinite ease; }

.drop2 {
  top: auto;
  bottom: 0;
  border-top-left-radius: 50%;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s; }

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }
/* Copy/Link Underline */
.underline {
  display: inline-block;
  position: relative; }
  .underline::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #f13c3d;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
    -o-transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
    -ms-transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
    -moz-transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
    -webkit-transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
    transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0); }
  .underline:hover::before {
    opacity: 1;
    transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    -webkit-transform: translate(0, -5px); }

/* Bounce for buttons */
@-webkit-keyframes bounce {
  from, 10%, 26%, 40%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  20%, 21% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  35% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  45% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
@keyframes bounce {
  from, 10%, 26%, 40%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  20%, 21% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  35% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  45% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
/* Scrollax Elements */
.scroll {
  transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1);
  -o-transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1);
  -ms-transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1);
  -webkit-transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1);
  transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0); }

/* Fade Elements */
.fade {
  opacity: 0;
  transform: translate(0, 70px);
  -ms-transform: translate(0, 70px);
  -webkit-transform: translate(0, 70px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  -o-transition: opacity 0.8s ease, transform 0.8s ease;
  -ms-transition: opacity 0.8s ease, transform 0.8s ease;
  -moz-transition: opacity 0.8s ease, transform 0.8s ease;
  -webkit-transition: opacity 0.8s ease, transform 0.8s ease; }
  .fade.scrolled {
    opacity: 1;
    transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0); }

/* -- Buttons -- */
.arrow .color {
  transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  -ms-transition: fill 0.3s ease;
  -moz-transition: fill 0.3s ease;
  -webkit-transition: fill 0.3s ease; }

a.down-arrow {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 30px;
  height: 50px;
  width: 50px;
  z-index: 5;
  opacity: .5;
  cursor: pointer;
  transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease; }
  a.down-arrow:hover {
    opacity: 1; }
  a.down-arrow .arrow {
    width: 30px; }
    a.down-arrow .arrow .color {
      fill: #fff; }
  .pace-done a.down-arrow {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom; }

button {
  display: inline-block;
  position: relative;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 0;
  background: #e1e1e1;
  cursor: pointer;
  transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease; }
  button .arrow {
    width: 25px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; }
    button .arrow .color {
      fill: #95989A; }
  button:hover {
    background: #f13c3d; }
    button:hover .arrow .color {
      fill: #fff; }
  @media screen and (max-width: 980px) {
    button {
      width: 50px;
      height: 50px; } }
  @media screen and (max-width: 400px) {
    button {
      width: 44px;
      height: 44px; }
      button .arrow {
        width: 20px; } }

button.previous {
  float: left; }
  button.previous .arrow {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg); }

button.next {
  float: right; }
  button.next .arrow {
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg); }

button.top {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  position: fixed;
  bottom: 0;
  right: 0; }

/* -- Forms -- */
input {
  padding: 7px 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: normal;
  line-height: 13px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }

::-webkit-input-placeholder {
  /* Chrome */
  color: #a1a8ad; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #a1a8ad; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #a1a8ad;
  opacity: 1; }

:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #a1a8ad;
  opacity: 1; }

/* -- Copy Styles -- */
.copy h2, .copy h3 {
  display: inline-block;
  position: relative;
  font-size: 50px;
  letter-spacing: normal;
  line-height: 60px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 70px 0; }
  .copy h2::after, .copy h3::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -35px;
    margin: auto;
    background: #f13c3d; }
  .copy h2.left::after, .copy h3.left::after {
    left: 0;
    right: auto; }
  .copy h2.none::after, .copy h3.none::after {
    display: none; }
.copy h3 {
  font-size: 30px;
  letter-spacing: normal;
  line-height: 34px;
  text-transform: none; }
.copy p, .copy li {
  font-size: 16px;
  letter-spacing: normal;
  line-height: 24px;
  color: #a1a8ad; }
@media screen and (max-width: 1300px), (max-height: 800px) {
  .copy h2 {
    font-size: 30px;
    letter-spacing: normal;
    line-height: 34px;
    margin: 0 0 50px 0; }
    .copy h2::after {
      bottom: -25px; }
  .copy h3 {
    font-size: 24px;
    letter-spacing: normal;
    line-height: 30px; }
  .copy p, .copy li {
    font-size: 14px;
    letter-spacing: normal;
    line-height: 22px; } }
@media screen and (max-width: 600px) {
  .copy h2 {
    font-size: 24px;
    letter-spacing: normal;
    line-height: 30px; }
  .copy h3 {
    font-size: 18px;
    letter-spacing: normal;
    line-height: 24px; }
  .copy p, .copy li {
    font-size: 12px;
    letter-spacing: normal;
    line-height: 16px; } }

/* -- Slider Styles -- */
.slider-container.content {
  padding: 100px 0 0 0; }
  .slider-container.content .container {
    width: calc(90% - 26px);
    /* 90% - (container padding - indv. slide margin) */
    padding: 0;
    z-index: 2; }
  .slider-container.content h3 {
    font-size: 30px;
    letter-spacing: normal;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    position: relative; }
    .slider-container.content h3::before, .slider-container.content h3::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      height: 2px;
      margin: auto;
      background: #f13c3d; }
    .slider-container.content h3::before {
      left: -120px; }
    .slider-container.content h3::after {
      right: -120px; }
    @media screen and (max-width: 480px) {
      .slider-container.content h3::before, .slider-container.content h3::after {
        width: 20px; }
      .slider-container.content h3::before {
        left: -40px; }
      .slider-container.content h3::after {
        right: -40px; } }
  .slider-container.content .buttons {
    z-index: 1;
    height: 50px;
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: 50px; }
  @media screen and (max-width: 1300px), (max-height: 800px) {
    .slider-container.content .buttons {
      margin-top: 50px; }
    .slider-container.content h3 {
      font-size: 24px;
      letter-spacing: normal;
      line-height: 30px; } }
  @media screen and (max-width: 600px) {
    .slider-container.content h3 {
      font-size: 18px;
      letter-spacing: normal;
      line-height: 24px; } }
  @media screen and (max-width: 760px) {
    .slider-container.content .container {
      /* slide margin begins to over take buttons. add correction. */
      width: 80%; } }
  @media screen and (max-width: 550px) {
    .slider-container.content .container {
      width: 70%; } }

.slider {
  padding: 40px 0 0 0;
  z-index: 2; }
  .slider li {
    list-style: none;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 12px;
    border: none;
    outline: none;
    position: relative;
    text-align: left;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
    .slider li img {
      width: 100%; }
    .slider li span {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      font-size: 14px;
      letter-spacing: normal;
      padding: 20px;
      opacity: 0;
      transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
      -webkit-transform: translate(0, 100%);
      transition: transform 0.6s ease, opacity 0.4s ease;
      -o-transition: transform 0.6s ease, opacity 0.4s ease;
      -ms-transition: transform 0.6s ease, opacity 0.4s ease;
      -moz-transition: transform 0.6s ease, opacity 0.4s ease;
      -webkit-transition: transform 0.6s ease, opacity 0.4s ease; }
      .slider li span strong {
        color: #f13c3d;
        text-transform: uppercase;
        display: block;
        margin: 0 0 5px 0; }
    .slider li:hover span {
      transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -webkit-transform: translate(0, 0);
      opacity: 1; }
    @media screen and (max-width: 800px) {
      .slider li span {
        font-size: 12px;
        letter-spacing: normal;
        padding: 15px; } }

/* Slider Button Collapse */
@media screen and (max-width: 500px) {
  .slider-container.collapse .container {
    width: calc(90% - 50px); }
  .slider-container.collapse .slider li {
    margin: 0; }
  .slider-container.collapse .buttons {
    width: calc(90% - 50px);
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    bottom: 4px;
    margin: auto auto 50px auto; }
    .slider-container.collapse .buttons button {
      width: 50%;
      float: left; } }

/* -- Full Video Styles -- */
#full-video-container {
  position: fixed;
  top: 0;
  overflow: hidden;
  display: none;
  z-index: -9999; }

#full-video-controls {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 1001;
  margin: 20px;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 100000;
  opacity: .7;
  transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease; }

#close-full-video {
  display: block;
  border: none;
  background: url("../img/icons/close.png") no-repeat center center;
  background-size: 13px 13px;
  padding: 5px;
  border: solid 2px #fff;
  width: 23px;
  height: 23px;
  z-index: 1000001; }

#full-video-controls:hover {
  opacity: 1; }

/* -- Layout -- */
.loader-screen {
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: visible;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  background: #fff;
  /* Custom transition with a delay on hiding visibility until after opacity anim. */
  transition: visibility 0s ease 0.5s, opacity 0.5s ease;
  -o-transition: visibility 0s ease 0.5s, opacity 0.5s ease;
  -ms-transition: visibility 0s ease 0.5s, opacity 0.5s ease;
  -moz-transition: visibility 0s ease 0.5s, opacity 0.5s ease;
  -webkit-transition: visibility 0s ease 0.5s, opacity 0.5s ease; }
  .pace-done .loader-screen {
    visibility: hidden;
    opacity: 0; }

header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 105px;
  padding: 30px 15px 20px 15px;
  background: #f7f7f8;
  z-index: 3; }
  header .home {
    float: left;
    letter-spacing: 1px; }
  header .contact {
    float: right;
    letter-spacing: 1px; }
  header .logo {
    display: inline-block;
    margin: auto; }
    header .logo img {
      width: 180px; }
  @media screen and (max-width: 980px) {
    header {
      height: 66px;
      padding: 22px 0 5px 0; }
      header .logo {
        width: 120px; }
      header .underline {
        display: none; } }

#wrapper {
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1);
  -o-transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1);
  -ms-transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1);
  -webkit-transition: transform 0.8s cubic-bezier(0.18, 1, 0.21, 1); }
  @media screen and (max-width: 980px) {
    #wrapper {
      z-index: 2; }
      body.nav-open #wrapper {
        transform: translate(200px, 0);
        -ms-transform: translate(200px, 0);
        -webkit-transform: translate(200px, 0); } }

#hero {
  width: 100%;
  position: relative;
  margin-top: 160px;
  background: #f7f7f8; }
  @media screen and (max-width: 980px) {
    #hero {
      margin-top: 66px; } }
  #hero .lazy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    visibility: hidden;
    opacity: 0;
    margin: 0 15px;
    /* Custom transition with a delay on hiding visibility until after opacity anim. */
    transition: visibility 0s ease 0.7s, opacity 0.6s ease;
    -o-transition: visibility 0s ease 0.7s, opacity 0.6s ease;
    -ms-transition: visibility 0s ease 0.7s, opacity 0.6s ease;
    -moz-transition: visibility 0s ease 0.7s, opacity 0.6s ease;
    -webkit-transition: visibility 0s ease 0.7s, opacity 0.6s ease;
    		/*
    		span {
    			display: inline-block;
    			font-size: $head_xlarge;
    			line-height: $head_xlarge_line;
    			font-weight: bold;
    			color: #fff;
    			text-transform: uppercase;
    
    			&::before {
    				height: 2px;
    				bottom: -20px;
    				@include transition_double(opacity, .5s, ease, transform, .7s, $cubic);
    			}
    			.pace-done &::before {
    				opacity: 1;
    				@include transform_translate(0, -10px);
    				transition-delay: .5s;
    			}
    
    			@media screen and
    				(max-width: 450px),
    				(max-height: 450px) {
    
    				span {
    					font-size: 40px;
    					line-height: 50px;
    				}
    			}
    		}
    		*/ }
    #hero .lazy.active {
      opacity: 1;
      visibility: visible;
      /* Reset delay. */
      transition-delay: 0s; }
  #hero .default {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 15px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
    #hero .default.mobile video {
      display: none; }
  #hero .heading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
    height: 120px;
    pointer-events: none;
    padding: 0 30px; }
    #hero .heading span {
      display: block; }
    #hero .heading h1 {
      display: inline-block;
      font-size: 50px;
      line-height: 60px;
      letter-spacing: normal;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase; }
      #hero .heading h1::before {
        height: 2px;
        bottom: -20px;
        transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.18, 1, 0.21, 1);
        -o-transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.18, 1, 0.21, 1);
        -ms-transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.18, 1, 0.21, 1);
        -moz-transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.18, 1, 0.21, 1);
        -webkit-transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.18, 1, 0.21, 1); }
      .pace-done #hero .heading h1::before {
        opacity: 1;
        transform: translate(0, -10px);
        -ms-transform: translate(0, -10px);
        -webkit-transform: translate(0, -10px);
        transition-delay: .5s; }
    #hero .heading p {
      display: block;
      font-size: 13px;
      letter-spacing: normal;
      color: #fff;
      text-transform: uppercase;
      margin: 0 0 15px 0;
      letter-spacing: 1px; }
    @media screen and (max-width: 450px), (max-height: 450px) {
      #hero .heading h1 {
        font-size: 40px;
        letter-spacing: normal;
        line-height: 50px; } }

.content {
  position: relative;
  text-align: center;
  background: #f7f7f8; }
  .content .container {
    display: inline-block;
    padding: 0 25px;
    position: relative;
    text-align: center;
    width: 90%; }
    @media screen and (max-width: 600px) {
      .content .container .container {
        width: 100%;
        padding: 0 25px; } }

footer {
  padding: 200px 0 0 0; }
  footer .container > div {
    border-top: solid 1px #e1e1e1;
    padding: 20px 0 18px 0;
    text-transform: uppercase; }
  footer .container .copyright {
    float: left;
    color: #a1a8ad;
    letter-spacing: 1px; }
    footer .container .copyright span {
      display: inline-block; }
  footer .container .contact {
    float: right;
    color: #a1a8ad;
    letter-spacing: 1px; }
    footer .container .contact:hover {
      color: #f13c3d; }
  @media screen and (max-width: 980px) {
    footer .container > div {
      padding: 17px 20px 15px 0; } }
  @media screen and (max-width: 1300px), (max-height: 800px) {
    footer {
      padding: 100px 0 0 0; } }
  @media screen and (max-width: 600px) {
    footer {
      padding: 60px 0 0 0; } }
  @media screen and (max-width: 500px) {
    footer .container .copyright,
    footer .container .contact {
      float: none;
      text-align: center; }
    footer .container .copyright {
      display: block; }
    footer .container .contact {
      display: inline-block;
      margin: 0 0 20px 0; } }

/* -- Navigation -- */
nav {
  position: fixed;
  top: 105px;
  display: block;
  width: 100%;
  border-top: solid 1px #e1e1e1;
  border-bottom: solid 1px #e1e1e1;
  background: #f7f7f8;
  z-index: 2;
  opacity: 1; }
  nav ul {
    font-size: 0px;
    letter-spacing: 0px; }
  nav li {
    font-size: 12px;
    letter-spacing: normal;
    display: inline-block;
    letter-spacing: 1px; }
    nav li a {
      display: inline-block;
      min-width: 100px;
      padding: 20px;
      position: relative;
      text-align: center; }
      nav li a::before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: #f13c3d;
        position: absolute;
        top: -1px;
        left: 0;
        right: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        -ms-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -webkit-transition: opacity 0.3s ease; }
      nav li a:hover::before, nav li a.active::before {
        opacity: 1; }
  nav .mobile {
    display: none; }
  @media screen and (max-width: 980px) {
    nav {
      position: fixed;
      top: 55px;
      right: auto;
      left: 0;
      width: 200px;
      border-top: none;
      opacity: 0;
      overflow: hidden;
      height: 100%;
      min-height: 100%;
      overflow-y: auto;
      text-align: left;
      padding: 20px 0 30px 15px;
      background: #f13c3d;
      transition: opacity 0s ease 0.5s;
      -o-transition: opacity 0s ease 0.5s;
      -ms-transition: opacity 0s ease 0.5s;
      -moz-transition: opacity 0s ease 0.5s;
      -webkit-transition: opacity 0s ease 0.5s; }
      nav li a {
        display: block;
        text-align: left;
        color: #fff;
        padding: 10px 10px;
        font-size: 13px;
        letter-spacing: normal;
        font-weight: 600; }
        nav li a::before, nav li a:hover::before, nav li a.active::before {
          opacity: 0; }
        nav li a:hover {
          color: #fff; }
      nav .mobile {
        display: block;
        color: #fff;
        font-weight: 600;
        display: block;
        padding: 10px 10px;
        font-size: 13px;
        letter-spacing: normal;
        font-weight: 600; }
      body.nav-open nav {
        opacity: 1;
        transition-delay: 0s; } }

#nav-button {
  position: fixed;
  top: 0;
  left: 0;
  width: 51px;
  height: 51px;
  margin: 0 0 0 15px;
  z-index: 4;
  cursor: pointer;
  display: block;
  background: #f13c3d;
  transform: translate(0, -51px);
  -ms-transform: translate(0, -51px);
  -webkit-transform: translate(0, -51px);
  transition: transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
  -o-transition: transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
  -webkit-transition: transform 0.5s cubic-bezier(0.18, 1, 0.21, 1);
  /* Nav Button Contents - Open */ }
  #nav-button span {
    display: block;
    position: relative;
    margin: 6px 0 0 14px; }
  #nav-button i {
    display: block;
    position: absolute;
    vertical-align: top;
    width: 23px;
    height: 3px;
    margin: 0 5px 0 0;
    border-radius: 1px;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.18, 1, 0.21, 1);
    -o-transition: all 0.6s cubic-bezier(0.18, 1, 0.21, 1);
    -ms-transition: all 0.6s cubic-bezier(0.18, 1, 0.21, 1);
    -moz-transition: all 0.6s cubic-bezier(0.18, 1, 0.21, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.18, 1, 0.21, 1); }
  #nav-button i:nth-child(1) {
    left: 0px;
    top: 10px; }
  #nav-button i:nth-child(2) {
    left: 0px;
    top: 18px; }
  #nav-button i:nth-child(3) {
    left: 0px;
    top: 26px; }
  body.nav-open #nav-button {
    /* Nav Button Contents - Close */ }
    body.nav-open #nav-button i:nth-child(1) {
      top: 10px;
      left: -19px;
      -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
      transform-origin: right center;
      -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
      transform: rotate(-135deg); }
    body.nav-open #nav-button i:nth-child(2) {
      border-radius: 50%;
      opacity: 0; }
    body.nav-open #nav-button i:nth-child(3) {
      top: 10px;
      left: 20px;
      -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
      transform-origin: left center;
      -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      transform: rotate(135deg); }
    body.nav-open #nav-button i {
      background: #fff; }
    body.nav-open #nav-button:hover i {
      /*background: $close_hover;*/ }
  @media (max-width: 980px) {
    #nav-button {
      transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -webkit-transform: translate(0, 0); } }

.menu-shadow {
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.07); }

/* Global Content */
.previous-next {
  padding: 200px 0 0 0; }
  .previous-next .container {
    height: 300px; }
  .previous-next a {
    display: inline-block;
    position: absolute;
    text-align: center;
    width: auto;
    height: 300px;
    margin: auto;
    background: transparent;
    cursor: pointer;
    z-index: 1; }
    .previous-next a p {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      margin: auto;
      display: block;
      font-size: 30px;
      letter-spacing: normal;
      color: #fff;
      font-weight: bold;
      text-transform: none;
      z-index: 1; }
      .previous-next a p::before {
        display: block;
        margin: 110px 0 15px 0;
        font-size: 12px;
        letter-spacing: 1px;
        font-weight: 400;
        color: #fff;
        text-transform: uppercase; }
    .previous-next a span {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      opacity: 1;
      background-size: cover;
      background-repeat: no-repeat;
      transition: opacity 0.7s cubic-bezier(0.18, 1, 0.21, 1);
      -o-transition: opacity 0.7s cubic-bezier(0.18, 1, 0.21, 1);
      -ms-transition: opacity 0.7s cubic-bezier(0.18, 1, 0.21, 1);
      -moz-transition: opacity 0.7s cubic-bezier(0.18, 1, 0.21, 1);
      -webkit-transition: opacity 0.7s cubic-bezier(0.18, 1, 0.21, 1); }
    .previous-next a:hover {
      z-index: 2;
      background: #f13c3d; }
      .previous-next a:hover span {
        opacity: 0; }
  .previous-next a.previous {
    left: 25px;
    right: 50%;
    transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), right 1.1s cubic-bezier(0.18, 1, 0.21, 1);
    -o-transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), right 1.1s cubic-bezier(0.18, 1, 0.21, 1);
    -ms-transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), right 1.1s cubic-bezier(0.18, 1, 0.21, 1);
    -moz-transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), right 1.1s cubic-bezier(0.18, 1, 0.21, 1);
    -webkit-transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), right 1.1s cubic-bezier(0.18, 1, 0.21, 1); }
    .previous-next a.previous p::before {
      content: "Previous Product"; }
    .previous-next a.previous span {
      background-position: left bottom; }
    .previous-next a.previous:hover {
      right: 25px; }
  .previous-next a.next {
    right: 25px;
    left: 50%;
    transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), left 1.1s cubic-bezier(0.18, 1, 0.21, 1);
    -o-transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), left 1.1s cubic-bezier(0.18, 1, 0.21, 1);
    -ms-transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), left 1.1s cubic-bezier(0.18, 1, 0.21, 1);
    -moz-transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), left 1.1s cubic-bezier(0.18, 1, 0.21, 1);
    -webkit-transition: background 0.7s cubic-bezier(0.18, 1, 0.21, 1), left 1.1s cubic-bezier(0.18, 1, 0.21, 1); }
    .previous-next a.next p::before {
      content: "Next Product"; }
    .previous-next a.next span {
      background-position: right bottom; }
    .previous-next a.next:hover {
      left: 25px; }
  @media screen and (max-width: 1300px), (max-height: 800px) {
    .previous-next {
      padding: 100px 0 0 0; } }
  @media screen and (max-width: 600px) {
    .previous-next {
      padding: 60px 0 0 0; } }
  @media screen and (max-width: 650px) {
    .previous-next .container {
      height: 150px; }
    .previous-next a {
      height: 150px; }
      .previous-next a p::before {
        margin: 40px 0 10px 0; } }
  @media screen and (max-width: 420px) {
    .previous-next .container {
      height: auto; }
    .previous-next a.previous,
    .previous-next a.next {
      position: relative;
      width: 100%;
      left: 0;
      right: 0; }
      .previous-next a.previous:hover,
      .previous-next a.next:hover {
        left: 0;
        right: 0; } }

.redbox {
  width: 100%;
  padding: 80px 0 0 0; }
  .redbox .cols {
    width: 100%; }
  .redbox .left-col {
    width: 30%;
    float: left;
    position: relative;
    background: #f13c3d;
    color: #fff;
    text-align: left;
    padding: 10% 60px; }
    .redbox .left-col.tall {
      padding: 14% 60px; }
  .redbox .right-col {
    /* goes inside left col */
    position: absolute;
    width: 233.3333%;
    /* 70/30 */
    height: 100%;
    top: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    left: 100%; }
  .redbox .copy h2 {
    margin: 0 0 23px 0; }
  .redbox .copy p {
    color: #fff; }
  @media screen and (max-width: 1100px) {
    .redbox .copy h2 {
      margin: 0 0 14px 0; } }
  @media screen and (max-width: 1200px) {
    .redbox .left-col {
      padding: 10% 40px;
      width: 40%; }
      .redbox .left-col.tall {
        padding: 14% 40px; }
    .redbox .right-col {
      width: 150%; } }
  @media screen and (max-width: 950px) {
    .redbox .left-col {
      padding: 10% 30px;
      width: 50%; }
      .redbox .left-col.tall {
        padding: 14% 30px; }
    .redbox .right-col {
      width: 100%; } }
  @media screen and (max-width: 600px) {
    .redbox .left-col {
      width: 60%; }
    .redbox .right-col {
      width: 66.666%; } }
  @media screen and (max-width: 480px) {
    .redbox .left-col {
      width: 100%;
      padding: 0; }
      .redbox .left-col.tall {
        padding: 0; }
    .redbox .copy {
      position: static;
      width: 100%;
      padding: 30px; }
    .redbox .right-col {
      position: static;
      width: 100%;
      height: 180px; } }

.redbox.reverse .left-col {
  float: right;
  text-align: left; }
.redbox.reverse .right-col {
  left: -233.333%;
  right: auto; }
@media screen and (max-width: 1200px) {
  .redbox.reverse .right-col {
    left: -150%; } }
@media screen and (max-width: 950px) {
  .redbox.reverse .right-col {
    left: -100%; } }
@media screen and (max-width: 600px) {
  .redbox.reverse .right-col {
    left: -66.666%; } }

.floats {
  width: 100%;
  padding: 80px 0 0 0; }
  .floats .cols {
    width: 100%;
    /*overflow: hidden;*/ }
  .floats .copy-col {
    position: absolute;
    color: #221f1f;
    text-align: left; }
  .floats .image-col {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
    .floats .image-col.img {
      background: none; }
  .floats .copy {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 60px 50px; }
    .floats .copy p {
      display: block;
      color: #a1a8ad; }
  @media screen and (max-width: 900px) {
    .floats .copy {
      padding: 40px 30px; } }

.displays {
  width: 100%;
  padding: 80px 0 0 0; }
  .displays .cols {
    width: 100%; }
  .displays .copy-col {
    float: left;
    width: 40%;
    padding: 10% 0;
    color: #221f1f;
    text-align: left; }
  .displays .image-col {
    float: left;
    background: none; }
  .displays .copy {
    position: relative;
    z-index: 1;
    padding: 60px 50px; }
    .displays .copy p {
      display: block;
      color: #a1a8ad; }
    .displays .copy.white {
      background: #fff; }
  @media screen and (max-width: 900px) {
    .displays .copy {
      padding: 40px 30px; } }

ul.list li {
  list-style: none;
  position: relative;
  margin: 5px 0 5px 30px; }
  ul.list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -28px;
    bottom: auto;
    margin: auto;
    width: 10px;
    height: 1px;
    background: #221f1f; }
ul.list.white li::before {
  background: #fff; }

.content.testimonial {
  background: #221f1f;
  padding: 80px 0; }
  .content.testimonial .container {
    max-width: 950px;
    padding: 0 25px; }
  .content.testimonial blockquote {
    display: block;
    font-size: 30px;
    letter-spacing: normal;
    line-height: 36px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: left; }
  .content.testimonial .author-box {
    display: block;
    float: right;
    margin: 10px 0 0 0;
    text-align: right;
    color: #fff;
    text-transform: uppercase;
    color: #a1a8ad; }
    .content.testimonial .author-box strong {
      color: #fff;
      font-size: 30px;
      letter-spacing: normal;
      text-transform: none; }
    .content.testimonial .author-box .red {
      color: #f13c3d; }
    .content.testimonial .author-box p {
      display: block;
      font-size: 12px;
      letter-spacing: normal;
      line-height: 16px;
      font-weight: bold;
      letter-spacing: 1px; }
  @media screen and (max-width: 600px) {
    .content.testimonial blockquote {
      font-size: 24px;
      letter-spacing: 1.8px;
      line-height: 28px; }
    .content.testimonial .author-box strong {
      font-size: 24px; } }
  @media screen and (max-width: 480px) {
    .content.testimonial blockquote {
      font-size: 18px;
      letter-spacing: 1.35px;
      line-height: 24px; }
    .content.testimonial .author-box strong {
      font-size: 18px;
      letter-spacing: 1.35px; } }

/* -- Index Page -- */
#hero.home .heading {
  pointer-events: auto; }
  #hero.home .heading button {
    background: transparent;
    opacity: .7;
    margin: 30px 0 0 0;
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease; }
    #hero.home .heading button:hover {
      opacity: 1; }

.home-tap-potential {
  padding: 200px 0 0 0; }
  .home-tap-potential .container {
    width: 90%;
    max-width: 600px; }
  @media screen and (max-width: 1300px), (max-height: 800px) {
    .home-tap-potential {
      padding: 100px 0 0 0; } }
  @media screen and (max-width: 600px) {
    .home-tap-potential {
      padding: 60px 0 0 0; } }

.home-potential-slides {
  padding: 200px 0 0 0; }
  .home-potential-slides li {
    display: inline-block;
    float: left;
    width: 30%;
    margin: 0; }
    .home-potential-slides li:nth-of-type(1) {
      margin-right: 5%; }
    .home-potential-slides li:nth-of-type(2) {
      margin-right: 5%; }
  @media screen and (max-width: 1300px), (max-height: 800px) {
    .home-potential-slides {
      padding: 100px 0 0 0; } }
  @media screen and (max-width: 600px) {
    .home-potential-slides {
      padding: 60px 0 0 0; }
      .home-potential-slides li {
        width: 100%;
        margin: 0 0 25px 0;
        float: none; }
        .home-potential-slides li:nth-of-type(1) {
          margin-right: 0; }
        .home-potential-slides li:nth-of-type(2) {
          margin-right: 0; } }

.slider-container.content.brands-slider {
  padding: 200px 0 0 0; }
  .slider-container.content.brands-slider .container {
    width: calc(90% - 100px);
    padding: 0; }
  .slider-container.content.brands-slider .slider {
    padding: 100px 0 70px 0; }
    .slider-container.content.brands-slider .slider li {
      padding: 0 40px;
      position: relative; }
    .slider-container.content.brands-slider .slider li::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(247, 247, 248, 0.6);
      z-index: 2;
      transition: background 0.3s ease;
      -o-transition: background 0.3s ease;
      -ms-transition: background 0.3s ease;
      -moz-transition: background 0.3s ease;
      -webkit-transition: background 0.3s ease; }
    .slider-container.content.brands-slider .slider li:hover::before {
      background: rgba(245, 245, 246, 0); }
    .slider-container.content.brands-slider .slider .brand {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      filter: grayscale();
      -webkit-filter: grayscale();
      transition: filter 0.3s ease;
      -o-transition: filter 0.3s ease;
      -ms-transition: filter 0.3s ease;
      -moz-transition: filter 0.3s ease;
      -webkit-transition: filter 0.3s ease; }
    .slider-container.content.brands-slider .slider li:hover .brand {
      filter: none;
      -webkit-filter: none; }
  .slider-container.content.brands-slider .buttons {
    margin-top: 100px; }
  @media screen and (max-width: 1300px), (max-height: 800px) {
    .slider-container.content.brands-slider {
      padding: 100px 0 0 0; }
      .slider-container.content.brands-slider .buttons {
        margin-top: 50px; } }
  @media screen and (max-width: 600px) {
    .slider-container.content.brands-slider {
      padding: 60px 0 0 0; }
      .slider-container.content.brands-slider .slider {
        padding: 60px 0 30px 0; }
      .slider-container.content.brands-slider .buttons {
        margin-top: 30px; } }
  @media screen and (max-width: 400px) {
    .slider-container.content.brands-slider .slider li {
      padding: 0; } }

/* -- Beer Page -- */
.floats.engineered .copy-col {
  width: 45%;
  padding: 10% 0 0 0;
  right: 25px; }
.floats.engineered .image-col {
  width: 80%;
  float: left;
  padding: 20% 0; }
@media screen and (max-width: 1200px) {
  .floats.engineered .copy-col {
    width: 45%; }
  .floats.engineered .image-col {
    padding: 30% 0; } }
@media screen and (max-width: 800px) {
  .floats.engineered .image-col {
    padding: 40% 0; } }
@media screen and (max-width: 650px) {
  .floats.engineered .image-col {
    padding: 50% 0; } }
@media screen and (max-width: 480px) {
  .floats.engineered .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.engineered .image-col {
    position: static;
    width: 100%;
    padding: 0;
    height: 180px; } }

.floats.longdraw .copy-col {
  width: 35%;
  padding: 10% 0 0 0;
  left: 10%; }
.floats.longdraw .image-col.left {
  position: absolute;
  width: 60%;
  float: left;
  padding: 22% 0;
  margin: 20% 0 0 0; }
.floats.longdraw .image-col.right {
  width: 60%;
  float: right;
  padding: 30% 0;
  margin: 0 0 5% 0; }
@media screen and (max-width: 1200px) {
  .floats.longdraw .copy-col {
    width: 45%; } }
@media screen and (max-width: 800px) {
  .floats.longdraw .copy-col {
    width: 55%; }
  .floats.longdraw .image-col.left {
    margin: 30% 0 0 0; }
  .floats.longdraw .image-col.right {
    margin: 0 0 15% 0; } }
@media screen and (max-width: 650px) {
  .floats.longdraw .copy-col {
    width: 65%; }
  .floats.longdraw .image-col.left {
    margin: 40% 0 0 0; }
  .floats.longdraw .image-col.right {
    margin: 0 0 25% 0; } }
@media screen and (max-width: 480px) {
  .floats.longdraw .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.longdraw .image-col.left {
    position: static;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 180px; }
  .floats.longdraw .image-col.right {
    position: static;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 180px; } }

.floats.directdraw .copy-col {
  width: 40%;
  padding: 10% 0 0 0;
  right: 25px; }
.floats.directdraw .image-col {
  width: 80%;
  float: left;
  padding: 20% 0;
  margin: 0 0 10% 0; }
@media screen and (max-width: 1200px) {
  .floats.directdraw .copy-col {
    width: 45%; }
  .floats.directdraw .image-col {
    padding: 30% 0; } }
@media screen and (max-width: 800px) {
  .floats.directdraw .copy-col {
    width: 55%; }
  .floats.directdraw .image-col {
    padding: 45% 0; } }
@media screen and (max-width: 650px) {
  .floats.directdraw .copy-col {
    width: 65%; }
  .floats.directdraw .image-col {
    padding: 50% 0; } }
@media screen and (max-width: 480px) {
  .floats.directdraw .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.directdraw .image-col {
    position: static;
    width: 100%;
    padding: 0;
    height: 180px; } }

.floats.kegerators .copy-col {
  width: 40%;
  padding: 10% 0 0 0;
  left: 25px; }
.floats.kegerators .image-col {
  width: 70%;
  float: right;
  padding: 20% 0;
  margin: 0 0 5% 0; }
@media screen and (max-width: 1200px) {
  .floats.kegerators .copy-col {
    width: 50%; }
  .floats.kegerators .image-col {
    padding: 25% 0; } }
@media screen and (max-width: 900px) {
  .floats.kegerators .image-col {
    padding: 30% 0; } }
@media screen and (max-width: 780px) {
  .floats.kegerators .copy-col {
    width: 65%; }
  .floats.kegerators .image-col {
    padding: 40% 0; } }
@media screen and (max-width: 480px) {
  .floats.kegerators .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.kegerators .image-col {
    position: static;
    width: 100%;
    padding: 0;
    height: 180px; } }

.beer-customization {
  padding: 100px 0 0 0;
  color: #a1a8ad; }
  .beer-customization .left-col {
    width: 65%;
    text-align: left;
    padding: 20px 50px 0 80px;
    float: left; }
    .beer-customization .left-col p {
      display: block;
      margin: 0 0 20px 0; }
  .beer-customization .right-col {
    width: 35%;
    float: left; }
    .beer-customization .right-col img {
      width: 100%; }
  .beer-customization h3 {
    color: #221f1f; }
  @media screen and (max-width: 1180px) {
    .beer-customization .left-col {
      padding: 0 50px 0 0; } }
  @media screen and (max-width: 600px) {
    .beer-customization {
      padding: 60px 0 0 0; } }
  @media screen and (max-width: 850px) {
    .beer-customization .left-col {
      width: 50%; }
    .beer-customization .right-col {
      width: 50%; } }
  @media screen and (max-width: 850px) {
    .beer-customization .left-col {
      width: 80%;
      margin: 0 10% 30px 10%;
      padding: 0; }
    .beer-customization .right-col {
      width: 100%; } }
  @media screen and (max-width: 550px) {
    .beer-customization .left-col {
      width: 90%;
      margin: 0 5% 30px 5%; } }

/* -- Wine Page -- */
.wine-savings {
  padding: 100px 0 200px 0;
  text-align: center; }
  .wine-savings li {
    display: inline-block;
    float: left;
    width: 14.28%;
    padding: 0 3px;
    font-size: 12px;
    letter-spacing: normal; }
    .wine-savings li:nth-of-type(1) {
      padding-left: 0; }
    .wine-savings li:last-of-type {
      padding-right: 0; }
    .wine-savings li label {
      display: block;
      background: #fff;
      text-align: center;
      padding: 14px 0 0 0;
      height: 50px;
      text-transform: uppercase;
      letter-spacing: 1px; }
    .wine-savings li span {
      display: block;
      background: #e1e1e1;
      text-align: center;
      padding: 14px 0 0 0;
      height: 50px;
      letter-spacing: 1px; }
    .wine-savings li.roi span {
      background: #f13c3d;
      color: #fff; }
  @media (max-width: 1020px) {
    .wine-savings li {
      display: inline-block;
      width: 33.333%;
      max-width: 150px;
      float: none;
      margin-bottom: 15px;
      padding: 0 6px; }
      .wine-savings li:nth-of-type(1), .wine-savings li:nth-of-type(4) {
        margin-left: 15%; }
      .wine-savings li:nth-of-type(3), .wine-savings li:nth-of-type(6) {
        margin-right: 15%; }
      .wine-savings li:nth-of-type(1) {
        padding-left: 6px; }
      .wine-savings li:last-of-type {
        padding-right: 6px; } }
  @media (max-width: 820px) {
    .wine-savings li:nth-of-type(1), .wine-savings li:nth-of-type(4) {
      margin-left: 5%; }
    .wine-savings li:nth-of-type(3), .wine-savings li:nth-of-type(6) {
      margin-right: 5%; } }
  @media (max-width: 650px) {
    .wine-savings li {
      width: 90%; }
      .wine-savings li:nth-of-type(1), .wine-savings li:nth-of-type(4) {
        margin-left: 0; }
      .wine-savings li:nth-of-type(3), .wine-savings li:nth-of-type(6) {
        margin-right: 0; } }
  @media (max-width: 450px) {
    .wine-savings li {
      width: 100%;
      max-width: 200px; } }
  @media screen and (max-width: 1300px), (max-height: 800px) {
    .wine-savings {
      padding: 100px 0 200px 0; } }
  @media (max-width: 1020px) {
    .wine-savings {
      padding: 100px 0 100px 0; } }
  @media screen and (max-width: 600px) {
    .wine-savings {
      padding: 60px 0 60px 0; } }

.wine-key-points .container {
  width: 100%;
  padding: 0; }
.wine-key-points .box {
  width: 33.333%;
  float: left;
  background: #fff;
  padding: 17% 0;
  position: relative;
  text-align: left;
  border: solid 1px #e1e1e1;
  border-left: none; }
  .wine-key-points .box > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 60%;
    height: 380px; }
  .wine-key-points .box img {
    width: 56px;
    height: 56px; }
  .wine-key-points .box h3 {
    display: block;
    text-align: left;
    margin: 30px 0 80px 0; }
  .wine-key-points .box:first-child {
    border-left: solid 1px #e1e1e1; }
  @media (max-width: 1800px) {
    .wine-key-points .box > div {
      width: 70%; } }
  @media (max-width: 1550px) {
    .wine-key-points .box {
      padding: 20% 0; }
      .wine-key-points .box > div {
        height: 450px; } }
  @media (max-width: 1200px) {
    .wine-key-points .box {
      padding: 24% 0; } }
  @media (max-width: 1100px) {
    .wine-key-points .box {
      padding: 27% 0; } }
  @media (max-width: 1000px) {
    .wine-key-points .box {
      padding: 30% 0; } }
  @media (max-width: 900px) {
    .wine-key-points .box {
      padding: 25% 0 45%; }
      .wine-key-points .box > div {
        height: 420px; } }
  @media (max-width: 870px) {
    .wine-key-points .box {
      padding: 25% 0 55%; }
      .wine-key-points .box h3 {
        font-size: 18px;
        letter-spacing: 1.35px;
        line-height: 24px; }
      .wine-key-points .box > div {
        height: 500px; } }
  @media (max-width: 830px) {
    .wine-key-points .box {
      padding: 25% 0 65%; } }
  @media (max-width: 780px) {
    .wine-key-points .box {
      padding: 25% 0 75%; } }
  @media (max-width: 660px) {
    .wine-key-points .box {
      width: 100%;
      padding: 50px;
      border-top: none;
      border-left: solid 1px #e1e1e1; }
      .wine-key-points .box > div {
        position: static;
        height: auto; } }
  @media (max-width: 550px) {
    .wine-key-points .box > div {
      width: 80%; } }
  @media (max-width: 400px) {
    .wine-key-points .box > div {
      width: 90%; } }

/*

<div class="container">
					<div class="box">
						<img src="./assets/img/wine/icon-sales.svg">
						<h3>Increase Sales</h3>
						<ul class="list">
							<li>Dispense wine - any place, any time</li>
							<li>Create new profit opportunities</li>
						</ul>
						*/
/* -- Water Page -- */
.drops {
  display: block;
  margin: 10px 0 0 0; }
  .drops .drop {
    float: left; }
    .drops .drop img {
      display: block;
      width: 64px;
      height: 90px;
      float: left; }
    .drops .drop label {
      display: block;
      float: left;
      text-transform: uppercase;
      color: #a1a8ad;
      padding: 35px 5px 0 5px;
      letter-spacing: 1px; }
  @media screen and (max-width: 1230px) {
    .drops .drop img {
      width: 32px;
      height: 45px; }
    .drops .drop label {
      padding: 15px 5px 0 5px; } }
  @media screen and (max-width: 1030px) {
    .drops .drop img {
      display: inline-block;
      float: none;
      vertical-align: top; }
    .drops .drop label {
      display: inline-block;
      float: none;
      vertical-align: top; } }

.displays.sustainable .copy-col {
  width: 45%;
  padding: 1% 0 0 0; }
.displays.sustainable .image-col {
  width: 40%;
  margin: 2% 0 10% 10%; }
@media screen and (max-width: 1030px) {
  .displays.sustainable .copy-col {
    width: 55%;
    padding: 1% 0 5% 0; }
  .displays.sustainable .image-col {
    width: 35%;
    margin: 4% 0 0 6%; } }
@media screen and (max-width: 760px) {
  .displays.sustainable .image-col {
    margin: 10% 0 0 6%; } }
@media screen and (max-width: 550px) {
  .displays.sustainable .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.sustainable .image-col {
    position: static;
    display: inline-block;
    float: none;
    width: 100%;
    margin: 30px 0; }
  .displays.sustainable .copy {
    padding: 0; } }

.floats.water-important .copy-col {
  width: 45%;
  padding: 10% 0 0 0;
  right: 25px; }
.floats.water-important .image-col {
  width: 80%;
  float: left;
  padding: 20% 0; }
@media screen and (max-width: 1400px) {
  .floats.water-important .image-col {
    margin: 0 0 10% 0; } }
@media screen and (max-width: 1300px) {
  .floats.water-important .copy-col {
    width: 55%; }
  .floats.water-important .image-col {
    padding: 30% 0; } }
@media screen and (max-width: 1000px) {
  .floats.water-important .image-col {
    padding: 40% 0; } }
@media screen and (max-width: 750px) {
  .floats.water-important .image-col {
    padding: 50% 0; } }
@media screen and (max-width: 550px) {
  .floats.water-important .image-col {
    padding: 60% 0; } }
@media screen and (max-width: 480px) {
  .floats.water-important .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.water-important .image-col {
    position: static;
    width: 100%;
    padding: 0;
    height: 180px; } }

.displays.range .copy-col {
  width: 45%;
  padding: 1% 0 0 0; }
.displays.range .image-col {
  width: 40%;
  margin: 0 0 10% 10%; }
.displays.range h3 {
  margin: 0; }
@media screen and (max-width: 1030px) {
  .displays.range .copy-col {
    width: 55%;
    padding: 1% 0 5% 0; }
  .displays.range .image-col {
    width: 35%;
    margin: 4% 0 0 6%; } }
@media screen and (max-width: 760px) {
  .displays.range .image-col {
    margin: 10% 0 0 6%; } }
@media screen and (max-width: 550px) {
  .displays.range .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.range .image-col {
    position: static;
    margin: 30px 0;
    display: inline-block;
    float: none;
    width: 100%; } }

/* -- Coffee Page -- */
.displays.coffee-top .copy-col {
  width: 45%;
  padding: 1% 0 0 0; }
.displays.coffee-top .image-col {
  width: 40%;
  margin: 2% 0 10% 10%; }
@media screen and (max-width: 1030px) {
  .displays.coffee-top .copy-col {
    width: 55%;
    padding: 1% 0 5% 0; }
  .displays.coffee-top .image-col {
    width: 35%;
    margin: 4% 0 0 6%; } }
@media screen and (max-width: 760px) {
  .displays.coffee-top .image-col {
    margin: 10% 0 0 6%; } }
@media screen and (max-width: 550px) {
  .displays.coffee-top .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.coffee-top .image-col {
    position: static;
    display: inline-block;
    float: none;
    width: 100%;
    margin: 30px 0; }
  .displays.coffee-top .copy {
    padding: 0; } }

#nitro-brew button {
  background: transparent;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease; }
  #nitro-brew button:hover {
    opacity: 1; }

.floats.coffee-middle .copy-col {
  width: 45%;
  padding: 10% 0 0 0;
  right: 25px; }
.floats.coffee-middle .image-col {
  width: 80%;
  float: left;
  padding: 20% 0; }
@media screen and (max-width: 1400px) {
  .floats.coffee-middle .image-col {
    margin: 0 0 10% 0; } }
@media screen and (max-width: 1300px) {
  .floats.coffee-middle .copy-col {
    width: 55%; }
  .floats.coffee-middle .image-col {
    padding: 30% 0; } }
@media screen and (max-width: 1000px) {
  .floats.coffee-middle .image-col {
    padding: 40% 0; } }
@media screen and (max-width: 750px) {
  .floats.coffee-middle .image-col {
    padding: 50% 0; } }
@media screen and (max-width: 550px) {
  .floats.coffee-middle .image-col {
    padding: 60% 0; } }
@media screen and (max-width: 480px) {
  .floats.coffee-middle .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.coffee-middle .image-col {
    position: static;
    width: 100%;
    padding: 0;
    height: 180px; } }

/* -- Liquor Page -- */
.displays.cocktails .copy-col {
  width: 45%;
  padding: 1% 0 0 0; }
.displays.cocktails .image-col {
  width: 40%;
  margin: 2% 0 10% 10%; }
@media screen and (max-width: 1030px) {
  .displays.cocktails .copy-col {
    width: 55%;
    padding: 1% 0 5% 0; }
  .displays.cocktails .image-col {
    width: 35%;
    margin: 4% 0 0 6%; } }
@media screen and (max-width: 760px) {
  .displays.cocktails .image-col {
    margin: 10% 0 0 6%; } }
@media screen and (max-width: 550px) {
  .displays.cocktails .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.cocktails .image-col {
    position: static;
    display: inline-block;
    float: none;
    width: 100%;
    margin: 30px 0; }
  .displays.cocktails .copy {
    padding: 0; } }

.displays.tank .copy-col {
  float: right;
  width: 40%;
  padding: 8% 5% 0 0; }
.displays.tank .image-col {
  float: right;
  width: 20%;
  margin: 2% 15% 10% 0; }
@media screen and (max-width: 1180px) {
  .displays.tank .copy-col {
    width: 45%;
    padding: 1% 0 5% 0; }
  .displays.tank .image-col {
    margin: 2% 15% 10% 0; } }
@media screen and (max-width: 730px) {
  .displays.tank .copy-col {
    width: 50%;
    padding: 1% 0 5% 0; }
  .displays.tank .image-col {
    width: 23%; } }
@media screen and (max-width: 550px) {
  .displays.tank .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.tank .image-col {
    position: static;
    margin: 30px;
    display: inline-block;
    float: none;
    width: 120px; } }

.displays.spin .copy-col {
  width: 40%;
  padding: 2% 0 0 5%; }
.displays.spin .image-col {
  width: 30%;
  margin: 0 0 10% 17%; }
@media screen and (max-width: 1030px) {
  .displays.spin .copy-col {
    width: 50%;
    padding: 0 0 5% 0; } }
@media screen and (max-width: 830px) {
  .displays.spin .image-col {
    margin: 3% 0 10% 10%; } }
@media screen and (max-width: 550px) {
  .displays.spin .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.spin .image-col {
    position: static;
    margin: 30px;
    display: inline-block;
    float: none;
    width: 170px; } }

.liquor-management {
  padding: 200px 0 0 0; }
  .liquor-management .container {
    width: 90%;
    max-width: 700px; }
    .liquor-management .container p {
      display: inline-block;
      max-width: 500px; }
  @media screen and (max-width: 1300px), (max-height: 800px) {
    .liquor-management {
      padding: 100px 0 0 0; } }
  @media screen and (max-width: 600px) {
    .liquor-management {
      padding: 60px 0 0 0; } }

.floats.profits .copy-col {
  width: 45%;
  padding: 10% 0 0 0;
  right: 25px; }
.floats.profits .image-col {
  width: 80%;
  float: left;
  padding: 20% 0; }
@media screen and (max-width: 1400px) {
  .floats.profits .image-col {
    margin: 0 0 10% 0; } }
@media screen and (max-width: 1300px) {
  .floats.profits .copy-col {
    width: 55%; }
  .floats.profits .image-col {
    padding: 30% 0; } }
@media screen and (max-width: 1000px) {
  .floats.profits .image-col {
    padding: 40% 0; } }
@media screen and (max-width: 750px) {
  .floats.profits .image-col {
    padding: 50% 0; } }
@media screen and (max-width: 550px) {
  .floats.profits .image-col {
    padding: 60% 0; } }
@media screen and (max-width: 480px) {
  .floats.profits .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.profits .image-col {
    position: static;
    width: 100%;
    padding: 0;
    height: 180px; } }

.displays.laser-gun .copy-col {
  width: 40%;
  padding: 0% 0 5% 0; }
.displays.laser-gun .image-col {
  width: 40%;
  margin: 12% 0 10% 15%; }
.displays.laser-gun h3 {
  margin: 0 0 20px 0; }
.displays.laser-gun small {
  display: block;
  color: #f13c3d;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  letter-spacing: 1px; }
@media screen and (max-width: 1030px) {
  .displays.laser-gun .copy-col {
    width: 55%;
    padding: 0% 0 10% 0; }
  .displays.laser-gun .image-col {
    width: 35%;
    margin: 10% 0 0 6%; } }
@media screen and (max-width: 760px) {
  .displays.laser-gun .image-col {
    margin: 10% 0 0 6%; } }
@media screen and (max-width: 550px) {
  .displays.laser-gun .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.laser-gun .image-col {
    position: static;
    display: inline-block;
    float: none;
    width: 100%;
    margin: 30px 0; } }

.displays.single-bottle .copy-col {
  width: 55%;
  padding: 12% 0 0 20%; }
.displays.single-bottle .image-col {
  width: 25%;
  margin: 12% 0 10% 13%; }
.displays.single-bottle .image-col2 {
  position: absolute;
  width: 35%;
  margin: -5% 0 5% 0;
  z-index: 1; }
.displays.single-bottle h3 {
  margin: 0 0 20px 0; }
.displays.single-bottle small {
  display: block;
  color: #f13c3d;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  letter-spacing: 1px; }
@media screen and (max-width: 1130px) {
  .displays.single-bottle .copy-col {
    padding: 12% 0 0 13%; }
  .displays.single-bottle .image-col {
    margin: 12% 0 10% 13%; }
  .displays.single-bottle .image-col2 {
    margin: -5% 0 5% 0; } }
@media screen and (max-width: 860px) {
  .displays.single-bottle .copy-col {
    padding: 12% 0 0 6%; }
  .displays.single-bottle .image-col {
    margin: 12% 0 10% 13%; }
  .displays.single-bottle .image-col2 {
    margin: -5% 0 5% 0; } }
@media screen and (max-width: 750px) {
  .displays.single-bottle .copy-col {
    padding: 12% 0 0 0%; }
  .displays.single-bottle .image-col {
    margin: 12% 0 10% 13%; }
  .displays.single-bottle .image-col2 {
    margin: -5% 0 5% 0; } }
@media screen and (max-width: 550px) {
  .displays.single-bottle .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.single-bottle .image-col {
    position: static;
    display: inline-block;
    float: none;
    width: 180px;
    margin: 30px 15px; }
  .displays.single-bottle .image-col2 {
    position: static;
    display: inline-block;
    float: none;
    width: 260px;
    margin: 30px 15px; } }

/* -- Soda Page -- */
.displays.soda-top .copy-col {
  width: 45%;
  padding: 1% 0 0 0; }
.displays.soda-top .image-col {
  width: 40%;
  margin: 2% 0 10% 10%; }
@media screen and (max-width: 1030px) {
  .displays.soda-top .copy-col {
    width: 55%;
    padding: 1% 0 5% 0; }
  .displays.soda-top .image-col {
    width: 35%;
    margin: 4% 0 0 6%; } }
@media screen and (max-width: 760px) {
  .displays.soda-top .image-col {
    margin: 10% 0 0 6%; } }
@media screen and (max-width: 550px) {
  .displays.soda-top .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.soda-top .image-col {
    position: static;
    display: inline-block;
    float: none;
    width: 100%;
    margin: 30px 0; }
  .displays.soda-top .copy {
    padding: 0; } }

.floats.soda-middle .copy-col {
  width: 45%;
  padding: 10% 0 0 0;
  right: 25px; }
.floats.soda-middle .image-col {
  width: 80%;
  float: left;
  padding: 20% 0; }
@media screen and (max-width: 1400px) {
  .floats.soda-middle .image-col {
    margin: 0 0 10% 0; } }
@media screen and (max-width: 1300px) {
  .floats.soda-middle .copy-col {
    width: 55%; }
  .floats.soda-middle .image-col {
    padding: 30% 0; } }
@media screen and (max-width: 1000px) {
  .floats.soda-middle .image-col {
    padding: 40% 0; } }
@media screen and (max-width: 750px) {
  .floats.soda-middle .image-col {
    padding: 50% 0; } }
@media screen and (max-width: 550px) {
  .floats.soda-middle .image-col {
    padding: 60% 0; } }
@media screen and (max-width: 480px) {
  .floats.soda-middle .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.soda-middle .image-col {
    position: static;
    width: 100%;
    padding: 0;
    height: 180px; } }

/* -- Juice Page -- */
.displays.juice-top .copy-col {
  width: 45%;
  padding: 1% 0 0 0; }
.displays.juice-top .image-col {
  width: 40%;
  margin: 2% 0 10% 10%; }
@media screen and (max-width: 1030px) {
  .displays.juice-top .copy-col {
    width: 55%;
    padding: 1% 0 5% 0; }
  .displays.juice-top .image-col {
    width: 35%;
    margin: 4% 0 0 6%; } }
@media screen and (max-width: 760px) {
  .displays.juice-top .image-col {
    margin: 10% 0 0 6%; } }
@media screen and (max-width: 550px) {
  .displays.juice-top .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto;
    padding: 0; }
  .displays.juice-top .image-col {
    position: static;
    display: inline-block;
    float: none;
    width: 100%;
    margin: 30px 0; }
  .displays.juice-top .copy {
    padding: 0; } }

.floats.juice-middle .copy-col {
  width: 45%;
  padding: 10% 0 0 0;
  right: 25px; }
.floats.juice-middle .image-col {
  width: 80%;
  float: left;
  padding: 20% 0; }
@media screen and (max-width: 1400px) {
  .floats.juice-middle .image-col {
    margin: 0 0 10% 0; } }
@media screen and (max-width: 1300px) {
  .floats.juice-middle .copy-col {
    width: 55%; }
  .floats.juice-middle .image-col {
    padding: 30% 0; } }
@media screen and (max-width: 1000px) {
  .floats.juice-middle .image-col {
    padding: 40% 0; } }
@media screen and (max-width: 750px) {
  .floats.juice-middle .image-col {
    padding: 50% 0; } }
@media screen and (max-width: 550px) {
  .floats.juice-middle .image-col {
    padding: 60% 0; } }
@media screen and (max-width: 480px) {
  .floats.juice-middle .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.juice-middle .image-col {
    position: static;
    width: 100%;
    padding: 0;
    height: 180px; } }

/* -- Bar Page -- */
.bar-engineer {
  padding: 200px 0 0 0; }
  .bar-engineer .container {
    width: 90%;
    max-width: 600px; }
  @media screen and (max-width: 1300px), (max-height: 800px) {
    .bar-engineer {
      padding: 100px 0 0 0; } }
  @media screen and (max-width: 600px) {
    .bar-engineer {
      padding: 60px 0 0 0; } }

.floats.bar-design .copy-col {
  width: 35%;
  padding: 10% 0 0 0;
  left: 10%; }
.floats.bar-design .image-col.left {
  position: absolute;
  width: 60%;
  float: left;
  padding: 22% 0;
  margin: 20% 0 0 0; }
.floats.bar-design .image-col.right {
  width: 60%;
  float: right;
  padding: 30% 0;
  margin: 0 0 5% 0; }
@media screen and (max-width: 1200px) {
  .floats.bar-design .copy-col {
    width: 45%; } }
@media screen and (max-width: 800px) {
  .floats.bar-design .copy-col {
    width: 55%; }
  .floats.bar-design .image-col.left {
    margin: 30% 0 0 0; }
  .floats.bar-design .image-col.right {
    margin: 0 0 15% 0; } }
@media screen and (max-width: 650px) {
  .floats.bar-design .copy-col {
    width: 65%; }
  .floats.bar-design .image-col.left {
    margin: 40% 0 0 0; }
  .floats.bar-design .image-col.right {
    margin: 0 0 25% 0; } }
@media screen and (max-width: 480px) {
  .floats.bar-design .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.bar-design .image-col.left {
    position: static;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 180px; }
  .floats.bar-design .image-col.right {
    position: static;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 180px; } }

.floats.bar-install .copy-col {
  width: 35%;
  padding: 10% 0 0 0;
  left: 10%; }
.floats.bar-install .image-col.left {
  position: absolute;
  width: 60%;
  float: left;
  padding: 22% 0;
  margin: 20% 0 0 0; }
.floats.bar-install .image-col.right {
  width: 60%;
  float: right;
  padding: 30% 0;
  margin: 0 0 5% 0; }
@media screen and (max-width: 1200px) {
  .floats.bar-install .copy-col {
    width: 45%; } }
@media screen and (max-width: 800px) {
  .floats.bar-install .copy-col {
    width: 55%; }
  .floats.bar-install .image-col.left {
    margin: 30% 0 0 0; }
  .floats.bar-install .image-col.right {
    margin: 0 0 15% 0; } }
@media screen and (max-width: 650px) {
  .floats.bar-install .copy-col {
    width: 65%; }
  .floats.bar-install .image-col.left {
    margin: 40% 0 0 0; }
  .floats.bar-install .image-col.right {
    margin: 0 0 25% 0; } }
@media screen and (max-width: 480px) {
  .floats.bar-install .copy-col {
    position: relative;
    width: 100%;
    padding: 0;
    left: auto;
    right: auto; }
  .floats.bar-install .image-col.left {
    position: static;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 180px; }
  .floats.bar-install .image-col.right {
    position: static;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 180px; } }

/* -- Error Styles -- */
#error .site-wrapper {
  display: table;
  width: 100%;
  height: 100%;
  min-height: 100%; }
#error .site-wrapper-inner {
  display: table-cell;
  vertical-align: middle; }
#error .cover-container {
  margin-right: auto;
  margin-left: auto; }
#error .inner {
  padding: 30px;
  color: #fff; }
#error .cover {
  padding: 0 20px; }
#error .cover-heading {
  font-size: 22px;
  letter-spacing: 1.65px; }
