@-webkit-keyframes wiggle {
  25% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg); }
  75% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg); } }

@keyframes wiggle {
  25% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg); }
  75% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg); } }

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent; }

main, article, aside, figure, footer, header, nav, section, details, summary {
  display: block; }

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

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

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%; }

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:
#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll; }

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help; }

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: separate;
  border-spacing: 0; }

th {
  font-weight: bold;
  vertical-align: bottom; }

td {
  font-weight: normal;
  vertical-align: top; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */ }

input[type="radio"] {
  vertical-align: text-bottom; }

input[type="checkbox"] {
  vertical-align: bottom; }

.ie7 input[type="checkbox"] {
  vertical-align: baseline; }

.ie6 input {
  vertical-align: text-bottom; }

select, input, textarea {
  font: 99% sans-serif; }

table {
  font-size: inherit;
  font: 100%; }

small {
  font-size: 85%; }

strong {
  font-weight: bold; }

td, td img {
  vertical-align: top; }

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif; }

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0; }

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible; }

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic; }

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:after {
  content: " ";
  display: block;
  clear: both; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

.container {
  margin-left: auto;
  margin-right: auto;
  padding-right: 10px;
  padding-left: 10px; }

.container-fluid {
  padding-right: 20px;
  padding-left: 20px; }

@media (min-width: 576px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
    max-width: 98%;
    width: 100%; } }

@media (min-width: 768px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
    max-width: 98%;
    width: 100%; } }

@media (min-width: 992px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
    max-width: 98%;
    width: 100%; } }

@media (min-width: 1200px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1200px;
    width: 100%; } }

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px; }
  .row:before, .row:after {
    display: none; }
  .row .reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px; }

.col-xs {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  max-width: 100%; }

.col-xs-1 {
  -webkit-flex-basis: 8.33333333%;
      -ms-flex-preferred-size: 8.33333333%;
          flex-basis: 8.33333333%;
  max-width: 8.33333333%; }

.col-xs-2 {
  -webkit-flex-basis: 16.66666667%;
      -ms-flex-preferred-size: 16.66666667%;
          flex-basis: 16.66666667%;
  max-width: 16.66666667%; }

.col-xs-3 {
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  max-width: 25%; }

.col-xs-4 {
  -webkit-flex-basis: 33.33333333%;
      -ms-flex-preferred-size: 33.33333333%;
          flex-basis: 33.33333333%;
  max-width: 33.33333333%; }

.col-xs-5 {
  -webkit-flex-basis: 41.66666667%;
      -ms-flex-preferred-size: 41.66666667%;
          flex-basis: 41.66666667%;
  max-width: 41.66666667%; }

.col-xs-6 {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 50%; }

.col-xs-7 {
  -webkit-flex-basis: 58.33333333%;
      -ms-flex-preferred-size: 58.33333333%;
          flex-basis: 58.33333333%;
  max-width: 58.33333333%; }

.col-xs-8 {
  -webkit-flex-basis: 66.66666667%;
      -ms-flex-preferred-size: 66.66666667%;
          flex-basis: 66.66666667%;
  max-width: 66.66666667%; }

.col-xs-9 {
  -webkit-flex-basis: 75%;
      -ms-flex-preferred-size: 75%;
          flex-basis: 75%;
  max-width: 75%; }

.col-xs-10 {
  -webkit-flex-basis: 83.33333333%;
      -ms-flex-preferred-size: 83.33333333%;
          flex-basis: 83.33333333%;
  max-width: 83.33333333%; }

.col-xs-11 {
  -webkit-flex-basis: 91.66666667%;
      -ms-flex-preferred-size: 91.66666667%;
          flex-basis: 91.66666667%;
  max-width: 91.66666667%; }

.col-xs-12 {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%; }

