/*
This is the master stylesheet for Rudiments/

This file will import the extracted SCSS files defined below.
Add your media queries here and import files specific to those breakpoints.
 */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

#tribe-events {
  background-color: #fff;
  width: 100%;
}

@media (min-width: 48rem) {
  #tribe-events {
    margin: 0 auto;
    max-width: 1366px;
    width: 90%;
  }
}

#tribe-events dl {
  padding: 0;
}

#tribe-bar-form {
  background-color: #fff;
}

.tribe-events-list-event-title a {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin: 1em 0 0.75em 0;
  text-transform: uppercase;
}

@media (min-width: 48rem) {
  .tribe-events-list-event-title a {
    font-size: 2.125rem;
  }
}

#tribe-events .tribe-events-button {
  background-color: transparent;
  border: 1px solid #b7a368;
  border-radius: 0;
  display: inline-block;
  color: #b7a368;
  font-weight: 600;
  letter-spacing: 0.155em;
  outline: none;
  padding: 0.75rem 1rem;
  text-indent: 0.155em;
  text-transform: uppercase;
  text-decoration: none;
}

#tribe-events-bar,
#tribe-events-content {
  margin: 0 auto;
  width: 90%;
}

#tribe-events-bar {
  padding: 2rem 0;
}

#tribe-events-content .tribe-events-loop {
  max-width: none;
}

#tribe-events-content .tribe-events-button {
  margin-bottom: 2rem;
}

#tribe-events-content .tribe-events-sub-nav {
  padding: 2rem 0;
}

#tribe-events-content .tribe-events-single-section {
  padding: 2rem 0;
}

.tribe-events-schedule h2 {
  display: inline-block;
}

.tribe-events-back {
  padding: 2rem 0;
  margin: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.user-content h1, .user-content .h1, .user-content h2, .user-content .h2, .user-content h3, .user-content h4, .user-content h5, .user-content h6, .user-content .h3, .user-content .h4, .user-content .h5, .user-content .h6 {
  color: #bdaa76;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin: 1em 0 0.75em 0;
}

.user-content h1:first-child, .user-content .h1:first-child, .user-content h2:first-child, .user-content .h2:first-child, .user-content h3:first-child, .user-content h4:first-child, .user-content h5:first-child, .user-content h6:first-child, .user-content .h3:first-child, .user-content .h4:first-child, .user-content .h5:first-child, .user-content .h6:first-child {
  margin-top: 0;
}

.user-content h1, .user-content .h1 {
  font-size: 2.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.user-content h2, .user-content .h2 {
  font-size: 1.4375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.banner__hd--standard, .image-with-header__hd {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.3;
  text-indent: 0.25em;
  text-transform: uppercase;
}

@media (min-width: 48rem) {
  .banner__hd--standard, .image-with-header__hd {
    font-size: 2.875rem;
  }
}

@media (min-width: 62rem) {
  .banner__hd--standard, .image-with-header__hd {
    font-size: 5rem;
  }
}

@media (min-width: 62rem) {
  .banner__hd--standard {
    letter-spacing: 0.3em;
    text-indent: 0.3em;
  }
}

@media (min-width: 62rem) {
  .image-with-header__hd {
    letter-spacing: 0.5em;
    text-indent: 0.5em;
  }
}

.banner__subhd--standard:before, .featured-tour__subhd:before, .social-media-block__hd:after {
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  content: '';
  display: block;
  width: 2px;
}

@media (min-width: 48rem) {
  .banner__subhd--standard:before, .featured-tour__subhd:before, .social-media-block__hd:after {
    margin: 0 auto 1rem auto;
    width: 3px;
  }
}

.site-footer__inner, .banner__subhd--standard, .featured-links__inner, .gallery, .hours-and-info, .linkback__inner, .link-blocks, .full-width-wysiwyg__inner, .faqs-block, .heading-with-excerpt, .media-dl__items, .sponsors-block__list, .two-col, .wysiwyg-with-contact, .wysiwyg-with-quote__inner, .facebook-cta__inner, .social-media-block__inner, .tour-map__content-wrapper, .gallery__title, .tour__content, .page__content--default, .post-type-repeater__content, .page__hd--media {
  margin: 0 auto;
  max-width: 1366px;
  width: 90%;
}

.site-header__inner, .pb-nav__mobile, .pb-nav__list {
  margin: 0 auto;
  width: 95%;
}

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

.section__hd, .sponsors-block__hd, .two-col--with-icons .two-col__hd, .social-media-block__hd, .hours-and-info__hd, .full-width-wysiwyg__hd, .heading-with-excerpt__hd, .two-col:not(.two-col--with-icons) .two-col__hd, .wysiwyg-section__hd, .wysiwyg-with-quote__hd, .gallery__title, .page__hd--media {
  color: #bdaa76;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section__hd, .sponsors-block__hd, .two-col--with-icons .two-col__hd, .social-media-block__hd {
  font-size: 1.25rem;
}

@media (min-width: 48rem) {
  .section__hd, .sponsors-block__hd, .two-col--with-icons .two-col__hd, .social-media-block__hd {
    font-size: 1.4375rem;
  }
}

.hours-and-info__hd, .full-width-wysiwyg__hd, .heading-with-excerpt__hd, .two-col:not(.two-col--with-icons) .two-col__hd, .wysiwyg-section__hd, .wysiwyg-with-quote__hd {
  font-size: 1.5rem;
}

@media (min-width: 48rem) {
  .hours-and-info__hd, .full-width-wysiwyg__hd, .heading-with-excerpt__hd, .two-col:not(.two-col--with-icons) .two-col__hd, .wysiwyg-section__hd, .wysiwyg-with-quote__hd {
    font-size: 2.125rem;
  }
}

#tribe-events .tribe-events-button, .gs-button-link, .event-details__link, .linkback__link, .dl-item__link, .wysiwyg-with-contact__cta-link {
  transition: all 175ms ease-in;
}

body:not(.touch-device) #tribe-events .tribe-events-button:hover, #tribe-events body:not(.touch-device) .tribe-events-button:hover, body:not(.touch-device) .gs-button-link:hover, body:not(.touch-device) .event-details__link:hover, body:not(.touch-device) .linkback__link:hover, body:not(.touch-device) .dl-item__link:hover, body:not(.touch-device) .wysiwyg-with-contact__cta-link:hover {
  background-color: #ad9655;
  color: #fff;
}

#tribe-events .tribe-events-button:active, .gs-button-link:active, .event-details__link:active, .linkback__link:active, .dl-item__link:active, .wysiwyg-with-contact__cta-link:active, #tribe-events .tribe-events-button:focus, .gs-button-link:focus, .event-details__link:focus, .linkback__link:focus, .dl-item__link:focus, .wysiwyg-with-contact__cta-link:focus {
  background-color: #ad9655;
  color: #fff;
}

.banner__hd, .banner__hd--standard, .image-with-header__hd, .dl-item__hd {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2), 0 0 50px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

