/*--------------------------------------------------------------
Jeet
--------------------------------------------------------------*/
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/*--------------------------------------------------------------
Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Reset
--------------------------------------------------------------*/
/*--------------------------------------------------------------
CSS Reset
--------------------------------------------------------------*/
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; }

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

img {
  max-width: 100%; }

/*--------------------------------------------------------------
Varables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
@font-face {
  font-family: 'Zooja';
  src: url("../type/Zooja.eot");
  src: url("../type/Zooja.eot?#iefix") format("embedded-opentype"), url("../type/Zooja.woff2") format("woff2"), url("../type/Zooja.woff") format("woff"), url("../type/Zooja.ttf") format("truetype"), url("../type/Zooja.svg#Zooja") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Baronessa';
  src: url("../type/Baronessa.eot");
  src: url("../type/Baronessa.eot?#iefix") format("embedded-opentype"), url("../type/Baronessa.woff2") format("woff2"), url("../type/Baronessa.woff") format("woff"), url("../type/Baronessa.ttf") format("truetype"), url("../type/Baronessa.svg#Baronessa") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Melbourne Light';
  src: url("../type/Melbourne-Light.eot");
  src: url("../type/Melbourne-Light.eot?#iefix") format("embedded-opentype"), url("../type/Melbourne-Light.woff2") format("woff2"), url("../type/Melbourne-Light.woff") format("woff"), url("../type/Melbourne-Light.ttf") format("truetype"), url("../type/Melbourne-Light.svg#Melbourne-Light") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Melbourne Regular';
  src: url("../type/Melbourne.eot");
  src: url("../type/Melbourne.eot?#iefix") format("embedded-opentype"), url("../type/Melbourne.woff2") format("woff2"), url("../type/Melbourne.woff") format("woff"), url("../type/Melbourne.ttf") format("truetype"), url("../type/Melbourne.svg#Melbourne") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Melbourne Bold';
  src: url("../type/Melbourne-Bold.eot");
  src: url("../type/Melbourne-Bold.eot?#iefix") format("embedded-opentype"), url("../type/Melbourne-Bold.woff2") format("woff2"), url("../type/Melbourne-Bold.woff") format("woff"), url("../type/Melbourne-Bold.ttf") format("truetype"), url("../type/Melbourne-Bold.svg#Melbourne-Bold") format("svg");
  font-weight: bold;
  font-style: normal; }

h1 {
  position: absolute;
  left: -9999em; }

h2 {
  font-family: 'Baronessa';
  font-size: 48px;
  color: #FFFAEF;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7); }
  h2.emphasis {
    font-size: 54px;
    text-align: center; }

h3 {
  font-family: 'Zooja';
  font-size: 32px;
  padding-top: 5px;
  margin-bottom: 10px;
  margin-top: 20px; }
  h3.emphasis {
    font-size: 48px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
    color: #FFFAEF;
    text-align: center; }
  h3:first-child {
    margin-top: 0; }

h4 {
  font-family: 'Baronessa';
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 15px;
  color: #964B33;
  letter-spacing: .2px; }
  h4:first-child {
    margin-top: 0; }

a {
  text-decoration: none;
  color: #EB892C;
  font-family: 'Melbourne Bold'; }
  a.button {
    font-family: 'Zooja';
    background-color: #EB892C;
    padding: 7px 15px;
    color: #FFFAEF;
    border-radius: 3px;
    display: block;
    margin: 40px auto;
    width: 150px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .3s all; }
    a.button:hover {
      background-color: #2BACB9;
      color: #FFFAEF; }
  a:hover {
    color: #2BACB9; }

p {
  line-height: 1.2; }
  p.emphasis {
    font-family: 'Melbourne Light';
    text-transform: uppercase;
    margin-top: 3px;
    margin-bottom: 3px; }
  div.intro p {
    text-shadow: 0px 0px 50px #FFFAEF; }

ul {
  margin-bottom: 10px; }
  ul li {
    line-height: 1.2; }
    ul li em {
      font-family: 'Melbourne Bold';
      color: #2BACB9; }

/*--------------------------------------------------------------
Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Forms
--------------------------------------------------------------*/
label {
  font-family: 'Baronessa';
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 15px;
  color: #964B33;
  display: block;
  letter-spacing: .2px; }
  label:first-child {
    margin-top: 0; }

input {
  background-color: #ffefcb;
  border: none;
  width: 100%;
  height: 30px; }

textarea {
  background-color: #ffefcb;
  border: none;
  width: 100%;
  resize: none;
  height: 100px; }

