/* ----------------------------------------------------------------------------
= Main import - compiles to /css/style.css
= Currently using Bourbon latest from CodeKit
----------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Heebo:100,300,400,700,900");
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/* ----------------------------------------------------------------------------
= Reset using 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.
 */
/**
 * Address styling not present in IE 8/9.
 */
mark {
  color: #000;
  background: #ff0;
}

/**
 * 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 {
  position: relative;
  font-size: 75%;
  line-height: 0;
  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 {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * 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 {
  margin: 0;
  /* 3 */
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * 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'] {
  cursor: pointer;
  /* 3 */
  -webkit-appearance: button;
  /* 2 */
}

/**
 * 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 {
  padding: 0;
  border: 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-box-sizing: content-box;
  /* 2 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * 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 {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

/**
 * 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 {
  padding: 0;
  /* 2 */
  border: 0;
  /* 1 */
}

/**
 * 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-spacing: 0;
  border-collapse: collapse;
}

/* 
 * -- We already set these things per project.
 *
 */
/*
	Note: The "mobile-nav" breakpoint is only used to set when the regular 
	nav goes away and the mobile nav shows up.
	It can/might be the same as another breakpoint but 
	is just here to help you get started. 
*/
/*
	How To Use:
	@include media($mobile){
	}
*/
:root {
  font-size: 16px;
}

@media screen and (min-width: 700px) {
  :root {
    font-size: calc( 16px + (20 - 16) * ( (100vw - 700px) / (1000 - 700) ));
  }
}

@media screen and (min-width: 1000px) {
  :root {
    font-size: 20px;
  }
}

/* ----------------------------------------------------------------------------
= SETUP FILE includes fonts, colors, media query values, custom mixins, utility classes
= Last updated July 2015
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= SELECTOR SORTING
= *) SASS Variable, Mixin, Include, Extend, Clearfix
= *) Positioning, Display & Box Model, Overflow, Floats
= *) Flexbox rules (if used)
= *) Sizing (Width and Height)
= *) Padding, Margin
= *) Colors, Borders, Backgrounds, Opacity (No Text Colors)
= *) Text Related Items (Including Text Colors)
= *) Enhancements, Animations, others
= *) Psuedo Elements
= *) Any overrides needed to reset included rules from mixins
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= DEVELOPER NOTES
= *) using Bourbon latest (via Codekit)
= *) Sass set to compile extended, set to compressed before launch
= *) set to compile SASS with libsass (via Codekit)
= *) using FontAwesome Font with CSS link (in head_extra view)
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'name';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=color swatches - name like $color-colorname: #000000; // Example Name
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=media queries = Located in _grid-settings.scss
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Bourbon
=reference default mixin calls at http://bourbon.io/docs/
----------------------------------------------------------------------------- */
.ir {
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  white-space: nowrap;
  text-indent: 100%;
  direction: ltr;
}

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden, .hide {
  display: none;
  visibility: hidden;
}

.clearfix {
  zoom: 1;
}

.clearfix:before, .clearfix:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

@media screen and (max-width: 750px) {
  .hide_mobile {
    display: none;
  }
}

.show_mobile {
  display: none;
}

@media screen and (max-width: 750px) {
  .show_mobile {
    display: block;
  }
}

.visuallyhidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.invisible {
  visibility: hidden;
}

.hide, .hidden {
  display: none;
}

* {
  letter-spacing: 0.0em;
}

.header-base, h1, h2, h3, h4, h5, h6, .description_wrapper:before, .event_showings .show-all-showings, .sitemap .column > ul > li > a {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin: 0 0 10px;
  font-weight: inherit;
  line-height: 1;
  font-family: Heebo, sans-serif;
  font-weight: 900;
  color: #22333B;
}

.textarea p + h1, .textarea p + h2, .textarea p + h3, .textarea p + h4, .textarea p + h5, .textarea p + h6 {
  margin-top: 30px;
}

h1, .h1, .social_feed_header h2 {
  font-size: 3.1573345183rem;
}

.textarea h1 + h4, .cms h1 + h4, .textarea .h1 + h4, .textarea .social_feed_header h2 + h4, .social_feed_header .textarea h2 + h4, .cms .h1 + h4, .cms .social_feed_header h2 + h4, .social_feed_header .cms h2 + h4 {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
  font-size: 32px;
  color: #938581;
  letter-spacing: 0;
  line-height: 32px;
  padding-bottom: 23px;
  border-bottom: 4px solid #B32D18;
  margin-bottom: 50px;
}

.textarea h1 + h4 + hr, .cms h1 + h4 + hr, .textarea .h1 + h4 + hr, .textarea .social_feed_header h2 + h4 + hr, .social_feed_header .textarea h2 + h4 + hr, .cms .h1 + h4 + hr, .cms .social_feed_header h2 + h4 + hr, .social_feed_header .cms h2 + h4 + hr {
  display: none;
}

.textarea h1 + hr, .cms h1 + hr, .textarea .h1 + hr, .textarea .social_feed_header h2 + hr, .social_feed_header .textarea h2 + hr, .cms .h1 + hr, .cms .social_feed_header h2 + hr, .social_feed_header .cms h2 + hr {
  margin-top: 5px;
  margin-bottom: 45px;
  background-color: #B32D18;
}

.team_list h1, .team_list .h1, .team_list .social_feed_header h2, .social_feed_header .team_list h2 {
  padding-bottom: 15px;
  border-bottom: 4px solid #B32D18;
}

h2, .h2, .description_wrapper:before {
  font-size: 2.368593037rem;
}

h2.long_title, .h2.long_title, .long_title.description_wrapper:before {
  font-size: 1.776889rem;
}

h3, .h3 {
  font-size: 1.776889rem;
}

h4, .h4, .spotlight h3.title,
.concierge h3.title,
.news_list h3.title,
.contest_list h3.title,
.job_list h3.title,
.seating_charts h3.title,
.gallery-listing h3.title {
  font-size: 1.333rem;
}

h5, .h5, .event_showings .show-all-showings {
  font-size: 1rem;
}

h6, .h6 {
  font-size: 0.7501875469rem;
}

.small_paragraph, .small p {
  font-size: 0.79rem;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.p-base, p, .p, address, .address, .cms ul li, .textarea ul li, .spotlight_text ul li, .faq ul li, .link .description ul li, ol > li, .homepage_promos .promo_wrapper .promo .promo_text .promo_tagline {
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 300;
  font-family: Heebo, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

p, .p {
  margin: 0 0 20px;
}

p.lead, .p.lead {
  font-size: 1.266rem;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

p strong, .p strong {
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  p, .p {
    font-size: 16px;
  }
}

address, .address {
  margin: 0 0 20px;
  font-style: normal;
  font-weight: 700;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li, ol li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cms ul, .textarea ul, .spotlight_text ul, .faq ul, .link .description ul {
  margin-bottom: 40px;
  margin-left: 20px;
}

.cms ul li, .textarea ul li, .spotlight_text ul li, .faq ul li, .link .description ul li {
  padding: 0 0 0px 40px;
  margin-bottom: 16px;
}

.cms ul li:before, .textarea ul li:before, .spotlight_text ul li:before, .faq ul li:before, .link .description ul li:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #6DD3CE;
}

@media screen and (max-width: 750px) {
  .cms ul li:before, .textarea ul li:before, .spotlight_text ul li:before, .faq ul li:before, .link .description ul li:before {
    top: 6px;
  }
}

.cms ul li ul, .textarea ul li ul, .spotlight_text ul li ul, .faq ul li ul, .link .description ul li ul {
  margin-top: 10px;
}

@media screen and (min-width: 871px) {
  .cms ul li, .textarea ul li, .spotlight_text ul li, .faq ul li, .link .description ul li {
    font-size: 18px;
  }
}

ol {
  margin-bottom: 40px;
  margin-left: 20px;
}

ol > li {
  position: relative;
  padding-left: 40px;
  padding-bottom: 16px;
  counter-increment: li-counter;
}

ol > li:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0px;
  width: 25px;
  height: 25px;
  font-weight: 800;
  font-size: 1rem;
  content: counter(li-counter) ".";
}

@media screen and (max-width: 750px) {
  ol > li:before {
    top: -4px;
    left: 1px;
  }
}

@media screen and (min-width: 871px) {
  ol > li {
    font-size: 18px;
  }
}

a {
  border: none;
  color: #22333B;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.textarea p a, .cms p a, .cms li a, .textarea li a, .m-eventDetailList__item a {
  font-weight: 400;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: #2274A5;
}

.textarea p a:hover, .cms p a:hover, .cms li a:hover, .textarea li a:hover, .m-eventDetailList__item a:hover {
  color: #2274A5;
  text-decoration: none;
}

hr {
  display: block;
  height: 4px;
  background-color: #E5E5E5;
  border: 0;
  margin-top: 45px;
  margin-bottom: 45px;
  clear: both;
}

table {
  position: relative;
  margin: 0 0 15px;
}

table tr {
  font-size: 12px;
  color: black;
}

table tr td {
  border: none;
  margin-bottom: 0;
  padding: 5px;
}

/* ----------------------------------------------------------------------------
= Layout, Body and Containers
----------------------------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #333;
  font-family: Heebo, sans-serif;
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 1180px) {
  body.is-locked {
    overflow: hidden;
  }
}

#container {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: #F3F3F3;
  overflow: hidden;
}

#layout {
  position: relative;
  margin: 0 auto;
  z-index: 4;
}

.sunbeams {
  -webkit-transition: transform 200ms linear;
  -moz-transition: transform 200ms linear;
  -o-transition: transform 200ms linear;
  transition: transform 200ms linear;
  background: url(../images/bg_sunbeams.png) no-repeat;
  background-position: top right;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 2;
}

@media screen and (min-width: 871px) {
  .sunbeams.intro_visible {
    position: fixed;
  }
  .sunbeams.intro_visible.unlock {
    position: absolute;
    top: calc(100vh + 300px);
  }
}

#content {
  position: relative;
  min-height: 410px;
  margin: 0 auto;
  padding: 0;
  padding: 32px 0px 0;
  clear: both;
  z-index: 4;
}

.home #content {
  padding: 0;
}

@media screen and (max-width: 870px) {
  #content {
    padding-top: 10px;
  }
}

.column {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
}

.one_sidebar_right {
  width: 100%;
  max-width: 1270px;
  padding: 0 10px;
  margin: 0px auto;
  margin-bottom: 80px;
}

.one_sidebar_right #column_1 {
  width: 100%;
  position: relative;
}

.one_sidebar_right #column_2 {
  position: absolute;
  right: 10px;
  top: 20px;
  background: #222;
  width: 300px;
}

.one_sidebar_right .leftColumn {
  width: calc(100% - 225px);
  background: #fff;
  float: left;
  max-width: 1020px;
  padding: 70px 140px 30px 80px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1080px) {
  .one_sidebar_right .leftColumn {
    padding-left: 30px;
  }
}

@media screen and (max-width: 870px) {
  .one_sidebar_right .leftColumn {
    width: 100%;
    padding: 30px;
  }
}

.one_sidebar_right .rightBreakout {
  position: absolute;
  right: 30px;
  top: 0px;
  width: 290px;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

.one_sidebar_right .rightBreakout:before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0px;
  visibility: visible;
  border-right: 290px solid transparent;
  border-top: 20px solid transparent;
  border-bottom: 20px solid #fff;
}

@media screen and (max-width: 870px) {
  .one_sidebar_right .rightBreakout {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-bottom: 40px;
    box-shadow: none;
    margin-bottom: 20px;
  }
  .one_sidebar_right .rightBreakout:before {
    display: none;
  }
}

.one_sidebar_right.has_branding .rightBreakout {
  top: -60px;
}

@media screen and (max-width: 870px) {
  .one_sidebar_right.has_branding .rightBreakout {
    top: auto;
  }
}

.one_sidebar_right.has_branding .leftColumn {
  padding-top: 50px;
}

@media screen and (max-width: 750px) {
  .one_sidebar_right .leftColumn {
    padding: 20px;
  }
}

.full {
  padding-bottom: 35px;
  padding: 0 10px;
  max-width: 1270px;
  margin: auto;
  margin-bottom: 80px;
}

.full .full_column {
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
  padding: 60px 20px 60px;
  padding-bottom: 60px;
  margin: auto;
}

.full .full_column.has_slideshow {
  padding-top: 25px;
}

@media screen and (max-width: 870px) {
  .full .full_column {
    padding: 20px;
  }
}

.full.event_listing_page .full_column {
  background: none;
  box-shadow: none;
  padding: 0;
  padding-top: 41px;
  max-width: 1200px;
}

.home .full {
  max-width: none;
  padding: 0;
}

.full > #branding {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

/* ----------------------------------------------------------------------------
= Header basics
----------------------------------------------------------------------------- */
header {
  zoom: 1;
  background: #ffffff;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 10;
}

header:before, header:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

header:after {
  clear: both;
}

header .header_inner {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 1230px;
  padding: 0px 20px;
  height: 180px;
}

header .logo {
  position: relative;
  float: left;
  width: 267px;
  height: 134px;
  margin-top: 20px;
}

header .logo a, header .logo span {
  zoom: 1;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
}

header .logo a:before, header .logo a:after, header .logo span:before, header .logo span:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

header .logo a:after, header .logo span:after {
  clear: both;
}

header .logo a:hover {
  zoom: 1;
  opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity=60);
}

header .logo:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  width: 589px;
  height: 158px;
  background: url(../images/bg_header.png) center left no-repeat;
  background-size: contain;
  z-index: 1;
}

@media screen and (max-width: 1180px) {
  header .logo:before {
    width: 287px;
    height: 77px;
  }
}

header .logo svg {
  width: 267px;
  height: 134px;
}

@media screen and (max-width: 1180px) {
  header .logo {
    width: 147px;
    height: 75px;
    margin-top: 13px;
  }
  header .logo svg {
    width: 147px;
    height: 75px;
  }
}

@media screen and (max-width: 1180px) {
  header {
    zoom: 1;
    z-index: 900;
    min-height: 50px;
  }
  header:before, header:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020';
  }
  header:after {
    clear: both;
  }
  header .header_inner {
    height: 100px;
  }
}

/* ----------------------------------------------------------------------------
= Header toolbar (if used)
----------------------------------------------------------------------------- */
.toolbar ul {
  zoom: 1;
  float: right;
  background: rgba(0, 0, 0, 0.04);
  min-height: 30px;
  padding: 0px 5px;
}

.toolbar ul:before, .toolbar ul:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.toolbar ul:after {
  clear: both;
}

.toolbar ul li {
  float: left;
}

.toolbar ul li a {
  font-weight: 400;
  font-size: 13px;
  color: #4D5057;
  padding: 6px 15px;
  min-height: 30px;
  display: block;
}

.toolbar ul li a:hover {
  color: white;
  background: #22333B;
}

@media screen and (max-width: 1180px) {
  .toolbar {
    display: none;
  }
}

/* ----------------------------------------------------------------------------
= Navigations
----------------------------------------------------------------------------- */
.main_nav {
  position: relative;
  z-index: 500;
  width: calc(100% - 287px);
  float: right;
  height: auto;
  margin: 80px 0 0;
  padding: 0;
}

@media screen and (max-width: 1180px) {
  .main_nav {
    display: none;
  }
}

.main_nav ul {
  zoom: 1;
  position: static;
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  text-align: left;
  float: right;
}

.main_nav ul:before, .main_nav ul:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.main_nav ul:after {
  clear: both;
}

.main_nav ul li {
  position: static;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
}

.main_nav ul li.has-sub:hover .nav_sub {
  display: block;
}

.main_nav a, .main_nav a:link, .main_nav a:visited {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 19px 42px;
  color: #22333B;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.main_nav a.gh_redirect:after, .main_nav a.gh_page_redirect:after, .main_nav a:link.gh_redirect:after, .main_nav a:link.gh_page_redirect:after, .main_nav a:visited.gh_redirect:after, .main_nav a:visited.gh_page_redirect:after {
  content: '\f08e';
  font-family: FontAwesome;
  vertical-align: middle;
  margin-left: 9px;
  display: inline-block;
  color: inherit;
}

.main_nav > ul > li.not_hovered > a {
  zoom: 1;
  opacity: 0.2;
  -moz-opacity: 0.2;
  filter: alpha(opacity=20);
}

.main_nav > ul > li:hover > a, .main_nav > ul > li.active > a {
  text-decoration: underline;
  text-decoration-skip: ink;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-color: #979797;
}

.main_nav > ul > li:hover.has-sub > a:before, .main_nav > ul > li.active.has-sub > a:before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #B32D18;
}

.main_nav > ul > li > a.active {
  text-decoration: underline;
  text-decoration-skip: ink;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-color: #979797;
}

.main_nav > ul > li > a.active:before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #B32D18;
}

.main_nav ul .nav_sub {
  position: absolute;
  display: none;
  z-index: 9000;
  top: 100%;
  right: 0px;
  width: 100vw;
  max-width: 1190px;
  margin: auto;
  padding: 40px;
  line-height: 26px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
}

.main_nav ul .nav_sub:before {
  content: '';
  position: absolute;
  top: 0px;
  left: -1px;
  width: calc(100% + 2px);
  height: 7px;
  visibility: visible;
  display: block;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjMiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#00000000',GradientType=0 );
  /* IE6-8 */
}

.main_nav ul .nav_sub > ul > li {
  margin-bottom: 20px;
  border-top: 4px solid #DCDDDF;
  padding-top: 20px;
  padding-right: 10px;
}

.main_nav ul .nav_sub > ul > li:nth-child(4n+1) {
  clear: left;
}

.main_nav ul .nav_sub > ul > li:nth-child(1), .main_nav ul .nav_sub > ul > li:nth-child(2), .main_nav ul .nav_sub > ul > li:nth-child(3), .main_nav ul .nav_sub > ul > li:nth-child(4) {
  border: none;
  padding-top: 0px;
}

.main_nav ul ul {
  float: left;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  border-top: none;
  background: none;
}

.main_nav ul ul li {
  float: none;
  height: auto;
  margin: 0;
  padding: 1px 0;
  list-style-type: none;
  list-style-image: none;
  border-right: none;
  border-left: none;
  cursor: pointer;
  text-align: left;
}

.main_nav ul ul li:first-child {
  display: block;
  border-top: none;
}

.main_nav ul ul li a, .main_nav ul ul li a:link, .main_nav ul ul li a:visited {
  display: block;
  height: auto;
  margin: 0;
  padding: 6px 0;
  color: #fff;
  background: none;
  text-shadow: none;
  font-size: 12px;
  line-height: 120%;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-transform: none;
  font-weight: 700;
  font-size: 16px;
  color: #22333B;
  letter-spacing: 0;
}

.main_nav ul ul li a.active, .main_nav ul ul li a:link.active, .main_nav ul ul li a:visited.active {
  text-decoration: underline;
  text-decoration-skip: ink;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-color: #1B262B;
}

.main_nav ul ul li:hover > a {
  text-decoration: underline;
  text-decoration-skip: ink;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-color: #1B262B;
}

.main_nav ul ul > li {
  float: left;
  width: 25%;
}

.main_nav ul ul.level_3 li {
  width: 100%;
}

.main_nav ul ul.level_3 li a {
  font-weight: 300;
  font-size: 14px;
  color: #22333B;
  letter-spacing: 0;
}

.main_nav ul ul.level_3 li a:hover, .main_nav ul ul.level_3 li a.active {
  color: #B32D18;
  text-decoration: none;
}

.main_nav .toolbar {
  display: none;
}

/* ----------------------------------------------------------------------------
= Mobile Navigation
----------------------------------------------------------------------------- */
#nav-toggle {
  position: absolute;
  display: none;
  z-index: 1500;
  top: 35px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding-top: 22px;
}

@media screen and (max-width: 1180px) {
  #nav-toggle {
    display: block;
  }
}

#nav-toggle span {
  position: absolute;
  display: block;
  left: 0;
  width: 40px;
  height: 4px;
  margin-top: 0;
  background: #22333B;
  content: '';
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  /* IE 9 */
  transform: rotate(0deg);
}

#nav-toggle span.top {
  top: 0;
}

#nav-toggle span.bottom {
  top: 10px;
}

#nav-toggle .text {
  font-weight: 400;
  font-size: 11px;
  color: #22333B;
  text-align: center;
  width: 100%;
  margin-top: 0px;
}

#nav-toggle:hover span {
  background: #B32D18;
}

#nav-toggle.active span {
  background: #B32D18;
}

#nav-toggle.active span.top {
  transform: rotate(45deg);
}

#nav-toggle.active span.bottom {
  transform: rotate(-45deg);
  top: 0px;
}

@media screen and (max-width: 1180px) {
  .nav_wrapper.is-opened {
    position: absolute;
    position: fixed;
    overflow: scroll;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
  }
}

.mobile_nav {
  position: absolute;
  display: none;
  z-index: 500;
  top: 100px;
  right: 0;
  max-width: 507px;
  min-height: calc(100vh - 100px);
  width: 100%;
  margin: 0 0 0;
  padding: 0px 0px 250px;
  zoom: 1;
  background: #fff;
}

.mobile_nav:before, .mobile_nav:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.mobile_nav:after {
  clear: both;
}

.mobile_nav:before {
  content: '';
  position: absolute;
  top: -100px;
  right: 0px;
  width: 100%;
  max-width: 507px;
  height: 100px;
  background: #fff;
}

.mobile_nav ul {
  position: relative;
  display: block;
  float: left;
  clear: left;
  width: 100%;
  margin: 0;
  padding: 0 0px;
  text-align: left;
}

.mobile_nav ul.navigation {
  padding: 0 20px;
}

.mobile_nav ul li {
  position: relative;
  display: block;
  display: block;
  float: left;
  clear: left;
  width: 100%;
  margin: 0;
  padding: 0;
}

.mobile_nav ul li.page_1 {
  display: none;
}

.mobile_nav ul li.has-sub > a {
  display: inline-block;
  width: auto;
}

.mobile_nav ul li.has-sub > a:hover {
  text-decoration: underline;
}

.mobile_nav ul li.has-sub .second-level-toggle {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: absolute;
  top: 40px;
  right: 10px;
  display: inline-block;
  padding: 0px 10px;
  line-height: inherit;
  font-size: inherit;
  cursor: pointer;
}

.mobile_nav ul li.has-sub .second-level-toggle:before {
  content: '';
  color: #B32D18;
  visibility: visible;
  border-top: 10px solid #938581;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  display: block;
}

.mobile_nav ul li.has-sub .second-level-toggle:hover:before {
  border-top-color: #B32D18;
}

.mobile_nav ul li.has-sub .second-level-toggle.is-active:before {
  border-top-color: #B32D18;
  transform: rotate(180deg);
}

.mobile_nav ul li.has-sub .has-third-level .third-level-toggle {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  display: inline-block;
  padding: 0px 10px;
  line-height: inherit;
  font-size: inherit;
  cursor: pointer;
}

.mobile_nav ul li.has-sub .has-third-level .third-level-toggle:before {
  content: '+';
  color: #B32D18;
  visibility: visible;
  font-size: 30px;
  line-height: inherit;
  font-size: inherit;
}

.mobile_nav ul li.has-sub .has-third-level .third-level-toggle:hover:before {
  color: #22333B;
}

