/*
	Theme Name: Joni Sternbach
	Theme URI: http://www.jonisternbach.com/
	Description: Extention of HTML5 Blank WordPress Theme
	Version: 1
	Author: Ian Farrell
	Author URI: http://ianfarrellcreative.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
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;
  float: none;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
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;
}
body {
  font-size: 62.5%;
  /*creates a 10px base which allows all subsequent font sizes to be easily calculated*/
}
/* apply a natural box layout model to all elements */
/* * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } */
/* global box-sizing */
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
  font-size: 62.5%;
}
/* clear */
.clear:before,
.clear:after {
  content: ' ';
  display: table;
}
.clear:after {
  clear: both;
}
.clear {
  *zoom: 1;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
a {
  color: #444;
  text-decoration: none;
}
a:hover {
  color: #444;
}
a:focus {
  outline: 0;
}
a:hover,
a:active {
  outline: 0;
}
input:focus {
  outline: 0;
  border: 1px solid #04A4CC;
}
/* Stop iOS devices trying to style buttons */
input,
select {
  -webkit-appearance: none;
}
/* Variables */
/* fonts */
.fontBold {
  font-family: "tablet-gothic-compressed", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.fontReg {
  font-family: "tablet-gothic-compressed", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.fontReg2 {
  font-family: "expo-serif-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.fontBold2 {
  font-family: "expo-serif-pro", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.fontItalic2 {
  font-family: "expo-serif-pro", sans-serif;
  font-style: italic;
  font-weight: 400;
}
/* placeholder colors */
form input::-webkit-input-placeholder {
  color: #666;
}
form input:-moz-placeholder {
  color: #666;
}
form input::-ms-input-placeholder {
  color: #666;
}
form input:-ms-input-placeholder {
  color: #666;
}
/* focus */
form input:focus::-webkit-input-placeholder {
  color: #ccc;
}
form input:focus:-moz-placeholder {
  color: #ccc;
}
form input:focus::-ms-input-placeholder {
  color: #ccc;
}
form input:focus:-ms-input-placeholder {
  color: #ccc;
}
/* mixins */
.hide {
  display: none;
}
.hideText {
  color: transparent;
  font: 0/0 a;
}
.bgSize {
  -o-background-size: 100% 100%, auto;
  -moz-background-size: 100% 100%, auto;
  -webkit-background-size: 100% 100%, auto;
  background-size: 100% 100%, auto;
}
.bg_size_half {
  -o-background-size: 50% auto, auto;
  -moz-background-size: 50% auto, auto;
  -webkit-background-size: 50% auto, auto;
  background-size: 50% auto, auto;
}
.bgSizeWidth {
  -o-background-size: 100% auto, auto;
  -moz-background-size: 100% auto, auto;
  -webkit-background-size: 100% auto, auto;
  background-size: 100% auto, auto;
}
.boxShadow {
  -moz-box-shadow: 4px 11px 15px rgba(128, 126, 103, 0.2);
  -webkit-box-shadow: 4px 11px 15px rgba(128, 126, 103, 0.2);
  box-shadow: 4px 11px 15px rgba(128, 126, 103, 0.2);
}
.sprite {
  background-image: url(/assets/img/template/sprite.png);
  background-repeat: no-repeat;
}
.cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.center_image {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.cw {
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ccw {
  -ms-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
/*------------------------------------*\
    MAIN
\*------------------------------------*/
body {
  font: 300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #575544;
  font-family: "tablet-gothic-compressed", sans-serif;
  font-style: normal;
  font-weight: 400;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */
.wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
html.wf-active .nav li a {
  color: #575544;
}
html.wf-active section h2,
html.wf-active section article p,
html.wf-active section article table {
  color: #575544;
}
/* header */
.header {
  background: #fff;
  left: 0px;
  padding-top: 60px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1;
  transition: padding-top 0.5s ease-in-out;
  -moz-transition: padding-top 0.5s ease-in-out;
  -webkit-transition: padding-top 0.5s ease-in-out;
  /* logo */
}
.header.scrolling {
  padding-top: 17px;
}
.header .inner {
  position: relative;
}
.header .logo {
  float: right;
  height: 30px;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 327px;
  z-index: 1;
}
.header .logo img {
  height: auto;
  width: 100%;
}
/* nav */
.nav {
  height: 46px;
  position: relative;
  width: 100%;
  /* animate it */
}
.nav div.navWrap {
  height: 40px;
  position: absolute;
  top: 0px;
  left: 0;
  transition: left 1s ease-in-out;
  -moz-transition: left 1s ease-in-out;
  -webkit-transition: left 1s ease-in-out;
}
.nav div.navWrap > ul {
  float: left;
}
.nav a.cart {
  float: left;
}
.nav li {
  float: left;
  height: 40px;
  margin-right: 27px;
  padding-top: 13px;
  position: relative;
  text-transform: uppercase;
}
.nav li a {
  border-bottom: 1px solid transparent;
  color: #fff;
  font-size: 14.2px;
  letter-spacing: 2px;
  text-decoration: none;
  font-family: "tablet-gothic-compressed", sans-serif;
  font-style: normal;
  font-weight: 700;
  transition: border-color 0.5s ease-in-out;
  -moz-transition: border-color 0.5s ease-in-out;
  -webkit-transition: border-color 0.5s ease-in-out;
}
.nav li a:hover {
  border-bottom-color: #807e67;
}
.nav li.current_page_item > a,
.nav li.current_page_parent > a {
  border-bottom-color: #807e67;
}
.nav li:hover ul {
  display: block;
}
.nav li:hover > a {
  border-bottom-color: #807e67;
}
.nav li ul {
  background: #fff;
  display: none;
  left: 0px;
  padding: 9px;
  position: absolute;
  top: 30px;
  width: 170px;
  -moz-box-shadow: 4px 11px 15px rgba(128, 126, 103, 0.2);
  -webkit-box-shadow: 4px 11px 15px rgba(128, 126, 103, 0.2);
  box-shadow: 4px 11px 15px rgba(128, 126, 103, 0.2);
}
.nav li ul li {
  clear: both;
  height: auto;
  margin: 0 0 5px 0;
}
.nav li ul li a {
  color: #807e67;
}
.nav li.shop {
  margin-right: 10px;
}
.nav #nav-toggle {
  background: #fff;
  display: none;
  float: left;
  margin: 5px 27px 0px 0;
  position: relative;
  /* display: block; */
  width: 17px;
  height: 17px;
}
.nav #nav-toggle span,
.nav #nav-toggle span:before,
.nav #nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 17px;
  background: #c6c5bc;
  position: absolute;
  display: block;
  content: '';
}
.nav #nav-toggle span {
  top: 7px;
}
.nav #nav-toggle span:before {
  top: -7px;
}
.nav #nav-toggle span:after {
  bottom: -7px;
}
.nav #nav-toggle {
  -moz-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.nav.active.overflow {
  overflow-x: visible;
}
.nav.active div.navWrap {
  left: 44px;
}
.nav.active #nav-toggle {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
body.single-galleries .nav li.current_page_item a,
body.category .nav li.current_page_item a,
body.single-galleries .nav li.current_page_parent a,
body.category .nav li.current_page_parent a {
  border-bottom-color: transparent;
}
body.single-galleries .nav li.current_page_item a:hover,
body.category .nav li.current_page_item a:hover,
body.single-galleries .nav li.current_page_parent a:hover,
body.category .nav li.current_page_parent a:hover {
  border-bottom-color: #807e67;
}
body.single-galleries .nav li.gallery > a,
body.category .nav li.gallery > a {
  border-bottom-color: #807e67;
}
/* section */
.inner {
  margin: 0 auto;
  width: 1000px;
}
section {
  margin-top: 109px;
}
section .categoryHeader {
  text-align: center;
  width: 100%;
}
section .categoryHeader h2 {
  color: #807e67;
  font-size: 23px;
}
section .categoryHeader p {
  color: #807e67;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.5s ease-in-out;
  -moz-transition: color 0.5s ease-in-out;
  -webkit-transition: color 0.5s ease-in-out;
}
section .categoryHeader p a:hover {
  color: #575544;
}
section h2 {
  color: #fff;
  font-size: 14.2px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: "tablet-gothic-compressed", sans-serif;
  font-style: normal;
  font-weight: 700;
}
section article {
  display: inline-block;
  margin-bottom: 20px;
  padding-top: 47px;
  width: 100%;
}
section article .col1 {
  float: left;
  padding-right: 40px;
  width: 62%;
}
section article .col2 {
  /*
float: left;
			width: 38%;
*/
  float: right;
  width: 32.5%;
}
section article .col2 img {
  float: right;
  width: 100%;
}
section article .col2 iframe {
  max-width: 100%;
}
section article .col2 .wp-caption {
  width: auto!important;
}
section article .col2 .wp-caption img {
  height: auto!important;
}
section article .col2 p.wp-caption-text {
  clear: both;
  float: right;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 5px;
}
section article p,
section article table {
  color: #fff;
  font-size: 14.2px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: "expo-serif-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
}
section article p a,
section article table a {
  border-bottom: 1px solid transparent;
  font-family: "expo-serif-pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  transition: border-color 0.5s ease-in-out;
  -moz-transition: border-color 0.5s ease-in-out;
  -webkit-transition: border-color 0.5s ease-in-out;
}
section article p a:hover,
section article table a:hover {
  border-bottom-color: #807e67;
}
section article p.price,
section article table.price {
  margin-bottom: 0px;
  font-family: "tablet-gothic-compressed", sans-serif;
  font-style: normal;
  font-weight: 700;
}
section article p strong,
section article table strong {
  font-family: "expo-serif-pro", sans-serif;
  font-style: normal;
  font-weight: 700;
}
section article p em,
section article table em {
  font-family: "expo-serif-pro", sans-serif;
  font-style: italic;
  font-weight: 400;
}
section article table {
  margin-top: 20px;
  margin-bottom: 40px;
  width: 100%;
}
section article table tr {
  line-height: 30px;
}
section article table td {
  padding-right: 10px;
}
section article blockquote p {
  font-size: 13.2px;
}
section article#cart h2 {
  margin-bottom: 20px;
}
section article#cart .woocommerce table.shop_table {
  border-radius: 0px;
}
section article#cart .woocommerce .quantity .qty,
section article#cart .woocommerce table.shop_table,
section article#cart .woocommerce form .form-row input.input-text,
section article#cart .woocommerce form .form-row textarea {
  border: 1px solid rgba(128, 126, 103, 0.2);
}
section article#cart .woocommerce form .form-row.woocommerce-invalid .select2-container,
section article#cart .woocommerce form .form-row.woocommerce-invalid input.input-text,
section article#cart .woocommerce form .form-row.woocommerce-invalid select {
  border: 1px solid rgba(128, 126, 103, 0.5);
}
section article#cart .woocommerce table.shop_table td {
  border-top: 1px solid rgba(128, 126, 103, 0.2);
}
section article#cart .woocommerce-cart .cart-collaterals .cart_totals table {
  width: 100%;
}
section article#cart .woocommerce .woocommerce-info {
  border-top-color: #807e67;
}