button {
  font-family: 'Zooja';
  font-size: 16px;
  background-color: #EB892C;
  padding: 7px 15px;
  color: #FFFAEF;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .3s all;
  border: none;
  margin-top: 20px;
  float: right;
  clear: both; }
  button:hover {
    background-color: #2BACB9;
    color: #FFFAEF;
    cursor: pointer; }

/*--------------------------------------------------------------
Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Layout
--------------------------------------------------------------*/
div.mainContainer {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 10; }
  div.intro div.mainContainer {
    padding-top: 50px; }
  div.intro + div.mainContainer {
    margin-top: -250px;
    overflow: hidden;
    margin-bottom: 50px; }
    @media only screen and (max-width: 768px) {
      div.intro + div.mainContainer {
        margin-top: -200px; } }
    @media only screen and (max-width: 576px) {
      div.intro + div.mainContainer {
        margin-top: -130px; } }
  div.mainContainer div.containColumns {
    overflow: hidden;
    margin-top: 25px; }
    div.mainContainer div.containColumns:first-child {
      margin-top: 0; }

div.oneThird {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%; }
  div.oneThird:before, div.oneThird:after {
    content: '';
    display: table; }
  div.oneThird:after {
    clear: both; }
  div.oneThird:nth-of-type(3n) {
    margin-right: 0%;
    float: right; }
  div.oneThird:nth-of-type(3n + 1) {
    clear: both; }
  @media only screen and (max-width: 768px) {
    div.oneThird {
      margin-top: 20px;
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      div.oneThird:before, div.oneThird:after {
        content: '';
        display: table; }
      div.oneThird:after {
        clear: both; }
      div.oneThird:nth-of-type(3n) {
        margin-right: 3%;
        float: left; }
      div.oneThird:nth-of-type(3n + 1) {
        clear: none; }
      div.oneThird:nth-of-type(1n) {
        margin-right: 0%;
        float: right; }
      div.oneThird:nth-of-type(1n + 1) {
        clear: both; }
      div.oneThird:first-child {
        margin-top: 0; } }

div.oneHalf {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%; }
  div.oneHalf:before, div.oneHalf:after {
    content: '';
    display: table; }
  div.oneHalf:after {
    clear: both; }
  div.oneHalf:nth-of-type(2n) {
    margin-right: 0%;
    float: right; }
  div.oneHalf:nth-of-type(2n + 1) {
    clear: both; }
  @media only screen and (max-width: 576px) {
    div.oneHalf {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      div.oneHalf:before, div.oneHalf:after {
        content: '';
        display: table; }
      div.oneHalf:after {
        clear: both; }
      div.oneHalf:nth-of-type(2n) {
        margin-right: 3%;
        float: left; }
      div.oneHalf:nth-of-type(2n + 1) {
        clear: none; }
      div.oneHalf:nth-of-type(1n) {
        margin-right: 0%;
        float: right; }
      div.oneHalf:nth-of-type(1n + 1) {
        clear: both; }
      div.oneHalf + div.oneHalf {
        margin-top: 20px; } }

/*--------------------------------------------------------------
Site Pages
--------------------------------------------------------------*/
/*------------
Home Page
--------------*/
/*--------------------------------------------------------------
Home page
--------------------------------------------------------------*/
div.centeredContent {
  width: 70%;
  margin: 20vh auto 0;
  background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.5) 2%, transparent 60%);
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.5) 2%, transparent 60%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 2%, transparent 60%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#00000000',GradientType=1 ); }
  @media only screen and (max-width: 768px) {
    div.centeredContent {
      width: 80%;
      margin: 50px auto 0; } }

section.homeWaveBackground {
  height: 100%;
  background-image: url(../assets/images/oceanwave.jpg);
  background-size: cover;
  overflow: hidden; }