.mobile_nav ul li.has-sub .has-third-level .third-level-toggle.is-active:before {
  content: '-';
  color: #22333B;
}

.mobile_nav ul li.has-sub.is-opened {
  border-bottom-color: #B32D18;
}

.mobile_nav ul li.has-sub.is-opened .nav_sub {
  display: block;
}

.mobile_nav > ul > li {
  border-bottom: 2px solid #E5E5E5;
  padding: 30px 0px 10px;
  font-size: 20px;
}

.mobile_nav > ul > li > a {
  display: block;
  float: left;
  clear: left;
  width: 100%;
  margin: 0;
  padding: 0px 10px 0px;
  color: #22333B;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  color: #22333B;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-align: left;
}

.mobile_nav > ul > li > a.active {
  text-decoration: underline;
}

.mobile_nav > ul > li.not_hovered > a {
  zoom: 1;
  opacity: 0.2;
  -moz-opacity: 0.2;
  filter: alpha(opacity=20);
}

.mobile_nav .hover a {
  color: #22333B;
}

.mobile_nav .toolbar {
  zoom: 1;
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: block;
  background: url(../images/cobb_building.jpg) center no-repeat;
  background-size: cover;
  clear: both;
  width: 100%;
  max-width: 507px;
}

.mobile_nav .toolbar:before, .mobile_nav .toolbar:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.mobile_nav .toolbar:after {
  clear: both;
}

.mobile_nav .toolbar:before {
  position: absolute;
  top: -20px;
  right: 0px;
  width: 100%;
  height: 20px;
  visibility: visible;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijg4JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 88%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 88%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 88%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  /* IE6-8 */
}

.mobile_nav .toolbar ul {
  text-align: center;
}

.mobile_nav .toolbar li {
  display: inline-block;
  clear: none;
  float: none;
  width: auto;
}

.mobile_nav .toolbar li a {
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0;
  padding: 50px 10px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.mobile_nav .toolbar li a:hover, .mobile_nav .toolbar li a.active {
  background: rgba(179, 45, 24, 0.8);
}

@media screen and (max-width: 750px) {
  .mobile_nav .toolbar li {
    width: 100%;
  }
  .mobile_nav .toolbar li a {
    padding: 10px;
  }
}

.mobile_nav ul .nav_sub {
  display: none;
  float: left;
  width: 100%;
  padding-left: 20px;
  margin-top: 10px;
}

.mobile_nav ul .nav_sub li {
  font-size: 16px;
}

.mobile_nav ul .nav_sub li.is-opened ul.level_3 {
  display: block;
}

.mobile_nav ul .nav_sub a {
  /* Event Spaces + Reque: */
  font-weight: 700;
  font-size: 16px;
  color: #22333B;
  letter-spacing: 0;
  line-height: 33px;
}

.mobile_nav ul .nav_sub a:hover, .mobile_nav ul .nav_sub a.active {
  text-decoration: underline;
  text-decoration-skip: ink;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-color: #979797;
}

.mobile_nav ul .nav_sub.has-third-level > a {
  padding-right: 50px;
}

.mobile_nav ul .nav_sub .level_3 {
  padding-left: 20px;
  display: none;
}

.mobile_nav ul .nav_sub .level_3 a {
  font-weight: 300;
  font-size: 14px;
  color: #22333B;
  letter-spacing: 0;
  line-height: 26px;
  display: block;
  padding: 5px 0;
}

.mobile_nav ul .nav_sub .level_3 a:hover, .mobile_nav ul .nav_sub .level_3 a.active {
  color: #B32D18;
  text-decoration: none;
}

/* ----------------------------------------------------------------------------
= Footer basics
----------------------------------------------------------------------------- */
.footer {
  zoom: 1;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  background: url(../images/bg_footer.jpg) no-repeat;
  background-size: cover;
  padding-top: 110px;
}

.footer:before, .footer:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.footer:after {
  clear: both;
}

.footer .footer_block_wrapper {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  top: 200px;
  margin: auto;
  width: calc(100% - 20px);
  max-width: 1300px;
}

.footer .footer_block_wrapper.move-it {
  top: 0;
}

@media screen and (max-width: 1080px) {
  .footer .footer_block_wrapper {
    top: 0px;
    width: 100%;
  }
}

.footer .shadow_block {
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
  width: 100%;
  height: calc(100% - 80px);
  background: none;
  max-width: 1300px;
  z-index: 5;
}

.footer .footer_block {
  zoom: 1;
  position: relative;
  -webkit-mask: url(../images/svg/footer_mask.svg) top;
  -webkit-mask-repeat: no-repeat;
  mask: url(../images/svg/footer_mask.svg) top;
  mask-repeat: no-repeat;
  display: block;
  max-width: 1300px;
  width: 100%;
  height: 845px;
  background: #F4F5F5;
  padding-top: 100px;
  z-index: 10;
}

.footer .footer_block:before, .footer .footer_block:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.footer .footer_block:after {
  clear: both;
}

.footer .footer_block:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 450px;
  height: 100%;
  background: #fff;
  visibility: visible;
}

@media screen and (max-width: 1080px) {
  .footer .footer_block:before {
    width: 50%;
  }
}

@media screen and (max-width: 1220px) {
  .footer .footer_block {
    height: 900px;
    width: 100%;
  }
}

@media screen and (max-width: 1080px) {
  .footer .footer_block {
    height: 720px;
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .footer .footer_block {
    position: relative;
    background: white;
    height: auto;
    -webkit-mask: none;
    mask: none;
    display: block;
    padding-top: 40px;
  }
  .footer .footer_block:before {
    content: '';
    display: block;
    width: auto;
    height: auto;
    background: none;
    visibility: visible;
    position: absolute;
    top: -60px;
    left: 0px;
    border-right: 100vw solid transparent;
    border-top: 30px solid transparent;
    border-bottom: 30px solid white;
  }
}

.footer .left_side {
  position: relative;
  zoom: 1;
  width: 450px;
  text-align: center;
  float: left;
  height: 100%;
}

.footer .left_side:before, .footer .left_side:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.footer .left_side:after {
  clear: both;
}

.footer .left_side .logo a:hover {
  zoom: 1;
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
}

@media screen and (max-width: 1080px) {
  .footer .left_side {
    width: 50%;
  }
}

@media screen and (max-width: 750px) {
  .footer .left_side {
    width: 100%;
    float: none;
  }
}

.footer .right_side {
  position: relative;
  zoom: 1;
  float: right;
  padding: 30px 40px 40px;
  width: calc(100% - 450px);
  height: 100%;
  padding-bottom: 240px;
}

.footer .right_side:before, .footer .right_side:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.footer .right_side:after {
  clear: both;
}

@media screen and (max-width: 1080px) {
  .footer .right_side {
    width: 50%;
    padding: 40px 0 0;
  }
}

@media screen and (max-width: 750px) {
  .footer .right_side {
    width: 100%;
    height: auto;
    float: none;
    background: #F4F5F5;
  }
}

.footer .address {
  font-weight: 300;
  margin-top: 40px;
  font-size: 18px;
}

.footer .red_line {
  margin: 50px auto 30px;
  width: 300px;
  height: 6px;
  display: block;
  background: #B32D18;
}

.footer .affiliates {
  position: relative;
  width: 100%;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 40px;
}

.footer .affiliates .affiliate_logo {
  float: left;
  width: 50%;
  margin: 0px;
  padding: 25px 15px;
  text-align: center;
}

.footer .affiliates .affiliate_logo img {
  max-width: 100%;
}

.footer .affiliates .affiliate_logo:hover {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 750px) {
  .footer .affiliates {
    margin-bottom: 20px;
  }
}

.footer .footer_nav {
  zoom: 1;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding-left: 40px;
}

.footer .footer_nav:before, .footer .footer_nav:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.footer .footer_nav:after {
  clear: both;
}

.footer .footer_nav > ul {
  zoom: 1;
  position: relative;
}

.footer .footer_nav > ul:before, .footer .footer_nav > ul:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.footer .footer_nav > ul:after {
  clear: both;
}

.footer .footer_nav > ul > li {
  width: 33%;
  float: left;
  margin-bottom: 40px;
  padding-right: 20px;
}

.footer .footer_nav > ul > li:nth-child(4) {
  clear: left;
  margin-top: -50px;
}

.footer .footer_nav > ul > li a {
  font-weight: 900;
  font-size: 20px;
  color: #22333B;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  display: block;
}

.footer .footer_nav > ul > li a:hover, .footer .footer_nav > ul > li a.active {
  color: #22333B;
  cursor: default;
  text-decoration: underline;
}

.footer .footer_nav > ul > li li {
  width: 100%;
  float: none;
  margin-bottom: 0;
}

.footer .footer_nav > ul > li li a {
  font-weight: 300;
  font-size: 14px;
  color: #4D5057;
  line-height: 29px;
}

.footer .footer_nav > ul > li li a:hover, .footer .footer_nav > ul > li li a.active {
  color: #B32D18;
  text-decoration: none;
}

@media screen and (max-width: 1080px) {
  .footer .footer_nav > ul > li {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding-right: 0px;
  }
  .footer .footer_nav > ul > li:nth-child(4) {
    margin-top: 0;
    clear: none;
  }
}

@media screen and (max-width: 1080px) {
  .footer .footer_nav > ul ul {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .footer .footer_nav {
    padding-bottom: 10px;
    padding-left: 0;
    width: calc(100% - 20px);
    margin: 40px auto;
  }
}

.footer .stay_connected {
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: white;
  background: #B32D18;
  width: 100%;
  height: 110px;
  padding: 0px 75px;
  overflow: visible;
}

.footer .stay_connected span.stay_connected_text {
  font-weight: 900;
  font-size: 27px;
  color: #FFFFFF;
  letter-spacing: 0.05px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  line-height: 65px;
  padding: 22px 0px;
  float: left;
}

.footer .stay_connected .social {
  zoom: 1;
  position: absolute;
  right: 75px;
  bottom: 0px;
  width: auto;
}

.footer .stay_connected .social:before, .footer .stay_connected .social:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.footer .stay_connected .social:after {
  clear: both;
}

.footer .stay_connected .social a {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  padding: 45px 0px 40px;
  display: inline-block;
  margin: 0px 5px;
  width: 40px;
  height: 110px;
  text-align: center;
  vertical-align: top;
}

.footer .stay_connected .social a.fa-google_plus:before {
  content: '\f0d5';
  content: '\f041';
  font-family: FontAwesome;
}

.footer .stay_connected .social a:hover {
  background: #F3A712;
}

.footer .stay_connected .social .fa {
  color: white;
  font-size: 22px;
}

@media screen and (max-width: 1180px) {
  .footer .stay_connected span.stay_connected_text {
    width: 100px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1080px) {
  .footer .stay_connected {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0px 10px;
  }
  .footer .stay_connected span.stay_connected_text {
    float: none;
    display: block;
    width: 100%;
    text-align: center;
    padding: 50px 0px 10px;
    line-height: 1;
  }
  .footer .stay_connected .social {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    text-align: center;
    margin-bottom: -10px;
  }
  .footer .stay_connected .social a {
    display: inline-block;
    float: none;
  }
}

@media screen and (max-width: 750px) {
  .footer .stay_connected {
    position: relative;
    bottom: auto;
    left: auto;
    height: auto;
  }
  .footer .stay_connected span.stay_connected_text {
    display: none;
  }
  .footer .stay_connected .social a {
    height: 60px;
    padding: 20px 0;
  }
}

.home .footer {
  padding-top: 0;
}

@media screen and (min-width: 871px) {
  .home .footer {
    padding-top: 50px;
  }
}

.sponsor_wrapper {
  zoom: 1;
  display: block;
  width: 100%;
  clear: both;
  margin: 20px 0;
}

.sponsor_wrapper:before, .sponsor_wrapper:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.sponsor_wrapper:after {
  clear: both;
}

.sponsor_wrapper .sponsors {
  width: 100%;
  height: 120px;
}

.sponsor_wrapper .sponsor {
  line-height: 120px;
  height: 120px;
  width: 100%;
}

.sponsor_wrapper .sponsor img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  zoom: 1;
  opacity: 0.3;
  -moz-opacity: 0.3;
  filter: alpha(opacity=30);
  filter: grayscale(100%);
  display: block;
  max-width: 100%;
  margin: auto;
}

.sponsor_wrapper .sponsor a:hover img {
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  filter: grayscale(0%);
}

.global-footer {
  position: relative;
  zoom: 1;
  margin: 0px auto 0;
  display: block;
  padding: 30px 0 0;
  height: auto;
  background: white;
  z-index: 2;
  clear: both;
}

.global-footer:before, .global-footer:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.global-footer:after {
  clear: both;
}

.global-footer:before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0px;
  width: 100%;
  height: 50px;
  background: #fff;
  visibility: visible;
}

.global-footer .global-footer-inner {
  margin: auto;
  max-width: 1200px;
}

.global-footer p {
  position: relative;
  display: block;
  margin: auto;
  padding: 15px 10px;
  color: #555555;
  font-size: 13px;
  font-weight: 400;
}

.global-footer p a, .global-footer p a:visited {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  color: #555555;
  text-decoration: none;
}

.global-footer p a:hover, .global-footer p a:focus, .global-footer p a:visited:hover, .global-footer p a:visited:focus {
  color: #B32D18;
  text-decoration: none;
}

@media screen and (max-width: 1080px) {
  .global-footer p {
    text-align: center;
    padding: 20px 40px 20px;
  }
}

.global-footer .delimiter {
  padding: 0 5px;
  color: #555555;
}

.global-footer a#carbonhouse, .global-footer a#carbonhouse:link, .global-footer a#carbonhouse:visited {
  position: relative;
  display: block;
  float: right;
  margin: 0;
  padding-top: 0px;
  color: #555555;
  font-family: 'helvetica';
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.global-footer a#carbonhouse span, .global-footer a#carbonhouse:link span, .global-footer a#carbonhouse:visited span {
  font-size: 16px;
}

.global-footer a#carbonhouse span.carbon, .global-footer a#carbonhouse:link span.carbon, .global-footer a#carbonhouse:visited span.carbon {
  color: #555555;
}

.global-footer a#carbonhouse span.house, .global-footer a#carbonhouse:link span.house, .global-footer a#carbonhouse:visited span.house {
  color: #555555;
}

.global-footer a#carbonhouse:hover, .global-footer a#carbonhouse:link:hover, .global-footer a#carbonhouse:visited:hover {
  color: #B32D18;
  text-decoration: none;
}

.global-footer a#carbonhouse:hover span, .global-footer a#carbonhouse:link:hover span, .global-footer a#carbonhouse:visited:hover span {
  color: #B32D18;
}

@media screen and (max-width: 1080px) {
  .global-footer a#carbonhouse, .global-footer a#carbonhouse:link, .global-footer a#carbonhouse:visited {
    float: none;
    display: block;
    text-align: center;
    margin: 10px 0;
  }
}

@media screen and (max-width: 750px) {
  .global-footer {
    margin-top: 0;
    padding-top: 20px;
  }
  .global-footer:before {
    display: none;
  }
}

/* ----------------------------------------------------------------------------
=Sidebar Subnav
----------------------------------------------------------------------------- */
.subnav {
  position: relative;
  display: none;
  width: 320px;
  margin: 0 0 20px;
  padding: 0;
}

.subnav ul {
  width: 300px;
  margin: 0 auto;
  padding: 15px 0;
  list-style: none;
  list-style-image: none;
}

.subnav ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid black;
}

.subnav ul li:first-child {
  background: none;
}

.subnav ul li:first-child a, .subnav ul li:first-child a:visited {
  line-height: 18px;
}

.subnav ul li.active ul {
  display: block;
  width: auto;
  margin: 0;
  padding: 2px 0 2px 12px;
  list-style: none;
  list-style-type: none;
  list-style-image: none;
  background: none;
}

.subnav ul li.active a:active {
  color: #22333B;
}

.subnav ul li a, .subnav ul li a:visited {
  display: block;
  padding: 9px 5px 7px 30px;
  color: white;
  font: bold 18px/120% Heebo, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}

.subnav ul li a:hover, .subnav ul li a.active, .subnav ul li a:active, .subnav ul li a:visited:hover, .subnav ul li a:visited.active, .subnav ul li a:visited:active {
  color: #22333B;
}

.subnav ul li a.section, .subnav ul li a:visited.section {
  padding-bottom: 7px;
  color: #22333B;
  font-size: 22px;
}

.subnav ul li a.section:hover, .subnav ul li a.section.active:hover, .subnav ul li a.section:active, .subnav ul li a:visited.section:hover, .subnav ul li a:visited.section.active:hover, .subnav ul li a:visited.section:active {
  color: #22333B;
}

.subnav ul li.active.onparent a.active {
  color: #22333B;
}

.subnav ul ul {
  display: none;
}

.subnav ul ul li {
  border-bottom: none;
}

.subnav ul ul li:first-child a {
  line-height: 24px;
}

.search_toggle {
  position: relative;
  float: right;
  width: 40px;
  text-align: center;
  cursor: pointer;
}

.search_toggle:before {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: '';
  position: absolute;
  top: -20px;
  left: 0px;
  width: 40px;
  height: 0px;
  background: #F3A712;
  z-index: 1;
}

.search_toggle svg {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  fill: #B32D18;
  z-index: 3;
}

.search_toggle:hover svg {
  fill: #1B262B;
}

.search_toggle .search_icon {
  display: block;
}

.search_toggle .close_search {
  display: none;
}

.search_toggle.is-active svg {
  fill: white;
}

.search_toggle.is-active:before {
  height: 98px;
}

.search_toggle.is-active .search_icon {
  display: none;
}

.search_toggle.is-active .close_search {
  display: block;
}

@media screen and (max-width: 1180px) {
  .search_toggle {
    display: none;
  }
}

.search_form {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  max-width: 1190px;
  transform: translateX(-50%);
  z-index: 100;
  height: 0px;
  overflow: hidden;
  padding-right: 0px;
}

.search_form .search_inner {
  position: relative;
  padding: 25px 40px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.search_form .search_inner:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 7px;
  visibility: visible;
  display: block;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjMiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#00000000',GradientType=0 );
  /* IE6-8 */
}

.search_form #cse-search-box {
  position: relative;
}

.search_form.is-visible {
  display: block;
  height: 125px;
}

.search_form button {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-weight: 900;
  font-size: 20px;
  color: #22333B;
  letter-spacing: 0;
  line-height: 16px;
  padding-right: 20px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.search_form button .icon {
  display: none;
}

.search_form button:after {
  -webkit-transition: left 0.1s linear;
  -moz-transition: left 0.1s linear;
  -o-transition: left 0.1s linear;
  transition: left 0.1s linear;
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid #B32D18;
}

#search_field {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  width: 100%;
  display: block;
  border: none;
  padding: 15px 0px;
  font-weight: 900;
  font-size: 27px;
  background: none;
  color: #22333B;
  letter-spacing: 0;
  border-bottom: 4px solid #E5E5E5;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

#search_field::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #22333B;
}

#search_field:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #22333B;
}

#search_field::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #22333B;
}

#search_field:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #22333B;
}

#search_field:focus {
  outline: none;
}

@media screen and (max-width: 1180px) {
  .search_form {
    display: none;
    max-width: 507px;
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1200;
    height: 100px;
    left: auto;
    transform: none;
    background: #fff;
  }
  .search_form.is-visible-mobile {
    display: block;
  }
  .search_form .search_inner {
    padding: 0;
    background: #fff;
    max-width: calc(507px - 85px);
    width: calc(100% - 100px);
    float: left;
  }
  .search_form #search_field {
    border: none;
    font-size: 20px;
    background: #F5F5F5;
    padding: 25px 30px 25px;
    height: 70px;
  }
  .search_form button {
    position: absolute;
    top: 0px;
    right: 0px;
    transform: translateY(0%);
    width: 40px;
    height: 70px;
    text-align: center;
    cursor: pointer;
    line-height: 70px;
    text-align: center;
    padding: 0;
  }
  .search_form button .text {
    display: none;
  }
  .search_form button .icon {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    text-align: center;
    padding-top: 5px;
  }
  .search_form button .icon:before {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 70px;
    background: #F3A712;
    z-index: 1;
  }
  .search_form button .icon svg {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    position: relative;
    fill: white;
    z-index: 3;
  }
  .search_form button:hover .icon:before {
    background: #B32D18;
  }
}

@media screen and (max-width: 500px) {
  .search_form #search_field {
    height: 60px;
  }
  .search_form button {
    height: 60px;
    line-height: 60px;
  }
  .search_form button .icon {
    height: 60px;
  }
  .search_form button .icon:before {
    height: 60px;
  }
}

/* ----------------------------------------------------------------------------
= Baseline styles for all buttons in a project. These are global.
----------------------------------------------------------------------------- */
.m-button, .gen-button,
.spotlight-button,
a.button, .cms p a.button,
span.button,
.button a,
input.button,
.direction_form button, .buttonWrapper .buttons a, .login-form input[type='submit'] {
  display: inline-block;
  position: relative;
  background-color: #2274A5;
  color: #ffffff;
  text-align: center;
  padding: 13px 30px;
  text-align: center;
  line-height: 1;
  font-size: 15px;
  font-weight: 900;
  height: 40px;
  white-space: nowrap;
  min-width: 150px;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  border: none;
}

.m-button:hover, .gen-button:hover,
.spotlight-button:hover,
a.button:hover, .cms p a.button:hover,
span.button:hover,
.button a:hover,
input.button:hover,
.direction_form button:hover, .buttonWrapper .buttons a:hover, .login-form input[type='submit']:hover {
  background-color: #2C96D6;
  color: #ffffff;
}

.m-button-line, .intro .intro_buttons a, .eventItem .buttons a, .home-slideshow .rsDefault .rsGCaption .buttons a, .secondary_event .eventItem .buttons a {
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 900;
  font-size: 15px;
  color: #22333B;
  letter-spacing: 0;
  line-height: 16px;
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
}

.m-button-line:before, .intro .intro_buttons a:before, .eventItem .buttons a:before, .home-slideshow .rsDefault .rsGCaption .buttons a:before, .secondary_event .eventItem .buttons a:before {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 6px;
  height: 30px;
  display: block;
  background: #B32D18;
  z-index: 0;
}

.m-button-line span, .intro .intro_buttons a span, .eventItem .buttons a span, .home-slideshow .rsDefault .rsGCaption .buttons a span, .secondary_event .eventItem .buttons a span {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  z-index: 2;
}

.m-button-line:hover span, .intro .intro_buttons a:hover span, .eventItem .buttons a:hover span, .home-slideshow .rsDefault .rsGCaption .buttons a:hover span {
  color: #ffffff;
}

.m-button-line:hover:before, .intro .intro_buttons a:hover:before, .eventItem .buttons a:hover:before, .home-slideshow .rsDefault .rsGCaption .buttons a:hover:before {
  width: 100%;
}