.col-xs-offset-0 {
  margin-left: 0; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.start-xs {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: start; }

.center-xs {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center; }

.end-xs {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end; }

.top-xs {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start; }

.middle-xs {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.bottom-xs {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end; }

.around-xs {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around; }

.between-xs {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.first-xs {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1; }

.last-xs {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1; }

.initial-order-xs {
  -webkit-box-ordinal-group: initial;
  -webkit-order: initial;
      -ms-flex-order: initial;
          order: initial; }

@media (min-width: 576px) {
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 10px;
    padding-left: 10px; }
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    max-width: 100%; }
  .col-sm-1 {
    -webkit-flex-basis: 8.33333333%;
        -ms-flex-preferred-size: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-sm-2 {
    -webkit-flex-basis: 16.66666667%;
        -ms-flex-preferred-size: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-sm-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4 {
    -webkit-flex-basis: 33.33333333%;
        -ms-flex-preferred-size: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-sm-5 {
    -webkit-flex-basis: 41.66666667%;
        -ms-flex-preferred-size: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-sm-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7 {
    -webkit-flex-basis: 58.33333333%;
        -ms-flex-preferred-size: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-sm-8 {
    -webkit-flex-basis: 66.66666667%;
        -ms-flex-preferred-size: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-sm-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10 {
    -webkit-flex-basis: 83.33333333%;
        -ms-flex-preferred-size: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-sm-11 {
    -webkit-flex-basis: 91.66666667%;
        -ms-flex-preferred-size: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-sm-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .col-sm-offset-0 {
    margin-left: 0; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .start-sm {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start; }
  .center-sm {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center; }
  .end-sm {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end; }
  .top-sm {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .middle-sm {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .bottom-sm {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .around-sm {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
  .between-sm {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .initial-order-sm {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial; } }

@media (min-width: 768px) {
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 10px;
    padding-left: 10px; }
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    max-width: 100%; }
  .col-md-1 {
    -webkit-flex-basis: 8.33333333%;
        -ms-flex-preferred-size: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-md-2 {
    -webkit-flex-basis: 16.66666667%;
        -ms-flex-preferred-size: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-md-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    -webkit-flex-basis: 33.33333333%;
        -ms-flex-preferred-size: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-md-5 {
    -webkit-flex-basis: 41.66666667%;
        -ms-flex-preferred-size: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-md-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    -webkit-flex-basis: 58.33333333%;
        -ms-flex-preferred-size: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-md-8 {
    -webkit-flex-basis: 66.66666667%;
        -ms-flex-preferred-size: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-md-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col-md-10 {
    -webkit-flex-basis: 83.33333333%;
        -ms-flex-preferred-size: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-md-11 {
    -webkit-flex-basis: 91.66666667%;
        -ms-flex-preferred-size: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-md-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .col-md-offset-0 {
    margin-left: 0; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .start-md {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start; }
  .center-md {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center; }
  .end-md {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end; }
  .top-md {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .middle-md {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .bottom-md {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .around-md {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
  .between-md {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .first-md {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .initial-order-md {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial; } }

@media (min-width: 992px) {
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 10px;
    padding-left: 10px; }
  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    max-width: 100%; }
  .col-lg-1 {
    -webkit-flex-basis: 8.33333333%;
        -ms-flex-preferred-size: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-lg-2 {
    -webkit-flex-basis: 16.66666667%;
        -ms-flex-preferred-size: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-lg-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    -webkit-flex-basis: 33.33333333%;
        -ms-flex-preferred-size: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-lg-5 {
    -webkit-flex-basis: 41.66666667%;
        -ms-flex-preferred-size: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-lg-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    -webkit-flex-basis: 58.33333333%;
        -ms-flex-preferred-size: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-lg-8 {
    -webkit-flex-basis: 66.66666667%;
        -ms-flex-preferred-size: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-lg-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10 {
    -webkit-flex-basis: 83.33333333%;
        -ms-flex-preferred-size: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-lg-11 {
    -webkit-flex-basis: 91.66666667%;
        -ms-flex-preferred-size: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-lg-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .col-lg-offset-0 {
    margin-left: 0; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .start-lg {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start; }
  .center-lg {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center; }
  .end-lg {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end; }
  .top-lg {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .middle-lg {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .bottom-lg {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .around-lg {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
  .between-lg {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .initial-order-lg {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial; } }

@media (min-width: 1200px) {
  .col-xl,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-offset-0,
  .col-xl-offset-1,
  .col-xl-offset-2,
  .col-xl-offset-3,
  .col-xl-offset-4,
  .col-xl-offset-5,
  .col-xl-offset-6,
  .col-xl-offset-7,
  .col-xl-offset-8,
  .col-xl-offset-9,
  .col-xl-offset-10,
  .col-xl-offset-11,
  .col-xl-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 10px;
    padding-left: 10px; }
  .col-xl {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    max-width: 100%; }
  .col-xl-1 {
    -webkit-flex-basis: 8.33333333%;
        -ms-flex-preferred-size: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-xl-2 {
    -webkit-flex-basis: 16.66666667%;
        -ms-flex-preferred-size: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-xl-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col-xl-4 {
    -webkit-flex-basis: 33.33333333%;
        -ms-flex-preferred-size: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-xl-5 {
    -webkit-flex-basis: 41.66666667%;
        -ms-flex-preferred-size: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-xl-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col-xl-7 {
    -webkit-flex-basis: 58.33333333%;
        -ms-flex-preferred-size: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-xl-8 {
    -webkit-flex-basis: 66.66666667%;
        -ms-flex-preferred-size: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-xl-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col-xl-10 {
    -webkit-flex-basis: 83.33333333%;
        -ms-flex-preferred-size: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-xl-11 {
    -webkit-flex-basis: 91.66666667%;
        -ms-flex-preferred-size: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-xl-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .col-xl-offset-0 {
    margin-left: 0; }
  .col-xl-offset-1 {
    margin-left: 8.33333333%; }
  .col-xl-offset-2 {
    margin-left: 16.66666667%; }
  .col-xl-offset-3 {
    margin-left: 25%; }
  .col-xl-offset-4 {
    margin-left: 33.33333333%; }
  .col-xl-offset-5 {
    margin-left: 41.66666667%; }
  .col-xl-offset-6 {
    margin-left: 50%; }
  .col-xl-offset-7 {
    margin-left: 58.33333333%; }
  .col-xl-offset-8 {
    margin-left: 66.66666667%; }
  .col-xl-offset-9 {
    margin-left: 75%; }
  .col-xl-offset-10 {
    margin-left: 83.33333333%; }
  .col-xl-offset-11 {
    margin-left: 91.66666667%; }
  .start-xl {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start; }
  .center-xl {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center; }
  .end-xl {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end; }
  .top-xl {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .middle-xl {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .bottom-xl {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .around-xl {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
  .between-xl {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .first-xl {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; }
  .last-xl {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .initial-order-xl {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial; } }

@media (min-width: 576px) and (max-width: 767px) {
  .hidden-sm {
    display: none; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg {
    display: none; } }

@media (min-width: 1200px) and (max-width: 1359px) {
  .hidden-xl {
    display: none; } }

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth; }

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

.page-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh; }

.main-container {
  width: 100%; }

html {
  font-size: 16px; }

html, body {
  overflow-x: hidden; }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body {
  font-family: "GTWalsheimProRegular", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-size: 16px;
  font-size: 1rem;
  font-family: "GTWalsheimProRegular", Helvetica, Arial, sans-serif;
  margin: 0px;
  background-color: #fff;
  color: #1D1D1B; }

h1, h2, h3, h4, h5, h6 {
  font-family: "GTWalsheimProBold", Helvetica, Arial, sans-serif;
  font-size: 1.5625em;
  font-size: 25px;
  font-size: 1.5625rem; }

h1.page-title {
  color: #fff;
  font-size: 2.375em;
  font-size: 38px;
  font-size: 2.375rem;
  margin-bottom: 20px;
  margin-top: 10px; }
  @media (min-width: 768px) {
    h1.page-title {
      margin-top: 50px;
      font-size: 3em;
      font-size: 48px;
      font-size: 3rem; } }
  h1.page-title span.mjk-western-noSpaceBefore.mjk-western-noSpaceAfter {
    display: block !important; }

h2, .h2 {
  font-size: 1.875em;
  font-size: 30px;
  font-size: 1.875rem; }

h3, .h3 {
  font-size: 1.25em;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 1px; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "GTWalsheimProBold", Helvetica, Arial, sans-serif;
  color: #1D1D1B; }

p {
  margin: 0 0 8px; }
  @media (min-width: 992px) {
    p {
      word-break: keep-all;
      line-break: strict; } }

.field--name-field-paragraph-body p,
.field--name-body p {
  margin: 0 0 25px; }

p {
  line-height: 1.5; }
  p a {
    color: #000; }
    .content p a {
      color: #fff;
      -webkit-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease; }
      .content p a:hover, .content p a:focus {
        color: #fff;
        text-decoration: underline;
        opacity: 0.7; }
    p a:hover, p a:focus {
      color: #000;
      text-decoration: underline; }

.link-dark-bg {
  color: #000;
  border-bottom: 1px solid transparent; }

.cta-wrapper {
  text-align: center;
  margin-top: 2rem; }

.cta {
  padding: 0.625rem 1.25rem;
  background-color: #EB3457;
  color: #fff;
  text-decoration: none;
  display: inline-block; }
  .cta:after {
    content: '';
    display: inline-block;
    height: 0.725rem;
    width: 0.725rem;
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-left: 0.625rem; }
  .cta--dark {
    background-color: #000; }
  .cta--back:after {
    float: left;
    margin-right: 0.625rem;
    margin-left: 0;
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg);
    position: relative;
    top: 3px; }

.sr-only {
  width: 0;
  height: 0;
  overflow: hidden;
  display: none; }

.reset-all,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0; }

.reset-top {
  margin-top: 0; }

.reset-bottom {
  margin-bottom: 0; }

.vc-absolute {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

.vc-relative {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

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

.full-screen-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

*:focus {
  outline: none; }

header {
  overflow: hidden;
  background-color: #EDEBED;
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media (min-width: 992px) {
    header {
      padding-top: 2.5rem;
      padding-bottom: 0; } }
  header .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    header .container > * {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 50%;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
    header .container > .navigation {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 70%;
          -ms-flex: 1 0 70%;
              flex: 1 0 70%;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
    header .container > .social {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 30%;
          -ms-flex: 1 0 30%;
              flex: 1 0 30%;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
  header .logo {
    max-width: 135px;
    display: block;
    float: left; }
    header .logo img {
      width: 100%; }
  header .social {
    text-align: right;
    padding-top: 0;
    padding-bottom: 0; }
    @media (max-width: 991px) {
      header .social {
        display: none; } }
    header .social .signup {
      float: right;
      display: none; }
      @media (min-width: 1200px) {
        header .social .signup {
          float: none;
          display: inline-block; } }
      header .social .signup span {
        display: none;
        text-align: right; }
        @media (min-width: 768px) {
          header .social .signup span {
            display: inline-block;
            padding-right: 5px;
            text-align: default; } }
      header .social .signup a {
        width: auto;
        height: auto;
        position: relative;
        margin-left: 2rem;
        text-decoration: none;
        color: #1D1D1B;
        -webkit-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease; }
        @media (min-width: 992px) {
          header .social .signup a {
            top: -10px; } }
        header .social .signup a:hover {
          opacity: 0.5; }
        header .social .signup a:after {
          content: '';
          display: inline-block;
          background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2020%22%3E%3Cstyle%3E.st0%7Bfill%3A%231d1e1b%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M14%2010V8c0-3-2.2-5.4-5-5.9V0H7v2.1C4.2%202.6%202%205%202%208v2l-2%206h16l-2-6zM8%2020c1.7%200%203-1.3%203-3H5c0%201.7%201.3%203%203%203z%22%2F%3E%3C%2Fsvg%3E");
          height: 20px;
          width: 16px;
          position: relative;
          top: 5px;
          margin-left: 10px; }
  header .social {
    margin-top: 1rem; }
    @media (min-width: 992px) {
      header .social {
        margin-top: 2rem; } }

footer {
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem; }
  footer .footer-text {
    font-size: 16px;
    font-weight: bold;
    color: #1D1D1B; }
  footer .footer-logo {
    margin: 30px 0; }
    footer .footer-logo img {
      width: 100px; }
  footer .footer-navigation {
    margin: 20px 0; }
    footer .footer-navigation a {
      color: #1D1D1B;
      text-decoration: none;
      -webkit-transition: color 0.3s ease;
      -o-transition: color 0.3s ease;
      transition: color 0.3s ease;
      display: block; }
      @media (min-width: 576px) {
        footer .footer-navigation a {
          display: inline; } }
      footer .footer-navigation a:hover {
        color: #EB3457; }
      footer .footer-navigation a + a:before {
        content: '-';
        margin: 0px 20px;
        display: inline-block;
        color: #1D1D1B;
        display: block; }
        @media (min-width: 576px) {
          footer .footer-navigation a + a:before {
            content: '|';
            display: inline-block; } }
  footer .footer-copyright {
    font-size: 10px;
    margin: 20px 0;
    color: #1D1D1B; }

.title-wrapper {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem; }

.events-list {
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
  clear: both; }
  #item-list-venues .events-list {
    padding-top: 0; }
  .events-list .events-list__title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%; }
  .events-list #events-list-featured {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  .events-list .thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: block; }
    #item-list-weekly .events-list .thumbnail {
      background-color: #EDEBED; }
    .events-list .thumbnail:before, .events-list .thumbnail:after {
      -webkit-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease; }
    .events-list .thumbnail:after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      height: 1.5rem;
      width: 1.5rem;
      border-right: 5px solid #fff;
      border-top: 5px solid #fff;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
          -ms-transform: translate(-50%, -50%) rotate(45deg);
              transform: translate(-50%, -50%) rotate(45deg);
      -webkit-transform-origin: center center;
          -ms-transform-origin: center center;
              transform-origin: center center;
      z-index: 2;
      opacity: 0; }
    .events-list .thumbnail:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      opacity: 0;
      z-index: 1; }
  .events-list h2 {
    color: #1D1D1B;
    font-size: 20px;
    text-align: center;
    text-transform: none;
    font-weight: bold; }
  .events-list .event {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 10px 10px; }
    @media (min-width: 576px) {
      .events-list .event {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 50%;
            -ms-flex: 0 1 50%;
                flex: 0 1 50%; } }
    @media (min-width: 768px) {
      .events-list .event {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 33%;
            -ms-flex: 0 1 33%;
                flex: 0 1 33%; } }
    @media (min-width: 992px) {
      .events-list .event {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 25%;
            -ms-flex: 0 1 25%;
                flex: 0 1 25%; } }
    @media (min-width: 768px) {
      .events-list .event.event--asset {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 50%;
            -ms-flex: 0 1 50%;
                flex: 0 1 50%; } }
    .events-list .event.event--asset a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
      height: 100%; }
    .events-list .event.event--asset .meta {
      width: 75%;
      font-weight: bold; }
      .events-list .event.event--asset .meta .shortDescription {
        font-weight: normal; }
      .events-list .event.event--asset .meta .dates {
        margin-bottom: 0.25rem; }
      .events-list .event.event--asset .meta .title {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem; }
      .events-list .event.event--asset .meta .shortDescription {
        color: #1D1D1B;
        font-size: 0.70rem;
        line-height: 1.5;
        padding-right: 1.5rem; }
    .events-list .event.event--asset .thumbnail {
      width: 25%; }
    .events-list .event a {
      background-color: #EB3457;
      display: block;
      color: #fff;
      text-decoration: none; }
      .events-list .event a:hover .thumbnail:after {
        opacity: 1; }
      .events-list .event a:hover .thumbnail:before {
        opacity: 0.5; }
    .events-list .event img {
      width: 100%;
      display: block;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
      #item-list-weekly .events-list .event img {
        height: auto;
        width: 80%;
        -o-object-fit: contain;
           object-fit: contain;
        vertical-align: middle;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
                transform: translateX(-50%) translateY(-50%); }
    .events-list .event .meta {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 0.75rem;
      display: block;
      min-height: 100px;
      position: relative; }
      .events-list .event .meta:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        height: 0.725rem;
        width: 0.725rem;
        border-right: 3px solid #fff;
        border-top: 3px solid #fff;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
      .events-list .event .meta .title {
        font-weight: bold;
        font-size: 1.2rem;
        color: #fff;
        display: block;
        text-transform: uppercase;
        margin-top: 1rem; }
        .search .events-list .event .meta .title {
          margin-top: 0;
          margin-bottom: 0.5rem; }
      .events-list .event .meta .dates {
        color: #1D1D1B;
        font-size: 12px;
        display: block; }

.pager {
  padding-top: 1.5rem;
  text-align: center; }
  .pager .pager-start button, .pager .pager-prev button, .pager .pager-next button, .pager .pager-end button {
    color: #EB3457; }
  .pager li {
    display: inline-block; }
    .pager li button {
      border: none;
      height: 35px;
      width: 35px;
      background: none;
      font-weight: bold; }
      .pager li button.active {
        background-color: #EB3457;
        color: #fff; }
    .pager li:hover button {
      background-color: #EDEBED; }

.item-filters {
  padding: 10px 10px; }
  .item-filters .filter-all {
    height: 40px;
    line-height: 40px;
    background-color: #000;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-right: 1.5rem;
    vertical-align: top; }
  .item-filters .v-select {
    display: inline-block;
    min-width: 250px;
    vertical-align: middle;
    width: 100%;
    margin-bottom: 1rem; }
    @media (min-width: 576px) {
      .item-filters .v-select {
        margin-right: 1rem; } }
    @media (min-width: 768px) {
      .item-filters .v-select {
        margin-right: 1rem;
        min-width: 200px;
        width: auto; } }
    @media (min-width: 992px) {
      .item-filters .v-select {
        margin-right: 2rem; } }
    .item-filters .v-select.filter-sort {
      float: right;
      margin-right: 0;
      width: 130px; }
    .item-filters .v-select .selected-tag {
      line-height: 40px;
      height: 40px;
      margin-top: 0;
      margin-bottom: 0; }
    .item-filters .v-select .dropdown-toggle {
      -webkit-border-radius: 0;
              border-radius: 0;
      background-color: #EDEBED;
      padding: 0;
      border: none;
      height: 40px;
      line-height: 40px; }
      .item-filters .v-select .dropdown-toggle .vs__selected-options {
        padding-left: 1rem; }
      .item-filters .v-select .dropdown-toggle .vs__actions {
        padding-right: 0; }
        .item-filters .v-select .dropdown-toggle .vs__actions .clear {
          display: none; }
        .item-filters .v-select .dropdown-toggle .vs__actions .open-indicator {
          background-color: #000;
          background-image: url(../images/arrows.png);
          background-repeat: no-repeat;
          background-position: center center;
          height: 40px;
          width: 40px;
          line-height: 40px;
          color: #fff; }
          .item-filters .v-select .dropdown-toggle .vs__actions .open-indicator:before {
            content: none; }

.subscription-form {
  padding: 3.5rem 0;
  width: 100%;
  background-color: #EDEBED; }
  .subscription-form h4 {
    color: #1D1D1B;
    font-weight: bold;
    font-size: 25px;
    text-transform: none;
    text-align: center;
    margin-bottom: 1.5rem; }
  .subscription-form p {
    font-size: 15px;
    color: #1D1D1B;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem; }
  .subscription-form #mc_embed_signup_scroll {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; }
  .subscription-form .mc-field-group {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px; }
    .subscription-form .mc-field-group label {
      width: 100%;
      display: block;
      color: #EB3457;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 0.675rem; }
    .subscription-form .mc-field-group input[type="text"],
    .subscription-form .mc-field-group input[type="email"] {
      width: 100%;
      display: block;
      background-color: #fff;
      border: none;
      height: 40px;
      padding-left: 10px;
      padding-right: 10px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .subscription-form .mc-field-group input[type="checkbox"] {
      display: inline-block;
      background-color: #fff;
      border: none;
      padding-left: 10px;
      padding-right: 10px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .subscription-form .mc-field-group select {
      width: 100%;
      display: block;
      background-color: #fff;
      border: none;
      height: 40px;
      padding-left: 10px;
      padding-right: 10px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .subscription-form .mc-field-group ul {
      width: 100%;
      padding: 1rem 0;
      margin: 0; }
      .subscription-form .mc-field-group ul li {
        width: 50%;
        display: block;
        float: left;
        position: relative;
        padding-bottom: 10px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px; }
        .subscription-form .mc-field-group ul li:nth-child(2n+1) {
          clear: both; }
          .subscription-form .mc-field-group ul li:nth-child(2n+1) input {
            position: absolute;
            top: 0px;
            left: 0px; }
          .subscription-form .mc-field-group ul li:nth-child(2n+1) label {
            padding-left: 10px; }
        .subscription-form .mc-field-group ul li input {
          position: absolute;
          top: 0px;
          left: 15px; }
        .subscription-form .mc-field-group ul li label {
          vertical-align: top;
          display: inline-block;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          width: auto;
          padding-left: 25px; }
  .subscription-form .submitForm {
    clear: both;
    margin: 0 auto;
    margin-top: 2.5rem;
    text-align: center; }
    .subscription-form .submitForm .pBtn {
      display: inline-block;
      background-color: #0f0f0f;
      padding: 10px 20px;
      color: white;
      font-weight: bold;
      text-decoration: none; }
      .subscription-form .submitForm .pBtn div:after {
        content: '';
        display: inline-block;
        height: 0.725rem;
        width: 0.725rem;
        border-right: 3px solid #fff;
        border-top: 3px solid #fff;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        margin-left: 0.625rem; }

.masthead-wrapper {
  width: 100%; }
  .masthead-wrapper .masthead {
    position: relative; }
    .masthead-wrapper .masthead img {
      width: 100%;
      display: block; }
    .masthead-wrapper .masthead .masthead-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      color: white;
      font-size: 24px;
      font-weight: bold;
      padding: 20px 20px;
      text-transform: uppercase;
      text-align: center;
      width: 100%; }
      @media (min-width: 768px) {
        .masthead-wrapper .masthead .masthead-overlay {
          font-size: 40px; } }

.social .link {
  -webkit-background-size: cover;
          background-size: cover;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: transparent; }
  .social .link + .link {
    margin-left: 10px; }
  .social .link:hover {
    opacity: 0.5; }

.social a[href*="facebook"] {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%23EB3457%22%20d%3D%22M1343%2012v264h-157q-86%200-116%2036t-30%20108v189h293l-39%20296h-254v759H734V905H479V609h255V391q0-186%20104-288.5T1115%200q147%200%20228%2012z%22%2F%3E%3C%2Fsvg%3E");
  height: 24px;
  width: 25px;
  top: -3px;
  position: relative; }

.social a[href*="twitter"] {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%23EB3457%22%20d%3D%22M1684%20408q-67%2098-162%20167%201%2014%201%2042%200%20130-38%20259.5T1369.5%201125%201185%201335.5t-258%20146-323%2054.5q-271%200-496-145%2035%204%2078%204%20225%200%20401-138-105-2-188-64.5T285%201033q33%205%2061%205%2043%200%2085-11-112-23-185.5-111.5T172%20710v-4q68%2038%20146%2041-66-44-105-115t-39-154q0-88%2044-163%20121%20149%20294.5%20238.5T884%20653q-8-38-8-74%200-134%2094.5-228.5T1199%20256q140%200%20236%20102%20109-21%20205-78-37%20115-142%20178%2093-10%20186-50z%22%2F%3E%3C%2Fsvg%3E"); }

.social a[href*="instagram"] {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%23EB3457%22%20d%3D%22M1152%20896q0-106-75-181t-181-75-181%2075-75%20181%2075%20181%20181%2075%20181-75%2075-181zm138%200q0%20164-115%20279t-279%20115-279-115-115-279%20115-279%20279-115%20279%20115%20115%20279zm108-410q0%2038-27%2065t-65%2027-65-27-27-65%2027-65%2065-27%2065%2027%2027%2065zM896%20266q-7%200-76.5-.5t-105.5%200-96.5%203-103%2010T443%20297q-50%2020-88%2058t-58%2088q-11%2029-18.5%2071.5t-10%20103-3%2096.5%200%20105.5.5%2076.5-.5%2076.5%200%20105.5%203%2096.5%2010%20103T297%201349q20%2050%2058%2088t88%2058q29%2011%2071.5%2018.5t103%2010%2096.5%203%20105.5%200%2076.5-.5%2076.5.5%20105.5%200%2096.5-3%20103-10%2071.5-18.5q50-20%2088-58t58-88q11-29%2018.5-71.5t10-103%203-96.5%200-105.5-.5-76.5.5-76.5%200-105.5-3-96.5-10-103T1495%20443q-20-50-58-88t-88-58q-29-11-71.5-18.5t-103-10-96.5-3-105.5%200-76.5.5zm768%20630q0%20229-5%20317-10%20208-124%20322t-322%20124q-88%205-317%205t-317-5q-208-10-322-124t-124-322q-5-88-5-317t5-317q10-208%20124-322t322-124q88-5%20317-5t317%205q208%2010%20322%20124t124%20322q5%2088%205%20317z%22%2F%3E%3C%2Fsvg%3E"); }

.social a[href*="snapchat"] {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%23EB3457%22%20d%3D%22M912%20128q134-1%20240.5%2068.5T1316%20389q27%2058%2027%20179%200%2047-9%20191%2014%207%2028%207%2018%200%2051-13.5t51-13.5q29%200%2056%2018t27%2046q0%2032-31.5%2054t-69%2031.5-69%2029T1346%20965q0%2015%2012%2043%2037%2082%20102.5%20150t144.5%20101q28%2012%2080%2023%2028%206%2028%2035%200%2070-219%20103-7%2011-11%2039t-14%2046.5-33%2018.5q-20%200-62-6.5t-64-6.5q-37%200-62%205-32%205-63%2022.5t-58%2038-58%2040.5-76%2033.5-99%2013.5q-52%200-96.5-13.5t-75-33.5-57.5-40.5-58-38-62-22.5q-26-5-63-5-24%200-65.5%207.5T358%201526q-25%200-35-18.5t-14-47.5-11-40q-219-33-219-103%200-29%2028-35%2052-11%2080-23%2078-32%20144.5-101T434%201008q12-28%2012-43%200-28-31.5-47.5T345%20888t-69.5-31.5T244%20804q0-27%2026-45.5t55-18.5q15%200%2048%2013t53%2013q18%200%2032-7-9-142-9-190%200-122%2027-180%2064-137%20172-198t264-63z%22%2F%3E%3C%2Fsvg%3E"); }

.social {
  padding: 10px 0; }
  header .social {
    text-align: left; }
    @media (min-width: 992px) {
      header .social {
        text-align: right; } }
  .social a {
    width: 30px;
    height: 30px;
    display: inline-block;
    -webkit-background-size: cover;
            background-size: cover; }

.search-wrapper {
  padding: 10px 0;
  margin-top: 0.5rem; }
  @media (min-width: 576px) {
    .search-wrapper {
      margin-top: 0; } }
  .search-wrapper form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 340px;
    margin-left: auto;
    margin-right: 60px; }
    @media (min-width: 992px) {
      .search-wrapper form {
        margin-right: 0; } }
  .search-wrapper label {
    vertical-align: middle;
    display: none;
    font-weight: bold;
    text-transform: uppercase;
    color: #EB3457;
    padding-right: 10px; }
    @media (min-width: 768px) {
      .search-wrapper label {
        display: inline-block; } }
  .search-wrapper input[type="text"] {
    border: none;
    height: 40px;
    background-color: #fff;
    width: 284px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .search-wrapper .search-button {
    height: 40px;
    width: 40px;
    background-color: #000;
    background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010.3%2010.3%22%3E%3Cstyle%3E.st0%7Bstroke-linecap%3Asquare%7D.st0%2C.st1%7Bfill%3Anone%3Bstroke%3A%23FFF%3Bstroke-miterlimit%3A10%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M9.6%209.6L6%206%22%2F%3E%3Ccircle%20class%3D%22st1%22%20cx%3D%223.7%22%20cy%3D%223.7%22%20r%3D%223.2%22%2F%3E%3C%2Fsvg%3E");
    -webkit-background-size: 20px 20px;
            background-size: 20px 20px;
    background-position: center center;
    background-repeat: no-repeat;
    color: transparent; }

.navigation {
  clear: both;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-150%);
      -ms-transform: translateY(-150%);
          transform: translateY(-150%);
  background-color: rgba(234, 234, 234, 0.95);
  text-align: center;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.65s ease;
  transition: -webkit-transform 0.65s ease;
  -o-transition: transform 0.65s ease;
  transition: transform 0.65s ease;
  transition: transform 0.65s ease, -webkit-transform 0.65s ease;
  border-bottom: 4px solid #EB3457;
  padding-top: 2rem; }
  .navigation.is-open {
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%); }
  @media (min-width: 992px) {
    .navigation {
      position: relative;
      background-color: transparent;
      text-align: left;
      border-bottom: 0px;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      margin-top: 2rem;
      padding-top: 0.625rem; } }
  .navigation a {
    font-size: 14px;
    font-weight: bold;
    color: #1D1D1B;
    margin-right: 15px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 2rem; }
    @media (min-width: 992px) {
      .navigation a {
        display: inline-block;
        font-size: 14px; } }
    @media (min-width: 1200px) {
      .navigation a {
        font-size: 16px; } }
    .navigation a:hover {
      color: #EB3457; }
  .navigation .social {
    display: none;
    text-align: center; }
    .navigation .social a {
      display: inline-block; }
    @media (max-width: 991px) {
      .navigation .social {
        display: block; } }
  .navigation .close-button {
    height: 40px;
    width: 40px;
    font-size: 40px;
    position: absolute;
    display: block;
    right: 1.5rem;
    top: 2rem;
    cursor: pointer; }
    @media (min-width: 992px) {
      .navigation .close-button {
        display: none; } }

.burger-menu {
  display: block;
  height: 40px;
  width: 40px;
  cursor: pointer;
  margin-left: 2rem;
  margin-top: 0.625rem;
  position: absolute;
  right: 0.625rem;
  font-size: 40px; }
  @media (min-width: 992px) {
    .burger-menu {
      display: none; } }

.body--artist {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem; }
  .body--artist h2, .body--artist h3, .body--artist h4, .body--artist h5 {
    font-weight: bold;
    text-transform: uppercase; }
  .body--artist .block-title {
    margin-bottom: 0.5rem; }
  .body--artist .artist-assets {
    margin-top: 2.5rem; }
    .body--artist .artist-assets:first-child {
      margin-top: 0; }
  .body--artist .image-dl {
    padding: 5px; }
    .body--artist .image-dl .image-dl__links {
      padding: 0.75rem 0.9rem;
      background-color: #EDEBED;
      padding-bottom: 0.3125rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .body--artist .image-dl img {
      display: block; }
  .body--artist .events-list {
    padding-top: 0;
    padding-bottom: 0; }
    @media (max-width: 991px) {
      .body--artist .events-list {
        margin-top: 1rem; } }
    .body--artist .events-list .event {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      padding-left: 0;
      padding-right: 0; }
      .body--artist .events-list .event .event__date {
        min-width: 95px;
        height: 95px;
        background-color: #EDEBED;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-content: center;
            -ms-flex-line-pack: center;
                align-content: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap; }
        .body--artist .events-list .event .event__date .day {
          font-size: 1.75rem; }
        .body--artist .events-list .event .event__date .month {
          font-size: 1.25rem; }
        .body--artist .events-list .event .event__date .year {
          font-size: 0.8rem; }
        .body--artist .events-list .event .event__date > span {
          display: block;
          width: 100%;
          text-align: center;
          color: #EB3457;
          text-transform: uppercase;
          font-weight: bold;
          padding-top: 2px;
          padding-bottom: 2px; }
      .body--artist .events-list .event.event-date-range {
        display: block;
        width: 100%; }
        .body--artist .events-list .event.event-date-range .event__date {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          clear: both;
          overflow: hidden;
          height: auto;
          padding-top: 10px;
          padding-bottom: 10px; }
          .body--artist .events-list .event.event-date-range .event__date > div {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            color: #EB3457;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
            max-width: 140px; }
            .body--artist .events-list .event.event-date-range .event__date > div .day,
            .body--artist .events-list .event.event-date-range .event__date > div .month,
            .body--artist .events-list .event.event-date-range .event__date > div .year {
              font-size: 1.25rem;
              font-weight: bold; }
            .body--artist .events-list .event.event-date-range .event__date > div.date-divider {
              max-width: 20px;
              padding-top: 2px;
              font-size: 1.5rem;
              margin-top: -5px; }
        .body--artist .events-list .event.event-date-range .event__meta {
          display: block;
          padding: 10px 10px;
          margin: 10px 0;
          background-color: #EDEBED; }
          .body--artist .events-list .event.event-date-range .event__meta span {
            display: block; }
          .body--artist .events-list .event.event-date-range .event__meta:last-child {
            margin-bottom: 0; }
          .body--artist .events-list .event.event-date-range .event__meta .restrictions {
            padding-top: 10px;
            font-size: 0.8rem; }
      .body--artist .events-list .event .event__meta {
        padding-left: 0.625rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        .body--artist .events-list .event .event__meta .title {
          font-weight: bold;
          text-transform: uppercase;
          margin-bottom: 0.5rem; }
  @media (max-width: 991px) {
    .body--artist .press-releases {
      margin-top: 1rem; } }
  .body--artist .press-releases .press-release {
    padding: 0.9rem;
    display: block;
    background-color: #EDEBED;
    font-size: 0.8rem; }
    .body--artist .press-releases .press-release a {
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      opacity: 1;
      -webkit-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
      padding-top: 0.25rem;
      padding-bottom: 0.5rem;
      display: block;
      width: 100%;
      margin-top: 10px; }
      @media (min-width: 768px) {
        .body--artist .press-releases .press-release a {
          margin-top: 0;
          float: right;
          position: relative;
          top: 0px;
          display: inline;
          width: auto; } }
      .body--artist .press-releases .press-release a:hover {
        opacity: 0.5; }
        .body--artist .press-releases .press-release a:hover:before {
          opacity: 1; }
    @media (min-width: 768px) {
      .body--artist .press-releases .press-release .text {
        max-width: 210px;
        display: inline-block; } }
  .body--artist .links .link {
    display: block;
    padding: 0.625rem;
    background-color: #EDEBED;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    color: #EB3457;
    font-weight: bold; }
    .body--artist .links .link:after {
      content: '';
      display: block;
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      height: 0.725rem;
      width: 0.725rem;
      border-right: 3px solid #EB3457;
      border-top: 3px solid #EB3457;
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
      top: 0.825rem; }
    .body--artist .links .link + .link {
      margin-top: 0.5rem; }

.download-item {
  position: relative;
  display: inline-block;
  top: -7px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 0.8rem; }
  .download-item + .download-item {
    margin-left: 0.5rem; }
  .download-item:hover:before {
    opacity: 0.5; }
  .download-item:before {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cstyle%3E.st0%7Bfill%3A%23e73658%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M0%2017h20v3H0zM10%2015l9-9h-5V0H6v6H1z%22%2F%3E%3C%2Fsvg%3E");
    position: relative;
    top: 5px;
    height: 20px;
    width: 20px;
    -webkit-background-size: cover;
            background-size: cover;
    margin-right: 0.625rem;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
  .download-item.download-item--white {
    background-color: #000;
    color: #fff;
    padding: 5px;
    text-transform: uppercase; }
    .download-item.download-item--white:before {
      background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cstyle%3E.st0%7Bfill%3A%23FFFFFF%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M0%2017h20v3H0zM10%2015l9-9h-5V0H6v6H1z%22%2F%3E%3C%2Fsvg%3E");
      height: 15px;
      width: 15px;
      top: 3px; }

.videos-list .video--native {
  width: 100%;
  height: auto; }

.videos-list .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }
  .videos-list .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.videos-list, .videos-list .video-wrapper + .video {
  margin-top: 1.5rem; }

.artist .masthead {
  background-color: #EB3457;
  min-height: 200px; }

.account-form {
  width: 100%;
  background-color: #EDEBED;
  overflow: hidden; }
  .account-form .container {
    width: 100%;
    max-width: none;
    padding: 0; }
  .account-form .form-wrapper {
    width: 50%;
    float: left;
    padding: 3.5rem 0; }
    @media (max-width: 991px) {
      .account-form .form-wrapper {
        width: 100%; } }
    .account-form .form-wrapper.middle {
      margin-left: auto;
      margin-right: auto;
      float: none; }
    .account-form .form-wrapper.red {
      background-color: #EB3457; }
  .account-form h4 {
    color: #1D1D1B;
    font-weight: bold;
    font-size: 25px;
    text-transform: none;
    text-align: center;
    margin-bottom: 1.5rem; }
  .account-form p {
    font-size: 15px;
    color: #1D1D1B;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem; }
  .account-form form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto; }
  .account-form .field-group {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px; }
    .account-form .field-group label {
      width: 100%;
      display: block;
      color: #EB3457;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 0.675rem; }
    .account-form .field-group input[type="text"],
    .account-form .field-group input[type="password"],
    .account-form .field-group input[type="email"] {
      width: 100%;
      display: block;
      background-color: #fff;
      border: none;
      height: 40px;
      padding-left: 10px;
      padding-right: 10px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .account-form .field-group input[type="checkbox"] {
      display: inline-block;
      background-color: #fff;
      border: none;
      padding-left: 10px;
      padding-right: 10px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .account-form .field-group select {
      width: 100%;
      display: block;
      background-color: #fff;
      border: none;
      height: 40px;
      padding-left: 10px;
      padding-right: 10px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .account-form .field-group ul {
      width: 100%;
      padding: 1rem 0;
      margin: 0; }
      .account-form .field-group ul li {
        width: 50%;
        display: block;
        float: left;
        position: relative;
        padding-bottom: 10px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px; }
        .account-form .field-group ul li:nth-child(2n+1) {
          clear: both; }
          .account-form .field-group ul li:nth-child(2n+1) input {
            position: absolute;
            top: 0px;
            left: 0px; }
          .account-form .field-group ul li:nth-child(2n+1) label {
            padding-left: 10px; }
        .account-form .field-group ul li input {
          position: absolute;
          top: 0px;
          left: 15px; }
        .account-form .field-group ul li label {
          vertical-align: top;
          display: inline-block;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          width: auto;
          padding-left: 25px; }
  .account-form .submit {
    clear: both;
    margin: 0.5rem auto;
    margin-top: 2.5rem;
    text-align: center; }
    .account-form .submit input[type="submit"] {
      display: inline-block;
      background-color: #0f0f0f;
      padding: 10px 20px;
      color: white;
      font-weight: bold;
      text-decoration: none; }
      .account-form .submit input[type="submit"] div:after {
        content: '';
        display: inline-block;
        height: 0.725rem;
        width: 0.725rem;
        border-right: 3px solid #fff;
        border-top: 3px solid #fff;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        margin-left: 0.625rem; }
  .account-form ul.errors {
    padding: 5px 0 1rem 0;
    display: block;
    clear: both;
    width: 100%; }
    .account-form ul.errors li {
      padding: 0;
      width: 100%;
      font-size: 12px; }

.account-form .form-wrapper.red h4 {
  color: #fff; }

.account-form .form-wrapper.red label {
  color: #fff; }

.meta-section {
  width: 100%;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #888;
  padding: 15px 15px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px; }

.center {
  text-align: center; }

.item-list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  .item-list .item {
    width: 50%;
    padding: 10px 20px 10px 0; }
    .item-list .item .inner {
      background-color: white;
      border: 2px solid #ddd;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
    .item-list .item .thumbnail img {
      height: 200px;
      display: block; }

.page .body,
.weekly .body {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  max-width: 800px;
  margin: 0px auto; }
  .page .body h1, .page .body h2, .page .body h3, .page .body h4, .page .body h5,
  .weekly .body h1,
  .weekly .body h2,
  .weekly .body h3,
  .weekly .body h4,
  .weekly .body h5 {
    margin-bottom: 1.25rem; }
  .page .body p,
  .weekly .body p {
    line-height: 1.5; }
  .page .body p + h1, .page .body h2, .page .body h3, .page .body h4, .page .body h5,
  .weekly .body p + h1,
  .weekly .body h2,
  .weekly .body h3,
  .weekly .body h4,
  .weekly .body h5 {
    margin-top: 2.25rem; }
  .page .body ul li, .page .body ol li,
  .weekly .body ul li,
  .weekly .body ol li {
    list-style-position: inside;
    margin-top: 0.5rem; }
  .page .body ul ul, .page .body ul ol, .page .body ol ul, .page .body ol ol,
  .weekly .body ul ul,
  .weekly .body ul ol,
  .weekly .body ol ul,
  .weekly .body ol ol {
    margin-left: 1rem;
    margin-bottom: 1rem; }
  .page .body table,
  .weekly .body table {
    margin-top: 2rem;
    background-color: #EDEBED;
    border: 1px solid #EB3457;
    line-height: 1.5; }
    .page .body table tr th,
    .weekly .body table tr th {
      padding: 10px 20px;
      background-color: #EB3457; }
    .page .body table tr td,
    .weekly .body table tr td {
      padding: 10px 20px; }
    .page .body table tr:nth-child(3n+1) td,
    .weekly .body table tr:nth-child(3n+1) td {
      border-bottom: 1px solid #EB3457;
      background-color: #EB3457;
      color: white;
      text-transform: uppercase; }

.page-contact-us .body .container {
  text-align: center;
  margin-bottom: 0.675rem;
  margin-top: 0.675rem; }
  .page-contact-us .body .container strong {
    display: block;
    color: #EB3457;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.675rem;
    margin-top: 0.675rem; }

.page-not-found.body .container {
  text-align: center;
  margin-bottom: 2.675rem;
  margin-top: 2.675rem; }
  .page-not-found.body .container h1 {
    display: block;
    color: #EB3457;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.675rem;
    margin-top: 1.675rem; }

.weekly .press-releases {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  max-width: 800px;
  margin: 0px auto; }
  .weekly .press-releases .press-release {
    padding: 0.9rem;
    display: block;
    background-color: #EDEBED;
    font-size: 1rem; }
    .weekly .press-releases .press-release a {
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      opacity: 1;
      -webkit-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
      padding-top: 0.25rem;
      padding-bottom: 0.5rem;
      display: block;
      width: 100%;
      margin-top: 10px; }
      @media (min-width: 768px) {
        .weekly .press-releases .press-release a {
          margin-top: -7px;
          float: right;
          position: relative;
          top: 0px;
          display: inline;
          width: auto; } }
      .weekly .press-releases .press-release a:hover {
        opacity: 0.5; }
        .weekly .press-releases .press-release a:hover:before {
          opacity: 1; }
    @media (min-width: 768px) {
      .weekly .press-releases .press-release .text {
        display: inline-block; } }