section .columns-4 article {
  position: relative;
}

.shop section article .col1 .col1 {
  padding-right: 10px;
}


section article#videoPage .col1 {
  text-align: center;
  width: 100%;
}
section article#videoPage .col1 p {
  margin: 0 auto 50px auto;
  max-width: 50%;
}
section article#videoPage .col1 > iframe {
  margin: 0 auto!important;
  max-width: 50%!important;
}
section article#videoPage .col1 p iframe {
  margin: 0 auto!important;
  max-width: 100%;
}
section article#galleryGrid.categoryPage {
  padding-top: 10px;
}
section article#galleryGrid ul {
  width: 100%;
}
section article#galleryGrid ul li {
  float: left;
  height: 184px;
  margin-bottom: 20px;
  margin-right: 20px;
  position: relative;
  width: 184px;
}
section article#galleryGrid ul li a {
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: transparent;
  font: 0/0 a;
}
section article#galleryGrid ul li:nth-child(5n+5) {
  margin-right: 0px;
}
form.woocommerce-ordering {
  display: none;
}
#gallery-single {
  text-align: center;
  width: 100%;
}
#gallery-single figure {
  margin-bottom: 10px;
  position: relative;
}
#gallery-single figure img {
  display: block;
  margin: 0 auto 10px;
}
#gallery-single figure div.message {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
  height: 100%;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#gallery-single figure div.message span {
  left: 5%;
  position: absolute;
  top: 43%;
  width: 90%;
}
#gallery-single div.caption {
  font-size: 14.2px;
  font-family: "tablet-gothic-compressed", sans-serif;
  font-style: normal;
  font-weight: 400;
}
#gallery-single ul {
  text-align: center;
}
#gallery-single ul li {
  display: inline-block;
  height: 36px;
}
#gallery-single ul li.back {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "tablet-gothic-compressed", sans-serif;
  font-style: normal;
  font-weight: 700;
}
#gallery-single ul li.back a {
  display: block;
  height: 36px;
  line-height: 36px;
}
#gallery-single ul li.prev {
  margin-right: 30px;
}
#gallery-single ul li.prev a {
  background: url(img/icons/prev.svg) 0 0 no-repeat;
  background-size: auto 100%;
  display: block;
  height: 36px;
  padding-top: 23px;
  width: 20px;
  color: transparent;
  font: 0/0 a;
}
#gallery-single ul li.next {
  margin-left: 30px;
}
#gallery-single ul li.next a {
  background: url(img/icons/next.svg) 0 0 no-repeat;
  background-size: auto 100%;
  display: block;
  height: 36px;
  padding-top: 23px;
  width: 20px;
  color: transparent;
  font: 0/0 a;
}
/* sidebar */
/* footer */
body.fixedFooter {
  padding-bottom: 100px;
}
body.fixedFooter .footer {
  bottom: 0px;
  left: 0px;
  position: fixed;
  width: 100%;
}
.footer {
  background: #fff;
  clear: both;
  padding-bottom: 15px;
  padding-top: 15px;
}
.footer ul {
  margin-bottom: 4px;
  overflow: hidden;
}
.footer ul li {
  float: left;
  height: 18px;
  margin-right: 8px;
  width: 18px;
}
.footer ul li a {
  background: #fff;
  display: block;
  height: 18px;
  width: 18px;
}
.footer ul li a svg {
  height: 18px;
  width: 18px;
}
.footer ul li a svg path,
.footer ul li a svg polygon {
  transition: fill 0.5s ease-in-out;
  -moz-transition: fill 0.5s ease-in-out;
  -webkit-transition: fill 0.5s ease-in-out;
}
.footer ul li a:hover svg path,
.footer ul li a:hover svg polygon {
  fill: #817f6a;
}
.footer p {
  color: #807e67;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
/* woo */
body.woocommerce .woocommerce-breadcrumb,
body.woocommerce h1.page-title,
body.woocommerce .woocommerce-result-count {
  display: none;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  text-transform: uppercase;
  border-radius: 0px;
  color: #fff;
  background: #c3c1b8;
  font-size: 14.2px;
  margin-bottom: 20px;
  font-family: "tablet-gothic-compressed", sans-serif;
  font-style: normal;
  font-weight: 400;
  transition: background 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out;
  -webkit-transition: background 0.5s ease-in-out;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: #817f6a;
  color: #fff;
}
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: #817f6a;
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: #c3c1b8;
  color: #fff;
}
.woocommerce a.added_to_cart {
  display: none!important;
  font-size: 14.2px;
  margin-left: 12px;
}
/*------------------------------------*\
    IMAGES
\*------------------------------------*/
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
@font-face {
  font-family: 'Font-Name';
  src: url('fonts/font-name.eot');
  src: url('fonts/font-name.eot?#iefix') format('embedded-opentype'), url('fonts/font-name.woff') format('woff'), url('fonts/font-name.ttf') format('truetype'), url('fonts/font-name.svg#font-name') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .nav li {
    margin-right: 20px;
  }
  .inner {
    width: 900px;
  }
  section article#galleryGrid ul li {
    height: 210px;
    width: 210px;
  }
  section article#galleryGrid ul li:nth-child(5n+5) {
    margin-right: 20px;
  }
  section article#galleryGrid ul li:nth-child(4n+4) {
    margin-right: 0px;
  }
  section article .col2 {
    width: 36%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .inner {
    width: 700px;
  }
  .nav li {
    margin-right: 10px;
  }
  .nav.active > ul {
    left: 28px;
  }
  .header .logo {
    height: 21px;
    top: 5px;
    width: 267px;
  }
  .header.scrolling {
    padding-top: 11px;
  }
  section article#videoPage .col1 {
    padding-right: 0px;
  }
  section article .col1 {
    width: 100%;
  }
  section article .col2 {
    width: 100%;
  }
  section article .col2 img {
    float: none;
    margin: 0 auto;
    display: block;
  }
  section article#galleryGrid ul li {
    height: 220px;
    width: 220px;
  }
  section article#galleryGrid ul li:nth-child(5n+5) {
    margin-right: 20px;
  }
  section article#galleryGrid ul li:nth-child(4n+4) {
    margin-right: 20px;
  }
  section article#galleryGrid ul li:nth-child(3n+3) {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) {
  nav.nav .navWrap > a.cart {
    background-size: 100% auto;
    margin-top: 15px;
    border-bottom: 0px;
    height: 20px;
    opacity: 1;
    width: 11px;
    color: transparent;
    font: 0/0 a;
    display: none;
  }
  nav.nav .navWrap > a.cart.hasProducts {
    display: block;
  }
  nav.nav .navWrap > a.cart:hover svg {
    fill: #575544;
  }
  nav.nav .navWrap > a.cart span {
    color: transparent;
    font: 0/0 a;
  }
  nav.nav .navWrap > a.cart svg {
    fill: #807e67;
    height: 15px;
    width: 100%;
    transition: fill 0.5s ease-in-out;
    -moz-transition: fill 0.5s ease-in-out;
    -webkit-transition: fill 0.5s ease-in-out;
  }
  nav.nav .navWrap > ul li.cart {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  nav.nav #nav-toggle {
    display: block;
  }
  nav.nav .navWrap {
    left: -1000px;
  }
  nav.nav .navWrap > a.cart {
    display: none;
  }
  nav.nav .navWrap > ul li.cart {
    display: block;
  }
}
@media only screen and (min-width: 641px) and (max-width: 767px) {
  .inner {
    width: 600px;
  }
  .header {
    margin-left: 5%;
    padding-top: 17px;
    width: 95%;
  }
  .header .logo {
    height: 19px;
    margin-right: 5%;
    margin-top: 4px;
    width: 250px;
  }
  .header .nav {
    overflow: visible;
  }
  .header .nav div.navWrap {
    background: #fff;
    top: 46px;
    z-index: 1000;
    height: auto;
  }
  .header .nav div.navWrap li {
    height: auto;
    padding: 10px 5px;
    width: 100%;
  }
  .header .nav div.navWrap li > ul {
    box-shadow: none;
    padding-left: 0px;
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }
  .header .nav div.navWrap li > ul li {
    margin: 0px;
    padding: 10px 0px;
  }
  .header .nav div.navWrap li:hover ul {
    display: none;
  }
  .header .nav.active div.navWrap {
    left: 0px;
  }
  section article#videoPage .col1 p {
    max-width: 100%;
  }
  section article#videoPage .col1 > iframe {
    margin: 0 auto!important;
    max-width: 100%!important;
    width: 100%!important;
  }
  section article#videoPage .col1 p iframe {
    margin: 0 auto!important;
    max-width: 100%;
    width: 100%;
  }
  section article .col1 {
    padding-right: 0px;
    width: 100%;
  }
  section article .col1 iframe {
    max-width: 100%;
  }
  section article .col2 {
    width: 100%;
  }
  section article .col2 img {
    width: 100%;
  }
  section article#galleryGrid ul li {
    height: 290px;
    width: 290px;
  }
  section article#galleryGrid ul li:nth-child(5n+5) {
    margin-right: 20px;
  }
  section article#galleryGrid ul li:nth-child(4n+4) {
    margin-right: 20px;
  }
  section article#galleryGrid ul li:nth-child(3n+3) {
    margin-right: 20px;
  }
  section article#galleryGrid ul li:nth-child(2n+2) {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 640px) {
  .inner {
    width: 100%;
  }
  .header {
    margin-left: 5%;
    padding-top: 17px;
    width: 90%;
  }
  .header .logo {
    height: 19px;
    margin-top: 4px;
    width: 250px;
  }
  .header .nav {
    overflow: visible;
  }
  .header .nav div.navWrap {
    background: #fff;
    top: 46px;
    z-index: 1000;
    height: auto;
  }
  .header .nav div.navWrap li {
    height: auto;
    padding: 10px 5px;
    width: 100%;
  }
  .header .nav div.navWrap li > ul {
    box-shadow: none;
    padding-left: 0px;
    position: static;
    left: auto;
    top: auto;
    width: 100%;
  }
  .header .nav div.navWrap li > ul li {
    margin: 0px;
    padding: 10px 0px;
  }
  .header .nav div.navWrap li:hover ul {
    display: none;
  }
  .header .nav.active div.navWrap {
    left: 0px;
  }
  section article#videoPage .col1 p {
    max-width: 100%;
  }
  section article#videoPage .col1 > iframe {
    margin: 0 auto!important;
    max-width: 100%!important;
    width: 100%!important;
  }
  section article#videoPage .col1 p iframe {
    margin: 0 auto!important;
    max-width: 100%;
    width: 100%;
  }
  section {
    margin-top: 64px;
  }
  section article .col1 {
    padding-right: 0px;
    width: 100%;
  }
  section article .col1 iframe {
    max-width: 100%;
  }
  section article .col2 {
    width: 100%;
  }
  section article .col2 img {
    width: 100%;
  }
  section article#galleryGrid ul li {
    /*
						height: auto;
						margin-right: 0px;
						width: 100%;
*/
    margin: 0 auto 15px;
    width: 290px;
    height: 290px;
    float: none;
    margin-right: auto!important;
  }
  section article#galleryGrid ul li:nth-child(5n+5) {
    margin-right: 20px;
  }
  section article#galleryGrid ul li:nth-child(4n+4) {
    margin-right: 20px;
  }
  section article#galleryGrid ul li:nth-child(3n+3) {
    margin-right: 20px;
  }
  section article#galleryGrid ul li:nth-child(2n+2) {
    margin-right: 0px;
  }
  body.fixedFooter .footer {
    left: 5%;
  }
}
/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #c6c5bc;
  color: #FFF;
  text-shadow: none;
}
::-webkit-selection {
  background: #c6c5bc;
  color: #FFF;
  text-shadow: none;
}
::-moz-selection {
  background: #c6c5bc;
  color: #FFF;
  text-shadow: none;
}
/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