.m-btn_arrow, .map_window .directions form button, .btn_arrow, .alert-button, .upcoming_events .eventItem .buttons a {
  position: relative;
  background: none;
  border: none;
  font-weight: 900;
  font-size: 20px;
  color: #22333B;
  letter-spacing: 0;
  line-height: 16px;
  padding-right: 30px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.m-btn_arrow .icon, .map_window .directions form button .icon, .btn_arrow .icon, .alert-button .icon, .upcoming_events .eventItem .buttons a .icon {
  display: none;
}

.m-btn_arrow:after, .map_window .directions form button:after, .btn_arrow:after, .alert-button:after, .upcoming_events .eventItem .buttons a:after {
  -webkit-transition: right 0.2s linear;
  -moz-transition: right 0.2s linear;
  -o-transition: right 0.2s linear;
  transition: right 0.2s linear;
  content: '';
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid #B32D18;
}

.m-btn_arrow:hover, .map_window .directions form button:hover, .btn_arrow:hover, .alert-button:hover, .upcoming_events .eventItem .buttons a:hover {
  text-decoration: underline;
}

.m-btn_arrow:hover:after, .map_window .directions form button:hover:after, .btn_arrow:hover:after, .alert-button:hover:after, .upcoming_events .eventItem .buttons a:hover:after {
  right: -5px;
}

.m-button-big, .buttonWrapper .buttons a {
  height: 50px;
  font-weight: 900;
  font-size: 20px;
  color: #FFFFFF;
  padding: 0px 30px;
  letter-spacing: 0;
  line-height: 50px;
  display: block;
  width: 100%;
}

.gen-button,
.spotlight-button,
a.button, .cms p a.button,
span.button,
.button a,
input.button,
.direction_form button {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}

/***********************************************/
/*      Add Additional Button Styles Below     */
/***********************************************/
.map_window .directions form button {
  font-size: 14px;
  color: #22333B;
  padding-left: 0;
  margin: 0;
}

.intro .intro_buttons a {
  font-weight: 900;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 60px;
  height: 60px;
  display: inline-block;
}

.intro .intro_buttons a:before {
  height: 60px;
  top: 0px;
}

.buttonWrapper .buttons a {
  background: #B32D18;
}

.buttonWrapper .buttons a:hover {
  background: #E2391F;
}

.login-form input[type='submit'] {
  display: block;
  margin: auto;
  margin-top: 40px;
}

.btn_arrow.white {
  color: #ffffff;
}

.alert-button {
  color: #ffffff;
}

.upcoming_events .eventItem .buttons a {
  color: #ffffff;
  text-align: right;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  padding-right: 25px;
}

.upcoming_events .eventItem .buttons a:before {
  display: none;
}

.upcoming_events .eventItem .buttons a:after {
  border-left-color: #ffffff;
}

.eventItem .buttons a {
  display: block;
  text-align: center;
}

.home-slideshow .rsDefault .rsGCaption .buttons a:before {
  height: 60px;
  top: -15px;
}

.secondary_event .eventItem .buttons a:before {
  height: 60px;
  top: -15px;
}

.event_showings .buttons a {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  position: relative;
  font-weight: 900;
  font-size: 16px;
  color: #22333B;
  letter-spacing: 0;
  line-height: 16px;
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
}

.event_showings .buttons a:before {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 6px;
  height: 24px;
  display: block;
  background: #B32D18;
  z-index: 0;
}

.event_showings .buttons a span {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  z-index: 2;
}

.event_showings .buttons a:hover span {
  color: #ffffff;
}

.event_showings .buttons a:hover:before {
  width: 100%;
}

#loadMoreEvents, .view_more_events {
  position: relative;
  background: none;
  border: none;
  font-weight: 900;
  color: #22333B;
  letter-spacing: 0;
  line-height: 40px;
  padding: 0;
  cursor: pointer;
  font-size: 20px;
  margin: 40px auto;
  display: inline-block;
}

#loadMoreEvents:before, .view_more_events:before {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: '';
  position: absolute;
  left: -20px;
  top: 0px;
  width: 6px;
  height: 40px;
  display: block;
  background: #B32D18;
  z-index: 0;
}

#loadMoreEvents span, .view_more_events span {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

#loadMoreEvents:hover:before, .view_more_events:hover:before {
  width: calc(100% + 40px);
}

#loadMoreEvents:hover span, .view_more_events:hover span {
  color: white;
}

#loadMoreEvents[disabled="disabled"], .view_more_events[disabled="disabled"] {
  zoom: 1;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
}

@media screen and (min-width: 1340px) {
  #loadMoreEvents, .view_more_events {
    transform: rotate(-270deg);
    transform-origin: bottom right;
    position: absolute;
    bottom: 20px;
    right: -12px;
    font-size: 27px;
    margin: 0;
  }
  #loadMoreEvents:before, .view_more_events:before {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    display: block;
    background: #B32D18;
    z-index: 0;
  }
}

.direction_form button {
  padding: 8px 30px;
  height: 30px;
  margin: auto;
}

/* v1.0.6 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
  width: 600px;
  height: 400px;
  position: relative;
  direction: ltr;
}

.royalSlider > * {
  float: left;
}

.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
  -webkit-backface-visibility: hidden;
}

.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none;
}

.rsOverflow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  float: left;
  -webkit-tap-highlight-color: transparent;
}

.rsVisibleNearbyWrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-tap-highlight-color: transparent;
}

.rsVisibleNearbyWrap .rsOverflow {
  position: absolute;
  left: 0;
  top: 0;
}

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

.rsArrow,
.rsThumbsArrow {
  cursor: pointer;
}

.rsThumb {
  float: left;
  position: relative;
}

.rsArrow,
.rsNav,
.rsThumbsArrow {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.rsHidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  -moz-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  -o-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  transition: visibility 0s linear 0.3s,opacity 0.3s linear;
}

.rsGCaption {
  width: 100%;
  float: left;
  text-align: center;
}

/* Fullscreen options, very important ^^ */
.royalSlider.rsFullscreen {
  position: fixed !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2147483647 !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
}

.royalSlider .rsSlide.rsFakePreloader {
  opacity: 1 !important;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  display: none;
}

.rsSlide {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
  height: auto;
}

.rsContent {
  width: 100%;
  height: 100%;
  position: relative;
}

.rsPreloader {
  position: absolute;
  z-index: 0;
}

.rsNav {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
}

.rsNavItem {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
}

.rsThumbs {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  z-index: 22;
}

.rsTabs {
  float: left;
  background: none !important;
}

.rsTabs,
.rsThumbs {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

.rsVideoContainer {
  width: auto;
  height: auto;
  line-height: 0;
  position: relative;
}

.rsVideoFrameHolder {
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  opacity: 0;
  -webkit-transition: .3s;
}

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1;
}

.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* ios controls over video bug, shifting video */
.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 44px;
}

.rsABlock {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 15;
}

img.rsImg {
  max-width: none;
}

.grab-cursor {
  cursor: url(../images/grab.png) 8 8, move;
}

.grabbing-cursor {
  cursor: url(../images/grabbing.png) 8 8, move;
}

.rsNoDrag {
  cursor: auto;
}

.rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
}

/******************************
*
*  RoyalSlider Default Skin 
*
*    1. Arrows 
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*    9. Full Width Responsive
*    
*  Sprite: 'rs-default.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
* 
******************************/
/* ----------------------------------------------------------------------------
=Settings
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Includes
----------------------------------------------------------------------------- */
/* Background */
.rsDefault .rsOverflow,
.rsDefault .rsSlide,
.rsDefault .rsVideoFrameHolder,
.rsDefault .rsThumbs {
  background: #151515;
  color: #FFF;
}

.royalSlider > .rsContent {
  visibility: hidden;
}

/***************
*
*  1. Arrows
*
****************/
.rsDefault .rsArrow {
  height: 100%;
  width: 61px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
  max-height: calc((100vw - 20px) * (610 / 1250));
}

.rsDefault.rsHor .rsArrowLeft {
  top: 0;
  left: 0;
}

.rsDefault.rsHor .rsArrowRight {
  right: 0;
  top: 0;
  transform: rotate(180deg);
}

.rsDefault .rsArrowIcn {
  width: 21px;
  height: 36px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  cursor: pointer;
  border-radius: 2px;
  background: url(../images/icn_slideshow_arrow.png) no-repeat;
}

.rsDefault .rsArrowIcn:hover {
  zoom: 1;
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
}

.rsDefault .rsArrowDisabled .rsArrowIcn {
  opacity: .2;
  filter: alpha(opacity=20);
  *display: none;
}

/***************
*
*  2. Bullets
*
****************/
.rsDefault .rsBullets {
  position: absolute;
  z-index: 35;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  line-height: 8px;
  overflow: hidden;
}

.rsDefault .rsBullets .rsBullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 6px 5px 6px;
}

.rsDefault .rsBullets .rsBullet span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #777;
  background: rgba(255, 255, 255, 0.5);
}

.rsDefault .rsBullets .rsBullet.rsNavSelected span {
  background-color: #FFF;
}

/***************
*
*  3. Thumbnails
*
****************/
.rsDefault .rsThumbsHor {
  width: 100%;
  height: 100px;
  padding-top: 10px;
}

.rsDefault .rsThumbsVer {
  width: 96px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.rsDefault.rsWithThumbsHor .rsThumbsContainer {
  position: relative;
  height: 100%;
}

.rsDefault.rsWithThumbsVer .rsThumbsContainer {
  position: relative;
  width: 100%;
}

.rsDefault .rsThumb {
  float: left;
  overflow: hidden;
  width: 150px;
  height: 80px;
  text-align: center;
}

.rsDefault .rsThumb img {
  width: 150px;
  height: auto;
  min-height: 80px;
  margin: 0 auto;
}

.rsDefault .rsThumb.rsNavSelected {
  background: #000;
}

.rsDefault .rsThumb.rsNavSelected img {
  opacity: 0.3;
  filter: alpha(opacity=30);
}

.rsDefault .rsThumb .rsTmb {
  display: block;
  /* Thumbnails with text */
}

.rsDefault .rsThumb .rsTmb h5 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 20px;
  color: #FFF;
}

.rsDefault .rsThumb .rsTmb span {
  color: #DDD;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 18px;
}

/* Thumbnails arrow icons */
.rsDefault .rsThumbsArrow {
  height: 100%;
  width: 20px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
}

.rsDefault .rsThumbsArrow:hover {
  background: rgba(0, 0, 0, 0.9);
}

.rsDefault.rsWithThumbsVer .rsThumbsArrow {
  width: 100%;
  height: 20px;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft {
  top: 0;
  left: 0;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -144px -32px;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight {
  bottom: 0;
  left: 0;
}

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -144px -48px;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft {
  left: 0;
  top: 0;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -128px -32px;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
  right: 0;
  top: 0;
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -128px -48px;
}

.rsDefault .rsThumbsArrowIcn {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  position: absolute;
  cursor: pointer;
  background: url("../images/rs-default.png");
}

.rsDefault .rsThumbsArrowDisabled {
  display: none !important;
}

.rsThumb {
  overflow: hidden;
  width: 150px;
  height: 80px;
  text-align: center;
}

.rsThumb img {
  width: 150px;
  height: auto;
  min-height: 80px;
  margin: 0 auto;
}

.rsThumb.rsNavSelected {
  background: #000;
}

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
  .rsDefault .rsThumb {
    width: 59px;
    height: 44px;
  }
  .rsDefault .rsThumbsHor {
    height: 64px;
  }
  .rsDefault .rsThumbsVer {
    width: 59px;
  }
}

/***************
*
*  4. RoyalSlider Tabs
*
****************/
.rsDefault .rsTabs {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding-top: 12px;
  position: relative;
}

.rsDefault .rsTab {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  height: auto;
  width: auto;
  color: #333;
  padding: 5px 13px 6px;
  min-width: 72px;
  border: 1px solid #D9D9DD;
  border-right: 1px solid #f5f5f5;
  text-decoration: none;
  background-color: #FFF;
  background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
  -webkit-box-shadow: inset 1px 0 0 #fff;
  box-shadow: inset 1px 0 0 #fff;
  *display: inline;
  *zoom: 1;
}

.rsDefault .rsTab:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.rsDefault .rsTab:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #cfcfcf;
}

.rsDefault .rsTab:active {
  border: 1px solid #D9D9DD;
  background-color: #f4f4f4;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
}

.rsDefault .rsTab.rsNavSelected {
  color: #FFF;
  border: 1px solid #999;
  text-shadow: 1px 1px #838383;
  box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
  background: #ACACAC;
  background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
  background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
  background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}

/***************
*
*  6. Play/close video button
*
****************/
.rsDefault .rsPlayBtn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  cursor: pointer;
}

.rsDefault .rsPlayBtn:hover .rsPlayBtnIcon {
  background-color: rgba(0, 0, 0, 0.9);
}

.rsDefault .rsPlayBtnIcon {
  width: 64px;
  display: block;
  height: 64px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  background: url("../images/rs-default.png") no-repeat 0 -32px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
}

.rsDefault .rsBtnCenterer {
  position: absolute;
  left: 50%;
  top: 50%;
}

.rsDefault .rsCloseVideoBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 500;
  position: absolute;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.rsDefault .rsCloseVideoBtn.rsiOSBtn {
  top: -38px;
  right: -6px;
}

.rsDefault .rsCloseVideoIcn {
  margin: 6px;
  width: 32px;
  height: 32px;
  background: url("../images/rs-default.png") -64px 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
}

.rsDefault .rsCloseVideoIcn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/***************
*
*  7. Preloader
*
****************/
.rsDefault .rsPreloader {
  width: 20px;
  height: 20px;
  background-image: url("../images/preloader-white.gif");
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}

/***************
*
*  8. Global caption
*
****************/
.rsDefault .rsGCaption {
  position: absolute;
  float: none;
  bottom: 0;
  left: 0;
  text-align: left;
  color: #FFF;
  width: 100%;
  height: auto;
}

.rsDefault .rsGCaption .rsABlock {
  position: relative;
}

.rsDefault .rsGCaption p {
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}

@media screen and (max-width: 870px) {
  .rsDefault .rsGCaption p {
    padding: 30px;
    font-size: 14px;
  }
}

@media screen and (max-width: 870px) {
  .rsDefault .rsGCaption p {
    padding: 10px 20px;
    font-size: 12px;
    color: #1B262B;
  }
}

@media screen and (max-width: 870px) {
  .rsDefault .rsGCaption {
    position: relative;
    bottom: auto;
    left: auto;
    clear: both;
  }
}

.hasCaption .rsContent:before, .hasCaption .rsVideoContainer:before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 300px;
  visibility: visible;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, black 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, black 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
  /* IE6-8 */
}

@media screen and (max-width: 1080px) {
  .hasCaption .rsContent:before, .hasCaption .rsVideoContainer:before {
    height: 100px;
  }
}

@media screen and (max-width: 750px) {
  .hasCaption .rsContent:before, .hasCaption .rsVideoContainer:before {
    height: 50px;
    display: none;
  }
}

.hasCaption .rsGCaption {
  min-height: 38px;
}

/***************
*
*  9. Full Width Responsive
*
****************/
.rsDefault.rsFullWidth {
  width: 100%;
  height: auto;
}

.rsDefault.rsFullWidth img.rsImg {
  width: 100%;
  display: block;
}

.m-slideshow-container {
  max-height: none;
  max-width: 2000px;
  margin: 0 auto;
}

.m-slideshow-container.slideshow-type-full-width {
  max-width: none;
}

.m-slideshow-container.gallery_slideshow {
  margin-bottom: 100px;
}

.home-slideshow {
  width: 100%;
  min-height: calc(100vw * (610 / 1250));
  max-height: 780px;
}

.home-slideshow .rsOverflow {
  max-height: 780px;
}

.home-slideshow .rsDefault .rsGCaption:before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 300px;
  visibility: visible;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, black 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, black 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
  /* IE6-8 */
}

.home-slideshow .rsDefault .rsGCaption .infoBlock {
  max-width: 1230px;
  margin: auto;
}

.home-slideshow .rsDefault .rsGCaption h3 {
  font-weight: 900;
  font-size: 3.1573345183rem;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 10px;
}

.home-slideshow .rsDefault .rsGCaption h3 a {
  color: inherit;
}

.home-slideshow .rsDefault .rsGCaption h3 a:hover {
  color: #FFFFFF;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: #FFFFFF;
}

@media screen and (max-width: 750px) {
  .home-slideshow .rsDefault .rsGCaption h3 {
    font-size: 2.368593037rem;
  }
}

.home-slideshow .rsDefault .rsGCaption .caption_body {
  font-weight: 400;
  font-size: 32px;
  color: #B32D18;
  letter-spacing: 0;
  line-height: 32px;
}

.home-slideshow .rsDefault .rsGCaption .date {
  font-weight: 900;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  padding: 0 15px;
}

.home-slideshow .rsDefault .rsGCaption .desc {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
}

.home-slideshow .rsDefault .rsGCaption .buttons_wrapper {
  position: absolute;
  bottom: 0px;
  right: 20px;
  display: block;
  width: 100%;
  text-align: right;
  padding: 10px 0;
}

.home-slideshow .rsDefault .rsGCaption .buttons_wrapper .buttons {
  display: inline-block;
}

.home-slideshow .rsDefault .rsGCaption .buttons_wrapper .buttons a {
  font-weight: 900;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 16px;
}

.home-slideshow .rsDefault .rsGCaption .buttons_wrapper .buttons > span {
  display: none;
}

.home-slideshow .rsDefault .rsGCaption .buttons_wrapper .buttons a + .more {
  display: none;
}

@media screen and (max-width: 870px) {
  .home-slideshow .rsDefault .rsGCaption {
    background: #fff;
    padding: 20px 20px 0;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
  }
  .home-slideshow .rsDefault .rsGCaption .desc {
    padding: 0;
    padding-bottom: 100px;
  }
  .home-slideshow .rsDefault .rsGCaption .caption_body {
    font-weight: 400;
    font-size: 25px;
    color: #938581;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    line-height: 32px;
  }
  .home-slideshow .rsDefault .rsGCaption h3 {
    color: #1B262B;
  }
  .home-slideshow .rsDefault .rsGCaption h3 a:hover {
    color: #B32D18;
    text-decoration: underline;
    -webkit-text-decoration-skip: ink;
    -moz-text-decoration-skip: ink;
    -ms-text-decoration-skip: ink;
    -o-text-decoration-skip: ink;
    text-decoration-skip: ink;
    text-decoration-color: #B32D18;
  }
  .home-slideshow .rsDefault .rsGCaption:before {
    display: none;
  }
  .home-slideshow .rsDefault .rsGCaption .date {
    color: #B32D18;
    float: left;
    padding-left: 10px;
    line-height: 50px;
  }
  .home-slideshow .rsDefault .rsGCaption .buttons_wrapper {
    border-top: 4px solid #E5E5E5;
    right: auto;
    left: -10px;
    width: calc(100% + 20px);
    display: block;
  }
  .home-slideshow .rsDefault .rsGCaption .buttons_wrapper .buttons a {
    height: 50px;
    line-height: 50px;
    display: block;
    width: 250px;
    text-align: center;
  }
  .home-slideshow .rsDefault .rsGCaption .buttons_wrapper .buttons a:before {
    width: 100%;
    height: 50px;
    top: 0px;
  }
  .home-slideshow .rsDefault .rsGCaption .buttons_wrapper .buttons a:hover:before {
    background: #E2391F;
  }
}

@media screen and (max-width: 750px) {
  .home-slideshow .rsDefault .rsGCaption .desc {
    padding-bottom: 20px;
  }
  .home-slideshow .rsDefault .rsGCaption .buttons_wrapper {
    position: relative;
    bottom: auto;
    right: auto;
  }
  .home-slideshow .rsDefault .rsGCaption .buttons_wrapper .date {
    text-align: left;
  }
  .home-slideshow .rsDefault .rsGCaption .buttons_wrapper .date, .home-slideshow .rsDefault .rsGCaption .buttons_wrapper .buttons, .home-slideshow .rsDefault .rsGCaption .buttons_wrapper .buttons a {
    width: 100%;
  }
}

@media screen and (min-width: 1601px) {
  .home-slideshow {
    min-height: 780px;
    max-height: 780px;
  }
}

.calendar-new {
  position: relative;
  margin: auto;
  max-width: 1200px;
  padding: 0 20px 100px;
}

.calendar-new .tl-header {
  background: #000;
  padding: 20px 0 15px;
  max-width: 1200px;
  margin: 0 auto 10px;
}

.calendar-new .month_name {
  color: #22333B;
  text-align: center;
  font: 500 32px/100% Heebo, sans-serif;
  letter-spacing: 0.08em;
  margin: 0px auto;
}

@media screen and (max-width: 750px) {
  .calendar-new .month_name {
    margin: 30px 0px;
  }
}

.calendar-new .cal-prev, .calendar-new .cal-next {
  font-size: 30px;
  color: white;
  vertical-align: middle;
  padding: 0 20px;
}

.calendar-new .cal-prev .fa, .calendar-new .cal-next .fa {
  line-height: 30px;
}

.calendar-new .cal-prev:hover, .calendar-new .cal-next:hover {
  color: #22333B;
}

.calendar-new .cal-next {
  float: right;
}

.calendar-new .cal-prev {
  float: left;
}

.calendar-new .tl-wrap, .calendar-new .additional_events {
  display: none;
}

.calendar-new .tl-wrap-inner {
  zoom: 1;
  max-width: 100%;
  margin: auto;
  padding: 0px 0;
  width: 100%;
  padding-top: 0px;
  position: relative;
  max-width: 1210px;
}

.calendar-new .tl-wrap-inner:before, .calendar-new .tl-wrap-inner:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.calendar-new .tl-wrap-inner:after {
  clear: both;
}

.calendar-new .tl-wrap-inner .tl-calendar {
  zoom: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-end;
}

.calendar-new .tl-wrap-inner .tl-calendar:before, .calendar-new .tl-wrap-inner .tl-calendar:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.calendar-new .tl-wrap-inner .tl-calendar:after {
  clear: both;
}

.calendar-new .weekdays {
  position: relative;
  clear: both;
  display: block;
  zoom: 1;
  width: 100%;
  margin-bottom: 0px;
  margin-top: 30px;
}

.calendar-new .weekdays:before, .calendar-new .weekdays:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.calendar-new .weekdays:after {
  clear: both;
}

.calendar-new .weekdays .weekday {
  width: 14.28%;
  padding-top: 15px;
  text-align: left;
  color: white;
  font-family: Heebo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  float: left;
  margin-bottom: 0px;
  margin-right: 0px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .calendar-new .weekdays {
    display: none;
  }
}

.calendar-new .tl-date {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: relative;
  width: 123px;
  width: calc(14.28% - 10px);
  background: #fff;
  min-height: 220px;
  float: left;
  margin: 0 5px 10px;
  padding: 40px 15px 0px;
  text-align: left;
  border: 1px solid #ccc;
}

.calendar-new .tl-date.empty {
  background: #f9f9f9;
}

.calendar-new .tl-date .tl-date-inner {
  overflow-y: auto;
  max-height: 100%;
  padding-bottom: 20px;
  padding-top: 10px;
}

