html, body {
  height: 100%;
}

body {
  font: 1em 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight:normal;
  -webkit-font-smoothing: antialiased;
}

.hero-image {
  position: relative;
  background: url(img/bg1.jpg);
  background-size: cover;
  min-height: 75%;
 
}

.content {
  padding: 1.5em 0;
}

.index .content p {
  font-size: 1.25em;
}

.index footer {
  border-top: 1px solid #eee;
}

@media only screen and (min-width: 40.063em) {
  .hero-image {
    position: absolute;
    top: 0; bottom: 0;
    width: 50%;
    background: url(img/bg1.jpg);
    background-size: cover;
  }

   .content {
    position: absolute;
    top: 0; right: 10; bottom: 0; left: 50%;
    overflow-y: scroll;
  }
  
  .index .content {
    top: initial;
  }
  
  .index .content p {
    font-size: 1.25em;
    line-height: 1.5em;
  }
  
  .index .desktop-header {
    position: fixed;
    top: 22px; right: 0; left: 50%;
    padding: 0 1.36em;
    border: 0;
  }
}

@media only screen and (min-width: 64.063em) {
  .row {
    max-width: 98%;
  }
  
  .index .content p {
    font-size: 1.5em;
    max-width: 90%;
  }
}
  

/********************
  TYPOGRAPHY
********************/

.logo-large h1 {
  background: url(img/logo-red.png);
  background-size: cover;
  width: 250px;
  height: 115px;
  text-indent: -9999px;
}

h1 {
  background: img/logo1.png);
  background-size: cover;
  width: 200px;
  height: 45px;
  text-indent: -9999px;
  margin: 0;
}

h2 {
  font-size: 2em;
  margin: 0 0 1em;
  border-bottom: 3px solid;
  padding-bottom: 0.5em;
}

h3 {
  font-size: 1.65em;
  line-height: 1em;
  margin: 1.5em 0 0.25em;
}

h4 {
  font-size: 1.2em;
  margin: 0;
}



/********************
  HTML ELEMENTS
********************/

p {
  margin: 0 0 1.5em;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

ol {
  list-style-position: inside;
  margin: 0 0 2em;
}

a {
  text-decoration: none;
  color: black;
}

select {
  -webkit-appearance: none;
  background: transparent;
	cursor: pointer;
  border-radius: 0;
}

input, textarea, select {
  font: inherit;
  border: 0;
}

*:focus, *:active {
  outline: none;
}

.content a {
  color: #aaa;
}

.content a:hover {
  color: black;
}



/********************
  CLASSES
********************/

button, .button {
  display: inline-block;
  font-family: inherit;
  font-size: 1em;
  margin: 0;
  border: 0;
  cursor: pointer;
  text-align: center;
  height: 40px;
  line-height: 36px;
  padding: 0 4em;
  color: white;
  background: black;
}

button:hover, .button:hover {
  background: white;
  color: black;
  border: 2px solid black;
}

.ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  text-align: center;
}

.full-width {
  width: 100%;
}

section {
  margin-bottom: 2em;
}

section:last-child {
  margin-bottom: 0;
}

.left {
  float: left !important;
}

.right {
  float: right: !important;
}


/********************
  HEADERS
********************/

.mobile-header {
  position: absolute;
  width: 100%;
}

.mobile-header a {
  color: #eee;
}



/********************
  NAVIGATION
********************/

.mobile-header {
  height: 70px;
  line-height: 70px;
}

.mobile-nav {
  position: fixed;
  left: 0; top: -100%;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.9);
  opacity: 0;
  transition: opacity 0.25s;
  font-size: 1.5em;
}

.mobile-nav.open {
  top: 0;
  opacity: 1;
}

.mobile-nav::-webkit-scrollbar {
  display: none;
}

.mobile-nav li {
  line-height: 1.75em;
  font-size: 1.2em;
}

.nav-trigger {
  position: absolute;
  right: 1em;
  height: 70px;
  width: 44px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: black;
  z-index: 1100;
  cursor: pointer;
}