.clearfix {
  zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  left: -100%;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  background-color: #f4f4f4;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

body, button, input, select, textarea {
  color: #545454;
}

body {
  margin: 0 auto;
  background-color: #f4f4f4;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

::-moz-selection, ::-moz-selection {
  background: #b7a368;
  color: #fff;
  text-shadow: none;
}

::-moz-selection, ::selection {
  background: #b7a368;
  color: #fff;
  text-shadow: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  width: auto;
}

ul, ol {
  list-style: none;
}

iframe {
  max-width: 100%;
}

@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

/* Default Link Styles */
a {
  color: #b7a368;
  line-height: inherit;
}

a:hover, a:focus {
  text-decoration: none;
}

a img {
  display: block;
  margin-bottom: 0;
  border: none;
}

a:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

.gs-button--inline {
  display: inline-block;
}

.gs-button-shortcode {
  padding: 2rem 0;
}

.gs-button-link {
  border: 1px solid #b7a368;
  display: block;
  color: #b7a368;
  font-weight: 600;
  letter-spacing: 0.155em;
  outline: none;
  padding: 0.75rem 1rem;
  text-indent: 0.155em;
  text-transform: uppercase;
  text-decoration: none;
}

.alignleft {
  float: left;
  margin: 0 1rem 0 0;
}

.alignright {
  float: right;
  margin: 0 0 0 1rem;
}

.aligncenter {
  margin: 0 auto 1rem auto;
  text-align: center;
}

h1, h2, h3, h4, h5, h6, p, a, li, span {
  -webkit-font-smoothing: antialiased;
}

.user-content h1 + ul,
.user-content h1 + ol, .user-content h2 + ul,
.user-content h2 + ol, .user-content h3 + ul,
.user-content h3 + ol, .user-content h4 + ul,
.user-content h4 + ol, .user-content h5 + ul,
.user-content h5 + ol, .user-content h6 + ul,
.user-content h6 + ol, .user-content .h1 + ul,
.user-content .h1 + ol, .user-content .h2 + ul,
.user-content .h2 + ol, .user-content .h3 + ul,
.user-content .h3 + ol, .user-content .h4 + ul,
.user-content .h4 + ol, .user-content .h5 + ul,
.user-content .h5 + ol, .user-content .h6 + ul,
.user-content .h6 + ol {
  padding-top: 0;
}

.user-content h1,
.user-content h2,
.user-content h3,
.user-content h4,
.user-content .h1,
.user-content .h2,
.user-content .h3,
.user-content .h4 {
  text-transform: uppercase;
}

.user-content h1,
.user-content h2,
.user-content .h1,
.user-content .h2 {
  letter-spacing: 0.1em;
}

.user-content h3, .user-content .h3 {
  font-size: 1.125rem;
}

.user-content h3,
.user-content h4,
.user-content h5,
.user-content h6,
.user-content .h3,
.user-content .h4,
.user-content .h5,
.user-content .h6 {
  letter-spacing: 0.2em;
}

.user-content h6, .user-content .h6 {
  font-style: italic;
}

.user-content p {
  color: #545454;
  line-height: 1.75;
}

.user-content ul, .user-content ol, .user-content dl {
  line-height: 1.33;
  margin: 0 1.5em 1.5em 0;
  padding: 0 0 0 1.5em;
}

.user-content ul {
  list-style-type: disc;
}

.user-content ol {
  list-style-type: decimal;
}

.user-content ul, .user-content ol {
  padding: 1em 0 1em 1.25rem;
}

.user-content ul li, .user-content ol li {
  margin: .8em 0 0;
}

.user-content ul li ul, .user-content ul li ol, .user-content ol li ul, .user-content ol li ol {
  margin-left: 1.25em;
  padding: 0 0 0 1.25rem;
}

.user-content dl {
  padding-left: 14px;
}

.user-content dl dt {
  margin-bottom: .45em;
  font-weight: 600;
}

.user-content dl dd {
  margin-bottom: .75em;
  margin-left: 0;
}

.user-content a {
  color: #b7a368;
  font-weight: 700;
  text-decoration: none;
}

.user-content blockquote {
  color: #bdaa76;
  display: block;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 auto;
  padding: 2rem 0;
  width: 90%;
}

@media (min-width: 48rem) {
  .user-content blockquote {
    font-size: 1.625rem;
  }
}

@media (min-width: 75rem) {
  .user-content blockquote {
    font-size: 2.125rem;
  }
}

.user-content blockquote p {
  color: inherit;
  margin: 0;
}

.user-content hr {
  border: 0 none;
  border-top: 1px solid #ad9655;
}

.user-content table {
  font-size: 1rem;
  margin: .75em 0 1.5em;
  background-color: #fff;
  border: 1px solid #000;
  text-align: left;
}

.user-content table th {
  padding: 14px 3% 12px;
  background-color: grey;
  font-weight: 600;
  line-height: 1;
}

.user-content table th ~ th {
  border-left: 1px solid grey;
}

.user-content table tbody tr ~ tr {
  border-top: 1px solid #000;
}

.user-content table td {
  padding: 12px 3% 10px;
  line-height: 1.35;
}

.user-content table td ~ td {
  border-left: 1px solid #000;
}

@media (min-width: 48rem) {
  .pb-content p, .pb-content ul, .pb-content ol {
    font-size: 1.4375rem;
    line-height: 1.9;
  }
}

a[href*=tel],
a[href*=mailto] {
  color: inherit;
  text-decoration: none;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: 0;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
}

form textarea {
  resize: none;
}

form input[type=submit] {
  background-color: transparent;
  border: 0;
  outline: 0;
}

form input::-webkit-input-placeholder {
  color: #7d7d7d;
}

form input:-moz-placeholder {
  color: #7d7d7d;
  opacity: 1;
}

form input::-moz-placeholder {
  color: #7d7d7d;
  opacity: 1;
}

form input:-ms-input-placeholder {
  color: #7d7d7d;
}

.headroom {
  position: relative;
}

@media (min-width: 48rem) {
  .section__heading-nav {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.site-header {
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-flow: column;
      flex-flow: column;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

@media (min-width: 48rem) {
  .site-header {
    display: block;
  }
}

.site-header.headroom--not-top {
  transition: top 300ms ease-in;
}

.site-header__mobile {
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.site-header__nav-items {
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
}

@media (min-width: 62rem) {
  body.touch-device .site-header__nav-items {
    padding: 0 0 0.5rem 0;
  }
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
  .site-header__nav-items {
    margin-top: 0.5rem;
  }
}

@media (min-width: 62rem) {
  .site-header__nav-items {
    -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
  }
}

@media (max-width: 47.9375rem) {
  .site-header__inner {
    background-color: #373a3c;
  }
}

@media (max-width: 47.9375rem) {
  .site-header__top-bar .site-header__inner,
  .site-header__bottom-bar .site-header__inner {
    width: 100%;
  }
}

@media (min-width: 48rem) {
  .site-header__inner {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    -ms-flex-flow: column;
        flex-flow: column;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 95%;
  }
}

@media (min-width: 85.375rem) {
  .site-header__inner {
    -ms-flex-flow: row;
        flex-flow: row;
  }
}

@media (min-width: 48rem) {
  .site-header__top-bar .site-header__inner {
    -ms-flex-pack: end;
        justify-content: flex-end;
    padding: 0.5rem 0;
  }
}

.site-header__top-bar,
.site-header__bottom-bar {
  background-color: #fff;
  position: relative;
}

.site-header__top-bar {
  -ms-flex-order: 1;
      order: 1;
}

@media (min-width: 48rem) {
  .site-header__top-bar {
    border-bottom: 2px solid #efefef;
  }
}

.site-header__bottom-bar {
  -ms-flex-order: 0;
      order: 0;
}

@media (max-width: 47.9375rem) {
  .site-header__bottom-bar {
    text-align: center;
  }
}

.site-header__logo {
  background: url("../img/glensheen-logo.svg") center center no-repeat;
  background-size: contain;
  display: inline-block;
  height: 3.4375rem;
  overflow: hidden;
  margin: 0.5rem auto;
  width: 6.6875rem;
  text-indent: -9999px;
}

@media (min-width: 48rem) {
  .site-header__logo {
    display: inline-block;
    height: 73px;
    min-width: 140px;
    width: 142px;
  }
}

@media (min-width: 85.375rem) {
  .site-header__logo {
    margin: 0;
  }
}

.menu-toggle {
  background: none;
  border: 0;
  border-bottom: 4px solid #373a3c;
  border-top: 4px solid #373a3c;
  bottom: 0;
  cursor: pointer;
  display: block;
  height: 24px;
  left: 1.5rem;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  text-indent: -9999px;
  transition: border 300ms ease-in;
  width: 36px;
}

.js--nav-active .menu-toggle {
  border-width: 0;
  transition: border 300ms ease-in, transform 475ms ease-in;
  transform: rotate(180deg);
}

.menu-toggle:before, .menu-toggle:after {
  background-color: #373a3c;
  bottom: 0;
  content: '';
  display: block;
  height: 4px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 300ms ease-in;
  width: 100%;
}

.js--nav-active .menu-toggle:before {
  transform: rotate(45deg);
}

.js--nav-active .menu-toggle:after {
  transform: rotate(-45deg);
}

@media (min-width: 48rem) {
  .menu-toggle {
    display: none;
  }
}

.nav {
  list-style: none;
}

.nav a {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

body:not(.touch-device) .nav > li:hover > a {
  color: #b7a368;
}

.nav > li:active > a, .nav > li:focus > a {
  color: #b7a368;
}

.nav--primary {
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
}

.nav--primary > .current-menu-item a,
.nav--primary .current-menu-ancestor a {
  color: #b7a368;
}

.nav--primary a {
  color: #7b7b7b;
  display: block;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
}

@media (min-width: 62rem) {
  .nav--primary a {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
}

@media (min-width: 75rem) {
  .nav--primary a {
    font-size: 1.125rem;
  }
}

.nav--primary > .menu-item {
  position: relative;
}

.js--nav-active .nav--primary > .menu-item > a {
  position: relative;
}

@media (min-width: 48rem) {
  .nav--primary > .menu-item {
    position: static;
  }
}

@media (min-width: 48rem) {
  body:not(.touch-device) .nav--primary > .menu-item:hover .sub-menu {
    bottom: auto;
    display: block;
    opacity: 1;
    overflow: visible;
    top: 100%;
  }
}

@media (min-width: 48rem) {
  .nav--primary > .menu-item:active .sub-menu, .nav--primary > .menu-item:focus .sub-menu {
    bottom: auto;
    display: block;
    opacity: 1;
    overflow: visible;
    top: 100%;
  }
}

@media (min-width: 48rem) {
  .nav--primary > .menu-item > a {
    padding: 1rem 0.5rem;
  }
}

@media (min-width: 62rem) {
  .nav--primary > .menu-item > a {
    padding: 1rem;
  }
}

@media (min-width: 85.375rem) {
  .nav--primary > .menu-item > a {
    padding: 2rem;
  }
}

.nav--primary .children,
.nav--primary .sub-menu {
  border: 0;
  border-radius: 0;
  bottom: 100%;
  color: #fff;
  display: block;
  font-weight: 600;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  transition: opacity 175ms ease-in;
  z-index: -1;
}

@media (min-width: 48rem) {
  .nav--primary .children,
  .nav--primary .sub-menu {
    background-color: #b7a368;
    overflow: hidden;
  }
}

.nav--primary .children a,
.nav--primary .sub-menu a {
  color: #fff;
  padding: 1rem 0;
  transition: background-color 175ms ease-in;
}

body:not(.touch-device) .nav--primary .children a:hover, body:not(.touch-device)
.nav--primary .sub-menu a:hover {
  background-color: #a69255;
}

.nav--primary .children a:active, .nav--primary .children a:focus,
.nav--primary .sub-menu a:active,
.nav--primary .sub-menu a:focus {
  background-color: #a69255;
}

.nav--primary .children .menu-item,
.nav--primary .sub-menu .menu-item {
  display: block;
  text-align: center;
}

.nav--secondary a {
  color: #b7a368;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

@media (min-width: 48rem) {
  .nav--secondary .menu-item:not(:first-child) {
    margin-left: 2rem;
  }
}

@media (max-width: 47.9375rem) {
  .nav--primary,
  .nav--secondary {
    display: block;
    position: relative;
    z-index: 0;
  }
}

.js--nav-active .nav--primary a, .js--nav-active
.nav--secondary a {
  display: block;
  padding: 0.75rem 0;
}

@media (max-width: 47.9375rem) {
  .js--nav-active .nav--primary a, .js--nav-active
  .nav--secondary a {
    background-color: #373a3c;
    color: #fff;
  }
}

@media (max-width: 47.9375rem) {
  .js--nav-active .nav-container--primary, .js--nav-active
  .nav-container--secondary {
    display: block;
    height: auto;
  }
}

@media (max-width: 47.9375rem) {
  .js--nav-active .nav-container--primary, .js--nav-active
  .nav-container--secondary {
    transition: opacity 300ms ease-in;
  }
}

.js--nav-active .nav--primary .menu-item:first-child a {
  padding-top: 1rem;
}

.js--nav-active .nav--secondary .menu-item:last-child a {
  padding-bottom: 1rem;
}

.site-header .menu-item {
  text-align: center;
}

@media (min-width: 48rem) {
  .site-header .menu-item {
    display: inline-block;
  }
}

.nav-container--primary {
  -ms-flex-order: 1;
      order: 1;
}

@media (max-width: 47.9375rem) {
  .nav-container--primary,
  .nav-container--secondary {
    background-color: #373a3c;
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
}

@media (min-width: 48rem) {
  .nav-container--primary,
  .nav-container--secondary {
    display: inline-block;
    text-align: right;
  }
}

.js--nav-active .nav-container--primary, .js--nav-active
.nav-container--secondary {
  opacity: 1;
}

body.js--nav-active .site-header {
  background-color: transparent;
  overflow: auto;
  position: absolute;
}

@media (min-width: 0) and (max-width: 47.9375rem) {
  .js--subnav-open .sub-menu {
    display: block;
    position: relative;
    z-index: 10;
    opacity: 1;
  }
  .js--subnav-open .sub-menu a {
    background-color: #bdaa76;
  }
}

@media (min-width: 48rem) {
  .js--subnav-open .sub-menu {
    bottom: auto;
    display: block;
    opacity: 1;
    overflow: visible;
    top: 100%;
  }
}

.menu-item-subnav-toggle {
  background-color: transparent;
  border: 0 none;
  bottom: 0;
  content: '';
  display: block;
  margin: auto;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  outline: none;
  text-align: center;
  width: 40px;
}

@media (min-width: 48rem) {
  .menu-item-subnav-toggle {
    margin: 0 0.5rem 0 0;
    position: relative;
    width: 30px;
  }
}

.menu-item-subnav-toggle i:before {
  color: #fff;
}

@media (min-width: 48rem) {
  .menu-item-subnav-toggle i:before {
    color: #7b7b7b;
  }
}

.js--subnav-open .menu-item-subnav-toggle {
  transform: rotate(180deg);
}

body:not(.touch-device) .menu-item-subnav-toggle {
  display: none;
}

@media (min-width: 48rem) {
  .nav--primary > .menu-item > a {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
  }
}

@media (min-width: 48rem) and (min-width: 48rem) {
  body:not(.touch-device) .nav--primary > .menu-item > a {
    margin: 0 1rem;
  }
}

@media (min-width: 48rem) and (min-width: 62rem) {
  body:not(.touch-device) .nav--primary > .menu-item > a {
    padding: 1.75rem 0;
  }
}

@media (min-width: 48rem) and (min-width: 75rem) {
  body:not(.touch-device) .nav--primary > .menu-item > a {
    padding: 2rem 0;
  }
}

@media (min-width: 48rem) and (min-width: 75rem) {
  body:not(.touch-device) .nav--primary > .menu-item > a {
    margin: 0 2rem;
  }
}

@media (min-width: 48rem) and (min-width: 62rem) {
  body.touch-device .nav--primary > .menu-item > a {
    padding: 0;
  }
}

@media (min-width: 48rem) {
  .footer-info {
    width: 50%;
  }
}

@media (min-width: 62rem) {
  .footer-info {
    width: 30%;
  }
}

@media (min-width: 48rem) {
  .nav-container--footer {
    width: 60%;
  }
}

.nav--footer {
  display: none;
  overflow: hidden;
}

@media (min-width: 48rem) {
  .nav--footer {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
}

.nav--footer .menu-item {
  display: block;
  margin-bottom: 2rem;
}

@media (min-width: 48rem) {
  .nav--footer .menu-item {
    width: 45%;
  }
}

@media (min-width: 62rem) {
  .nav--footer .menu-item {
    width: 28%;
  }
}

@media (max-width: 61.9375rem) {
  .nav--footer .menu-item:not(:nth-child(2n+1)) {
    margin-left: 10%;
  }
}

@media (min-width: 62rem) {
  .nav--footer .menu-item:not(:nth-child(3n+1)) {
    margin-left: 8%;
  }
}

.nav--footer a {
  color: #7b7b7b;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav--footer a:hover, .nav--footer a:active, .nav--footer a:focus {
  color: #626262;
  text-decoration: none;
}

.site-colophon {
  color: #7b7b7b;
  margin: 2rem auto 0 auto;
  max-width: 1366px;
  width: 90%;
}

@media (min-width: 62rem) {
  .site-colophon {
    margin: 0 auto;
  }
}

.site-footer {
  background-color: #fff;
  padding: 4rem 0;
}

@media (min-width: 48rem) {
  .site-footer__inner {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-bottom: 4rem;
  }
}

.banner {
  overflow: hidden;
  position: relative;
}

.banner img {
  min-height: 100%;
  max-height: 100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
  max-width: none;
  min-width: 100%;
  position: absolute;
  right: -100%;
  top: -100%;
  z-index: 0;
}

@media (min-width: 48rem) {
  .banner img {
    max-height: none;
  }
}

.banner__content {
  color: #fff;
  position: absolute;
}

@media (max-width: 47.9375rem) {
  .banner__content--homepage {
    background-color: #373a3c;
    padding: 0 0 2rem 0;
    position: relative;
    text-align: center;
  }
}

@media (min-width: 48rem) {
  .banner__content--homepage {
    bottom: 2rem;
    left: 2rem;
  }
}

.banner__content--standard {
  -ms-flex-align: center;
      align-items: center;
  bottom: 0;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-pack: center;
      justify-content: center;
  left: 0;
  right: 0;
  top: 0;
}

.banner__image-wrap {
  display: block;
  overflow: hidden;
  position: relative;
}

.banner--homepage .banner__image-wrap {
  height: calc(100vw * 0.65);
}

@media (min-width: 34rem) {
  .banner--homepage .banner__image-wrap {
    max-height: 80vh;
  }
}

@media (min-width: 48rem) {
  .banner--homepage .banner__image-wrap {
    max-height: calc(100vh - 158px);
  }
}

.banner--standard .banner__image-wrap {
  height: calc(100vw * 0.75);
  max-height: 50vh;
}

@media (min-width: 34rem) {
  .banner--standard .banner__image-wrap {
    max-height: 80vh;
  }
}

@media (max-width: 61.9375rem) {
  .page-template-template-lake-cam .banner--standard .banner__image-wrap {
    height: calc(100vw * 0.4);
  }
}

.banner__hd {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 auto;
  text-align: center;
  width: 95%;
}

.banner__hd--homepage {
  background: url("../img/banner-tagline.svg") left bottom no-repeat;
  background-size: contain;
  height: calc(90vw * 0.25);
  margin: 0 auto;
  width: 90%;
  font-size: 11.125rem;
  line-height: 1;
}

@media (min-width: 48rem) {
  .banner__hd--homepage {
    height: 75px;
    margin: 0;
  }
}

@media (min-width: 62rem) {
  .banner__hd--homepage {
    height: 200px;
  }
}

.banner__hd--standard {
  display: block;
  margin: 0 auto;
  text-transform: uppercase;
  position: relative;
}

@media (min-width: 62rem) {
  .page-template-template-lake-cam .banner__hd--standard {
    top: -12.5vh;
  }
}

.banner__subhd--homepage {
  color: #b7a368;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (min-width: 48rem) {
  .banner__subhd--homepage {
    letter-spacing: 0.4em;
  }
}

@media (min-width: 62rem) {
  .banner__subhd--homepage {
    font-size: 1.6875rem;
  }
}

.banner__subhd--standard {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-align: center;
  margin: 0;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

@media (min-width: 48rem) {
  .banner__subhd--standard {
    font-size: 1.5rem;
  }
}

.banner__subhd--standard:before {
  background-color: #fff;
}

@media (min-width: 48rem) {
  .banner__subhd--standard:before {
    height: 75px;
  }
}

.contact-map {
  display: block;
  height: calc(100vw * 0.5625);
  max-height: 75vh;
}

.event-details {
  max-width: 480px;
  margin-top: 2rem;
}

.event-details__info {
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}

.event-details__link-container {
  margin-top: 2rem;
}

.event-details__link {
  border: 1px solid #bdaa76;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-indent: 0.1em;
  text-transform: uppercase;
  padding: 1.5rem 4rem;
}

@media (min-width: 48rem) {
  .event-details__link {
    display: block;
  }
}

.event__hd {
  margin: 0 0 0.5rem 0;
}

.event-details__section p {
  line-height: 1.8;
}

.event-details__section p {
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 48rem) {
  .event-details__section p {
    font-size: 1.4375rem;
  }
}

.event-details__section + .event-details__section {
  margin-left: 25%;
}

.featured-links {
  padding: 2rem 0;
}

@media (min-width: 48rem) {
  .featured-links {
    padding: 8rem 0;
  }
}

@media (min-width: 48rem) {
  .featured-links__list-row {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.featured-links__list-row + .featured-links__list-row {
  margin-top: 1rem;
}

.featured-links__hd {
  letter-spacing: 0.5em;
  margin: 0 auto;
  text-indent: 0.5em;
  text-transform: uppercase;
  width: 90%;
}

@media (min-width: 34rem) {
  .featured-links__hd {
    font-size: 1.5rem;
  }
}

@media (min-width: 62rem) {
  .featured-links__hd {
    font-size: 2.125rem;
  }
}

.featured-links__item {
  height: calc(100vw * 0.5625);
  margin: auto;
  padding: 1rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}

@media (min-width: 48rem) {
  .featured-links__item {
    height: 300px;
    width: calc(100% - 300px);
  }
}

@media (min-width: 62rem) {
  .featured-links__item {
    height: 400px;
    width: calc(100% - 400px);
  }
}

@media (min-width: 48rem) {
  .featured-links__list-row:nth-child(odd) .featured-links__item:first-child {
    margin-right: 1rem;
    width: 300px;
  }
}

@media (min-width: 62rem) {
  .featured-links__list-row:nth-child(odd) .featured-links__item:first-child {
    width: 400px;
  }
}

@media (min-width: 48rem) {
  .featured-links__list-row:nth-child(even) .featured-links__item:last-child {
    margin-left: 1rem;
    width: 300px;
  }
}

@media (min-width: 62rem) {
  .featured-links__list-row:nth-child(even) .featured-links__item:last-child {
    width: 400px;
  }
}

@media (max-width: 47.9375rem) {
  .featured-links__item + .featured-links__item {
    margin-top: 1rem;
  }
}

.featured-links__link {
  -ms-flex-align: center;
      align-items: center;
  background: center center no-repeat;
  background-size: cover;
  bottom: 0;
  color: #fff;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-decoration: none;
  top: 0;
  width: 100%;
}

.featured-links__link:before {
  border: 2px solid transparent;
  bottom: 0;
  content: '';
  display: block;
  height: calc(100% - 2rem);
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: border 175ms ease-in;
  width: calc(100% - 2rem);
}

@media (min-width: 62rem) {
  .featured-links__link:before {
    height: calc(100% - 4rem);
    width: calc(100% - 4rem);
  }
}

body:not(.touch-device) .featured-links__link:hover {
  color: #fff;
}

body:not(.touch-device) .featured-links__link:hover:before {
  border: 2px solid #fff;
}

.featured-links__link:active, .featured-links__link:focus {
  color: #fff;
}

.featured-links__link:active:before, .featured-links__link:focus:before {
  border: 2px solid #fff;
}

.featured-tour {
  position: relative;
}

.featured-tour__link {
  color: #fff;
  display: block;
  position: relative;
}

body:not(.touch-device) .featured-tour__link:hover {
  color: #fff;
}

.featured-tour__link:active, .featured-tour__link:focus {
  color: #fff;
}

.featured-tour__link:before {
  border: 1px solid #fff;
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(100% - 1.5rem);
  width: calc(100% - 1.5rem);
}

@media (min-width: 48rem) {
  .featured-tour__link:before {
    border-width: 2px;
    height: calc(100% - 4rem);
    width: calc(100% - 4rem);
  }
}

.featured-tour__content {
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  bottom: 0;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-flow: column;
      flex-flow: column;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.featured-tour__hd {
  letter-spacing: 0.3em;
  line-height: 1;
  margin: 0 auto;
  text-align: center;
  text-indent: 0.3em;
  text-transform: uppercase;
  position: relative;
  transition: margin 200ms ease-in;
  width: calc(100% - 8rem);
}

@media (min-width: 48rem) {
  .featured-tour__hd {
    font-size: 4.0625rem;
  }
}

body:not(.touch-device) .featured-tour:hover .featured-tour__cta {
  height: auto;
  opacity: 1;
}

body:not(.touch-device) .featured-tour:hover .featured-tour__hd {
  margin-top: -20px;
}

body:not(.touch-device) .featured-tour:hover .featured-tour__subhd:before {
  height: 58px;
}

.featured-tour:active .featured-tour__cta, .featured-tour:focus .featured-tour__cta {
  height: auto;
  opacity: 1;
}

.featured-tour:active .featured-tour__hd, .featured-tour:focus .featured-tour__hd {
  margin-top: -20px;
}

.featured-tour:active .featured-tour__subhd:before, .featured-tour:focus .featured-tour__subhd:before {
  height: 58px;
}

.featured-tour__image-wrap img {
  width: 100%;
}

.featured-tour__subhd {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 0;
  text-indent: 0.2em;
}

@media (min-width: 48rem) {
  .featured-tour__subhd {
    font-size: 1.625rem;
    margin: 1rem 0;
    transition: margin 200ms ease-in;
  }
}

.featured-tour__subhd:before {
  margin-top: 0;
  background-color: #fff;
}

@media (min-width: 48rem) {
  .featured-tour__subhd:before {
    height: 78px;
    transition: height 200ms ease-in;
  }
}

.featured-tour__subhd-container {
  position: relative;
  text-align: center;
}

@media (max-width: 47.9375rem) {
  .featured-tour__subhd-container {
    margin-top: 0.25rem;
  }
}

.featured-tour__cta {
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 100%;
  transition: opacity 200ms ease-in;
}

.featured-tour__cta span {
  border: 1px solid #fff;
  display: inline-block;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  padding: 0.75rem 1rem;
  margin: 0 auto;
  transition: box-shadow 175ms ease-in;
}

body:not(.touch-device) .featured-tour__cta span:hover {
  box-shadow: 0 0 0 1px #fff inset;
}

.featured-tour__cta span:active, .featured-tour__cta span:focus {
  box-shadow: 0 0 0 1px #fff inset;
}

.featured-tours-cta {
  position: relative;
  text-align: center;
  top: -1rem;
  z-index: 10;
}

@media (min-width: 48rem) {
  .featured-tours-cta {
    text-align: right;
  }
}

.featured-tours-cta__link {
  background-color: #ad9655;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3em;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 175ms ease-in;
}

@media (min-width: 48rem) {
  .featured-tours-cta__link {
    padding: 1.5rem;
  }
}

body:not(.touch-device) .featured-tours-cta__link:hover {
  background-color: #bdaa76;
  color: #fff;
}

.featured-tours-cta__link:active, .featured-tours-cta__link:focus {
  background-color: #bdaa76;
  color: #fff;
}

.featured-tours-cta__link i {
  font-weight: inherit;
  margin-left: 0.25rem;
  position: relative;
}

body.single-gallery:before {
  content: '';
  display: block;
  position: fixed;
  transition: background-color 175ms ease-in, z-index 175ms ease-in;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

body.gallery-modal--open {
  position: relative;
  overflow: hidden;
}

body.gallery-modal--open:before {
  background-color: rgba(0, 0, 0, 0.875);
  z-index: 200;
}

.gallery__items {
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  position: relative;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.gallery__item {
  cursor: pointer;
  height: calc(90vw * 0.5);
  position: relative;
  margin-top: 2px;
  overflow: hidden;
  width: calc(50% - 1px);
}

@media (min-width: 48rem) {
  .gallery__item {
    height: calc(90vw * .25);
    width: calc(25% - 2px);
  }
}

@media (min-width: 85.375rem) {
  .gallery__item {
    height: calc(1366px * .25);
  }
}

@media (min-width: 48rem) {
  .gallery__item:not(:nth-child(4n+1)) {
    margin-left: 2px;
  }
}

@media (max-width: 47.9375rem) {
  .gallery__item:not(:nth-child(2n+1)) {
    margin-left: 2px;
  }
}

.gallery__image {
  margin: auto;
  position: absolute;
}

.gallery__image:not(.gallery__image--vertical) {
  bottom: 0;
  height: 100%;
  left: -100%;
  max-width: none;
  right: -100%;
  top: 0;
}

.gallery__image--vertical {
  bottom: -100%;
  left: 0;
  max-height: none;
  right: 0;
  top: -100%;
  width: 100%;
}

.gallery-modal {
  -ms-flex-align: center;
      align-items: center;
  content: '';
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  height: 95vh;
  max-height: 95vh;
  width: 95vw;
  position: fixed;
  margin: auto;
  transform: translateX(-100%);
  z-index: 300;
}

@media (min-width: 48rem) {
  .gallery-modal {
    height: calc((100vw * 0.525) + 100px);
  }
}

.gallery-modal--open .gallery-modal {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(0);
}

.gallery-modal__button-wrap {
  display: block;
  overflow: hidden;
  text-align: right;
  width: 100%;
}

.gallery-modal__close {
  -ms-flex-item-align: end;
      align-self: flex-end;
  background: none;
  border: 0 none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 35px;
  outline: none;
  position: relative;
  right: 0;
  top: 0;
  width: 35px;
  z-index: 501;
}

@media (min-width: 48rem) {
  .gallery-modal__close {
    height: 50px;
    width: 50px;
  }
}

.gallery-modal__close:before, .gallery-modal__close:after {
  background-color: #fff;
  bottom: 0;
  content: '';
  display: block;
  height: 3px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

@media (min-width: 48rem) {
  .gallery-modal__close:before, .gallery-modal__close:after {
    height: 5px;
  }
}

.gallery-modal__close:before {
  transform: rotate(50deg);
}

.gallery-modal__close:after {
  transform: rotate(-50deg);
}

.gallery-modal__items {
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  overflow: hidden;
}

.gallery-modal__item {
  -ms-flex-align: center;
      align-items: center;
  bottom: 0;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  vertical-align: middle;
  z-index: 0;
}

@media (min-width: 48rem) {
  .gallery-modal__item {
    top: 60px;
  }
}

.gallery-modal-item__image-wrap {
  height: calc(100vw * 0.6);
  max-height: calc(90vw - 100px);
  overflow: hidden;
  position: relative;
}

@media (min-width: 48rem) {
  .gallery-modal-item__image-wrap {
    height: calc(100vw * 0.525);
    max-height: 75vh;
  }
}

.gallery-modal-item__image-wrap img {
  display: block;
  max-height: 100%;
  position: relative;
}

.gallery-modal__item.active {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  opacity: 1;
  transition: opacity 175ms ease-in;
  z-index: 500;
}

.gallery-modal-item__nav {
  -ms-flex-item-align: end;
      align-self: flex-end;
  content: '';
  display: block;
  position: absolute;
  height: 50px;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.gallery-modal-item__nav-button {
  background-color: rgba(0, 0, 0, 0.6);
  border: 0 none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  outline: none;
  padding: 0;
  transition: background-color 175ms ease-in;
  width: 50px;
}

.gallery-modal-item__nav-button:hover {
  background-color: #000;
}

.gallery-modal-item__nav-button i {
  color: #fff;
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
}

.gallery-modal-item__nav-button + .gallery-modal-item__nav-button {
  margin-left: 1rem;
}

.gallery-modal-item__nav-button[data-dir="next"] i {
  transform: scaleX(-1);
}

@media (min-width: 48rem) {
  .hours-and-info {
    padding: 2rem 0 4rem 0;
  }
}

@media (min-width: 48rem) {
  .hours-item p:not(.hours-item__details),
  .hours-and-info__section-hd {
    font-size: 1.4375rem;
  }
}

@media (min-width: 48rem) {
  .hours-and-info__content {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
  }
}

.hours-and-info__hd {
  text-align: center;
  text-indent: 0.1em;
}

@media (min-width: 48rem) {
  .hours-and-info__block--left {
    width: 50%;
  }
}

.hours-and-info__block--right {
  padding: 2rem 0;
}

@media (min-width: 48rem) {
  .hours-and-info__block--right {
    padding: 0;
    width: 40%;
  }
}

.hours-and-info__section + .hours-and-info__section {
  border-top: 1px solid #bdaa76;
  padding-top: 2rem;
}

.hours-item__details {
  font-style: italic;
  margin: 0.75rem 0 0 0;
}

@media (min-width: 48rem) {
  .hours-item__details {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.hours-item + .hours-item {
  margin-top: 2rem;
}

.hours-and-info-item__hd {
  margin: 0 0 0.25em 0;
}

.hours-item__description {
  margin: 0.75rem 0 0 0;
}

.hours-and-info__icon {
  color: #bdaa76;
  position: absolute;
  top: 6px;
}

@media (min-width: 48rem) {
  .hours-and-info__icon {
    font-size: 1.4375rem;
  }
}

.hours-and-info__section--address {
  position: relative;
}

.hours-item {
  position: relative;
}

.hours-item__content,
.hours-and-info__inner--address {
  left: 40px;
  position: relative;
  width: calc(100% - 40px);
}

.contact-item__icon {
  color: #bdaa76;
  margin-right: 1rem;
  position: relative;
  top: 3px;
}

@media (min-width: 48rem) {
  .contact-item__icon {
    font-size: 1.4375rem;
  }
}

.contact-item + .contact-item {
  margin-top: 4rem;
}

.contact-item__email + .contact-item__phone {
  border-top: 1px solid #bdaa76;
  padding-top: 1rem;
}

.lake-cam {
  bottom: auto;
  margin: 0 auto calc(100vw * -0.1) auto;
  position: relative;
  top: calc(100vw * -0.1);
  z-index: 2;
}

@media (min-width: 62rem) {
  .lake-cam {
    top: -37.5vh;
    margin: 0 auto -37.5vh auto;
  }
}

.lake-cam__inner {
  background: #fff;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  width: calc(80vw + 2rem);
}

@media (min-width: 62rem) {
  .lake-cam__inner {
    width: calc((100vw * 0.468) + 2rem);
  }
}

.lake-cam__inner iframe {
  display: block;
  height: calc(80vw * 0.8);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  width: 80vw;
}

@media (min-width: 62rem) {
  .lake-cam__inner iframe {
    height: calc(100vw * 0.374);
    width: calc(100vw * 0.468);
  }
}

.linkback {
  padding: 4rem 0;
}

.linkback__inner {
  text-align: center;
}

.linkback__link {
  border: 1px solid #bdaa76;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem 4rem;
  text-decoration: none;
  text-indent: 0.1em;
  text-transform: uppercase;
}

.link-block--staff + .link-block--staff {
  margin-top: 2rem;
}

@media (min-width: 48rem) {
  .link-block--staff + .link-block--staff {
    margin-top: 5rem;
  }
}

.link-block--tour + .link-block--tour,
.link-block--page + .link-block--page {
  margin-top: 2.5rem;
}

.link-block__contact-info {
  display: block;
  position: relative;
}

.link-block__contact-info:before {
  background-color: #bdaa76;
  content: '';
  display: block;
  height: 1px;
  margin: 1.75rem auto;
  position: relative;
  top: 0;
  width: 120px;
}

.link-block__content {
  margin: 0 auto;
  text-align: center;
  width: 90%;
}

@media (min-width: 48rem) {
  .link-block__content {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    -ms-flex-flow: column;
        flex-flow: column;
    -ms-flex-pack: center;
        justify-content: center;
    width: 52%;
  }
}

.link-block-content__inner {
  margin: 0 auto;
  padding: 2rem 0;
  width: 90%;
}

.link-block__email {
  margin-bottom: 0;
}

.link-block__email + .link-block__phone {
  margin-top: 1rem;
}

.link-block__hd {
  color: #bdaa76;
  font-weight: 700;
  text-transform: uppercase;
}

.link-block__hd--staff {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-align: center;
  text-indent: 0.12em;
}

.link-block__hd--tour,
.link-block__hd--page {
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  margin: 0 0 1rem 0;
  text-indent: 0.3em;
}

@media (min-width: 62rem) {
  .link-block__hd--tour,
  .link-block__hd--page {
    font-size: 2.5rem;
  }
}

.link-block__hdr--staff {
  margin-bottom: 1px;
}

.link-block__icon {
  color: #ad9655;
  display: block;
  margin-top: 1rem;
  transform: rotate(180deg);
}

@media (min-width: 48rem) {
  .link-block__image-wrap {
    width: 48%;
  }
}

.link-block__inner {
  background-color: #fff;
  position: relative;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 48rem) {
  .link-block__inner {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
  }
}

.link-block__job-title {
  color: #545454;
  font-size: 1.125rem;
  font-style: italic;
  margin-top: 0.5rem;
}

@media (min-width: 48rem) {
  .link-block__hd + .link-block__job-title {
    margin-top: 1rem;
  }
}

.link-block__link {
  text-decoration: none;
}

.link-block__link:before {
  border: 2px solid transparent;
  bottom: 0.75rem;
  content: '';
  display: block;
  left: 0.75rem;
  margin: auto;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  transition: border 300ms ease-in;
}

@media (min-width: 48rem) {
  .link-block__link:before {
    bottom: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    top: 1.75rem;
  }
}

body:not(.touch-device) .link-block__link:hover:before {
  border-color: #bdaa76;
}

.link-block__link:active:before, .link-block__link:focus:before {
  border-color: #bdaa76;
}

.link-block__tagline {
  letter-spacing: 0.055em;
  text-indent: 0.055em;
  margin-top: 0;
}

.org-nav__list {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.org-nav__list:after {
  background-color: #d8d8d8;
  bottom: 0;
  content: '';
  display: block;
  height: 72%;
  left: 31%;
  margin: auto;
  position: absolute;
  top: 0;
  width: 1px;
}

.org-nav__item {
  position: relative;
  width: 50%;
}

.org-nav__item:first-child {
  width: 35%;
}

.org-nav__link {
  background: center center no-repeat;
  background-size: contain;
  display: block;
  min-height: 100px;
  text-indent: -9999px;
  overflow: hidden;
  transition: color ease 200ms;
}

.org-nav__link:hover, .org-nav__link:active, .org-nav__link:focus {
  color: #b7a368;
  text-decoration: none;
}

.org-nav__link--glensheen {
  background-image: url("../img/glensheen-logo-onecolor.svg");
}

.org-nav__link--m {
  background-image: url("../img/m-logo-onecolor.svg");
  margin-left: 20%;
}

.org-nav__link--umd {
  background-image: url("../img/umd-logo-simple.svg");
  width: 80%;
}

.org-nav__link--umprop {
  width: 70%;
  margin-left: 12%;
}

.full-width-wysiwyg {
  padding: 2rem 0;
}

@media (min-width: 48rem) {
  .full-width-wysiwyg {
    padding: 4rem 0;
  }
}

@media (min-width: 48rem) {
  .full-width-wysiwyg__content {
    font-size: 1.4375rem;
  }
}

.faqs-block {
  padding: 4rem 0;
}

.faq {
  -ms-flex-align: start;
      align-items: flex-start;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-flow: column;
      flex-flow: column;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 62rem) {
  .faq {
    -ms-flex-flow: row;
        flex-flow: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.faq + .faq {
  margin-top: 2rem;
}

.faq__question,
.faq__answer {
  display: block;
}

.faq__question {
  color: #b7a368;
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
}

@media (min-width: 62rem) {
  .faq__question {
    font-size: 2.125rem;
    width: 30%;
  }
}

@media (min-width: 62rem) {
  .faq__answer {
    width: 65%;
  }
}

.faq__answer p {
  letter-spacing: 0.05em;
  line-height: 1.9;
}

@media (min-width: 62rem) {
  .faq__answer p {
    font-size: 1.4375rem;
  }
}

.faq__answer p:first-child {
  margin-top: 0;
}

.heading-with-excerpt {
  padding-top: 4rem;
  max-width: 26.25rem;
  text-align: center;
}

.heading-with-excerpt__hd {
  margin-bottom: 1.5rem;
}

.pb-section--image-with-header {
  position: relative;
}

.image-with-header__image-wrap {
  height: calc(100vw * 0.5625);
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.image-with-header__image-wrap img {
  bottom: -100%;
  left: 0;
  margin: auto;
  position: absolute;
  top: -100%;
  right: 0;
  width: 100%;
}

.image-with-header__hd {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 95%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.media-dl__hd {
  color: #bdaa76;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 48rem) {
  .media-dl__hd {
    color: #bdaa76;
    font-size: 1.4375rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

@media (min-width: 34rem) {
  .media-dl__items {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    -ms-flex-pack: center;
        justify-content: center;
    overflow: hidden;
    text-align: center;
  }
}

@media (min-width: 75rem) {
  .media-dl__items {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}

.media-dl__items--less-than-four {
  -ms-flex-pack: center;
      justify-content: center;
}

.dl-item {
  margin-bottom: 4rem;
  padding: 0 0.5rem;
  position: relative;
}

@media (min-width: 34rem) {
  .dl-item {
    width: 50%;
  }
}

@media (min-width: 48rem) {
  .dl-item {
    width: 40%;
  }
}

@media (min-width: 75rem) {
  .dl-item {
    width: 25%;
  }
}

.dl-item__content {
  display: block;
  position: relative;
}

.dl-item__hd {
  -ms-flex-align: center;
      align-items: center;
  bottom: 1rem;
  color: #fff;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 1.4375rem;
  left: 1rem;
  letter-spacing: 0.25em;
  margin: auto;
  position: absolute;
  right: 1rem;
  top: 1rem;
  text-align: center;
  text-indent: 0.25em;
  text-transform: uppercase;
  transition: border 175ms ease-in;
  z-index: 2;
}

@media (min-width: 48rem) {
  .dl-item__hd {
    letter-spacing: 0.5em;
    text-indent: 0.5em;
  }
}

.dl-item--has-link:not(.dl-item--no-heading) .dl-item__hd {
  border: 1px solid transparent;
}

body:not(.touch-device) .dl-item__content:hover .dl-item__hd {
  border-color: #fff;
}

.dl-item__content:active .dl-item__hd, .dl-item__content:focus .dl-item__hd {
  border-color: #fff;
}

.dl-item__image-wrap {
  position: relative;
}

.dl-item__image-wrap img {
  width: 100%;
}

.dl-item:not(.dl-item--no-heading) .dl-item__image-wrap:before {
  background-color: rgba(0, 0, 0, 0.3);
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.dl-item__link-container {
  border: 1px solid #bdaa76;
  margin: 1rem auto 0 auto;
  width: 90%;
}

.dl-item__link {
  display: block;
  font-weight: 700;
  padding: 1rem 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

.pb-nav {
  background-color: #fff;
  padding: 2rem 0;
}

.pb-nav__mobile {
  text-align: center;
}

.pb-nav__mobile h3 {
  margin: 0 0 1rem 0;
}

.pb-nav__select {
  width: 90%;
}

@media (min-width: 48rem) {
  .pb-nav__select {
    max-width: 400px;
  }
}

.pb-nav__item {
  display: inline-block;
}

.pb-nav__item:not(:first-child):before {
  background-color: #bdaa76;
  content: '';
  display: inline-block;
  height: 1rem;
  margin: 0 1rem;
  position: relative;
  top: 0.125rem;
  width: 2px;
}

.pb-nav__link {
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.pb-nav__list {
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  padding: 3.0625rem 0;
  white-space: nowrap;
  text-align: center;
}

.sponsors-block {
  padding: 3rem 0;
}

.heading-with-excerpt + .sponsors-block {
  padding-top: 2rem;
}

.sponsors-block + .sponsors-block {
  padding-top: 0;
}

.sponsors-block__hd {
  text-align: center;
}

.sponsors-block__list {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
}

.sponsors-block__item {
  display: inline-block;
  margin: 0.5rem;
  max-width: 120px;
}

.two-col {
  padding: 4rem 0;
}

@media (min-width: 62rem) {
  .two-col__items {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 100%;
  }
}

@media (min-width: 62rem) {
  .two-col__item {
    position: relative;
    width: 45%;
  }
}

@media (min-width: 48rem) {
  .full-width-wysiwyg + .two-col,
  .wysiwyg-with-quote + .two-col {
    padding-top: 0;
  }
}

.two-col + .two-col {
  padding-top: 0;
}

@media (max-width: 61.9375rem) {
  .two-col__item + .two-col__item {
    margin-top: 4rem;
  }
}

.two-col__item--with-icons {
  position: relative;
}

@media (min-width: 62rem) {
  .two-col__item--with-icons {
    padding-left: 100px;
  }
}

.two-col__icon {
  color: #ad9655;
  font-size: 2rem;
  position: absolute;
  height: 50px;
  width: 50px;
}

@media (min-width: 48rem) {
  .two-col__icon {
    font-size: 3rem;
    height: 64px;
    width: 64px;
  }
}

@media (min-width: 62rem) {
  .two-col__icon {
    font-size: 4rem;
    height: 100px;
    left: 0;
    width: 100px;
  }
}

.two-col__hd {
  margin: 0;
  position: relative;
  word-break: normal;
}

.two-col__item--with-icons .two-col__hd {
  left: 50px;
  margin-right: 50px;
}

@media (min-width: 48rem) {
  .two-col__item--with-icons .two-col__hd {
    left: 64px;
    margin-right: 64px;
  }
}

@media (min-width: 62rem) {
  .two-col__item--with-icons .two-col__hd {
    left: 0;
    margin-right: 0;
  }
}

@media (min-width: 48rem) {
  .two-col__content {
    font-size: 1.4375rem;
    letter-spacing: 0.05em;
    line-height: 1.6667;
  }
}

@media (min-width: 48rem) {
  .two-col--with-icons .two-col__content {
    font-size: 1.125rem;
  }
}

.two-col__hd + .two-col__content {
  margin-top: 1rem;
}

.wysiwyg-with-contact {
  padding: 4rem 0;
}

@media (min-width: 48rem) {
  .wysiwyg-with-contact {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

@media (min-width: 48rem) {
  .wysiwyg-with-contact__section {
    width: 35%;
  }
}

@media (min-width: 48rem) {
  .wysiwyg-with-contact__section:first-child {
    width: 55%;
  }
}

.wysiwyg-with-contact__cta-link {
  border: 1px solid #bdaa76;
  display: block;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-section__info + .wysiwyg-with-contact__cta {
  margin-top: 3rem;
}

.wysiwyg-section__hd {
  margin: 0 0 1rem 0;
}

.contact-section__hd {
  padding-top: 0.75rem;
  margin: 0;
}

.wysiwyg-with-quote + .image-with-header {
  margin-top: 2rem;
}

@media (min-width: 75rem) {
  .wysiwyg-with-quote__inner {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    padding: 4rem 0;
  }
}

.wysiwyg-with-quote__content-container {
  padding-top: 2rem;
}

@media (min-width: 75rem) {
  .wysiwyg-with-quote__content-container {
    width: 58.5%;
  }
}

@media (min-width: 48rem) {
  .wysiwyg-with-quote__content-container p {
    font-size: 1.4375rem;
    line-height: 1.9;
  }
}

.wysiwyg-with-quote--on-left .wysiwyg-with-quote__content-container {
  -ms-flex-order: 1;
      order: 1;
}

.wysiwyg-with-quote__quote {
  color: #bdaa76;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 auto;
  width: 95%;
}

@media (min-width: 48rem) {
  .wysiwyg-with-quote__quote {
    font-size: 1.625rem;
    margin: 2rem auto;
    width: 75%;
  }
}

@media (min-width: 75rem) {
  .wysiwyg-with-quote__quote {
    font-size: 2.125rem;
    margin: 0;
    width: 34.5%;
  }
}

.wysiwyg-with-quote__quote blockquote {
  color: inherit;
  margin: 0;
}

@media (max-width: 74.9375rem) {
  .wysiwyg-with-quote__quote blockquote {
    padding: 2rem 0;
  }
}

.wysiwyg-with-quote--on-left .wysiwyg-with-quote__quote {
  -ms-flex-order: 0;
      order: 0;
}

.wysiwyg-with-quote--on-right .wysiwyg-with-quote__quote {
  overflow: hidden;
}

.wysiwyg-with-quote--on-right .wysiwyg-with-quote__quote blockquote {
  float: right;
}

.wysiwyg-with-quote__contact-item {
  max-width: 480px;
}

.social-media-accounts__list {
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  list-style: none;
  margin-bottom: 3rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media (min-width: 48rem) {
  .social-media-accounts__list {
    margin-bottom: 1rem;
  }
}

.social-media-accounts__item {
  background-color: #d8d8d8;
  display: inline-block;
  padding: 0;
  height: 40px;
  position: relative;
  transition: background-color ease 200ms;
  width: 40px;
}

.social-media-accounts__item:hover, .social-media-accounts__item:active, .social-media-accounts__item:focus {
  background-color: #b7a368;
}

.social-media-accounts__link {
  -ms-flex-align: center;
      align-items: center;
  bottom: 0;
  color: #fff;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  font-size: 1.25rem;
  -ms-flex-pack: center;
      justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  margin: auto;
  text-align: center;
  text-decoration: none;
}

.facebook-cta {
  text-align: center;
  padding: 2rem 0;
}

@media (min-width: 48rem) {
  .facebook-cta__inner {
    padding: 2rem 0;
  }
}

.facebook-cta__content {
  display: inline;
  letter-spacing: 0.1em;
}

@media (min-width: 48rem) {
  .facebook-cta__content {
    font-size: 2.125rem;
  }
}

.facebook-cta__icon {
  border: 1px solid #b7a368;
  display: inline;
  margin-right: 1rem;
  padding: 0.5rem;
  transition: border-color 175ms ease-in;
}

@media (min-width: 48rem) {
  .facebook-cta__icon {
    font-size: 2.25rem;
    padding: 1rem 1.5rem;
  }
}

.facebook-cta__link:hover .facebook-cta__icon {
  border-color: #fff;
}

.facebook-cta__link {
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  display: block;
  border: 1px solid #bdaa76;
  color: #b7a368;
  padding: 2rem 0;
  text-decoration: none;
  transition: all 175ms ease-in;
}

@media (min-width: 48rem) {
  .facebook-cta__link {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
  }
}

.facebook-cta__link:hover, .facebook-cta__link:active, .facebook-cta__link:focus {
  color: #fff;
  background-color: #b7a368;
}

.facebook-cta__name {
  font-weight: 700;
}

.social-media-block {
  background-color: #f4f4f4;
}

.social-media-block__hd {
  margin: 0;
  padding-top: 2rem;
  position: relative;
  text-align: center;
}

@media (min-width: 48rem) {
  .social-media-block__hd {
    padding: 4rem 0 2rem 0;
  }
}

.social-media-block__hd:after {
  background-color: #bdaa76;
  height: 2rem;
  margin: 1rem auto;
}

@media (min-width: 48rem) {
  .social-media-block__hd:after {
    height: 4rem;
  }
}

.instagram {
  -ms-flex-align: start;
      align-items: flex-start;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  overflow: hidden;
}

.instagram .icon-instagram {
  color: #818a91;
}

.instagram__icon--inner {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.instagram__icon-outer {
  font-size: 3.75rem;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  opacity: 0.6;
  z-index: 10;
}

.instagram__item {
  margin: 8px 0;
  position: relative;
}

@media (min-width: 34rem) {
  .instagram__item {
    width: calc(50% - 8px);
  }
}

@media (min-width: 48rem) {
  .instagram__item {
    width: calc(33% - 8px);
  }
}

.gram-item__meta {
  overflow: hidden;
}

.gram-item__tags {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  height: 90%;
  position: relative;
  text-align: left;
  width: 100%;
}

.gram-item__account {
  display: inline-block;
  float: left;
  text-decoration: underline;
}

.gram-item__time {
  display: inline-block;
  float: right;
}

.gram-item__image {
  position: relative;
  z-index: 1;
}

.gram-item__link {
  color: #959595;
}

.gram-item__overlay {
  background-color: #e2e2e2;
  bottom: 0;
  left: 0;
  opacity: 0;
  margin: auto;
  padding: 2rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 175ms ease-in, z-index 175ms ease-out;
  z-index: -1;
}

@media (min-width: 34rem) {
  .gram-item__overlay {
    font-size: 0.75rem;
  }
}

@media (min-width: 62rem) {
  .gram-item__overlay {
    font-size: 1rem;
  }
}

body:not(.touch-device) .instagram__item:hover .gram-item__overlay,
.gram-item__overlay .instagram__item:focus {
  opacity: 1;
  z-index: 10;
}

.testimonial-slider {
  background: #f4f4f4 top center no-repeat;
  background-size: cover;
  padding: 4rem 0;
}

@media (min-width: 62rem) {
  .testimonial-slider {
    padding: 8rem 0;
  }
}

.testimonial-slider__content {
  color: #bdaa76;
}

.testimonial-slider__item {
  outline: none;
  text-align: center;
}

.testimonial-slider__item-attribution {
  text-transform: uppercase;
}

.testimonial-slider__item-content {
  margin: 0 auto;
  width: 90%;
}

@media (min-width: 62rem) {
  .testimonial-slider__item-content {
    width: 75%;
  }
}

@media (min-width: 75rem) {
  .testimonial-slider__item-content {
    width: 50%;
  }
}

.testimonial-slider__item-text {
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.6;
}

@media (min-width: 48rem) {
  .testimonial-slider__item-text {
    font-size: 1.875rem;
  }
}

@media (min-width: 62rem) {
  .testimonial-slider__item-text {
    font-size: 2.5rem;
  }
}

.testimonial-slider__item-text:after {
  background-color: #bdaa76;
  content: '';
  display: block;
  margin: 2rem auto;
  height: 3px;
  width: 50px;
}

.slick-dots {
  bottom: -2rem;
  position: relative;
  text-align: center;
}

@media (min-width: 62rem) {
  .slick-dots {
    bottom: -6rem;
  }
}

.slick-dots li {
  background-color: #fff;
  border: 4px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  height: 1rem;
  width: 1rem;
  text-indent: -9999px;
}

.slick-dots li:not(:first-child) {
  margin-left: 1rem;
}

.slick-dots li.slick-active {
  background-color: #bdaa76;
}

.tickets-button {
  margin: 0;
}

@media (max-width: 47.9375rem) {
  .js--nav-active .tickets-button {
    display: block;
  }
}

.section__heading-nav .tickets-button {
  display: none;
  -ms-flex-order: 0;
      order: 0;
}

.js--nav-active .section__heading-nav .tickets-button {
  display: block;
}

@media (min-width: 48rem) {
  .section__heading-nav .tickets-button {
    display: block;
  }
}

@media (min-width: 62rem) {
  .section__heading-nav .tickets-button {
    display: block;
  }
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
  .section__heading-nav .tickets-button {
    text-align: center;
    width: auto;
  }
}

@media (min-width: 62rem) {
  .section__heading-nav .tickets-button {
    -ms-flex-order: 1;
        order: 1;
  }
}

.page-template-template-lake-cam .site-main .tickets-button {
  margin-top: 4rem;
  text-align: center;
}

.tickets-button__link {
  display: inline-block;
}

@media (max-width: 85.3125rem) {
  .section__heading-nav .tickets-button__link {
    padding: 0.5rem;
    margin-left: 0.5rem;
  }
}

.page-template-template-lake-cam .site-main .tickets-button__link {
  display: inline-block;
  padding: 0.75rem 4rem;
}

@media (max-width: 47.9375rem) {
  .js--nav-active .tickets-button__link {
    background-color: #bdaa76;
    border: 0 none;
    color: #373a3c;
    font-weight: 600;
    display: block;
    margin: 0;
  }
}

.tour-content__section .tickets-button__link {
  margin-top: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.tour-image img {
  width: 100%;
}

.tour-map {
  background: url("../img/glensheen-map-background.jpg") center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.tour-map__inner {
  display: block;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  position: relative;
}

.tour-map__inner:after {
  background: url("../img/glensheen-map.svg") top right no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  float: right;
  position: absolute;
  left: -18vw;
  margin: auto;
  right: 0;
  top: -18vw;
  width: 150vw;
  z-index: 1;
}

@media (min-width: 48rem) {
  .tour-map__inner:after {
    left: auto;
    position: absolute;
    top: 0;
    width: 65%;
  }
}

.tour-map__button-link {
  background-color: #eceeef;
  margin-top: 2rem;
  padding-left: 4rem;
  padding-right: 4rem;
  position: relative;
  z-index: 10;
}

.tour-map__content {
  height: auto;
  padding: 54vw 0 2rem 0;
  position: relative;
  width: 100%;
}

@media (min-width: 48rem) {
  .tour-map__content {
    height: auto;
    min-height: calc(100vw * 0.4);
    padding: 6rem 0;
    position: relative;
    width: 40%;
  }
}

.tour-map__hd {
  margin: 0 0 1rem 0;
}

@media (max-width: 61.9375rem) {
  .tour-prices {
    margin-top: 3rem;
  }
}

.tour-prices__hd {
  margin: 0 0 1rem 0;
}

.tour-prices__item {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  font-weight: 700;
  overflow: hidden;
  padding: 1rem 0;
}

.price-item__label {
  color: #7b7b7b;
  display: block;
}

.price-item__label:after {
  content: ':';
  display: inline;
}

.price-item__details {
  color: #545454;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  margin-top: 0.5rem;
  width: 100%;
}

.price-item__price {
  color: #bdaa76;
  text-transform: uppercase;
  padding-left: 1rem;
}

.price-item__pricing {
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
}

.tour-prices__item + .tour-prices__item {
  border-top: 1px solid #bdaa76;
}

.tour-quote {
  color: #bdaa76;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 3rem 0;
  vertical-align: middle;
}

@media (min-width: 48rem) {
  .tour-quote {
    font-size: 2.125rem;
    padding: 4rem 0;
  }
}

.tour-quote p {
  color: inherit;
  margin: 0;
}

.tour-quote__inner {
  margin: 0 auto;
  width: 80%;
}

@media (min-width: 48rem) {
  .tour-quote__inner {
    max-width: 760px;
    width: 90%;
  }
}

.single-gallery .site-main__inner {
  padding-bottom: 2rem;
}

@media (min-width: 48rem) {
  .single-gallery .site-main__inner {
    padding: 4rem 0;
  }
}

.gallery__title {
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
  text-align: center;
  text-indent: 0.25em;
}

@media (min-width: 48rem) {
  .gallery__title {
    font-size: 5rem;
  }
}

@media (min-width: 32.5rem) {
  .single .book {
    padding-left: 10;
    padding-right: 10;
    width: 33.33333%;
    float: left;
    margin: 2em 0;
  }
}

.tour-details__hd {
  margin: 0 0 1rem 0;
}

.tour__content {
  padding: 2rem 0;
}

@media (min-width: 62rem) {
  .tour__content {
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 4rem 0;
  }
}

@media (min-width: 62rem) {
  .tour-content__section--prices {
    width: 25%;
  }
}

@media (min-width: 62rem) {
  .tour-content__section--details {
    width: 65%;
  }
}

@media (max-width: 47.9375rem) {
  .page-template-template-contact .page__content {
    padding: 2rem 0;
  }
}

.page__content--default {
  padding: 4rem 0;
}

.page-template-template-post-type-repeater .page__content {
  padding: 3rem 0;
}

@media (min-width: 48rem) {
  .page-template-template-post-type-repeater .page__content {
    padding: 6rem 0;
  }
}

.post-type-repeater__content {
  color: #545454;
  max-width: 62.5rem;
  text-align: center;
  width: 90%;
}

.post-type-repeater__content:first-child {
  margin: 0 auto 3rem auto;
}

@media (min-width: 48rem) {
  .post-type-repeater__content:first-child {
    margin-bottom: 8.25rem;
  }
}

.post-type-repeater__content:not(:first-child) {
  margin: 3rem auto 0 auto;
}

@media (min-width: 48rem) {
  .post-type-repeater__content:not(:first-child) {
    margin-top: 4.6875rem;
  }
}

.page-template-template-lake-cam .banner {
  max-height: 70vh;
}

.page-template-template-lake-cam .page__content {
  margin: 0 auto;
  padding: 2rem 0 4rem 0;
  width: calc(80vw + 2rem);
}

@media (min-width: 48rem) {
  .page-template-template-lake-cam .page__content {
    max-width: 1366px;
    width: calc((100vw * 0.4677) + 2rem);
  }
}

.page__hd--media {
  font-size: 2.25rem;
  letter-spacing: 0.5em;
  text-align: center;
  text-indent: 0.5em;
}

@media (min-width: 48rem) {
  .page__hd--media {
    font-size: 5rem;
  }
}

.page-template-template-media .content-wrap {
  padding-top: 2rem;
}

@media (min-width: 48rem) {
  .page-template-template-media .content-wrap {
    padding-top: 4rem;
  }
}

.page-template-template-media .page__content {
  padding-bottom: 2rem;
}

@media (min-width: 48rem) {
  .page-template-template-media .page__content {
    padding: auto;
  }
}

/*# sourceMappingURL=master.css.map */