.calendar-new .tl-date .tl-date-inner .event_item {
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.calendar-new .tl-date .tl-date-inner .event_item .desc h3 {
  font-size: 16px;
}

.calendar-new .tl-date .tl-date-inner .event_item .desc a {
  font-size: 16px;
  line-height: 1.3em;
}

.calendar-new .tl-date .tl-date-inner .event_item:first-child {
  padding-top: 0px;
  border-top: none;
  margin-top: 0px;
}

@media screen and (max-width: 750px) {
  .calendar-new .tl-date {
    width: 100%;
    height: auto;
    min-height: auto;
    margin-bottom: 5px;
  }
  .calendar-new .tl-date .tl-date-inner {
    overflow-y: visible;
    max-height: 100%;
    padding-bottom: 10px;
  }
  .calendar-new .tl-date .tl-date-inner .event_item {
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-bottom: 20px;
  }
  .calendar-new .tl-date .tl-date-inner .event_item:first-child {
    padding-top: 0px;
    border-top: none;
    margin-top: 0px;
  }
  .calendar-new .tl-date.empty, .calendar-new .tl-date .month {
    display: none;
  }
}

.calendar-new .tl-date .cal_events {
  height: 130px;
  overflow-y: auto;
}

.ie10 .calendar-new .tl-date .cal_events, .ie9 .calendar-new .tl-date .cal_events {
  overflow: hidden;
}

.calendar-new .tl-date .day {
  display: none;
}

.calendar-new .tl-date .date {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 38px;
  width: 38px;
  font-weight: 500;
  font-size: 15px;
  line-height: 38px;
  text-align: center;
}

.calendar-new .tl-date .date .weekday {
  display: none;
  padding-left: 12px;
  color: #ccc;
  font-weight: 400;
}

@media screen and (max-width: 750px) {
  .calendar-new .tl-date .date {
    right: auto;
  }
}

.calendar-new .tl-date[data-weekday="0"] {
  clear: left;
}

.calendar-new .tl-date .month {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  background: #22333B;
  height: 42px;
  color: white;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  line-height: 42px;
  padding: 0 15px;
  letter-spacing: 0.08em;
  display: none;
}

.calendar-new .tl-date h3 {
  margin-bottom: 5px;
  line-height: 1.1;
  overflow: hidden;
}

.calendar-new .tl-date h3 a {
  font-size: 22px;
  line-height: inherit;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  color: #1B262B;
}

.calendar-new .tl-date h3 a:hover {
  color: #22333B;
}

.calendar-new .tl-date h4 {
  font-weight: 300;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  color: #1B262B;
}

.calendar-new .tl-date .time {
  color: #888;
  font-size: 12px;
  font-weight: 300;
  z-index: 10;
  letter-spacing: 0.04em;
}

.calendar-new .tl-date.hasEvent .date {
  color: white;
  background: #ccc;
}

@media screen and (max-width: 750px) {
  .calendar-new .tl-date.hasEvent .date .weekday {
    display: inline;
  }
}

.calendar-new .additional_events .tl-date[data-weekday="0"] {
  clear: left;
}

.calendar-new .tooltip_content,
.calendar-new .modal_content {
  display: none;
}

.calendar_tooltip {
  z-index: 100;
  width: 250px;
  background: white;
}

.calendar_tooltip .thumb {
  width: 100%;
}

.calendar_tooltip .thumb img {
  width: 100%;
}

.calendar_tooltip .info {
  padding: 20px;
}

.calendar_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
  overflow-y: auto;
  background: #fff;
}

.calendar.calendar_listing {
  display: none;
}

.calendar.calendar_listing.calendar_view {
  display: block;
}

/* ----------------------------------------------------------------------------
=Textarea margin
----------------------------------------------------------------------------- */
.content_item, .breadcrumbs, .news_list,
.l-fullwidthHeader, .share {
  zoom: 1;
  clear: both;
  position: relative;
  margin: 0 auto 40px;
  max-width: 990px;
  width: 100%;
}

.content_item:before, .content_item:after, .breadcrumbs:before, .breadcrumbs:after, .news_list:before, .news_list:after,
.l-fullwidthHeader:before,
.l-fullwidthHeader:after, .share:before, .share:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.content_item:after, .breadcrumbs:after, .news_list:after,
.l-fullwidthHeader:after, .share:after {
  clear: both;
}

.slide.content_item {
  max-width: 100%;
  margin-bottom: 0;
}

.spotlight_image {
  position: relative;
}

.spotlight_image img {
  display: block;
  max-width: 100%;
}

.spotlight_image .caption {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
}

.spotlight_image .caption:before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 300px;
  visibility: visible;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, black 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, black 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
  /* IE6-8 */
}

@media screen and (max-width: 1080px) {
  .spotlight_image .caption:before {
    height: 100px;
  }
}

@media screen and (max-width: 750px) {
  .spotlight_image .caption:before {
    height: 50px;
    display: none;
  }
}

.spotlight_image .caption p {
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
  text-align: left;
  color: #FFF;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 870px) {
  .spotlight_image .caption p {
    padding: 30px;
    font-size: 14px;
  }
}

@media screen and (max-width: 870px) {
  .spotlight_image .caption p {
    padding: 10px 20px;
    font-size: 12px;
    color: #1B262B;
  }
}

@media screen and (max-width: 870px) {
  .spotlight_image .caption {
    position: relative;
    bottom: auto;
    left: auto;
  }
}

/* ----------------------------------------------------------------------------
=Showtime Page Content
----------------------------------------------------------------------------- */
.content {
  /* ----------------------------------------------------------------------------
	=Image Templates
	----------------------------------------------------------------------------- */
}

.content img {
  max-width: 100%;
}

.content img[align=left], .content img.left {
  float: left;
  margin: 0 30px 30px 0;
}

@media screen and (max-width: 750px) {
  .content img[align=left], .content img.left {
    float: none;
    margin: 0 auto 20px;
  }
}

.content img[align=right], .content img.right {
  float: right;
  margin: 0 0 30px 30px;
}

@media screen and (max-width: 750px) {
  .content img[align=right], .content img.right {
    float: none;
    margin: 0 auto 20px;
  }
}

.content .img_wrap {
  position: relative;
}

.content .img_wrap:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-right: 200px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 13px solid #fff;
}

@media screen and (max-width: 750px) {
  .content .img_wrap:after {
    display: none;
  }
}

.content .img_wrap img {
  float: none;
  display: block;
  margin: 0;
}

@media screen and (max-width: 750px) {
  .content .img_wrap img {
    margin: auto;
  }
}

.content .img_wrap.left {
  float: left;
  margin: 0 30px 30px 0;
}

@media screen and (max-width: 750px) {
  .content .img_wrap.left {
    float: none;
    margin: 0 auto 20px;
  }
}

.content .img_wrap.right {
  float: right;
  margin: 0 0 30px 30px;
}

@media screen and (max-width: 750px) {
  .content .img_wrap.right {
    float: none;
    margin: 0 auto 20px;
  }
}

.breadcrumbs {
  font-weight: 400;
  font-size: 13px;
  color: #B32D18;
}

.breadcrumbs a {
  color: #4D5057;
}

.breadcrumbs a:hover {
  color: #2274A5;
}

.breadcrumbs .breadcrumb_divider {
  margin: 0 10px;
  color: #4D5057;
}

.event_listing_page .breadcrumbs {
  display: none;
}

blockquote {
  margin: auto;
  padding-top: 50px;
  padding-left: 100px;
  padding-right: 100px;
  background: url(../images/icn_quote.png) top left no-repeat;
}

blockquote strong {
  display: block;
  border-top: 4px solid #B32D18;
  width: 100%;
  text-align: right;
  /* Anthony Scaramucci: */
  font-weight: 900;
  font-size: 20px;
  color: #22333B;
  letter-spacing: 0;
  line-height: 20px;
  padding-top: 15px;
}

blockquote strong em {
  display: block;
  /* White House Press Se: */
  font-weight: 300;
  font-size: 16px;
  color: #938581;
  letter-spacing: 0;
  font-style: normal;
}

@media screen and (max-width: 750px) {
  blockquote {
    padding-left: 55px;
    padding-top: 20px;
    background-size: 40px auto;
  }
}

/* ----------------------------------------------------------------------------
= Spotlight list style
----------------------------------------------------------------------------- */
.spotlight,
.concierge,
.news_list,
.contest_list,
.job_list,
.seating_charts,
.gallery-listing {
  clear: both;
}

.spotlight .entry,
.concierge .entry,
.news_list .entry,
.contest_list .entry,
.job_list .entry,
.seating_charts .entry,
.gallery-listing .entry {
  zoom: 1;
  padding-top: 36px;
  padding-bottom: 36px;
  border-top: 4px solid #E5E5E5;
}

.spotlight .entry:before, .spotlight .entry:after,
.concierge .entry:before,
.concierge .entry:after,
.news_list .entry:before,
.news_list .entry:after,
.contest_list .entry:before,
.contest_list .entry:after,
.job_list .entry:before,
.job_list .entry:after,
.seating_charts .entry:before,
.seating_charts .entry:after,
.gallery-listing .entry:before,
.gallery-listing .entry:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.spotlight .entry:after,
.concierge .entry:after,
.news_list .entry:after,
.contest_list .entry:after,
.job_list .entry:after,
.seating_charts .entry:after,
.gallery-listing .entry:after {
  clear: both;
}

.spotlight .entry:first-child,
.concierge .entry:first-child,
.news_list .entry:first-child,
.contest_list .entry:first-child,
.job_list .entry:first-child,
.seating_charts .entry:first-child,
.gallery-listing .entry:first-child {
  border-top: none;
}

.spotlight .entry:last-child,
.concierge .entry:last-child,
.news_list .entry:last-child,
.contest_list .entry:last-child,
.job_list .entry:last-child,
.seating_charts .entry:last-child,
.gallery-listing .entry:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  .spotlight .entry,
  .concierge .entry,
  .news_list .entry,
  .contest_list .entry,
  .job_list .entry,
  .seating_charts .entry,
  .gallery-listing .entry {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.spotlight .thumb,
.concierge .thumb,
.news_list .thumb,
.contest_list .thumb,
.job_list .thumb,
.seating_charts .thumb,
.gallery-listing .thumb {
  position: relative;
  min-width: 150px;
  width: 180px;
  margin: 0 57px 0px 0;
  float: left;
}

.spotlight .thumb:after,
.concierge .thumb:after,
.news_list .thumb:after,
.contest_list .thumb:after,
.job_list .thumb:after,
.seating_charts .thumb:after,
.gallery-listing .thumb:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-right: 180px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 13px solid #fff;
}

.spotlight .thumb a,
.concierge .thumb a,
.news_list .thumb a,
.contest_list .thumb a,
.job_list .thumb a,
.seating_charts .thumb a,
.gallery-listing .thumb a {
  display: block;
  opacity: 1;
}

.spotlight .thumb a:hover,
.concierge .thumb a:hover,
.news_list .thumb a:hover,
.contest_list .thumb a:hover,
.job_list .thumb a:hover,
.seating_charts .thumb a:hover,
.gallery-listing .thumb a:hover {
  opacity: 0.8;
}

.spotlight .thumb img,
.concierge .thumb img,
.news_list .thumb img,
.contest_list .thumb img,
.job_list .thumb img,
.seating_charts .thumb img,
.gallery-listing .thumb img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 750px) {
  .spotlight .thumb,
  .concierge .thumb,
  .news_list .thumb,
  .contest_list .thumb,
  .job_list .thumb,
  .seating_charts .thumb,
  .gallery-listing .thumb {
    margin: 0 auto 20px;
    float: none;
  }
}

.spotlight .info,
.concierge .info,
.news_list .info,
.contest_list .info,
.job_list .info,
.seating_charts .info,
.gallery-listing .info {
  position: relative;
  float: left;
  width: 100%;
  display: block;
  padding: 0 0 0 30px;
}

@media screen and (max-width: 750px) {
  .spotlight .info,
  .concierge .info,
  .news_list .info,
  .contest_list .info,
  .job_list .info,
  .seating_charts .info,
  .gallery-listing .info {
    margin: 0 auto 20px;
    float: none;
    text-align: center;
    padding: 0;
  }
  .spotlight .info li,
  .concierge .info li,
  .news_list .info li,
  .contest_list .info li,
  .job_list .info li,
  .seating_charts .info li,
  .gallery-listing .info li {
    text-align: left;
  }
}

.spotlight .thumb + .info,
.concierge .thumb + .info,
.news_list .thumb + .info,
.contest_list .thumb + .info,
.job_list .thumb + .info,
.seating_charts .thumb + .info,
.gallery-listing .thumb + .info {
  width: calc(100% - (180px + 57px));
  padding-left: 0;
}

@media screen and (max-width: 750px) {
  .spotlight .thumb + .info,
  .concierge .thumb + .info,
  .news_list .thumb + .info,
  .contest_list .thumb + .info,
  .job_list .thumb + .info,
  .seating_charts .thumb + .info,
  .gallery-listing .thumb + .info {
    width: 100%;
  }
}

.spotlight .spotlight_content > *,
.concierge .spotlight_content > *,
.news_list .spotlight_content > *,
.contest_list .spotlight_content > *,
.job_list .spotlight_content > *,
.seating_charts .spotlight_content > *,
.gallery-listing .spotlight_content > * {
  margin-bottom: 0;
  margin-top: 20px;
}

.spotlight .date,
.concierge .date,
.news_list .date,
.contest_list .date,
.job_list .date,
.seating_charts .date,
.gallery-listing .date {
  font-weight: 300;
  font-size: 15px;
  color: #B32D18;
  letter-spacing: 0;
  margin-bottom: 15px;
  margin-top: -10px;
}

.spotlight .date .m-date__weekday,
.concierge .date .m-date__weekday,
.news_list .date .m-date__weekday,
.contest_list .date .m-date__weekday,
.job_list .date .m-date__weekday,
.seating_charts .date .m-date__weekday,
.gallery-listing .date .m-date__weekday {
  font-weight: 900;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.spotlight h3.title,
.concierge h3.title,
.news_list h3.title,
.contest_list h3.title,
.job_list h3.title,
.seating_charts h3.title,
.gallery-listing h3.title {
  position: relative;
}

.spotlight h3.title:before,
.concierge h3.title:before,
.news_list h3.title:before,
.contest_list h3.title:before,
.job_list h3.title:before,
.seating_charts h3.title:before,
.gallery-listing h3.title:before {
  -webkit-transition: left 0.1s linear;
  -moz-transition: left 0.1s linear;
  -o-transition: left 0.1s linear;
  transition: left 0.1s linear;
  content: '';
  position: absolute;
  left: -30px;
  top: 3px;
  border-bottom: 9px solid transparent;
  border-top: 9px solid transparent;
  border-left: 9px solid #B32D18;
}

@media screen and (max-width: 750px) {
  .spotlight h3.title:before,
  .concierge h3.title:before,
  .news_list h3.title:before,
  .contest_list h3.title:before,
  .job_list h3.title:before,
  .seating_charts h3.title:before,
  .gallery-listing h3.title:before {
    position: relative;
    left: auto;
    top: auto;
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
    display: none;
  }
}

.spotlight h3.title a,
.concierge h3.title a,
.news_list h3.title a,
.contest_list h3.title a,
.job_list h3.title a,
.seating_charts h3.title a,
.gallery-listing h3.title a {
  color: #22333B;
  position: relative;
}

.spotlight h3.title a:hover,
.concierge h3.title a:hover,
.news_list h3.title a:hover,
.contest_list h3.title a:hover,
.job_list h3.title a:hover,
.seating_charts h3.title a:hover,
.gallery-listing h3.title a:hover {
  color: #2274A5;
  text-decoration: underline;
  text-decoration-skip: ink;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-color: #2274A5;
}

.spotlight .spot-button, .spotlight .links a,
.concierge .spot-button,
.concierge .links a,
.news_list .spot-button,
.news_list .links a,
.contest_list .spot-button,
.contest_list .links a,
.job_list .spot-button,
.job_list .links a,
.seating_charts .spot-button,
.seating_charts .links a,
.gallery-listing .spot-button,
.gallery-listing .links a {
  margin: 20px 20px 0 0;
}

@media screen and (max-width: 750px) {
  .spotlight .spot-button, .spotlight .links a,
  .concierge .spot-button,
  .concierge .links a,
  .news_list .spot-button,
  .news_list .links a,
  .contest_list .spot-button,
  .contest_list .links a,
  .job_list .spot-button,
  .job_list .links a,
  .seating_charts .spot-button,
  .seating_charts .links a,
  .gallery-listing .spot-button,
  .gallery-listing .links a {
    float: none;
    text-align: center;
    margin: 20px 10px 0;
  }
}

@media screen and (min-width: 751px) {
  .spotlight[data-layout="on-right"] .info.cms,
  .concierge[data-layout="on-right"] .info.cms,
  .news_list[data-layout="on-right"] .info.cms,
  .contest_list[data-layout="on-right"] .info.cms,
  .job_list[data-layout="on-right"] .info.cms,
  .seating_charts[data-layout="on-right"] .info.cms,
  .gallery-listing[data-layout="on-right"] .info.cms {
    padding-right: 200px;
  }
  .spotlight[data-layout="on-right"] .spot-button,
  .concierge[data-layout="on-right"] .spot-button,
  .news_list[data-layout="on-right"] .spot-button,
  .contest_list[data-layout="on-right"] .spot-button,
  .job_list[data-layout="on-right"] .spot-button,
  .seating_charts[data-layout="on-right"] .spot-button,
  .gallery-listing[data-layout="on-right"] .spot-button {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    margin-right: 0;
  }
}

.spotlight[data-layout="square"],
.concierge[data-layout="square"],
.news_list[data-layout="square"],
.contest_list[data-layout="square"],
.job_list[data-layout="square"],
.seating_charts[data-layout="square"],
.gallery-listing[data-layout="square"] {
  zoom: 1;
  width: 100%;
  margin: 0 auto 40px;
  border-top: none;
  max-width: 1010px;
}

.spotlight[data-layout="square"]:before, .spotlight[data-layout="square"]:after,
.concierge[data-layout="square"]:before,
.concierge[data-layout="square"]:after,
.news_list[data-layout="square"]:before,
.news_list[data-layout="square"]:after,
.contest_list[data-layout="square"]:before,
.contest_list[data-layout="square"]:after,
.job_list[data-layout="square"]:before,
.job_list[data-layout="square"]:after,
.seating_charts[data-layout="square"]:before,
.seating_charts[data-layout="square"]:after,
.gallery-listing[data-layout="square"]:before,
.gallery-listing[data-layout="square"]:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.spotlight[data-layout="square"]:after,
.concierge[data-layout="square"]:after,
.news_list[data-layout="square"]:after,
.contest_list[data-layout="square"]:after,
.job_list[data-layout="square"]:after,
.seating_charts[data-layout="square"]:after,
.gallery-listing[data-layout="square"]:after {
  clear: both;
}

.spotlight[data-layout="square"] .entry,
.concierge[data-layout="square"] .entry,
.news_list[data-layout="square"] .entry,
.contest_list[data-layout="square"] .entry,
.job_list[data-layout="square"] .entry,
.seating_charts[data-layout="square"] .entry,
.gallery-listing[data-layout="square"] .entry {
  width: 100%;
  float: left;
  padding: 0;
  border: none;
  margin: 0 0 20px;
}

.spotlight[data-layout="square"] .entry .info .content, .spotlight[data-layout="square"] .entry .button,
.concierge[data-layout="square"] .entry .info .content,
.concierge[data-layout="square"] .entry .button,
.news_list[data-layout="square"] .entry .info .content,
.news_list[data-layout="square"] .entry .button,
.contest_list[data-layout="square"] .entry .info .content,
.contest_list[data-layout="square"] .entry .button,
.job_list[data-layout="square"] .entry .info .content,
.job_list[data-layout="square"] .entry .button,
.seating_charts[data-layout="square"] .entry .info .content,
.seating_charts[data-layout="square"] .entry .button,
.gallery-listing[data-layout="square"] .entry .info .content,
.gallery-listing[data-layout="square"] .entry .button {
  display: none;
}

.spotlight[data-layout="square"] .entry .thumb,
.concierge[data-layout="square"] .entry .thumb,
.news_list[data-layout="square"] .entry .thumb,
.contest_list[data-layout="square"] .entry .thumb,
.job_list[data-layout="square"] .entry .thumb,
.seating_charts[data-layout="square"] .entry .thumb,
.gallery-listing[data-layout="square"] .entry .thumb {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  margin-right: 0;
}

.spotlight[data-layout="square"] .entry .thumb:after,
.concierge[data-layout="square"] .entry .thumb:after,
.news_list[data-layout="square"] .entry .thumb:after,
.contest_list[data-layout="square"] .entry .thumb:after,
.job_list[data-layout="square"] .entry .thumb:after,
.seating_charts[data-layout="square"] .entry .thumb:after,
.gallery-listing[data-layout="square"] .entry .thumb:after {
  display: none;
}

.spotlight[data-layout="square"] .entry .info,
.concierge[data-layout="square"] .entry .info,
.news_list[data-layout="square"] .entry .info,
.contest_list[data-layout="square"] .entry .info,
.job_list[data-layout="square"] .entry .info,
.seating_charts[data-layout="square"] .entry .info,
.gallery-listing[data-layout="square"] .entry .info {
  width: 100%;
  display: block;
  text-align: center;
  padding: 0;
}

.spotlight[data-layout="square"] .entry .title:before,
.concierge[data-layout="square"] .entry .title:before,
.news_list[data-layout="square"] .entry .title:before,
.contest_list[data-layout="square"] .entry .title:before,
.job_list[data-layout="square"] .entry .title:before,
.seating_charts[data-layout="square"] .entry .title:before,
.gallery-listing[data-layout="square"] .entry .title:before {
  display: none;
}

@media screen and (min-width: 501px) {
  .spotlight[data-layout="square"] .entry,
  .concierge[data-layout="square"] .entry,
  .news_list[data-layout="square"] .entry,
  .contest_list[data-layout="square"] .entry,
  .job_list[data-layout="square"] .entry,
  .seating_charts[data-layout="square"] .entry,
  .gallery-listing[data-layout="square"] .entry {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  .spotlight[data-layout="square"] .entry:nth-child(odd),
  .concierge[data-layout="square"] .entry:nth-child(odd),
  .news_list[data-layout="square"] .entry:nth-child(odd),
  .contest_list[data-layout="square"] .entry:nth-child(odd),
  .job_list[data-layout="square"] .entry:nth-child(odd),
  .seating_charts[data-layout="square"] .entry:nth-child(odd),
  .gallery-listing[data-layout="square"] .entry:nth-child(odd) {
    clear: left;
  }
}

@media screen and (min-width: 871px) {
  .spotlight[data-layout="square"] .entry,
  .concierge[data-layout="square"] .entry,
  .news_list[data-layout="square"] .entry,
  .contest_list[data-layout="square"] .entry,
  .job_list[data-layout="square"] .entry,
  .seating_charts[data-layout="square"] .entry,
  .gallery-listing[data-layout="square"] .entry {
    width: calc(25% - 20px);
  }
  .spotlight[data-layout="square"] .entry:nth-child(odd),
  .concierge[data-layout="square"] .entry:nth-child(odd),
  .news_list[data-layout="square"] .entry:nth-child(odd),
  .contest_list[data-layout="square"] .entry:nth-child(odd),
  .job_list[data-layout="square"] .entry:nth-child(odd),
  .seating_charts[data-layout="square"] .entry:nth-child(odd),
  .gallery-listing[data-layout="square"] .entry:nth-child(odd) {
    clear: none;
  }
  .spotlight[data-layout="square"] .entry:nth-child(4n+1),
  .concierge[data-layout="square"] .entry:nth-child(4n+1),
  .news_list[data-layout="square"] .entry:nth-child(4n+1),
  .contest_list[data-layout="square"] .entry:nth-child(4n+1),
  .job_list[data-layout="square"] .entry:nth-child(4n+1),
  .seating_charts[data-layout="square"] .entry:nth-child(4n+1),
  .gallery-listing[data-layout="square"] .entry:nth-child(4n+1) {
    clear: left;
  }
}

.gallery-listing[data-layout="square"] .entry {
  margin-bottom: 40px;
}

.gallery-listing[data-layout="square"] .entry .date {
  display: none;
}

.gallery-listing[data-layout="square"] .entry .spot-button {
  display: inline-block;
  margin: 20px 0px 0px;
}

.gallery-listing[data-layout="square"] .entry.open-gallery-link .thumb {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  cursor: pointer;
}

.gallery-listing[data-layout="square"] .entry.open-gallery-link .thumb:hover {
  opacity: 0.8;
}

.gallery-listing[data-layout="square"] .entry.open-gallery-link h3.title {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  cursor: pointer;
}

.gallery-listing[data-layout="square"] .entry.open-gallery-link h3.title:hover {
  color: #2274A5;
  text-decoration: underline;
  text-decoration-skip: ink;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-color: #2274A5;
}

@media screen and (max-width: 870px) {
  .news_list .thumb, .news_list .teaser {
    display: none;
  }
  .news_list .info {
    text-align: left;
    width: 100%;
    margin-bottom: 0;
  }
  .news_list .thumb + .info {
    padding: 0 0 0 30px;
  }
}

@media screen and (max-width: 750px) {
  .news_list .thumb + .info {
    padding-left: 0;
  }
}

/* ----------------------------------------------------------------------------
= Showtime Homepage Overlay
----------------------------------------------------------------------------- */
@media screen and (max-width: 750px) {
  #meerkat-wrap {
    position: absolute !important;
  }
}

#overlay_container {
  display: none;
  padding: 100px 0 0;
}