/*------------
About Page
--------------*/
/*--------------------------------------------------------------
About page
--------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  div.oneThird div.primaryInfo {
    float: left;
    width: 65%;
    margin-right: 5%; } }

@media only screen and (max-width: 576px) {
  div.oneThird div.primaryInfo {
    float: none;
    width: 100%;
    margin-right: 0; } }

div.oneThird div.secondaryInfo {
  margin-top: 45px; }
  div.oneThird div.secondaryInfo div.phone {
    float: left;
    width: 48%;
    margin-right: 4%; }
    @media only screen and (max-width: 768px) {
      div.oneThird div.secondaryInfo div.phone {
        float: none;
        width: 100%;
        margin-right: 0; } }
    @media only screen and (max-width: 576px) {
      div.oneThird div.secondaryInfo div.phone {
        float: left;
        width: 48%;
        margin-right: 4%; } }
  div.oneThird div.secondaryInfo div.hours {
    float: right;
    width: 48%; }
    @media only screen and (max-width: 768px) {
      div.oneThird div.secondaryInfo div.hours {
        float: none;
        width: 100%;
        margin-top: 20px; } }
    @media only screen and (max-width: 576px) {
      div.oneThird div.secondaryInfo div.hours {
        float: right;
        width: 48%;
        margin-top: 0; } }
  @media only screen and (max-width: 768px) {
    div.oneThird div.secondaryInfo {
      float: right;
      width: 30%; } }
  @media only screen and (max-width: 576px) {
    div.oneThird div.secondaryInfo {
      flex: none;
      width: 100%; } }

/*------------
Services Page
--------------*/
/*--------------------------------------------------------------
Services page
--------------------------------------------------------------*/
/*------------
Knowledge Page
--------------*/
/*--------------------------------------------------------------
Knowledge page
--------------------------------------------------------------*/
/*------------
Map Page
--------------*/
/*--------------------------------------------------------------
Map page
--------------------------------------------------------------*/
/*------------
Contact Page
--------------*/
/*--------------------------------------------------------------
Contact page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Elements
--------------------------------------------------------------*/
/*------------
Global
--------------*/
body {
  font-family: 'Melbourne Regular', sans-serif;
  color: #2B0406;
  background-color: #FFFAEF; }

section.mainContent {
  min-height: 79vh;
  position: relative; }
  section.mainContent div.intro {
    height: 420px;
    background: -moz-linear-gradient(top, rgba(255, 250, 239, 0) 0%, #fffaef 100%), url("../assets/images/oceanwavefaded.jpg");
    background: -webkit-linear-gradient(top, rgba(255, 250, 239, 0) 0%, #fffaef 100%), url("../assets/images/oceanwavefaded.jpg");
    background: linear-gradient(to bottom, rgba(255, 250, 239, 0) 0%, #fffaef 100%), url("../assets/images/oceanwavefaded.jpg");
    background-size: cover;
    background-position: bottom;
    margin-bottom: 25px; }
    @media only screen and (max-width: 576px) {
      section.mainContent div.intro {
        height: 370px; } }

div.genericSocialButton {
  height: 27px;
  width: 135px;
  background: URL("../assets/graphics/pattern.jpg");
  border-radius: 2px;
  position: relative;
  background-size: 200px;
  transition: all .5s ease;
  margin-top: 20px;
  overflow: hidden; }
  div.genericSocialButton.lauren {
    background-position: 90px 30px; }
    div.genericSocialButton.lauren:hover {
      background-position: 40px 30px; }
  div.genericSocialButton.sierra {
    background-position: 50px 140px; }
    div.genericSocialButton.sierra:hover {
      background-position: 0px 140px; }
  div.genericSocialButton.annalisa {
    background-position: 110px -160px; }
    div.genericSocialButton.annalisa:hover {
      background-position: 60px -160px; }
  div.genericSocialButton > a.clickSocialMedia {
    padding: 5px 10px;
    color: #F9FAF4;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    font-family: 'Zooja';
    font-size: 16px;
    line-height: 29px;
    padding: 0px 5px 10px 10px; }
  div.genericSocialButton div.socialLinks {
    position: absolute;
    height: 28px;
    width: 100px;
    background: #EC943E;
    top: 0;
    right: -65px;
    z-index: 11;
    transition: all .5s; }
    div.genericSocialButton div.socialLinks a {
      width: 25px;
      height: 25px;
      display: block;
      position: absolute;
      top: 1px; }
      div.genericSocialButton div.socialLinks a.facebookIcon {
        background: url("../assets/graphics/facebooklight.svg");
        left: 27px;
        transition: all .5s; }
        div.genericSocialButton div.socialLinks a.facebookIcon:hover {
          background: url("../assets/graphics/facebookturquoise.svg"); }
      div.genericSocialButton div.socialLinks a.instagramIcon {
        background: url("../assets/graphics/instagramlight.svg");
        left: 50px;
        transition: all .5s; }
        div.genericSocialButton div.socialLinks a.instagramIcon:hover {
          background: url("../assets/graphics/instagramturquoise.svg"); }
      div.genericSocialButton div.socialLinks a.yelpIcon {
        background: url("../assets/graphics/yelplight.svg");
        left: 74px;
        transition: all .5s; }
        div.genericSocialButton div.socialLinks a.yelpIcon:hover {
          background: url("../assets/graphics/yelpturquoise.svg"); }
    div.genericSocialButton div.socialLinks::before {
      content: '';
      border-top: 0px solid transparent;
      border-bottom: 28px solid #EC943E;
      border-left: 13px solid transparent;
      border-right: 0px solid #EC943E;
      position: absolute;
      left: -13px; }
    div.genericSocialButton div.socialLinks::after {
      content: '';
      background: url("../assets/graphics/genericsociallight.svg") no-repeat;
      position: absolute;
      width: 31px;
      height: 31px;
      top: -2px;
      left: -2px;
      transition: all .5s; }
  div.genericSocialButton:hover div.socialLinks {
    right: 0; }
    div.genericSocialButton:hover div.socialLinks:after {
      background: url("../assets/graphics/genericsocialdarker.svg") no-repeat; }

div.imageBorder {
  background: url("../assets/graphics/pattern.jpg");
  padding: 2px;
  overflow: hidden;
  background-size: 100px;
  margin-bottom: 5px;
  border-radius: 2px;
  float: left; }
  div.imageBorder img {
    float: right; }
  div.imageBorder iframe {
    width: 100%;
    margin-bottom: -4px;
    height: 190px; }
  div.imageBorder.third {
    width: 30%;
    float: right;
    margin-left: 10px; }

/*------------
Header
--------------*/
/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
header {
  height: 150px;
  background-image: url(../assets/graphics/patternlight.jpg);
  background-size: 500px;
  border-bottom: 4px solid #964B33;
  overflow-x: hidden;
  overflow-y: visible; }
  header div.logo {
    position: absolute;
    margin-top: 40px; }
    header div.logo::before {
      content: '';
      height: 10px;
      background-image: url(../assets/graphics/pattern.jpg);
      background-size: 300px;
      position: absolute;
      left: -999em;
      right: 127px;
      top: 74px; }
    header div.logo::after {
      content: '';
      height: 10px;
      background-image: url(../assets/graphics/pattern.jpg);
      background-size: 300px;
      position: absolute;
      left: 166px;
      right: -9999em;
      top: 73px; }
  header nav {
    float: right;
    margin-top: 85px; }
    header nav ul li {
      display: inline-block;
      margin-right: 25px; }
      header nav ul li a {
        font-family: "Zooja", cursive;
        font-size: 20px;
        text-transform: uppercase;
        color: #2BACB9;
        text-decoration: none;
        letter-spacing: .3px; }
        header nav ul li a.current {
          color: #EB892C; }
        header nav ul li a:hover {
          color: #EB892C; }
        @media only screen and (max-width: 992px) {
          header nav ul li a {
            font-size: 18px; } }
      header nav ul li:last-child {
        margin-right: 0; }
      @media only screen and (max-width: 992px) {
        header nav ul li {
          margin-right: 12px; } }
    @media only screen and (max-width: 768px) {
      header nav ul {
        display: none; } }
  header span.openNav {
    display: none; }
    @media only screen and (max-width: 768px) {
      header span.openNav {
        display: block;
        color: #EB892C;
        font-weight: 500;
        cursor: pointer;
        float: right;
        margin-top: 20px; } }

/*------------
Footer
--------------*/
/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
footer {
  height: 46px;
  border-top: 2px solid #FFFAEF;
  background-image: url(../assets/graphics/pattern.jpg);
  background-size: 300px;
  clear: both; }
  footer div.socialMedia {
    float: right;
    margin-top: 9px; }
    footer div.socialMedia a.socialMediaIcon {
      background-color: #FFFAEF;
      border: 1px solid #2B0406;
      border-radius: 2px;
      margin-right: 5px;
      height: 25px;
      width: 25px;
      display: inline-block;
      transition: .3s all; }
      footer div.socialMedia a.socialMediaIcon.facebook {
        background-image: url(../assets/graphics/facebookdark.svg);
        transition: .3s all; }
        footer div.socialMedia a.socialMediaIcon.facebook:hover {
          background-image: url(../assets/graphics/facebooklight.svg); }
      footer div.socialMedia a.socialMediaIcon.instagram {
        background-image: url(../assets/graphics/instagramdark.svg);
        transition: .3s all; }
        footer div.socialMedia a.socialMediaIcon.instagram:hover {
          background-image: url(../assets/graphics/instagramlight.svg); }
      footer div.socialMedia a.socialMediaIcon.yelp {
        background-image: url(../assets/graphics/yelpdark.svg);
        transition: .3s all; }
        footer div.socialMedia a.socialMediaIcon.yelp:hover {
          background-image: url(../assets/graphics/yelplight.svg); }
      footer div.socialMedia a.socialMediaIcon:last-child {
        margin-right: 0; }
      footer div.socialMedia a.socialMediaIcon:hover {
        background-color: #2BACB9; }