.nav-trigger.fixed {
  position: fixed;
  background: black;
  height: 44px;
  width: 44px;
  top: 1em;
}

.nav-trigger span,
.nav-trigger span::before,
.nav-trigger span::after {
  position: absolute;
  width: 18px;
  height: 2px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: white;
}

@media only screen and (min-width: 40.063em) {
  .nav-trigger {
    right: 0;
  }
  
  .nav-trigger span,
  .nav-trigger span::before,
  .nav-trigger span::after {
    background: black;
  }
  
  .nav-is-visible .nav-trigger span,
  .nav-is-visible .nav-trigger span::before,
  .nav-is-visible .nav-trigger span::after {
    background: white;
  }
}

.nav-trigger span {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}

.nav-trigger span::before,
.nav-trigger span:after {
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}

.nav-trigger span::before {
  bottom: 6px;
}

.nav-trigger span::after {
  top: 6px;
}

.nav-is-visible .nav-trigger {
  //position: fixed;
}

.nav-is-visible .nav-trigger span {
  background-color: rgba(255, 255, 255, 0);
}

.nav-is-visible .nav-trigger span::before {
  -webkit-transform: translateY(6px) rotate(-45deg);
  -moz-transform: translateY(6px) rotate(-45deg);
  -ms-transform: translateY(6px) rotate(-45deg);
  -o-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.nav-is-visible .nav-trigger span::after {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -moz-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  -o-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

.desktop-header {
  border-bottom: 3px solid;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}

.desktop-nav {
  float: right;
}

.desktop-nav li {
  display: inline-block;
}

.desktop-nav a {
  display: block;
  margin: 0.5em 1em;
  color: #aaa;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: black;
}

.desktop-nav li:last-child a {
  margin-right: 0;
}



/********************
  PAGINATION
********************/

.pagination {
  margin: 1.5em 0;
  text-align: center;
}

.pagination .prev,
.pagination .next {
  display: none;
}

.pagination .page a,
.pagination .current {
  display: inline-block;
  padding: 2px 10px;
  margin: 2px;
  color: #333;
}

.pagination .page a:hover,
.pagination .current {
  background: rgba(0,0,0,0.05);
}



/********************
  FOOTER
********************/

footer {
  border-top: 3px solid;
  margin-top: 1.5em;
  padding: 1.5em 0 0;
}

.mailing-list {
  overflow: hidden;
  width: 100%;
  margin-top: 1.5em;
}

.mailing-list input[type=email] {
	font: inherit;
	height: 40px;
	line-height: 40px;
	float: left;
	padding-left: 10px;
	width: 70%;
	font-size: 1em;
	border: 2px solid;
	border-right: 0;
}

.mailing-list input[type=submit] {
  float: right;
  width: 30%;
  padding: 0;
}

@media only screen and (min-width: 64.063em) {
  .mailing-list {
    width: 75%;
  }
}


/********************
  PRODUCT GRIDS
********************/

figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

figure img {
  width: 100%;
}

@media only screen and (min-width: 40.063em) {
  [class*="block-grid-"] {
    margin: 0 -10px;
  }
  
  [class*="block-grid-"]>li {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: calc(10px * 2);
  }
}


.event-listing {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #eee;
}

.event-listing:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.event-listing h3 {
  margin: 0 0 .5em;
}

.event-listing-details {
  font-size: 0.85em;
  line-height: 1.7em;
  padding-top: 2em;
}

@media only screen and (min-width: 64.063em) {
  .event-listing-details {
    padding-top: 0;
  }
}

.event-listing-details label {
  width: 45%;
  display: block;
  float: left;
}

.divider {
  margin: 1em auto;
}

#map {
  width: 100%;
  height: 250px;
  margin: 0 0 2em;
}

a[href^="http://maps.google.com/maps"]{display:none !important}
a[href^="https://maps.google.com/maps"]{display:none !important}

.gmnoprint a, .gmnoprint span, .gm-style-cc {
  display:none;
}
.gmnoprint div {
  background:none !important;
}