#overlay_container .close-overlay {
  position: absolute;
  display: block;
  z-index: 50;
  top: -25px;
  right: -25px;
  width: 50px;
  height: 50px;
  background: url(../images/button_close.png) no-repeat center center;
  cursor: pointer;
}

#overlay_container a, #overlay_container a:link, #overlay_container a:visited {
  position: relative;
  display: block;
  z-index: 10;
  max-width: 1000px;
  height: auto;
}

#overlay_container a img, #overlay_container a:link img, #overlay_container a:visited img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay_content {
  position: relative;
  width: 95%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

.close-overlay-bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

.dontshow-overlay {
  width: 100%;
  padding: 10px 0;
  color: #fff;
  background: #000;
  font: 400 20px/140% Heebo, sans-serif;
  line-height: 25px;
  cursor: pointer;
  text-align: center;
}

.dontshow-overlay:hover {
  color: #fff;
  background: #333;
}

/* ----------------------------------------------------------------------------
= Homepage items and layout
----------------------------------------------------------------------------- */
.home .full {
  margin-bottom: 0;
}

.home .featured_events_section {
  display: block;
  clear: both;
  margin: 95px auto 0;
  max-width: 1210px;
}

@media screen and (max-width: 960px) {
  .home .featured_events_section {
    padding: 0px 20px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 750px) {
  .home .featured_events_section {
    margin: 40px auto 0;
    padding: 0px 10px;
  }
}

.blog_wrapper {
  padding: 0 20px;
}

@media screen and (max-width: 750px) {
  .blog_wrapper {
    padding: 0 10px;
  }
}

.blog_wrapper_inner {
  zoom: 1;
  position: relative;
  background: white;
  padding: 20px;
  width: 100%;
  max-width: 1480px;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
  padding: 40px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

.blog_wrapper_inner:before, .blog_wrapper_inner:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.blog_wrapper_inner:after {
  clear: both;
}

.blog_wrapper_inner .label {
  float: left;
  font-weight: 900;
  font-size: 47px;
  color: rgba(34, 51, 59, 0.3);
  letter-spacing: 0;
  line-height: 47px;
  width: 180px;
  padding: 0px 0px 0px 40px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

@media screen and (max-width: 870px) {
  .blog_wrapper_inner .label {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    padding: 0px 0px 20px;
    transform: translateY(0%);
  }
}

@media screen and (max-width: 750px) {
  .blog_wrapper_inner .label {
    padding: 0px 10px 10px;
  }
}

.blog_wrapper_inner .latest_post {
  zoom: 1;
  float: right;
  width: calc(100% - 180px);
  padding: 0px 40px;
  border-left: 6px solid #F3A712;
}

.blog_wrapper_inner .latest_post:before, .blog_wrapper_inner .latest_post:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.blog_wrapper_inner .latest_post:after {
  clear: both;
}

.blog_wrapper_inner .latest_post h3.title {
  margin: 0 0 5px;
  line-height: 1;
}

.blog_wrapper_inner .latest_post h3.title a:hover {
  color: #B32D18;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: #B32D18;
}

.blog_wrapper_inner .latest_post .date {
  font-weight: 400;
  font-size: 15px;
  color: #B32D18;
  letter-spacing: 0;
  margin-bottom: 15px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.blog_wrapper_inner .latest_post .body p {
  margin: 0;
}

.blog_wrapper_inner .latest_post .btn_arrow {
  color: #22333B;
  margin-top: 20px;
  clear: both;
  display: inline-block;
}

@media screen and (max-width: 870px) {
  .blog_wrapper_inner .latest_post {
    border-left: none;
    border-top: 6px solid #F3A712;
    width: 100%;
    padding: 40px 0 0;
  }
}

@media screen and (max-width: 750px) {
  .blog_wrapper_inner .latest_post {
    padding: 30px 10px 0;
  }
}

@media screen and (max-width: 870px) {
  .blog_wrapper_inner {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 750px) {
  .blog_wrapper_inner {
    padding: 40px 10px;
  }
}

.how_to_get_here_section {
  position: relative;
  zoom: 1;
  height: calc(618px - 60px);
}

.how_to_get_here_section:before, .how_to_get_here_section:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.how_to_get_here_section:after {
  clear: both;
}

.how_to_get_here_section .map_wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 4;
  height: 600px;
  width: calc(100% - 207px);
  float: right;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.how_to_get_here_section .map_wrapper a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  line-height: 0;
}

.how_to_get_here_section .map_wrapper a span {
  opacity: 0;
}

.how_to_get_here_section .map_wrapper a:before {
  content: '';
  background-image: url(../images/cobbenergycentre_map.jpg);
  background-position: center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

@media screen and (max-width: 870px) {
  .how_to_get_here_section .map_wrapper {
    position: relative;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 290px;
  }
}

.map_text {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 400px;
  height: 618px;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
  z-index: 5;
  padding: 100px 50px;
  margin-top: -60px;
}

.map_text:before {
  content: '';
  height: 6px;
  width: calc(100% - 60px);
  background: #B32D18;
  display: block;
  position: absolute;
  top: 60px;
  left: 30px;
  max-width: 340px;
}

.map_text h2 {
  text-transform: capitalize;
  padding-right: 60px;
}

.map_text p.lead {
  font-weight: 400;
  font-size: 25px;
  color: #B32D18;
  letter-spacing: 0;
  margin-bottom: 30px;
}

.map_text .map_link {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media screen and (max-width: 870px) {
  .map_text {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    margin: 0;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 750px) {
  .map_text {
    padding: 70px 20px;
  }
  .map_text:before {
    top: 40px;
    left: 10px;
    width: calc(100% - 20px);
    max-width: 100%;
  }
}

.non-intro {
  min-height: calc(100vh + 400px);
}

.non-intro .non-intro-inner {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 871px) {
  .non-intro .non-intro-inner {
    position: fixed;
  }
}

@media screen and (max-width: 870px) {
  .non-intro .non-intro-inner {
    padding-top: 0;
  }
}

.non-intro.unlock .non-intro-inner {
  position: relative;
  padding-top: 300px;
}

.intro {
  position: relative;
  top: 0px;
  left: 0px;
  height: 100vh;
  min-height: 560px;
  width: 100vw;
  display: block;
  z-index: 10;
  background: url(../images/intro_sunbeams.png) right bottom #B32D18 no-repeat;
  overflow: hidden;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

.intro .intro_inner {
  background: url(../images/bg_intro.jpg) no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(100% - 370px);
  height: calc(100% - 60px);
  z-index: 10;
}

.intro .intro_inner .intro_image {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center center;
  z-index: 10;
}

@media screen and (max-width: 750px) {
  .intro .intro_inner .intro_image {
    height: 100%;
  }
}

.intro .intro_inner .intro_info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 15;
}

.intro .intro_inner .intro_info:before {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  content: '';
  border: none;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 80%;
  visibility: visible;
  background-image: linear-gradient(-180deg, transparent 12%, #000000 64%);
  zoom: 1;
  opacity: 0.9;
  -moz-opacity: 0.9;
  filter: alpha(opacity=90);
}

.intro .intro_inner .intro_text {
  position: absolute;
  left: 0px;
  bottom: 0px;
  padding: 54px 70px;
  width: 100%;
}

@media screen and (max-width: 870px) {
  .intro .intro_inner .intro_text {
    padding: 40px 20px;
    bottom: 20px;
  }
}

@media screen and (max-width: 750px) {
  .intro .intro_inner .intro_text {
    padding: 40px 20px 20px;
    bottom: 0;
  }
}

.intro .intro_inner .intro_title {
  font-weight: 900;
  font-size: 3.1573345183rem;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 10px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.intro .intro_inner .intro_title a {
  color: inherit;
}

.intro .intro_inner .intro_title a:hover {
  color: #FFFFFF;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: #FFFFFF;
}

@media screen and (max-width: 750px) {
  .intro .intro_inner .intro_title {
    font-size: 2.368593037rem;
  }
}

.intro .intro_inner .intro_tagline {
  font-weight: 400;
  font-size: 32px;
  font-size: 1.602rem;
  color: #B32D18;
  letter-spacing: 0;
  line-height: 32px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.intro .intro_inner .date {
  font-weight: 900;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  padding: 0px 30px 0px 0px;
  float: left;
}

.intro .intro_inner .button_wrapper {
  margin-top: 40px;
  line-height: 60px;
}

.intro .intro_inner .intro_buttons {
  float: left;
}

@media screen and (max-width: 1080px) {
  .intro .intro_inner {
    width: calc(100% - 310px);
  }
}

@media screen and (max-width: 870px) {
  .intro .intro_inner {
    width: calc(100% - 60px);
    height: calc(100% - 60px - 250px);
  }
}

@media screen and (max-width: 750px) {
  .intro .intro_inner {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 220px);
    height: calc(100% - 20px);
  }
  .intro .intro_inner .button_wrapper {
    margin-top: 20px;
  }
  .intro .intro_inner .intro_buttons {
    float: none;
  }
  .intro .intro_inner .intro_buttons a {
    margin-top: 10px;
  }
}

@media screen and (max-width: 500px) {
  .intro .intro_inner {
    height: calc(100% - 170px);
    height: calc(100% - 20px);
  }
  .intro .intro_inner .intro_buttons {
    float: none;
  }
  .intro .intro_inner .intro_buttons a {
    margin-top: 10px;
    height: 40px;
    line-height: 40px;
  }
  .intro .intro_inner .intro_buttons a:before {
    height: 40px;
  }
}

.intro .right_side {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 340px;
  height: 100%;
  z-index: 15;
}

.intro .right_side .upcoming_events {
  position: absolute;
  bottom: 30px;
  right: 0px;
  height: calc(100% - 418px - 90px);
  overflow: auto;
  width: 100%;
}

.intro .right_side .upcoming_events .upcoming_events_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 70px);
  height: auto;
}

@media screen and (max-width: 1080px) {
  .intro .right_side .upcoming_events .upcoming_events_inner {
    width: calc(100% - 40px);
  }
}

@media screen and (max-height: 1100px) and (min-width: 871px) {
  .intro .right_side .upcoming_events {
    height: calc(100% - 330px - 60px);
  }
  .intro .right_side .upcoming_events .upcoming_events_inner {
    top: auto;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1080px) {
  .intro .right_side {
    width: 280px;
  }
}

@media screen and (max-width: 870px) {
  .intro .right_side {
    position: absolute;
    top: auto;
    bottom: 15px;
    right: 0px;
    width: 100%;
    height: 250px;
  }
  .intro .right_side .upcoming_events {
    height: 250px;
    width: 100%;
    bottom: 0px;
  }
}

@media screen and (max-width: 750px) {
  .intro .right_side {
    display: none;
  }
}

.intro .intro_logo {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 375px;
  height: 418px;
  display: block;
  background: #FFFFFF;
  z-index: 20;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

.intro .intro_logo:before {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 0px;
  border-top: 60px solid white;
  border-right: 375px solid transparent;
}

.intro .intro_logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/intro_logo.png) center no-repeat;
}

.intro .intro_logo a:hover {
  zoom: 1;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}

@media screen and (max-width: 1080px) {
  .intro .intro_logo a {
    background-size: auto 80%;
  }
}

@media screen and (max-width: 870px) {
  .intro .intro_logo a {
    background-size: auto 80%;
  }
}

@media screen and (max-width: 1080px) {
  .intro .intro_logo {
    width: 300px;
    height: 320px;
  }
}

@media screen and (max-width: 870px) {
  .intro .intro_logo {
    top: auto;
    left: 0px;
    bottom: 0px;
    width: 340px;
    height: 300px;
  }
  .intro .intro_logo:before {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .intro .intro_logo {
    height: 200px;
    width: 200px;
    left: auto;
    right: 0px;
    top: 0px;
  }
  .intro .intro_logo:before {
    display: block;
    border-right: 200px solid transparent;
    border-top: 40px solid white;
  }
}

@media screen and (max-width: 500px) {
  .intro .intro_logo {
    height: 140px;
    width: 140px;
  }
  .intro .intro_logo:before {
    border-right: 140px solid transparent;
    border-top: 20px solid white;
  }
}

@media screen and (max-height: 1100px) and (min-width: 871px) {
  .intro .intro_logo {
    height: 300px;
  }
}

.intro .scrolldown_arrow {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: block;
  width: 100px;
  height: 71px;
  cursor: pointer;
  text-align: center;
}

.intro .scrolldown_arrow svg {
  display: block;
  margin: auto;
  margin-top: 30px;
  -webkit-transition: margin-top 0.1s linear;
  -moz-transition: margin-top 0.1s linear;
  -o-transition: margin-top 0.1s linear;
  transition: margin-top 0.1s linear;
}

.intro .scrolldown_arrow:hover svg {
  margin-top: 40px;
}

@media screen and (max-width: 870px) {
  .intro .scrolldown_arrow {
    bottom: 260px;
  }
}

@media screen and (max-width: 750px) {
  .intro .scrolldown_arrow {
    -webkit-transition: bottom 0.1s linear;
    -moz-transition: bottom 0.1s linear;
    -o-transition: bottom 0.1s linear;
    transition: bottom 0.1s linear;
    bottom: 5px;
    height: 26px;
  }
  .intro .scrolldown_arrow svg {
    margin-top: 0px;
  }
  .intro .scrolldown_arrow:hover {
    bottom: 0;
  }
  .intro .scrolldown_arrow:hover svg {
    margin-top: 0;
  }
}

.homepage_promos {
  zoom: 1;
  margin-top: 166px;
}

.homepage_promos:before, .homepage_promos:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.homepage_promos:after {
  clear: both;
}

.homepage_promos .promo_wrapper {
  zoom: 1;
}

.homepage_promos .promo_wrapper:before, .homepage_promos .promo_wrapper:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.homepage_promos .promo_wrapper:after {
  clear: both;
}

.homepage_promos .promo_wrapper .promo {
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  position: relative;
  float: left;
  height: calc(50vw - 80px);
  min-height: 700px;
  max-height: 800px;
  background-color: #333333;
  padding: 60px 30px;
}

.homepage_promos .promo_wrapper .promo * {
  color: #fff;
}

.homepage_promos .promo_wrapper .promo .promo_text {
  position: relative;
  padding: 40px 10px;
  border-top: 6px solid #F3A712;
  z-index: 5;
}

.homepage_promos .promo_wrapper .promo .promo_text .promo_title {
  margin-bottom: 0;
}

.homepage_promos .promo_wrapper .promo .promo_text .promo_title h2 {
  margin-bottom: 0;
}

.homepage_promos .promo_wrapper .promo .promo_text .promo_tagline {
  font-weight: 400;
  font-size: 1.266rem;
}

.homepage_promos .promo_wrapper .promo .promo_text .promo_body {
  margin-top: 40px;
}

@media screen and (max-width: 870px) {
  .homepage_promos .promo_wrapper .promo .promo_text .promo_body p {
    font-size: 18px;
  }
}

.homepage_promos .promo_wrapper .promo .promo_link {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
}

.homepage_promos .promo_wrapper .promo:hover .promo_text .promo_title h2 {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: white;
}

.homepage_promos .promo_wrapper .promo:hover .promo_link .btn_arrow {
  text-decoration: underline;
}

.homepage_promos .promo_wrapper .promo:hover .promo_link .btn_arrow:after {
  right: -5px;
}

@media screen and (max-width: 750px) {
  .homepage_promos .promo_wrapper .promo {
    padding: 40px 10px;
  }
}

.homepage_promos .promo_wrapper .promo_wide {
  zoom: 1;
  width: 50vw;
  float: left;
}

.homepage_promos .promo_wrapper .promo_wide:before, .homepage_promos .promo_wrapper .promo_wide:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.homepage_promos .promo_wrapper .promo_wide:after {
  clear: both;
}

.homepage_promos .promo_wrapper .promo_wide .promo {
  position: relative;
  width: 100%;
  height: 100%;
  height: calc(50vw - 80px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 0;
  min-height: 700px;
}

.homepage_promos .promo_wrapper .promo_wide .promo .promo_bg {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  content: '';
  border: none;
  position: absolute;
  top: auto;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 60%;
  z-index: 1;
  zoom: 1;
  opacity: 0.75;
  -moz-opacity: 0.75;
  filter: alpha(opacity=75);
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYxJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjkiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjkiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(top, transparent 0%, black 61%, black 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, black 61%, black 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, black 61%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000',GradientType=0 );
  /* IE6-8 */
}

@media screen and (max-width: 1180px) {
  .homepage_promos .promo_wrapper .promo_wide .promo .promo_bg {
    zoom: 1;
    opacity: 0.9;
    -moz-opacity: 0.9;
    filter: alpha(opacity=90);
  }
}

@media screen and (max-width: 750px) {
  .homepage_promos .promo_wrapper .promo_wide .promo .promo_bg {
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjI0JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjkiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjkiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.9) 24%, rgba(0, 0, 0, 0.9) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.9) 24%, rgba(0, 0, 0, 0.9) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 24%, rgba(0, 0, 0, 0.9) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000',GradientType=0 );
    /* IE6-8 */
    zoom: 1;
    opacity: 0.9;
    -moz-opacity: 0.9;
    filter: alpha(opacity=90);
    height: 100%;
  }
}

.homepage_promos .promo_wrapper .promo_wide .promo .promo_text {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 40px 60px;
  border-top: none;
}

.homepage_promos .promo_wrapper .promo_wide .promo .promo_text > div {
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1180px) {
  .homepage_promos .promo_wrapper .promo_wide .promo .promo_text {
    bottom: 0px;
    left: 0px;
  }
}

@media screen and (max-width: 750px) {
  .homepage_promos .promo_wrapper .promo_wide .promo .promo_text {
    padding: 40px 20px;
  }
}

.homepage_promos .promo_wrapper .promo_wide .promo .promo_title:before {
  content: '';
  position: absolute;
  top: -40px;
  left: -10px;
  height: 6px;
  width: 392px;
  display: block;
  background: #B32D18;
}

@media screen and (max-width: 750px) {
  .homepage_promos .promo_wrapper .promo_wide .promo .promo_title:before {
    width: calc(100% + 20px);
  }
}

.homepage_promos .promo_wrapper .promo_wide .promo .promo_body {
  height: 0px;
  overflow: hidden;
  z-index: 5;
}

.homepage_promos .promo_wrapper .promo_wide .promo .promo_body .promo_body_inner {
  padding-bottom: 20px;
}

@media screen and (max-width: 1180px) {
  .homepage_promos .promo_wrapper .promo_wide .promo .promo_body {
    height: auto;
  }
}

.homepage_promos .promo_wrapper .promo_wide .promo .promo_link {
  position: relative;
  bottom: auto;
  right: auto;
}

.homepage_promos .promo_wrapper .promo_wide .promo .promo_link.outside {
  display: none;
}

.homepage_promos .promo_wrapper .promo_wide .promo:hover .promo_bg {
  height: 70%;
  zoom: 1;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}

@media screen and (max-width: 750px) {
  .homepage_promos .promo_wrapper .promo_wide .promo:hover .promo_bg {
    height: 100%;
    zoom: 1;
    opacity: 0.9;
    -moz-opacity: 0.9;
    filter: alpha(opacity=90);
  }
}

@media screen and (max-width: 1180px) {
  .homepage_promos .promo_wrapper .promo_wide .promo {
    width: 100%;
    min-height: 500px;
    zoom: 1;
    opacity: 0.9;
    -moz-opacity: 0.9;
    filter: alpha(opacity=90);
  }
}

@media screen and (max-width: 1180px) {
  .homepage_promos .promo_wrapper .promo_wide {
    width: 100%;
  }
  .homepage_promos .promo_wrapper .promo_wide .promo {
    padding-top: 150px;
    height: auto;
  }
}

@media screen and (max-width: 750px) {
  .homepage_promos .promo_wrapper .promo_wide .promo {
    padding-top: 40px;
  }
}

@media screen and (max-width: 500px) {
  .homepage_promos .promo_wrapper .promo_wide .promo .promo_text {
    position: relative;
  }
}

.homepage_promos .promo_wrapper .promo_standard {
  zoom: 1;
  width: 50vw;
  float: left;
}

.homepage_promos .promo_wrapper .promo_standard:before, .homepage_promos .promo_wrapper .promo_standard:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.homepage_promos .promo_wrapper .promo_standard:after {
  clear: both;
}

.homepage_promos .promo_wrapper .promo_standard .promo_bg {
  position: absolute;
  left: 0px;
  top: 0%;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 3;
  background: url(../images/bg_promo.png) right 80% no-repeat;
  background-size: 571px 153px;
}

.homepage_promos .promo_wrapper .promo_standard .promo {
  width: 25vw;
  min-height: 700px;
}

.homepage_promos .promo_wrapper .promo_standard .promo:before {
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  position: absolute;
  top: -69px;
  left: 0px;
  content: '';
  border-right: 25vw solid transparent;
  border-top: 30px solid transparent;
}

@media screen and (max-width: 1180px) {
  .homepage_promos .promo_wrapper .promo_standard .promo:before {
    display: none;
  }
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_2 {
  background-color: #938581;
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_2:before {
  top: -99px;
  border-bottom: 30px solid #938581;
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_2:after {
  position: absolute;
  top: -39px;
  left: 0px;
  content: '';
  background: inherit;
  width: 100%;
  height: 39px;
}

@media screen and (max-width: 1180px) {
  .homepage_promos .promo_wrapper .promo_standard .promo.promo_2:after {
    display: none;
  }
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_2:hover {
  background: #A99994;
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_2:hover:before {
  border-bottom-color: #A99994;
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_3 {
  background-color: #51355A;
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_3:before {
  border-bottom: 30px solid #51355A;
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_3:after {
  position: absolute;
  top: -9px;
  left: 0px;
  content: '';
  background: inherit;
  width: 100%;
  height: 9px;
}

@media screen and (max-width: 1180px) {
  .homepage_promos .promo_wrapper .promo_standard .promo.promo_3:after {
    display: none;
  }
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_3:hover {
  background: #654270;
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_3:hover:before {
  border-bottom: 30px solid #654270;
}

.homepage_promos .promo_wrapper .promo_standard .promo.promo_3 .promo_text {
  border-color: #6DD3CE;
}

.homepage_promos .promo_wrapper .promo_standard .promo .promo_link.inside {
  display: none;
}

@media screen and (max-width: 1180px) {
  .homepage_promos .promo_wrapper .promo_standard {
    width: 100%;
  }
  .homepage_promos .promo_wrapper .promo_standard .promo {
    width: 50%;
    height: auto;
    min-height: 0px;
  }
}

@media screen and (max-width: 750px) {
  .homepage_promos .promo_wrapper .promo_standard .promo {
    width: 100%;
  }
}

@media screen and (min-width: 751px) {
  .homepage_promos .promo_wrapper .promo_standard {
    display: flex;
  }
}

@media screen and (min-width: 1181px) {
  .homepage_promos .promo_wrapper {
    display: flex;
  }
}

@media screen and (max-width: 1180px) {
  .homepage_promos {
    margin-top: 40px;
  }
}

@media screen and (max-width: 750px) {
  .homepage_promos {
    margin-top: 0px;
  }
}

.footer_promo {
  position: relative;
  max-width: 1310px;
  width: 100%;
  padding: 40px;
  margin: auto;
}

.footer_promo * {
  color: #ffffff;
}

.footer_promo .promo_text {
  position: relative;
  padding-bottom: 40px;
}

.footer_promo .promo_text .promo_header:before {
  content: '';
  height: 6px;
  width: calc(100% - 60px);
  background: #B32D18;
  display: block;
  position: absolute;
  top: 0px;
  left: -20px;
  max-width: 340px;
}

@media screen and (max-width: 750px) {
  .footer_promo .promo_text .promo_header:before {
    left: -10px;
    width: calc(100% + 20px);
    max-width: none;
  }
}

@media screen and (max-width: 870px) {
  .footer_promo .promo_text {
    border-right: none;
  }
}

.footer_promo .promo_title h2 {
  position: relative;
  text-transform: capitalize;
  padding-right: 60px;
  color: #ffffff;
  padding-top: 40px;
}

.footer_promo .promo_title h2 a:hover {
  text-decoration: underline;
}

.footer_promo .promo_tagline {
  font-weight: 400;
  font-size: 25px;
  color: #ffffff;
  letter-spacing: 0;
  margin-bottom: 30px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.footer_promo .promo_link {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

@media screen and (min-width: 871px) {
  .footer_promo .promo_text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .footer_promo .promo_text .promo_header {
    border-right: 6px solid #B32D18;
    flex-shrink: 0;
  }
  .footer_promo .promo_text .promo_header:before {
    display: none;
  }
  .footer_promo .promo_text .promo_body {
    padding: 20px;
  }
  .footer_promo .promo_text .promo_content {
    position: relative;
    padding-left: 40px;
  }
}

@media screen and (max-width: 750px) {
  .footer_promo {
    padding: 40px 20px;
  }
}

.link {
  position: relative;
}

.link ul.list {
  padding: 0;
}

.link ul.list li > a, .link ul.list li > span {
  display: block;
  position: relative;
  padding: 5px 0px 5px 50px;
  word-wrap: break-word;
  color: #22333B;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  /*------------------------------------------------------------
            =Handles all Social Media icons for select social media urls
                -- Twitter | Facebook | Instagram | Pinterest
            ------------------------------------------------------------*/
}

.link ul.list li > a svg, .link ul.list li > span svg {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  fill: #22333B;
}

.link ul.list li > a:hover, .link ul.list li > span:hover {
  color: #B32D18;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: #B32D18;
}

.link ul.list li > a:hover svg, .link ul.list li > span:hover svg {
  fill: #B32D18;
}

.link ul.list li > a[href*="twitter"] svg, .link ul.list li > a[href*="facebook"] svg, .link ul.list li > a[href*="instagram"] svg, .link ul.list li > a[href*="pinterest"] svg, .link ul.list li > span[href*="twitter"] svg, .link ul.list li > span[href*="facebook"] svg, .link ul.list li > span[href*="instagram"] svg, .link ul.list li > span[href*="pinterest"] svg {
  display: none;
}

.link ul.list li > a[href*="twitter"]:before, .link ul.list li > a[href*="facebook"]:before, .link ul.list li > a[href*="instagram"]:before, .link ul.list li > a[href*="pinterest"]:before, .link ul.list li > span[href*="twitter"]:before, .link ul.list li > span[href*="facebook"]:before, .link ul.list li > span[href*="instagram"]:before, .link ul.list li > span[href*="pinterest"]:before {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  top: 4px;
  left: 0px;
  display: inline-block;
  background: none;
  padding: 0;
  font-family: FontAwesome;
  font-size: 25px;
  font-weight: normal;
  font-style: normal;
  color: #1B262B;
  text-decoration: inherit;
}

.link ul.list li > a[href*="twitter"]:hover:before, .link ul.list li > a[href*="facebook"]:hover:before, .link ul.list li > a[href*="instagram"]:hover:before, .link ul.list li > a[href*="pinterest"]:hover:before, .link ul.list li > span[href*="twitter"]:hover:before, .link ul.list li > span[href*="facebook"]:hover:before, .link ul.list li > span[href*="instagram"]:hover:before, .link ul.list li > span[href*="pinterest"]:hover:before {
  color: #22333B;
}

.link ul.list li > a[href*="twitter"]:before, .link ul.list li > span[href*="twitter"]:before {
  content: "\f099";
}

.link ul.list li > a[href*="facebook"]:before, .link ul.list li > span[href*="facebook"]:before {
  content: "\f09a";
}

.link ul.list li > a[href*="instagram"]:before, .link ul.list li > span[href*="instagram"]:before {
  content: "\f16d";
}

.link ul.list li > a[href*="pinterest"]:before, .link ul.list li > span[href*="pinterest"]:before {
  content: "\f0d2";
}

.link ul.list li > span .link_icon {
  display: none;
}

.link ul.list li > span:hover {
  color: #22333B;
}

.link ul.list .description {
  padding-left: 50px;
}

.link ul.list .description p, .link ul.list .description li {
  margin-top: 0;
  font-size: 18px;
}

.link ul.list .description p {
  margin-bottom: 20px;
}

/* ----------------------------------------------------------------------------
= FAQ Accordion
----------------------------------------------------------------------------- */
.faq {
  position: relative;
  padding: 0;
}

.faq dt {
  overflow: auto;
  margin: 0;
  margin-top: 10px;
  cursor: pointer;
}

.faq dt:hover p {
  background: #ffffff;
  border-color: #E5E5E5;
}

.faq dt a:hover p {
  color: #1B262B;
}

.faq dt p {
  position: relative;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  margin: 0;
  padding: 14px 50px 14px 23px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-transform: none;
  background: #E5E5E5;
  border: 2px solid #E5E5E5;
  font-weight: 900;
}

.faq dt p:after {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  top: 25px;
  right: 22px;
  content: '';
  border-top: 8px solid #22333B;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

@media screen and (max-width: 750px) {
  .faq dt p {
    padding: 10px 50px 10px 10px;
  }
}

.faq dt.active p, .faq dt.open p {
  background: #FFFFFF;
  border-color: #E5E5E5;
  border-bottom: none;
  color: #B32D18;
}

.faq dt.active p:after, .faq dt.open p:after {
  border-top-color: #B32D18;
  transform: rotate(180deg);
}

.faq dd {
  display: none;
  padding: 0;
  margin: 0;
  border: 2px solid #E5E5E5;
  border-top: none;
  padding: 0px 50px 0px 23px;
}

@media screen and (max-width: 750px) {
  .faq dd {
    padding: 0px 10px 0px 10px;
  }
}

/* ----------------------------------------------------------------------------
= Seating Charts Page styles - Listing page
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Venue Pages
----------------------------------------------------------------------------- */
.venue_detail .heading {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #ccc;
}

.venue_detail .heading h1 {
  display: block;
  width: 600px;
  margin: 0;
  padding: 27px 0 0;
  color: #333;
  font: bold 26px/120% Heebo, sans-serif;
  text-transform: uppercase;
}

.venue_detail .venue_body .events {
  padding-top: 15px;
  border-top: 1px solid #ccc;
}

.venue_detail .main_column .seating img {
  max-width: 600px;
}

/* ----------------------------------------------------------------------------
= Map styles
----------------------------------------------------------------------------- */
.map_holder {
  position: relative;
  display: block;
  width: 100%;
  height: 500px;
  padding-bottom: 40px;
}

.map_holder .map {
  width: 100%;
  height: 100%;
}

.home .map_holder {
  height: 600px;
  padding-bottom: 0;
}

@media screen and (max-width: 870px) {
  .home .map_holder {
    height: 290px;
  }
}

@media screen and (max-width: 750px) {
  .map_holder {
    height: calc(100vw - 20px);
    max-height: 500px;
  }
}

.map_window {
  padding: 20px 0 10px;
  margin-left: 20px;
}

.map_window .info {
  position: relative;
  margin: 0 0 0px;
  padding: 0 0 10px;
  text-align: center;
}

.map_window .info h4 {
  font-weight: 900;
  font-size: 20px;
  color: #22333B;
  letter-spacing: 0.03px;
  line-height: 20px;
}

.map_window .info address {
  font-weight: 300;
  font-size: 14px;
  color: #4D5057;
  letter-spacing: 0;
  margin-bottom: 0;
}

.map_window .info address .hidden {
  display: block;
  visibility: visible;
}

.map_window .info .directions_toggle {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 20px;
  width: 20px;
}

.map_window .info .directions_toggle:after {
  content: '';
  border-top: 10px solid #B32D18;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map_window .info .directions_toggle.is-active {
  transform: rotate(180deg);
}

.map_window .desc {
  float: left;
  width: 120px;
  display: none;
}

.map_window .desc img {
  float: left;
  width: 120px;
  height: auto;
  margin: 0 15px 0 0;
}

.map_window .desc p {
  margin: 0;
  padding: 0;
}

.map_window .directions_custom {
  padding: 4px 0 0;
  width: 290px;
}

.map_window .directions_custom .direction_form {
  display: none;
}

.map_window .directions_custom label {
  display: block;
  margin: 0 0 8px;
  color: #000;
  font-size: 12px;
}

.map_window .directions_custom input[type=text] {
  width: 100%;
  margin: 0 0 8px;
  padding: 8px 5px;
  color: #000;
  font-size: 14px;
}

.map_window .directions_custom form button {
  display: block;
  clear: both;
}

.map_window .directions {
  width: 100%;
  padding: 4px 0 0;
}

.map_window .directions label {
  display: block;
  margin: 0 0 8px;
  color: #000;
  font-size: 12px;
  display: none;
}

.map_window .directions input[type=text] {
  width: calc(100% - 100px);
  margin: 0 0 8px;
  padding: 4px 5px;
  color: #000;
  font-size: 12px;
  display: none;
}

.map_window .directions form button {
  display: block;
  float: none;
  border: 0;
  width: auto;
  background: none;
  margin: auto;
}

.map_window .links {
  display: none;
}

.map_control {
  zoom: 1;
  position: relative;
  z-index: 51;
  margin: 0 auto;
  line-height: 40px;
  background: #fff;
  padding: 0 10px;
  width: 100%;
}

.map_control:before, .map_control:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.map_control:after {
  clear: both;
}

.map_control:before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 10px;
  width: calc(100% - 20px);
  height: 50%;
  max-height: 20px;
  display: block;
  background: #F5F5F5;
  visibility: visible;
  z-index: 1;
}

.map_control .map_anchor {
  display: none;
}

.map_control label {
  position: relative;
  display: block;
  float: left;
  height: 40px;
  padding: 0 15px;
  color: #1B262B;
  font-size: 12px;
  font-weight: 300;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.map_control button {
  position: relative;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  float: left;
  margin: 0 0px 0 0;
  padding: 0 30px;
  color: #1B262B;
  border: none;
  background: none;
  font-family: Heebo, sans-serif;
  font-size: 12px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.05em;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.map_control button:before {
  content: '';
  height: 12px;
  width: 12px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  display: block;
  border-radius: 50%;
  background: #7251B4;
}

.map_control button.restaurants:before {
  background: #6DD3CE;
}

.map_control button.hotels:before {
  background: #F3A527;
}

.map_control button.active {
  outline: none;
  color: #B32D18;
}

.map_control button.active:after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 8px solid #B32D18;
}

.map_control button.active:hover {
  outline: none;
}

.map_control button:hover {
  color: #B32D18;
  outline: none;
}

.map_control button:focus {
  outline: none;
}

@media screen and (max-width: 750px) {
  .map_control {
    padding: 0 5px;
  }
  .map_control label {
    display: none;
  }
  .map_control button {
    padding-right: 10px;
  }
  .map_control button:before {
    left: 10px;
  }
}

@media screen and (max-width: 500px) {
  .map_control button {
    font-size: 11px;
    padding-right: 10px;
  }
  .map_control button:before {
    left: 10px;
  }
}

/* ----------------------------------------------------------------------------
= Pagination
----------------------------------------------------------------------------- */
body#events.all #column_1 .paging.final {
  display: none;
}

.paging {
  zoom: 1;
  position: relative;
  height: 40px;
  margin: 5px 0 15px;
  padding: 0 20px;
  color: #666;
  font: 400 14px/40px Heebo, sans-serif;
  letter-spacing: 0.06em;
}

.paging:before, .paging:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.paging:after {
  clear: both;
}

.paging.final {
  margin: 0;
}

.paging.empty {
  height: 0;
  margin: 0;
  padding: 0;
  background: none;
}

.paging .record {
  float: left;
  width: auto;
  height: 40px;
  padding: 0 0 0 10px;
  display: none;
}

.paging .pages {
  zoom: 1;
  float: right;
  width: auto;
  margin: 0 -17px 0 0;
  text-align: center;
}

.paging .pages:before, .paging .pages:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.paging .pages:after {
  clear: both;
}

.paging .pages a, .paging .pages a:link, .paging .pages a:visited {
  position: relative;
  float: left;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  font: 700 14px/30px Heebo, sans-serif;
  text-decoration: none;
  color: #1B262B;
}

.paging .pages a:hover, .paging .pages a:link:hover, .paging .pages a:visited:hover {
  color: #22333B;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: #2274A5;
}

.paging .pages a.last, .paging .pages a.first, .paging .pages a:link.last, .paging .pages a:link.first, .paging .pages a:visited.last, .paging .pages a:visited.first {
  display: none;
}

.paging .pages strong {
  position: relative;
  float: left;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  font: 700 14px/30px Heebo, sans-serif;
  text-decoration: none;
  background: #B32D18;
  color: #ffffff;
}

/* ----------------------------------------------------------------------------
=Password Protected Page login form
----------------------------------------------------------------------------- */
.login-form {
  text-align: center;
}

.login-form form {
  position: relative;
  margin: 40px 0;
}

.login-form input[type='password'] {
  position: relative;
  width: 80%;
  max-width: 300px;
  height: 46px;
  background: transparent;
  border: 1px solid black;
  padding: 8px 10px;
  font-size: 15px;
  color: #ffffff;
  color: #22333B;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.login-form input[type='password']::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #22333B;
}

.login-form input[type='password']:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #22333B;
}

.login-form input[type='password']::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #22333B;
}

.login-form input[type='password']:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #22333B;
}

.social_feed_header {
  zoom: 1;
  max-width: 1520px;
  width: 100%;
  margin: 0 auto 40px;
  padding: 0px 20px;
}

.social_feed_header:before, .social_feed_header:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.social_feed_header:after {
  clear: both;
}

.social_feed_header .social_feed_header_inner {
  max-width: 1082px;
  float: left;
}

.social_feed_header h2 {
  border-bottom: 6px solid #6DD3CE;
  display: block;
  color: #ffffff;
  padding-bottom: 20px;
}

.social_feed_header p {
  float: left;
  color: white;
  font-size: 32px;
  font-weight: 400;
}

.social_feed_header a {
  float: right;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 10px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.social_feed_header a br {
  display: none;
}

@media screen and (max-width: 750px) {
  .social_feed_header a {
    float: left;
    clear: both;
    line-height: 1.2;
    padding-left: 10px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 500px) {
  .social_feed_header a br {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .social_feed_header {
    padding: 0 10px;
  }
  .social_feed_header h2, .social_feed_header p {
    padding-left: 10px;
    padding-right: 10px;
  }
  .social_feed_header h2 {
    margin-bottom: 20px;
  }
}

.social_feed_wrapper {
  position: relative;
  background: url(../images/bg_social.png) top right #2274A5 no-repeat;
  padding: 100px 0px;
  min-height: 400px;
  overflow: hidden;
}

.social_feed_wrapper .social_feed {
  position: relative;
  z-index: 10;
  margin: auto;
  width: 100%;
  max-width: 1500px;
}

.social_feed_wrapper .feed_bg {
  position: absolute;
  bottom: 30px;
  left: 5%;
  background: url(../images/bg_social.png) center bottom no-repeat;
  background-size: contain;
  width: 90%;
  height: 444px;
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.social_toggle {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  cursor: pointer;
  display: none;
  z-index: 30;
  text-align: center;
  padding: 200px 0 30px;
  color: white;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 20px;
  background-image: linear-gradient(-180deg, rgba(34, 116, 165, 0) 0%, #2274A5 50%);
}

.social_toggle:after {
  -webkit-transition: left 0.1s linear;
  -moz-transition: left 0.1s linear;
  -o-transition: left 0.1s linear;
  transition: left 0.1s linear;
  content: '';
  margin-left: 10px;
  display: inline-block;
  border-right: 10px solid transparent;
  border-top: 10px solid #B32D18;
  border-left: 10px solid transparent;
}

@media screen and (max-width: 870px) {
  .social_toggle {
    display: block;
  }
}

.social_feed_container.is-visible + .social_toggle {
  background: none;
}

.social_feed_container.is-visible + .social_toggle:after {
  transform: rotate(180deg);
}

.social_feed_container {
  position: relative;
  padding-top: 20px;
}

@media screen and (max-width: 870px) {
  .social_feed_container {
    height: 1000px;
    overflow: hidden;
  }
  .social_feed_container.is-visible {
    height: auto;
  }
}

@media screen and (max-width: 750px) {
  .social_feed_container {
    height: 600px;
  }
}

.dcsns-toolbar {
  display: none;
}

ul.stream {
  padding: 0;
  margin: auto;
  max-width: 1490px;
  width: auto;
}

ul.stream li {
  list-style: none;
  padding: 0px 0 0px;
  margin: 0 7px 40px;
  display: block;
  width: 284px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
}

ul.stream li .icon, ul.stream li .section-date {
  display: none;
}

ul.stream li img {
  max-width: 100%;
}

.section_content {
  position: relative;
  width: 100%;
  padding: 0px 10px;
  color: #1B262B;
  font-family: Heebo, sans-serif;
  line-height: 1.8;
  float: left;
  font-size: 13px;
  font-weight: 400;
  background: white;
  font-size: 13px;
  color: #555555;
  letter-spacing: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.section_content:before {
  content: '';
  position: absolute;
  top: -23px;
  left: 0px;
  border-right: 284px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 13px solid #fff;
}

.section_content a {
  color: #2274A5;
}

.section_content a:hover {
  color: #B32D18;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: #B32D18;
}

.section_content img {
  width: 100%;
  max-width: 100%;
}

.section_content .section_title {
  font-size: 18px;
  padding: 20px 20px 0px;
  font-weight: 500;
  line-height: 1.2;
}

.section_content .section_title a {
  color: #1B262B;
  text-transform: uppercase;
  line-height: 1.2;
}

.section_content .section_title a:hover {
  color: #B32D18;
  text-decoration: none;
}

.section_content .section-text {
  padding: 10px 10px 20px;
  max-height: 300px;
  overflow-y: auto;
}

.social_feed_wrapper_mobile .section_content .section-text {
  max-height: none;
}

.section_content .section_title + .section-text {
  padding-top: 10px;
}

.section_content .section-thumb {
  zoom: 1;
  width: 100%;
}

.section_content .section-thumb:before, .section_content .section-thumb:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.section_content .section-thumb:after {
  clear: both;
}

.section_content .section-thumb a {
  float: left;
  width: 100%;
}

.section_content .section-thumb img {
  float: left;
  width: 100%;
}

.section_content .section-thumb iframe {
  width: 100%;
  display: block;
  border: none;
}

.section_content .section-intro {
  width: 100%;
  display: block;
  background: white;
  font-size: 12px;
  line-height: 30px;
  margin: auto;
  margin-bottom: 10px;
  position: relative;
  padding: 10px 0 5px;
  text-align: right;
  border-bottom: 2px solid;
}

.section_content .section-intro a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #4D5057;
}

.section_content .section-intro a:hover {
  color: #B32D18;
}

.section_content .section-intro img {
  float: left;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  display: none;
}

.section_content .section-intro:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  color: #B32D18;
  font-family: FontAwesome;
  font-size: 20px;
  vertical-align: top;
  line-height: 14px;
}

.dcsns-facebook .section_content .section-intro {
  border-color: #B32D18;
}

.dcsns-facebook .section_content .section-intro:before {
  content: '\f09a';
  color: #B32D18;
}

.dcsns-facebook .section_content .section-intro a:hover {
  color: #B32D18;
  text-decoration: none;
}

.dcsns-twitter .section_content .section-intro {
  border-color: #2274A5;
}

.dcsns-twitter .section_content .section-intro:before {
  content: '\f099';
  color: #2274A5;
}

.dcsns-twitter .section_content .section-intro a:hover {
  color: #2274A5;
  text-decoration: none;
}

.dcsns-instagram .section_content .section-intro {
  border-color: #F3A712;
}

.dcsns-instagram .section_content .section-intro:before {
  content: '\f16d';
  color: #F3A712;
}

.dcsns-instagram .section_content .section-intro a:hover {
  color: #F3A712;
  text-decoration: none;
}

.dcsns-rss .section_content .section-intro:before {
  font-family: Heebo, sans-serif;
  content: '// NEWS';
  color: #1B262B;
  font-size: 14px;
}

.section_content .post_time {
  padding: 10px 10px;
  font-size: 12px;
  padding-bottom: 0;
  display: block;
}

/* ----------------------------------------------------------------------------
= News List
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.full .full_column.news_detail {
  padding: 0;
}

.full .full_column.news_detail .news_thumb {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.full .full_column.news_detail .news_heading .date {
  font-weight: 900;
  font-size: 17px;
  color: #B32D18;
  letter-spacing: 0;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.full .full_column.news_detail .news_heading .date .m-date__singleDate {
  font-weight: 300;
  font-size: 16px;
  color: #B32D18;
  letter-spacing: 0;
  line-height: 20px;
}

.full .full_column.news_detail .news_heading .date .m-date__singleDate .m-date__weekday {
  font-weight: 900;
  color: #B32D18;
  font-size: 18px;
}

.full .full_column.news_detail .news_info.content {
  padding: 40px 20px 60px;
}

@media screen and (max-width: 870px) {
  .full .full_column.news_detail .news_info.content {
    padding-top: 20px;
  }
}

.full .full_column.news_detail .share {
  display: none;
}

.full .full_column.news_detail .news_heading + h3 {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
  font-size: 32px;
  color: #938581;
  letter-spacing: 0;
  line-height: 32px;
  padding-bottom: 23px;
  border-bottom: 4px solid #B32D18;
  margin-bottom: 50px;
}

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list_header {
  width: 100%;
  border-bottom: 6px solid #B32D18;
  color: #22333B;
  margin: auto;
  margin-bottom: 80px;
  padding-bottom: 35px;
  max-width: 1190px;
}

.event_list_header .overview {
  position: relative;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .event_list_header .overview {
    display: flex;
  }
}

.event_list_header h1 {
  flex-grow: 2;
  margin: 0;
}

.event_list_toggles {
  display: flex;
  align-self: center;
}

.event_list_toggles .toggle {
  position: relative;
  margin-left: 15px;
  color: #1B262B;
  padding-left: 40px;
  margin-top: 10px;
  height: 20px;
  vertical-align: top;
}

.event_list_toggles .toggle:nth-child(2) {
  margin-left: 25px;
}

.event_list_toggles .toggle:hover {
  cursor: pointer;
}

.event_list_toggles .toggle:hover svg {
  fill: #B32D18;
}

.event_list_toggles .toggle.calendar {
  display: none;
}

.event_list_toggles .toggle.is-active svg {
  fill: #B32D18;
}

.event_list_toggles .toggle.is-active span {
  font-weight: 900;
}

.event_list_toggles span {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 13px;
  color: #1B262B;
  letter-spacing: 0;
}

.event_list_toggles svg {
  fill: #1B262B;
}

@media screen and (max-width: 960px) {
  .event_list_toggles {
    display: none;
  }
}

.category-dropdown {
  position: relative;
  margin-right: 20px;
  align-self: center;
}

.category-dropdown .select {
  display: block;
  position: relative;
  max-width: 383px;
  width: 383px;
  height: 50px;
  line-height: 50px;
  background: white;
  border: none;
  margin: 0;
  padding: 0 0 0 20px;
  color: #222222;
  cursor: pointer;
  outline: none;
  z-index: 8;
  background: #FFFFFF;
  font-weight: 900;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.category-dropdown .select svg {
  float: right;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  fill: #1B262B;
}

.category-dropdown .select.is-active {
  border-color: #CCCCCC;
  color: #cccccc;
}

.category-dropdown .select.is-active svg {
  transform: rotate(180deg) translateY(5px);
  transform-origin: center center;
  fill: #ccc;
}

@media screen and (max-width: 1180px) {
  .category-dropdown .select {
    width: 300px;
  }
}

@media screen and (max-width: 870px) {
  .category-dropdown .select {
    width: 250px;
  }
}

@media screen and (max-width: 750px) {
  .category-dropdown .select {
    width: 100%;
  }
}

.category-dropdown .choices {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  width: 383px;
  background: #fff;
  padding: 10px;
  font-family: Heebo, sans-serif;
  z-index: 9;
}

.category-dropdown .choices.is-active {
  display: block;
}

.category-dropdown .choices li a {
  display: block;
  padding: 5px 10px;
  color: #1B262B;
  text-decoration: none;
  cursor: pointer;
  font-weight: 300;
  font-size: 14px;
}

.category-dropdown .choices li:hover a,
.category-dropdown .choices a.is-active {
  background: #B32D18;
  color: #ffffff;
}

.category-dropdown .choices li:before {
  display: none;
}

@media screen and (max-width: 750px) {
  .category-dropdown {
    display: block;
    margin-top: 40px;
    width: 100%;
  }
}

.eventList__wrapper {
  position: relative;
  zoom: 1;
}

.eventList__wrapper:before, .eventList__wrapper:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.eventList__wrapper:after {
  clear: both;
}

.event_list {
  zoom: 1;
  position: relative;
  margin: auto;
  text-align: center;
}

.event_list:before, .event_list:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.event_list:after {
  clear: both;
}

.event_list .eventItem {
  position: relative;
  max-width: 990px;
  margin: 0 auto 15px;
  clear: both;
  text-align: left;
}

.event_list .eventItem .thumb {
  float: left;
  width: 214px;
  height: 214px;
  -webkit-mask: url(../images/svg/mask.svg) bottom;
  -webkit-mask-repeat: no-repeat;
  mask: url(../images/svg/mask.svg) bottom;
  mask-repeat: no-repeat;
  overflow: hidden;
}

.event_list .eventItem .thumb .buttons {
  display: none;
}

.event_list .eventItem .thumb img {
  will-change: transform;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  max-width: 100%;
  width: 214px;
  height: 214px;
}

.event_list .eventItem .thumb:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 750px) {
  .event_list .eventItem .thumb {
    height: 70px;
    width: 70px;
    -webkit-mask: none;
    mask: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;
  }
  .event_list .eventItem .thumb img {
    height: 100%;
    width: 100%;
  }
}

.event_list .eventItem .info {
  -webkit-transition: box-shadow 0.2s linear;
  -moz-transition: box-shadow 0.2s linear;
  -o-transition: box-shadow 0.2s linear;
  transition: box-shadow 0.2s linear;
  position: relative;
  width: calc(100% - 214px);
  float: left;
  min-height: 200px;
  padding: 35px 20px 60px;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 750px) {
  .event_list .eventItem .info {
    width: 100%;
    min-height: 150px;
    padding: 20px 20px 80px 90px;
  }
}

.event_list .eventItem .date {
  position: absolute;
  bottom: 0px;
  left: 10px;
  width: 270px;
  border-top: 4px solid #E5E5E5;
  padding: 10px 10px 15px;
  font-weight: 900;
  font-size: 17px;
  color: #B32D18;
  letter-spacing: 0;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.event_list .eventItem .date .m-date__singleDate {
  font-weight: 300;
  font-size: 16px;
  color: #22333B;
  letter-spacing: 0;
  line-height: 20px;
}

.event_list .eventItem .date .m-date__singleDate .m-date__weekday {
  font-weight: 900;
  color: #B32D18;
  font-size: 18px;
}

@media screen and (max-width: 750px) {
  .event_list .eventItem .date {
    width: calc(100% - 20px);
    font-size: 14px;
    padding: 15px 10px;
  }
  .event_list .eventItem .date .m-date__singleDate {
    font-size: 14px;
    font-weight: 900;
    color: #B32D18;
  }
  .event_list .eventItem .date .m-date__singleDate .m-date__weekday {
    font-size: 14px;
    display: none;
  }
}

.event_list .eventItem .title a:hover {
  color: #B32D18;
  text-decoration: underline;
  text-decoration-skip: ink;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-color: #B32D18;
}

.event_list .eventItem .tagline {
  font-weight: 300;
  font-size: 20px;
  color: #938581;
  letter-spacing: 0;
  line-height: 1.3;
}

.event_list .eventItem .meta {
  display: none;
}

.event_list .eventItem .buttons {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.event_list .eventItem .buttons a {
  width: 117px;
  white-space: nowrap;
}

.event_list .eventItem .buttons a + .more {
  display: none;
}

.event_list .eventItem .buttons span.tickets {
  display: none;
}

.event_list .eventItem:hover .info {
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.5);
}

.event_list.event_list_grid {
  width: calc(300px * 4);
}

@media screen and (min-width: 960px) {
  .event_list.event_list_grid .eventItem {
    -webkit-transition: box-shadow 0.2s linear;
    -moz-transition: box-shadow 0.2s linear;
    -o-transition: box-shadow 0.2s linear;
    transition: box-shadow 0.2s linear;
    float: left;
    width: 290px;
    margin: 0px 5px 20px;
    height: 540px;
    clear: none;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
  }
  .event_list.event_list_grid .eventItem .thumb {
    position: relative;
    float: none;
    width: 100%;
    height: 290px;
    z-index: 2;
    -webkit-mask: none;
    mask: none;
  }
  .event_list.event_list_grid .eventItem .thumb .buttons {
    -webkit-transition: opacity 0.1s linear;
    -moz-transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.8);
    zoom: 1;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
  }
  .event_list.event_list_grid .eventItem .thumb .buttons a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
  }
  .event_list.event_list_grid .eventItem .thumb .buttons a:before {
    height: 60px;
  }
  .event_list.event_list_grid .eventItem .thumb img {
    height: 100%;
    width: 100%;
  }
  .event_list.event_list_grid .eventItem .thumb:hover img {
    transform: scale(1);
  }
  .event_list.event_list_grid .eventItem .info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: auto;
    min-height: 250px;
    width: 100%;
    z-index: 5;
    padding: 20px 20px 60px;
    box-shadow: none;
  }
  .event_list.event_list_grid .eventItem .info:before {
    content: '';
    visibility: visible;
    position: absolute;
    bottom: 100%;
    left: 0px;
    border-right: 290px solid transparent;
    border-top: 20px solid transparent;
    border-bottom: 20px solid #fff;
  }
  .event_list.event_list_grid .eventItem .tagline {
    font-weight: 300;
    font-size: 20px;
    color: #938581;
    letter-spacing: 0;
    line-height: 1.3;
  }
  .event_list.event_list_grid .eventItem .date {
    width: calc(100% - 20px);
  }
  .event_list.event_list_grid .eventItem .buttons {
    display: none;
  }
  .event_list.event_list_grid .eventItem:hover {
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.5);
  }
  .event_list.event_list_grid .eventItem:hover .thumb .buttons {
    display: block;
    zoom: 1;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
  }
  .event_list.event_list_grid .eventItem:hover .thumb .buttons a {
    width: auto;
  }
}

@media screen and (max-width: 1240px) {
  .event_list.event_list_grid {
    width: calc(300px * 3);
  }
}

@media screen and (max-width: 960px) {
  .event_list.event_list_grid {
    width: calc(300px * 2);
  }
}

.event_list .secondary_event {
  zoom: 1;
}

.event_list .secondary_event:before, .event_list .secondary_event:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.event_list .secondary_event:after {
  clear: both;
}

@media screen and (min-width: 631px) {
  .event_list .secondary_event {
    zoom: 1;
    float: right;
    height: 540px;
    width: 590px;
    margin: 0px 5px 0px;
    margin-bottom: 20px;
  }
  .event_list .secondary_event:before, .event_list .secondary_event:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020';
  }
  .event_list .secondary_event:after {
    clear: both;
  }
  .event_list .secondary_event .eventItem {
    float: left;
    width: 590px;
    height: 590px;
    top: -50px;
    margin: 0;
  }
  .event_list .secondary_event .eventItem .thumb {
    position: relative;
    float: none;
    width: 100%;
    height: 590px;
    z-index: 2;
    -webkit-mask: none;
    mask: none;
  }
  .event_list .secondary_event .eventItem .thumb a {
    zoom: 1;
  }
  .event_list .secondary_event .eventItem .thumb a:before, .event_list .secondary_event .eventItem .thumb a:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020';
  }
  .event_list .secondary_event .eventItem .thumb a:after {
    clear: both;
  }
  .event_list .secondary_event .eventItem .thumb .buttons {
    display: none;
  }
  .event_list .secondary_event .eventItem .thumb img {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 2;
  }
  .event_list .secondary_event .eventItem .thumb:after {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    content: '';
    border: none;
    position: absolute;
    top: auto;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 80%;
    z-index: 3;
    visibility: visible;
    background-image: linear-gradient(-180deg, transparent 12%, #000000 64%);
    zoom: 1;
    opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
  }
  .event_list .secondary_event .eventItem .info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: auto;
    min-height: 0px;
    width: 100%;
    z-index: 5;
    padding: 20px 20px 70px;
    background: none;
  }
  .event_list .secondary_event .eventItem .info:before {
    display: none;
  }
  .event_list .secondary_event .eventItem .title {
    color: white;
    font-size: 47px;
    color: #FFFFFF;
    letter-spacing: 0.05px;
    line-height: 47px;
  }
  .event_list .secondary_event .eventItem .title a {
    color: white;
  }
  .event_list .secondary_event .eventItem .title a:hover {
    text-decoration-color: #ffffff;
  }
  .event_list .secondary_event .eventItem .tagline {
    font-weight: 400;
    font-size: 25px;
    color: #B32D18;
    letter-spacing: 0;
    line-height: 1.3;
  }
  .event_list .secondary_event .eventItem .date {
    width: calc(100% - 20px);
    color: white;
    border-top: none;
  }
  .event_list .secondary_event .eventItem .date span {
    color: #ffffff;
  }
  .event_list .secondary_event .eventItem .date .m-date__singleDate .m-date__weekday {
    color: #ffffff;
  }
  .event_list .secondary_event .eventItem .buttons {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    bottom: 5px;
    right: 20px;
    left: auto;
    display: inline-block;
    z-index: 10;
    zoom: 1;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
  }
  .event_list .secondary_event .eventItem .buttons a {
    font-weight: 900;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 30px;
    width: auto;
  }
  .event_list .secondary_event .eventItem .buttons > span {
    display: none;
  }
  .event_list .secondary_event .eventItem .buttons a + .more {
    display: none;
  }
  .event_list .secondary_event .eventItem:hover .buttons {
    zoom: 1;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
  }
  .event_list .secondary_event .eventItem:hover .thumb .buttons {
    display: none;
  }
  .event_list .secondary_event .eventItem:hover .thumb:after {
    height: 100%;
    zoom: 1;
    opacity: 0.95;
    -moz-opacity: 0.95;
    filter: alpha(opacity=95);
  }
  .event_list .secondary_event.view_1 {
    display: none;
  }
}

@media screen and (max-width: 1240px) {
  .event_list .secondary_event.view_1 {
    display: block;
  }
  .event_list .secondary_event.view_2 {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .event_list .secondary_event {
    float: none;
    display: block;
    width: 100%;
    height: auto;
    clear: both;
    margin: 0 0 20px;
  }
  .event_list .secondary_event.view_1 {
    display: none;
  }
  .event_list .secondary_event.view_2 {
    display: block;
  }
  .event_list .secondary_event .eventItem {
    float: none;
    margin: auto;
    top: auto;
  }
  .event_list .secondary_event .eventItem .buttons {
    width: 250px;
    bottom: 20px;
    right: 20px;
  }
  .event_list .secondary_event .eventItem .buttons a {
    width: 100%;
    line-height: 50px;
    height: 50px;
  }
  .event_list .secondary_event .eventItem .buttons a:before {
    width: 100%;
    top: 0px;
    height: 50px;
  }
  .event_list .secondary_event .eventItem .buttons a span {
    color: #ffffff;
    font-size: 20px;
  }
  .event_list .secondary_event .eventItem .buttons a:hover:before {
    background: #E2391F;
  }
}

@media screen and (max-width: 630px) {
  .event_list .secondary_event .eventItem {
    float: left;
    width: 290px;
    margin: 0px 5px 20px;
    height: 540px;
    clear: none;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
    float: none;
    margin: auto;
  }
  .event_list .secondary_event .eventItem .thumb {
    position: relative;
    float: none;
    width: 100%;
    height: 290px;
    z-index: 2;
    -webkit-mask: none;
    mask: none;
  }
  .event_list .secondary_event .eventItem .thumb .buttons {
    -webkit-transition: opacity 0.1s linear;
    -moz-transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.8);
    zoom: 1;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
  }
  .event_list .secondary_event .eventItem .thumb .buttons a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
  }
  .event_list .secondary_event .eventItem .thumb .buttons a:before {
    height: 60px;
  }
  .event_list .secondary_event .eventItem .thumb img {
    height: 100%;
    width: 100%;
  }
  .event_list .secondary_event .eventItem .thumb:hover img {
    transform: scale(1);
  }
  .event_list .secondary_event .eventItem .info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: auto;
    min-height: 250px;
    width: 100%;
    z-index: 5;
    padding: 20px 20px 60px;
    box-shadow: none;
  }
  .event_list .secondary_event .eventItem .info:before {
    content: '';
    visibility: visible;
    position: absolute;
    bottom: 100%;
    left: 0px;
    border-right: 290px solid transparent;
    border-top: 20px solid transparent;
    border-bottom: 20px solid #fff;
  }
  .event_list .secondary_event .eventItem .tagline {
    font-weight: 300;
    font-size: 20px;
    color: #938581;
    letter-spacing: 0;
    line-height: 1.3;
  }
  .event_list .secondary_event .eventItem .date {
    width: calc(100% - 20px);
  }
  .event_list .secondary_event .eventItem .buttons {
    display: none;
  }
  .event_list .secondary_event .eventItem:hover {
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.5);
  }
  .event_list .secondary_event .eventItem:hover .thumb .buttons {
    display: block;
    zoom: 1;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
  }
  .event_list .secondary_event .eventItem:hover .thumb .buttons a {
    width: auto;
  }
  .event_list .secondary_event .eventItem .thumb .buttons {
    display: none;
  }
  .event_list .secondary_event .eventItem .info {
    padding-bottom: 130px;
  }
  .event_list .secondary_event .eventItem h3 {
    font-size: 36px;
  }
  .event_list .secondary_event .eventItem .date {
    position: absolute;
    bottom: 60px;
    left: 10px;
    font-size: 16px;
  }
  .event_list .secondary_event .eventItem .date .m-date__singleDate .m-date__weekday {
    font-size: 18px;
  }
  .event_list .secondary_event .eventItem .buttons {
    display: block;
    height: 50px;
    bottom: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }
  .event_list .secondary_event .eventItem .buttons a {
    width: 100%;
    line-height: 50px;
    height: 50px;
  }
  .event_list .secondary_event .eventItem .buttons a:before {
    width: 100%;
    top: 0px;
    height: 50px;
  }
  .event_list .secondary_event .eventItem .buttons a span {
    color: #ffffff;
    font-size: 20px;
  }
  .event_list .secondary_event .eventItem .buttons a:hover:before {
    background: #E2391F;
  }
  .event_list .secondary_event .eventItem:hover .thumb .buttons {
    display: none;
  }
}

.upcoming_events .eventItem {
  position: relative;
  margin: 0px 0;
  padding-bottom: 40px;
  height: 100%;
}

.upcoming_events .eventItem:before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 0px;
  width: 100%;
  height: 4px;
  display: block;
  visibility: visible;
  background: #6DD3CE;
}

.upcoming_events .eventItem:first-child {
  margin-top: 0px;
  margin-bottom: 80px;
}

@media screen and (max-height: 970px) and (min-width: 871px) {
  .upcoming_events .eventItem:first-child {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 870px) {
  .upcoming_events .eventItem:first-child {
    margin-bottom: 0;
  }
}

.upcoming_events .eventItem .thumb, .upcoming_events .eventItem .meta {
  display: none;
}

@media screen and (max-height: 970px) and (min-width: 871px) {
  .upcoming_events .eventItem h3 {
    font-size: 1.333rem;
  }
}

.upcoming_events .eventItem h4.tagline {
  font-weight: 300;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0;
}

.upcoming_events .eventItem * {
  color: white;
}

.upcoming_events .eventItem a:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: #ffffff;
}

.upcoming_events .eventItem .info {
  padding: 10px 10px 15px;
}

@media screen and (max-height: 970px) and (min-width: 871px) {
  .upcoming_events .eventItem .info {
    padding-bottom: 15px;
  }
  .upcoming_events .eventItem .info h3 {
    font-size: 1.333rem;
  }
}

.upcoming_events .eventItem .date {
  font-weight: 900;
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin-top: 50px;
}

.upcoming_events .eventItem .date .m-date__singleDate {
  font-weight: 300;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 20px;
}

.upcoming_events .eventItem .date .m-date__singleDate .m-date__weekday {
  font-weight: 900;
  color: #FFFFFF;
  font-size: 18px;
}

@media screen and (max-width: 870px) {
  .upcoming_events .eventItem .date {
    position: absolute;
    bottom: 60px;
    left: 10px;
  }
}

@media screen and (max-height: 970px) and (min-width: 871px) {
  .upcoming_events .eventItem .date {
    margin-top: 0;
  }
}

.upcoming_events .eventItem .buttons {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.upcoming_events .eventItem .buttons a + .more {
  display: none;
}

@media screen and (max-width: 870px) {
  .upcoming_events .eventItem {
    position: relative;
    float: right;
    width: calc(50% - 40px);
    width: calc(100% - 360px);
    height: 250px;
    margin: 0 10px;
  }
  .upcoming_events .eventItem:nth-child(2) {
    display: none;
  }
}

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.title_section {
  position: relative;
}

.title_section.in-front {
  z-index: 10;
}

.event_detail {
  min-height: 600px;
  zoom: 1;
  position: relative;
}

.event_detail:before, .event_detail:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.event_detail:after {
  clear: both;
}

.event_detail #branding {
  height: calc((100vw - 20px) * (610 / 1250));
  max-height: 610px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

.event_detail #branding img {
  display: block;
}

@media screen and (max-width: 870px) {
  .event_detail #branding {
    height: auto;
  }
}

.event_detail .event_heading {
  margin-bottom: 30px;
}

.event_detail .event_heading .tagline {
  font-weight: 400;
  font-size: 32px;
  color: #938581;
  letter-spacing: 0;
  line-height: 32px;
}

.event_detail .event_heading.below_branding {
  display: none;
}

.event_detail .buttonWrapper {
  padding: 20px 20px 0;
}

.event_detail .buttonWrapper .title, .event_detail .buttonWrapper .tagline, .event_detail .buttonWrapper .date {
  display: none;
}

@media screen and (max-width: 870px) {
  .event_detail .buttonWrapper {
    padding: 0 0 20px;
  }
}

.event_detail .buttons {
  position: relative;
  color: white;
}

.event_detail .buttons a, .event_detail .buttons span {
  white-space: nowrap;
}

.event_detail .buttons svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  fill: #fff;
}

.event_detail .buttons a:hover {
  background: #E2391F;
}

.description_wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  cursor: pointer;
  clear: both;
}

.description_wrapper:before {
  content: 'Event Information';
  margin-bottom: 10px;
  display: block;
}

.description_wrapper .read-more {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  font-weight: 900;
  font-size: 15px;
  color: #1B262B;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  line-height: 16px;
  margin-top: 20px;
  vertical-align: middle;
}

.description_wrapper .read-more:after {
  display: inline-block;
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #B32D18;
  margin-left: 10px;
}

.description_wrapper .read-more:hover {
  color: #B32D18;
}

.description_wrapper .event_description.is-opened + .read-more:after {
  transform: rotate(180deg);
}

.event_description {
  position: relative;
  clear: both;
  cursor: pointer;
  height: 200px;
  overflow: hidden;
}

.event_description:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  display: block;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

.event_description.is-opened:after {
  display: none;
}

.event_showings .list {
  position: relative;
  list-style-type: none;
  font-family: Heebo, sans-serif;
  font-size: 15px;
}

.event_showings .list li {
  padding: 20px 0px 10px;
}

.event_showings .list a, .event_showings .list a:focus, .event_showings .list a:visited {
  color: #22333B;
}

.event_showings .list a:hover, .event_showings .list a:focus:hover, .event_showings .list a:visited:hover {
  color: #2274A5;
}

.event_showings .cell {
  width: 20%;
  position: relative;
  float: left;
  display: inline-block;
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  color: #22333B;
  letter-spacing: 0;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  vertical-align: top;
  line-height: 24px;
}

.event_showings .cell .m-date__weekday {
  font-weight: 900;
  font-size: 18px;
  color: #B32D18;
  letter-spacing: 0;
  line-height: 20px;
  margin-right: 0px;
  width: 110px;
  display: inline-block;
}

@media screen and (max-width: 750px) {
  .event_showings .cell .m-date__weekday {
    width: auto;
    margin-right: 10px;
  }
}

.event_showings .cell:nth-child(1) {
  width: 40%;
  text-align: left;
}

@media screen and (max-width: 750px) {
  .event_showings .cell:nth-child(1) {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .event_showings .cell:nth-child(2) {
    width: 100%;
    display: block;
    text-align: left;
  }
}

.event_showings .cell:last-child {
  width: 40%;
  text-align: right;
}

@media screen and (max-width: 750px) {
  .event_showings .cell:last-child {
    width: 100%;
    text-align: left;
  }
}

.event_showings .listItem {
  position: relative;
  border-bottom: 1px solid #e4e4e4;
}

.event_showings .listItem-hasNoLink .eventDetailShowings__cell {
  width: 50%;
}

.event_showings .buttons svg {
  width: 27px;
  fill: #333;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.event_showings .additional_showings {
  display: none;
}

.event_showings .show-all-showings {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  zoom: 1;
  opacity: 0.35;
  -moz-opacity: 0.35;
  filter: alpha(opacity=35);
  margin-top: 20px;
  cursor: pointer;
}

.event_showings .show-all-showings:hover {
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}

.eventDetailList {
  position: relative;
  font-family: Heebo, sans-serif;
  overflow: hidden;
  padding: 10px 20px 20px;
}

.eventDetailList a, .eventDetailList a:focus, .eventDetailList p {
  color: #1B262B;
}

.eventDetailList a {
  position: relative;
  padding-right: 20px;
}

.eventDetailList a:after {
  -webkit-transition: margin-left 0.2s linear;
  -moz-transition: margin-left 0.2s linear;
  -o-transition: margin-left 0.2s linear;
  transition: margin-left 0.2s linear;
  display: inline-block;
  content: '';
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-left: 6px solid #B32D18;
  margin-left: 10px;
}

.eventDetailList a:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-color: #2274A5;
}

.eventDetailList a:hover:after {
  margin-left: 15px;
}

.eventDetailList .item {
  list-style-type: none;
  border-bottom: 1px solid #E5E5E5;
  font-weight: 300;
  color: #1B262B;
  letter-spacing: 0;
  font-size: 14px;
  position: relative;
  padding: 15px 0;
}

@media screen and (min-width: 871px) {
  .eventDetailList .item:last-child {
    border-bottom: none;
  }
}

.eventDetailList .item:before {
  display: none;
}

.eventDetailList .item label, .eventDetailList .item .label {
  display: block;
  font-weight: 900;
  font-size: 20px;
  color: #1B262B;
  letter-spacing: 0;
  margin-bottom: 0px;
}

.eventDetailList .item svg {
  display: none;
}

.eventDetailList .item p {
  font-weight: 300;
  color: #1B262B;
  letter-spacing: 0;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 20px;
}

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

.eventDetailList .item.sidebar_event_date {
  font-weight: 900;
  font-size: 20px;
  color: #B32D18;
  letter-spacing: 0;
  padding: 0 0 30px;
}

.eventDetailList .item.sidebar_event_date label, .eventDetailList .item.sidebar_event_date .label {
  display: none;
}

@media screen and (max-width: 870px) {
  .eventDetailList {
    padding: 0;
  }
}

.addthis_container {
  position: relative;
  float: left;
  clear: both;
  display: block;
  margin: 40px 0;
}

.addthis_container:before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 50%;
  display: block;
  background: #F5F5F5;
}

.addthis_container svg {
  fill: #22333B !important;
}

.addthis_container a {
  background: none !important;
}

.addthis_container a:hover svg {
  fill: #B32D18 !important;
}

.addthis_container .at-svc-compact {
  background: #B32D18 !important;
}

.addthis_container .at-svc-compact svg {
  fill: #ffffff !important;
}

.addthis_container .at-svc-compact:hover {
  background: #22333B !important;
}

.addthis_container .at-svc-compact:hover svg {
  fill: #ffffff !important;
}

/* 
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0;
  content: '.';
}

/* display none until init */
.owl-carousel {
  position: relative;
  display: none;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel.sponsors {
  width: calc(100% - 80px);
  margin: auto;
}

.owl-carousel .owl-wrapper {
  position: relative;
  display: none;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page, .owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  position: static;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.owl-controls .owl-buttons {
  position: static;
}

.owl-controls .owl-buttons > div {
  position: absolute;
  top: calc(50% - 17px);
  left: -25px;
  width: 19px;
  height: 34px;
  background: url(../images/carousel_arrow.png) no-repeat;
  font-size: 0;
}

.owl-controls .owl-buttons > div.owl-next {
  left: auto;
  right: -25px;
  transform: rotate(180deg);
}

.owl-controls .owl-buttons > div:hover {
  zoom: 1;
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

/* Preload images */
body:after {
  content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
  box-sizing: content-box;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  box-sizing: content-box;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

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

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

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

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 14px;
  font-weight: bold;
  line-height: 1em;
  font-family: Arial;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  position: relative;
  width: 100%;
  margin: 0px auto 40px;
  clear: both;
  zoom: 1;
}

.sitemap:before, .sitemap:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.sitemap:after {
  clear: both;
}

.sitemap .column {
  position: relative;
  width: 100%;
  padding: 0;
  zoom: 1;
}

.sitemap .column:before, .sitemap .column:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.sitemap .column:after {
  clear: both;
}

@media screen and (min-width: 871px) {
  .sitemap .column {
    float: left;
    width: 50%;
  }
}

.sitemap .column a {
  text-decoration: none;
}

.sitemap .column a:before, .sitemap .column a:after {
  display: none;
}

.sitemap .column a:hover {
  color: #2274A5;
}

.sitemap .column > ul > li {
  padding-left: 0;
}

.sitemap .column > ul > li:before, .sitemap .column > ul > li:after {
  display: none;
}

.sitemap .column > ul > li > a {
  color: #22333B;
  font-size: 18px;
  text-decoration: none;
}

.sitemap .column > ul > li > a:before, .sitemap .column > ul > li > a:after {
  display: none;
}

.sitemap .column > ul > li > a:hover {
  color: #2274A5;
}

.sitemap .column > ul > li ul ul li:before {
  height: 8px;
  width: 8px;
  top: 10px;
}

.sitemap .column > ul > li ul ul li a {
  font-size: 16px;
  text-decoration: none;
}

.sitemap .column > ul > li ul ul li a:hover {
  color: #B32D18;
  text-decoration: none;
}

/* ----------------------------------------------------------------------------
= Conditional IE Styles. Nest each browser under heading. 
= Classes are generated by Modernizr and appear in HTML tag
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= Homepage Alert
----------------------------------------------------------------------------- */
.m-alert-wrapper {
  position: relative;
  z-index: 999;
}

.m-alert-wrapper > div {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  background-color: #64446F;
  display: none;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

.m-alert-wrapper > div * {
  color: #ffffff;
}

.m-alert-wrapper > div a:hover h2, .m-alert-wrapper > div a:hover button {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  -moz-text-decoration-skip: ink;
  -ms-text-decoration-skip: ink;
  -o-text-decoration-skip: ink;
  text-decoration-skip: ink;
}

.m-alert-wrapper .alert-container {
  background: url(../images/bg_promo.png) right 80% no-repeat;
  zoom: 1;
  padding: 20px;
  position: relative;
  z-index: 10;
  max-width: 1230px;
  margin: auto;
}

.m-alert-wrapper .alert-container:before, .m-alert-wrapper .alert-container:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: '\0020';
}

.m-alert-wrapper .alert-container:after {
  clear: both;
}

.m-alert-wrapper .alert-container h2 {
  font-size: 1.776889rem;
  position: relative;
  padding-top: 20px;
}

.m-alert-wrapper .alert-container h2:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  height: 6px;
  width: 300px;
  background: #6DD3CE;
}

@media screen and (max-width: 750px) {
  .m-alert-wrapper .alert-container h2:before {
    width: 150px;
  }
}

.m-alert-wrapper .close-alert {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  width: auto;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 15px;
  text-transform: capitalize;
  cursor: pointer;
  z-index: 12;
  font-size: 12px;
  line-height: 30px;
  padding-right: 30px;
  letter-spacing: 0.05em;
}

.m-alert-wrapper .close-alert .close-x {
  position: absolute;
  top: 0px;
  right: 0px;
  float: right;
}

.m-alert-wrapper .close-alert .close-x:before, .m-alert-wrapper .close-alert .close-x:after {
  width: 2px;
  height: 28px;
  content: '';
  position: absolute;
  top: 0;
  right: 10px;
  background: #fff;
}

.m-alert-wrapper .close-alert .close-x:before {
  transform: rotate(45deg);
}

.m-alert-wrapper .close-alert .close-x:after {
  transform: rotate(-45deg);
}

.m-alert-wrapper .close-alert:hover {
  opacity: 0.7;
}

/* ----------------------------------------------------------------------------
= Magnific Popup CSS
----------------------------------------------------------------------------- */
.mfp-bg {
  position: fixed;
  overflow: hidden;
  z-index: 1042;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #0b0b0b;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  position: fixed;
  z-index: 1043;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  text-align: center;
}

.mfp-container:before {
  display: inline-block;
  height: 100%;
  content: '';
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  z-index: 1045;
  margin: 0 auto;
  padding: 6px;
  text-align: left;
  vertical-align: middle;
  width: 100%;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: auto;
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  position: absolute;
  z-index: 1044;
  top: 50%;
  right: 8px;
  left: 8px;
  width: auto;
  margin-top: -0.8em;
  color: #ccc;
  text-align: center;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  display: block;
  overflow: visible;
  z-index: 1046;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0 0 18px 10px;
  opacity: 0.65;
  color: white;
  font-family: Heebo, sans-serif;
  font-size: 28px;
  font-style: normal;
  line-height: 44px;
  text-align: center;
  text-decoration: none;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #fff;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  right: -6px;
  width: 100%;
  padding-right: 6px;
  color: white;
  text-align: right;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  top: 50%;
  width: 90px;
  height: 110px;
  margin: 0;
  margin-top: -55px;
  padding: 0;
  opacity: 0.65;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
  content: '';
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  top: 8px;
  border-top-width: 13px;
  border-bottom-width: 13px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  margin-left: 31px;
  border-right: 17px solid white;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  margin-left: 39px;
  border-left: 17px solid white;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  width: 100%;
  max-width: 900px;
  line-height: 0;
}

.mfp-iframe-scaler {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* Main image in popup */
img.mfp-img {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 40px 0 40px;
  line-height: 0;
}

/* The shadow behind the image */
.mfp-figure:after {
  position: absolute;
  display: block;
  z-index: -1;
  top: 40px;
  right: 0;
  bottom: 40px;
  left: 0;
  width: auto;
  height: auto;
  background: #444;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  content: '';
}

.mfp-figure {
  line-height: 0;
}

.mfp-bottom-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: -36px;
  cursor: auto;
}

.mfp-title {
  padding-right: 36px;
  color: #f3f3f3;
  line-height: 18px;
  text-align: left;
  word-wrap: break-word;
}

.mfp-figure small {
  display: block;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 14px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
	   * Remove all paddings around the image on small screen
	   */
  .mfp-img-mobile .mfp-image-holder {
    padding-right: 0;
    padding-left: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    position: fixed;
    top: auto;
    bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 3px 5px;
    background: rgba(0, 0, 0, 0.6);
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    top: 3px;
    right: 5px;
  }
  .mfp-img-mobile .mfp-close {
    position: fixed;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    padding: 0;
    background: rgba(0, 0, 0, 0.6);
    line-height: 35px;
    text-align: center;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-right: 6px;
    padding-left: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  left: 50%;
  width: 600px;
  margin-top: 5px;
  margin-left: -300px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

.mfp-container .full-slideshow {
  width: 90%;
}

.mfp-container .royalSlider {
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------------------
= Showtime Photo Gallery
----------------------------------------------------------------------------- */
.gallery_detail_page .date {
  font-weight: 900;
  font-size: 17px;
  color: #B32D18;
  letter-spacing: 0;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  display: none;
}

.gallery_detail_page .date .m-date__singleDate {
  font-weight: 300;
  font-size: 16px;
  color: #B32D18;
  letter-spacing: 0;
  line-height: 20px;
}

.gallery_detail_page .date .m-date__singleDate .m-date__weekday {
  font-weight: 900;
  color: #B32D18;
  font-size: 18px;
}

#venue_widgets_framework .l-m-venue_widget {
  border-radius: 0px 0px 0 0;
}

#venue_widgets_framework .m-venueframework__header {
  z-index: 1;
  float: none;
  background-color: white;
  border-top-color: #e4e4e4;
  border-right-color: #e4e4e4;
  border-bottom-color: #dbdbdb;
  border-left-color: #e4e4e4;
  border-bottom-width: 1px;
  border-top-width: 0;
  border-right-width: 0px;
  border-left-width: 0px;
}

#venue_widgets_framework .m-venueframework__header-icon {
  background-color: white;
  border-left-color: white;
  border-top-color: white;
  border-bottom-color: transparent;
}

#venue_widgets_framework .m-venueframework__header-icon svg {
  fill: #bb0826;
}

#venue_widgets_framework .m-venueframework__header-shadow {
  background: rgba(229, 229, 229, 0);
}

#venue_widgets_framework .m-venueframework__header-text {
  color: #bb0826;
  text-transform: capitalize;
  padding: 0 0 0 0px;
}

#venue_widgets_framework .m-venueframework__header-link, #venue_widgets_framework .m-venueframework__header-link:visited {
  background-color: white;
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework__header-link:hover, #venue_widgets_framework .m-venueframework__header-link:focus, #venue_widgets_framework .m-venueframework__header-link:active, #venue_widgets_framework .m-venueframework__header-link:visited:hover, #venue_widgets_framework .m-venueframework__header-link:visited:focus, #venue_widgets_framework .m-venueframework__header-link:visited:active {
  background-color: #231f20;
  color: white;
}

#venue_widgets_framework .m-venueframework__header-link:before, #venue_widgets_framework .m-venueframework__header-link:visited:before {
  background-color: #e4e4e4;
}

#venue_widgets_framework .m-venueframework__widget-body {
  border-left-color: #fff;
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-top-color: #fff;
  background-color: #fff;
  border-radius: 0 0 0 0;
}

#venue_widgets_framework .m-venueframework__widget-body__noHeader {
  border-radius: 0px 0px 0 0;
  border-top: 1px solid #fff;
}

#venue_widgets_framework .m-owlcarousel__controls-icon {
  border-color: transparent;
  background-color: transparent;
}

#venue_widgets_framework .m-owlcarousel__controls-icon svg {
  stroke: #dbdbdb;
}

#venue_widgets_framework .m-owlcarousel__controls-icon:hover, #venue_widgets_framework .m-owlcarousel__controls-icon:focus {
  border-color: #dbdbdb;
  background-color: transparent;
}

#venue_widgets_framework .m-owlcarousel__controls-icon:hover svg, #venue_widgets_framework .m-owlcarousel__controls-icon:focus svg {
  stroke: #dbdbdb;
}

#venue_widgets_framework .owl-page span {
  background: #dbdbdb;
}

#venue_widgets_framework .owl-page.active span {
  background: #bb0826;
}

#venue_widgets_framework .l-m-venue_widget .owl-wrapper, #venue_widgets_framework .l-m-venue_widget .owl-wrapper-outer, #venue_widgets_framework .l-m-venue_widget .owl-item {
  height: 100%;
}

#venue_widgets_framework .m-venueframework-linklist__item.has_no_link {
  border-bottom-color: #dbdbdb;
}

#venue_widgets_framework .m-venueframework-linklist__link, #venue_widgets_framework .m-venueframework-linklist__link:visited {
  border-bottom-color: #dbdbdb;
}

#venue_widgets_framework .m-venueframework-linklist__link:hover, #venue_widgets_framework .m-venueframework-linklist__link:focus, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus {
  background-color: #f7f7f7;
}

#venue_widgets_framework .m-venueframework-linklist__link:hover .m-venueframework-linklist__item-title, #venue_widgets_framework .m-venueframework-linklist__link:focus .m-venueframework-linklist__item-title, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover .m-venueframework-linklist__item-title, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus .m-venueframework-linklist__item-title {
  color: #bb0826;
}

#venue_widgets_framework .m-venueframework-linklist__link:hover .m-venueframework-linklist__item-subtitle, #venue_widgets_framework .m-venueframework-linklist__link:focus .m-venueframework-linklist__item-subtitle, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover .m-venueframework-linklist__item-subtitle, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus .m-venueframework-linklist__item-subtitle {
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework-linklist__link:hover .m-venueframework-linklist__item-icon svg, #venue_widgets_framework .m-venueframework-linklist__link:focus .m-venueframework-linklist__item-icon svg, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover .m-venueframework-linklist__item-icon svg, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus .m-venueframework-linklist__item-icon svg {
  stroke: #bb0826;
}

#venue_widgets_framework .m-venueframework-linklist__item-title {
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework-linklist__item-subtitle {
  color: #969696;
}

#venue_widgets_framework .m-venueframework-linklist__item-icon {
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework-linklist__item-icon svg {
  stroke: #423e3f;
}

#venue_widgets_framework .has_image .m-venueframework-newswidget__item:nth-child(3) a, #venue_widgets_framework .has_image .m-venueframework-newswidget__item:nth-child(3) a:visited, #venue_widgets_framework .has_image .m-venueframework-newswidget__item:nth-child(3).has_no_link {
  border-bottom-color: #dbdbdb;
}

#venue_widgets_framework .m-venueframework-newswidget__item-date {
  color: #969696;
}

#venue_widgets_framework .m-venueframework-newswidget__item-title {
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework-newswidget__item-subtitle {
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework-newswidget__link, #venue_widgets_framework .m-venueframework-newswidget__link:visited {
  border-bottom-color: #dbdbdb;
}

#venue_widgets_framework .m-venueframework-newswidget__link:hover, #venue_widgets_framework .m-venueframework-newswidget__link:focus, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus {
  background-color: transparent;
}

#venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-newswidget__item-date, #venue_widgets_framework .m-venueframework-newswidget__link:focus .m-venueframework-newswidget__item-date, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover .m-venueframework-newswidget__item-date, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus .m-venueframework-newswidget__item-date {
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-newswidget__item-title, #venue_widgets_framework .m-venueframework-newswidget__link:focus .m-venueframework-newswidget__item-title, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover .m-venueframework-newswidget__item-title, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus .m-venueframework-newswidget__item-title {
  color: #bb0826;
}

#venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-newswidget__item-subtitle, #venue_widgets_framework .m-venueframework-newswidget__link:focus .m-venueframework-newswidget__item-subtitle, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover .m-venueframework-newswidget__item-subtitle, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus .m-venueframework-newswidget__item-subtitle {
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework-socialwidget__description {
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework-socialwidget__description a, #venue_widgets_framework .m-venueframework-socialwidget__description a:visited {
  color: #423e3f;
}

#venue_widgets_framework .m-venueframework-socialwidget__description a:hover, #venue_widgets_framework .m-venueframework-socialwidget__description a:focus {
  color: #bb0826;
}

#venue_widgets_framework .m-venueframework-socialwidget__meta {
  color: #969696;
}

#venue_widgets_framework .m-venueframework-socialwidget__meta a, #venue_widgets_framework .m-venueframework-socialwidget__meta a:visited {
  color: #969696;
}

#venue_widgets_framework .m-venueframework-socialwidget__meta a:hover, #venue_widgets_framework .m-venueframework-socialwidget__meta a:focus {
  color: #bb0826;
}

#venue_widgets_framework .m-venueframework-socialwidget__meta .delimiter {
  color: #969696;
}

#venue_widgets_framework .l-m-venue_widget__youtubewidget .entry {
  background-color: #fff;
}

#venue_widgets_framework .l-m-venue_widget__youtubewidget .title {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__youtubewidget .meta {
  color: #969696;
}

#venue_widgets_framework .l-m-venue_widget__youtubewidget .m-venueframework__widget-body {
  border: none;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon {
  border-color: transparent;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon svg {
  stroke: #dbdbdb;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon:hover {
  border-color: #dbdbdb;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon:hover svg {
  stroke: #dbdbdb;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-row {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar-container:after {
  background: #fff;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-head {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-body {
  background: #e4e4e4;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div {
  background: #fff;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div > span.fc-date {
  color: #423e3f;
  background: #fff;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date:after {
  background: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content {
  background: #fff;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover {
  background: #bb0826;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover .fc-date {
  color: #f7f7f7;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover .fc-date:after {
  background: #f7f7f7;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today .fc-date {
  background: #bb0826;
  color: #f7f7f7;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today.fc-content .fc-date {
  background: #bb0826;
  color: #f7f7f7;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today.fc-content .fc-date:after {
  background: #f7f7f7;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal-body, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal-dialog, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal-content {
  background: #fff;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in {
  border-radius: 0px 0px 0 0;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .modal-body {
  border: 1px solid #e4e4e4;
  border-top: none;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .close {
  border: none;
  border: 1px solid #e4e4e4;
  background: #fff;
  color: #969696;
  border-radius: 0px 0px 0 0;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .close:hover {
  background: #231f20;
  color: white;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .date {
  color: #bb0826;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in h3 a {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets {
  color: #bb0826;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a svg, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets svg {
  fill: #bb0826;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a:hover, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets:hover {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a:hover svg, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets:hover svg {
  fill: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__promotionswidget .m-venueframework__widget-body {
  border: none;
}

#venue_widgets_framework .m-venueframework-promotionswidget__item-title h2 {
  color: #f7f7f7;
}

#venue_widgets_framework .m-venueframework-promotionswidget__item-subtitle {
  color: #f7f7f7;
}

#venue_widgets_framework .m-venueframework-promotionswidget__item-subtitle:after {
  background: #f7f7f7;
}

#venue_widgets_framework .l-m-venue_widget__eventslist {
  overflow: hidden;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon {
  border-color: transparent;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon svg {
  stroke: #dbdbdb;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon:hover {
  border-color: #dbdbdb;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon:hover svg {
  stroke: #dbdbdb;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__date {
  color: #969696;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title, #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title a {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title:hover, #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title a:hover {
  color: #bb0826;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__tagline {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__item {
  border-right-color: #dbdbdb;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a {
  color: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a:hover {
  color: #bb0826;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a:hover svg path {
  fill: #423e3f;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a svg path {
  fill: #bb0826;
}
