@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600);/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* 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-.
     */
figcaption,
figure {
  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 {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
     * Add the correct display in IE.
     */
main {
  display: block;
}

/**
     * 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 */
}

/* Links
       ========================================================================== */
/**
     * 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 */
}

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in 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.
     */
button {
  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 */
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible;
}

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
  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 */
}

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
     * 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 {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  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;
}

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

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

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block;
}

/* 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;
}

html {
  box-sizing: border-box;
}

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

button, input[type="button"], input[type="reset"], input[type="submit"],
.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #313131;
  border: 1px solid #313131;
  border-radius: 3px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: "oswalddemibold";
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: 13px 40px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 150ms ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus,
.button:hover,
.button:focus {
  background-color: #fff;
  color: #313131;
}

button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

button:disabled:hover, input[type="button"]:disabled:hover, input[type="reset"]:disabled:hover, input[type="submit"]:disabled:hover,
.button:disabled:hover {
  background-color: #3F69B2;
}

.button.button-border {
  border: 1px solid white;
}

.button.button-purple {
  background: none;
  border: 1px solid #BE9A55;
  color: #BE9A55;
  display: block;
  font-family: "oswalddemibold";
  font-size: 20px;
  line-height: 50px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.button.button-purple.button-link {
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.button.button-purple.button-link span {
  padding: 0 20px;
}

.button.button-purple.button-link span:nth-child(2) {
  background-color: #96509F;
  display: flex;
  align-items: center;
}

.button.button-blue {
  background: #3F69B2;
  color: white;
  display: block;
  font-family: "oswalddemibold";
  font-size: 20px;
  line-height: 50px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.event-banner-button .button:hover {
  background-color: #fff;
  color: #222;
}

.flickity-prev-next-button {
  display: none;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: 0.375em;
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375em;
}

input,
select,
textarea {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  line-height: 45px;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color 150ms ease;
  width: 100%;
}

input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover {
  border-color: #b1b1b1;
}

input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus {
  border-color: #3F69B2;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(56, 94, 159, 0.7);
  outline: none;
}

input[type="color"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="email"]:disabled, input[type="month"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="week"]:disabled, input:not([type]):disabled, textarea:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}

input[type="color"]:disabled:hover, input[type="date"]:disabled:hover, input[type="datetime"]:disabled:hover, input[type="datetime-local"]:disabled:hover, input[type="email"]:disabled:hover, input[type="month"]:disabled:hover, input[type="number"]:disabled:hover, input[type="password"]:disabled:hover, input[type="search"]:disabled:hover, input[type="tel"]:disabled:hover, input[type="text"]:disabled:hover, input[type="time"]:disabled:hover, input[type="url"]:disabled:hover, input[type="week"]:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover {
  border: 1px solid #ddd;
}

input[type="color"]::-webkit-input-placeholder, input[type="date"]::-webkit-input-placeholder, input[type="datetime"]::-webkit-input-placeholder, input[type="datetime-local"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="month"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="time"]::-webkit-input-placeholder, input[type="url"]::-webkit-input-placeholder, input[type="week"]::-webkit-input-placeholder, input:not([type])::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #838383;
}

input[type="color"]::-moz-placeholder, input[type="date"]::-moz-placeholder, input[type="datetime"]::-moz-placeholder, input[type="datetime-local"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="month"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="time"]::-moz-placeholder, input[type="url"]::-moz-placeholder, input[type="week"]::-moz-placeholder, input:not([type])::-moz-placeholder, textarea::-moz-placeholder {
  color: #838383;
}

input[type="color"]:-ms-input-placeholder, input[type="date"]:-ms-input-placeholder, input[type="datetime"]:-ms-input-placeholder, input[type="datetime-local"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="month"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="text"]:-ms-input-placeholder, input[type="time"]:-ms-input-placeholder, input[type="url"]:-ms-input-placeholder, input[type="week"]:-ms-input-placeholder, input:not([type]):-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #838383;
}

input[type="color"]::-ms-input-placeholder, input[type="date"]::-ms-input-placeholder, input[type="datetime"]::-ms-input-placeholder, input[type="datetime-local"]::-ms-input-placeholder, input[type="email"]::-ms-input-placeholder, input[type="month"]::-ms-input-placeholder, input[type="number"]::-ms-input-placeholder, input[type="password"]::-ms-input-placeholder, input[type="search"]::-ms-input-placeholder, input[type="tel"]::-ms-input-placeholder, input[type="text"]::-ms-input-placeholder, input[type="time"]::-ms-input-placeholder, input[type="url"]::-ms-input-placeholder, input[type="week"]::-ms-input-placeholder, input:not([type])::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #838383;
}

input[type="color"]::placeholder, input[type="date"]::placeholder, input[type="datetime"]::placeholder, input[type="datetime-local"]::placeholder, input[type="email"]::placeholder, input[type="month"]::placeholder, input[type="number"]::placeholder, input[type="password"]::placeholder, input[type="search"]::placeholder, input[type="tel"]::placeholder, input[type="text"]::placeholder, input[type="time"]::placeholder, input[type="url"]::placeholder, input[type="week"]::placeholder, input:not([type])::placeholder, textarea::placeholder {
  color: #838383;
}

textarea {
  resize: vertical;
}

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 0.375em;
}

[type="file"] {
  margin-bottom: 0.75em;
  width: 100%;
}

select {
  margin-bottom: 0.75em;
  width: 100%;
}

html {
  box-sizing: border-box;
}

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

html,
body {
  height: 100%;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid #a6a6a6;
  font-weight: 600;
  padding: 0.75em 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #ddd;
  padding: 0.75em 0;
}

tr,
td,
th {
  vertical-align: middle;
}

@font-face {
  font-family: 'oswalddemibold';
  src: url("../src/fonts/oswald-demibold-webfont-webfont.woff2") format("woff2"), url("../src/fonts/oswald-demibold-webfont-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  color: #313131;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "oswalddemibold";
  font-size: 1.333em;
  line-height: 1.2;
  margin: 0 0 0.75em;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 16px;
}

p {
  margin: 0 0 0.75em;
}

a {
  color: #3F69B2;
  text-decoration: none;
  transition: color 150ms ease;
}

a:active, a:focus, a:hover {
  color: #2f4f86;
}

hr {
  border-bottom: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 1.5em 0;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 18px 30px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 20px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: #BE9A55;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -6px;
}

.hamburger-inner::after {
  bottom: -6px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 40px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 40px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 40px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 40px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-4px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(4px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-4px, -5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-4px, 5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(4px, -5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(4px, 5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -12px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -12px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -6px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 6px;
  transition: opacity 0.15s 0.4s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 12px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(135deg);
  transition-delay: 0.1s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -12px, 0) rotate(-270deg);
  transition-delay: 0.1s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 6px;
  transition: opacity 0.15s 0.4s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 12px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(-135deg);
  transition-delay: 0.1s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -12px, 0) rotate(270deg);
  transition-delay: 0.1s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.2s 0.25s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 6px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -40px;
  top: -40px;
  transform: translate3d(40px, 40px, 0) rotate(45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -40px;
  top: -40px;
  transform: translate3d(-40px, 40px, 0) rotate(-45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.2s 0.25s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 6px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -40px;
  top: 40px;
  transform: translate3d(40px, -40px, 0) rotate(-45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -40px;
  top: 40px;
  transform: translate3d(-40px, -40px, 0) rotate(45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1px;
}

.hamburger--slider .hamburger-inner::before {
  top: 6px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}

.hamburger--slider .hamburger-inner::after {
  top: 12px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-2.85714286px, -4px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -12px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 6px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 12px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(2.85714286px, -4px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -12px, 0) rotate(90deg);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.15s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 6px;
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 12px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -12px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.tag {
  color: white;
  font-family: "oswalddemibold";
  line-height: 30px;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}

.tag-red {
  background-color: #F43B3D;
}

.tag-blue {
  background-color: #3F69B2;
}

.tag-green {
  background-color: #6ABD45;
}

.tag-purple {
  background-color: #96509F;
}

.tag-teal {
  background-color: #71C9C0;
}

.tag-yellow {
  background-color: #E7BC0E;
}

.event-tile {
  background: white;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow .2s ease, transform .2s ease;
}

.event-tile:active, .event-tile:hover, .event-tile:focus {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}

.event-tile .event-tile-image {
  background: no-repeat center;
  background-size: cover;
  display: block;
  min-height: 184px;
  position: relative;
  width: 100%;
}

.event-tile .event-tile-image .event-tile-tag {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 85px;
}

.event-tile .event-tile-image img {
  vertical-align: bottom;
}

.event-tile .event-tile-content {
  padding: 10px;
  width: 50%;
}

.event-tile .event-tile-content .title {
  font-size: 14px;
}

.event-tile .event-tile-content .title a {
  color: #313131;
  display: block;
}

.event-tile .event-tile-content .date,
.event-tile .event-tile-content .location {
  font-size: 12px;
  font-weight: 600;
}

.event-tile .event-tile-content .date .fa,
.event-tile .event-tile-content .location .fa {
  margin-right: 10px;
  width: 11px;
}

.event-tile .event-tile-content .buy-tickets {
  font-family: "oswalddemibold";
  text-transform: uppercase;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0;
}

.event-tile .event-tile-content .buy-tickets a {
  border: 1px solid #BE9A55;
  color: #BE9A55;
  display: inline-block;
  border-radius: 3px;
  padding: 3px 20px;
  transition: all .2s;
}

.event-tile .event-tile-content .buy-tickets a:hover {
  color: white;
  background: #BE9A55;
}

.featured-events-background {
  background: url("../../images/background-featured.jpg") no-repeat center right;
  background-size: cover;
  padding-top: 30px;
  padding-bottom: 30px;
}

.featured-events {
  max-width: 1260px;
  margin: 0 auto 30px;
}

.featured-events .event-tile {
  margin-bottom: 14px;
  min-height: 140px;
}

.featured-all-events {
  display: flex;
  justify-content: space-around;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1260px;
  margin: auto;
}

.featured-all-events a {
  width: 100%;
}

.featured-all-events p {
  width: 100%;
}

.multiple-events .upcoming-all-events {
  padding: 0 30px;
  display: flex;
  justify-content: space-around;
  max-width: 1260px;
  margin: auto;
  width: 100%;
}

.multiple-events .upcoming-all-events p {
  width: 100%;
}

.multiple-events .upcoming-all-events a {
  width: 100%;
}

.multiple-events-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1260px;
  margin: 0 auto 30px;
  padding-left: 4px;
  padding-right: 4px;
}

.multiple-events-list .event-tile {
  margin-bottom: 14px;
  width: 100%;
}

.multiple-events-list .miscellaneous {
  display: none;
}

.event-collection {
  display: block;
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.event-collection .tag {
  position: absolute;
  top: 25px;
  left: 0;
  display: inline-block;
  font-size: 22px;
  line-height: 38px;
  padding-left: 15px;
  padding-right: 15px;
}

.event-collection:hover .event-collection-image, .event-collection:focus .event-collection-image {
  transform: scale(1.01);
}

.event-collection:hover .event-collection-image:before, .event-collection:focus .event-collection-image:before {
  opacity: 1;
}

.event-collection-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  transition: all .5s;
}

.event-collection-image:before {
  content: "";
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.15);
  transition: all .3s;
}

.instagram {
  display: flex;
  flex-wrap: wrap;
}

.instagram-post {
  display: block;
  background-position: center;
  background-size: cover;
  width: 50%;
}

.instagram-post:before {
  content: '';
  float: left;
  padding-top: 100%;
}

.instagram-link {
  background: white;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  height: 150px;
  justify-content: center;
  padding: 20px;
  width: 100%;
}

.instagram-link .instagram-hashtag {
  font-family: "oswalddemibold";
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.instagram-link .instagram-hashtag a {
  color: #313131;
}

.instagram-link .instagram-account {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}

.instagram-link .instagram-account a {
  color: #313131;
}

.event-banner {
  background: #222222;
}

.event-banner .event-banner-image img {
  width: 100%;
  vertical-align: bottom;
}

.event-banner-info {
  color: white;
  padding: 20px 30px;
}

.event-banner-info .event-banner-text {
  font-family: "oswalddemibold";
  text-transform: uppercase;
}

.event-banner-info .event-banner-text a {
  color: white;
}

.event-banner-info .event-banner-button .button {
  display: block;
  margin-bottom: 20px;
  width: 100%;
}

.event-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.event-gallery-photo {
  width: 49%;
}

footer {
  position: relative;
  padding: 40px 30px;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.footer-connections {
  padding-top: 10px;
  text-align: right;
}

.footer-navigation {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-navigation a {
  color: #797979;
  font-size: 14px;
  line-height: 33px;
}

.footer-social-icons {
  margin-bottom: 20px;
}

.footer-social-icons a {
  display: inline-block;
  margin-left: 10px;
}

.footer-social-icons img {
  width: 30px;
  transition: box-shadow .2s ease,transform .2s ease;
}

.footer-social-icons img:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.footer-social-icons .snapchat-link {
  background: none;
  border: none;
  border-radius: 0;
  line-height: inherit;
  margin-left: 10px;
  padding: 0;
  vertical-align: top;
}

.footer-social-icons .snapchat-link:hover, .footer-social-icons .snapchat-link:focus, .footer-social-icons .snapchat-link:active {
  background: none;
  outline: none;
}

.footer-info {
  color: #797979;
  font-size: 14px;
  line-height: 25px;
}

.footer-info a {
  color: #797979;
}

.footer-info p:first-of-type a {
  text-decoration: underline;
}

.newsletter {
  padding: 24px 14px;
  max-width: 1260px;
  margin: auto;
}

.newsletter h2 {
  margin-bottom: 6px;
}

.newsletter p {
  color: #666666;
}

.newsletter .email {
  border: 1px solid #BE9A55;
  border-radius: 0;
  margin: 0;
}

.newsletter .email:hover, .newsletter .email:focus, .newsletter .email:active {
  outline: none;
}

.newsletter .submit-button {
  background: #BE9A55;
  border-radius: 0;
  border: none;
  outline: none;
  padding: 0;
}

.newsletter .submit-button svg {
  height: 60px;
  vertical-align: bottom;
  width: 60px;
}

.newsletter .submit-button:hover, .newsletter .submit-button:focus, .newsletter .submit-button:active {
  outline: none;
}

.newsletter.sfc-newsletter .email {
  border: 1px solid #BE9A55;
}

.newsletter.sfc-newsletter .submit-button {
  background: #BE9A55;
}

.newsletter-form {
  display: flex;
}

.snapchat-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 0;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  transition: all .5s;
}

.snapchat-modal.is-active {
  max-height: 100vh;
  z-index: 2;
}

.snapchat-modal-shadow.is-active {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.snapchat-modal-image {
  max-width: 320px;
  max-height: 320px;
}

.snapchat-modal-title {
  color: white;
  font-size: 24px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
}

header .header-pane {
  width: 100px;
}

header .header-pane-r {
  text-align: right;
}

header .logo {
  width: 60px;
}

header .logo a {
  display: block;
}

header .logo img {
  vertical-align: bottom;
  width: 100%;
}

header .logo.sfc-logo {
  position: relative;
  min-width: 79px;
}

header .logo.sfc-logo .desktop {
  display: none;
  z-index: 3;
}

header .logo.sfc-logo .mobile {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 79px;
  height: 80px;
  z-index: 3;
}

header .search-button {
  background: none;
  border: none;
  color: #313131;
  line-height: 60px;
  padding: 0 30px;
}

header .search-button:hover, header .search-button:active, header .search-button:focus {
  background: none;
  color: #313131;
  outline: none;
}

.hamburger:hover, .hamburger:active, .hamburger:focus {
  background: none;
  outline: none;
}

.navigation {
  align-content: center;
  background: #F7F7F7;
  height: 100%;
  left: 0;
  max-height: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all .25s;
  width: 100%;
  z-index: 100;
}

.navigation .navigation-list {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  width: 45%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.navigation p {
  font-family: "oswalddemibold";
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 29px;
}

.navigation a {
  color: #313131;
}

.navigation.is-active {
  max-height: 100vh;
}

.navigation-back {
  background: #F7F7F7 url(../../images/icons/back-chev.svg) no-repeat center;
  border: 1px solid #BE9A55;
  left: 30px;
  height: 30px;
  padding: 0;
  position: absolute;
  top: 20px;
  width: 30px;
}

.navigation-back:hover, .navigation-back:active, .navigation-back:focus {
  background: #F7F7F7 url(../../images/icons/back-chev.svg) no-repeat center;
  color: #313131;
  outline: none;
}

.banners {
  max-width: 1200px;
  margin: 0 auto;
}

.banner {
  width: 100%;
}

.banner-image img {
  vertical-align: bottom;
  width: 100%;
}

.banner-content {
  color: white;
  padding: 30px 30px 40px;
  background: #222222;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banner-content h1 {
  font-size: 32px;
}

.banner-content .banner-text {
  margin-bottom: 30px;
}

.banner-content .banner-info {
  font-family: "oswalddemibold";
  text-transform: uppercase;
  margin-bottom: 15px;
}

.banner-content .banner-info .fa {
  width: 15px;
  margin-right: 10px;
}

.banner-content .banner-info a {
  color: white;
}

.banner-content .button {
  background: none;
  margin-bottom: 20px;
  width: 100%;
  transition: all .3s;
}

.banner-content .button:hover {
  background: white;
  color: #222222;
}

.flickity-page-dots {
  bottom: 14px;
}

.flickity-page-dots .dot {
  background: transparent;
  box-shadow: 0 0 0 1pt #E7BC0E;
  border: 1px solid transparent;
  border-radius: 50%;
  height: 16px;
  margin: 0 15px 0 0;
  opacity: 1;
  transition: all .25s;
  width: 16px;
}

.flickity-page-dots .dot.is-selected {
  background-color: #E7BC0E;
}

.flickity-prev-next-button {
  width: 42px;
  height: 42px;
  background: rgba(218, 218, 218, 0.6);
  border-radius: 0;
  padding: 0;
}

.flickity-prev-next-button:hover, .flickity-prev-next-button:focus, .flickity-prev-next-button:active {
  background: rgba(218, 218, 218, 0.4);
}

.flickity-prev-next-button .arrow {
  fill: white;
}

.flickity-prev-next-button.previous {
  left: 0;
}

.flickity-prev-next-button.next {
  right: 0;
}

.hide-buttons .flickity-prev-next-button.next,
.hide-buttons .flickity-prev-next-button.previous {
  display: none;
}

.hide-buttons .flickity-prev-next-button.next:hover,
.hide-buttons .flickity-prev-next-button.previous:hover {
  display: none;
}

.find-an-event-button {
  background: white linear-gradient(-1deg, rgba(247, 247, 247, 0) 1%, #EEEEEE 99%);
  border: none;
  color: #313131;
  line-height: 60px;
  font-weight: 300;
  font-family: Open Sans,sans-serif;
  padding: 0 30px;
  text-align: left;
  width: 100%;
}

.find-an-event-button svg {
  width: 15px;
  height: 15px;
}

.find-an-event-button:hover, .find-an-event-button:focus, .find-an-event-button:active {
  background: white linear-gradient(-1deg, rgba(247, 247, 247, 0) 1%, #EEEEEE 99%);
  color: #313131;
  outline: none;
}

.back-button {
  align-content: center;
  border: 1px solid #BE9A55;
  border-radius: 0;
  background: none;
  display: flex;
  height: 40px;
  justify-content: center;
  left: 30px;
  padding: 0;
  position: absolute;
  top: 30px;
  width: 40px;
  z-index: 9999;
}

.back-button:hover, .back-button:focus, .back-button:active {
  background: none;
  outline: none;
}

.back-button svg {
  width: 12px;
}

.show-finder-form.is-active {
  display: flex;
}

.show-finder-form {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding-top: 20vh;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  background: #F9F9F9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  height: 100vh;
}

.show-finder-form .find-an-event-search {
  background: none;
  border: 1px solid #BE9A55;
  border-radius: 0;
  color: #BE9A55;
  line-height: 50px;
  padding: 0 29px;
  width: 100%;
}

.show-finder-form .find-an-event-search:hover, .show-finder-form .find-an-event-search:focus, .show-finder-form .find-an-event-search:active {
  background: #BE9A55;
  color: white;
}

.show-finder-form .find-an-event-search span {
  display: inline-block;
  margin: 0;
}

.show-finder-form .sfc-find-an-event-search {
  border: 1px solid #BE9A55;
  color: #BE9A55;
}

.show-finder-form .sfc-find-an-event-search:hover, .show-finder-form .sfc-find-an-event-search:focus, .show-finder-form .sfc-find-an-event-search:active {
  background: #BE9A55;
  color: white;
}

.show-finder-form span {
  display: none;
}

.select-wrapper {
  align-self: center;
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.select-wrapper select {
  width: 100%;
  height: inherit;
  text-indent: .3125rem;
  background-color: transparent;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  line-height: 41px;
  margin-bottom: 0;
  padding-left: 8px;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.select-wrapper select:hover, .select-wrapper select:focus, .select-wrapper select:active {
  outline: none;
}

.select-wrapper .chevron {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  pointer-events: none;
}

.select-wrapper .chevron svg {
  width: 10px;
  color: #2e3845;
}

.spoilt-for-choice {
  background-position: center;
  background-size: cover;
  margin-bottom: 25px;
  padding-top: 50px;
  padding-bottom: 20px;
}

.spoilt-for-choice h2 {
  color: white;
}

.spoilt-offerings {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.spoilt-offering-fakey,
.spoilt-offering {
  width: 100%;
}

.spoilt-offering {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  display: block;
}

.spoilt-offering .spoilt-offering-title {
  font-size: 22px;
  line-height: 38px;
  letter-spacing: 0.16px;
  font-weight: 700;
  font-family: "oswalddemibold";
  margin-bottom: 10px;
  text-transform: uppercase;
}

.spoilt-offering .spoilt-offering-price {
  line-height: 22px;
  margin-bottom: 22px;
}

.spoilt-offering .spoilt-offering-content {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 35px;
}

.spoilt-offering .spoilt-offering-button {
  background: none;
  border: 1px solid #BE9A55;
  border-radius: 0;
  width: 100%;
  color: #BE9A55;
  transition: background, color .2s;
}

.spoilt-offering .spoilt-offering-button:hover {
  background-color: #BE9A55;
  color: white;
}

.spoilt-offering .spoilt-offering-bottom {
  width: 100%;
}

.modal-wrapper {
  display: none;
}

.modal-wrapper.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.sfc-modal {
  max-width: 1200px;
  width: 100%;
  z-index: 1;
}

.sfc-modal-offerings {
  display: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sfc-modal-offerings .sfc-modal-offering-fakey {
  width: 100%;
}

.sfc-modal-offerings .sfc-modal-offering {
  background-color: white;
  color: #96509F;
  height: 65px;
  line-height: 65px;
  padding-left: 25px;
  transition: all .25s;
  width: 100%;
}

.sfc-modal-offerings .sfc-modal-offering p {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.sfc-modal-offerings .sfc-modal-offering:hover {
  background-color: #BE9A55;
  color: white;
}

.sfc-modal-offerings .purple-diamond {
  display: none;
}

.sfc-modal-offerings .sfc-modal-offering.is-active {
  background-color: #96509F;
  color: white;
  position: relative;
}

.sfc-modal-container {
  display: flex;
}

.sfc-modal-content {
  background: #F3F3F3;
  display: none;
  width: 31%;
  padding: 24px 22px;
}

.sfc-modal-content .sfc-modal-content-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 19px;
}

.sfc-modal-content .sfc-modal-content-price {
  color: #5F5F5F;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 21px;
}

.sfc-modal-content .sfc-modal-content-price {
  font-size: 14px;
  line-height: 24px;
}

.sfc-modal-contact {
  background: #F9F9F9;
  width: 100%;
  padding: 40px 20px;
}

.sfc-modal-contact label {
  font-size: 18px;
  font-weight: normal;
  line-height: 20px;
}

.sfc-modal-contact input[type=text],
.sfc-modal-contact input[type=email],
.sfc-modal-contact select,
.sfc-modal-contact textarea {
  background: white;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.keyword-search {
  background: #F9F9F9;
  height: 0;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 300;
  overflow: hidden;
  transition: all 0.25s;
}

.keyword-search h2 {
  padding-top: 30px;
}

.keyword-search .action {
  border: 1px solid #BE9A55;
  border-radius: 0;
  background: #F9F9F9;
  color: #BE9A55;
  width: 100%;
}

.keyword-search .action:hover, .keyword-search .action:active, .keyword-search .action:focus {
  background: #BE9A55;
  color: #F9F9F9;
}

.keyword-search .keyword-search-wrapper {
  padding: 80px 30px 0;
  max-width: 600px;
  margin: auto;
}

.keyword-search .back-button {
  display: block;
}

.keyword-search.is-active {
  height: 100vh;
}

.keyword-search-form {
  margin-bottom: 20px;
}

.keyword-search-form label {
  display: none;
}

.keyword-search-form .text {
  border-radius: 0;
}

.keyword-search-form .action {
  border: 1px solid #BE9A55;
  border-radius: 0;
  background: white;
  color: #BE9A55;
  width: 100%;
}

.keyword-search-form .action:hover, .keyword-search-form .action:active, .keyword-search-form .action:focus {
  background: #BE9A55;
  color: white;
}

.field {
  margin-bottom: 20px;
}

.field input.text,
.field textarea {
  background-color: #F3F3F3;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  border-color: transparent;
}

.checkbox .middleColumn {
  display: flex;
  align-items: center;
}

.checkbox .middleColumn input {
  margin-right: 0;
  opacity: 0;
  overflow: hidden;
  width: 1px;
}

.checkbox .middleColumn input:checked + label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 4px;
  top: 4px;
  background-color: #313131;
}

.checkbox .middleColumn label {
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
}

.checkbox .middleColumn label:before {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #313131;
  background-color: #F3F3F3;
}

.field.checkboxset .odd,
.field.checkboxset .even {
  float: none;
}

.field.checkboxset .odd label::before,
.field.checkboxset .even label::before {
  border-radius: 0;
}

.field.checkboxset .odd input:checked + label::after,
.field.checkboxset .even input:checked + label::after {
  border-radius: 0;
}

.optionset .odd,
.optionset .even {
  display: flex;
  float: left;
  align-items: center;
  margin-bottom: 10px;
  margin-right: 20px;
}

.optionset .odd label,
.optionset .even label {
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
}

.optionset .odd label:before,
.optionset .even label:before {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #313131;
  border-radius: 50%;
  background-color: #F3F3F3;
}

.optionset .odd input,
.optionset .even input {
  margin-right: 0;
  opacity: 0;
  overflow: hidden;
  width: 1px;
}

.optionset .odd input:checked + label::after,
.optionset .even input:checked + label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background-color: #313131;
}

.field.date-alt {
  max-width: 50%;
}

.field.dropdown {
  max-width: 50%;
}

.field.dropdown select {
  padding: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: transparent;
  background-color: #F3F3F3;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  background-image: url("../../images/icons/download.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.field.dropdown select::-ms-expand {
  display: none;
  /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}

.btn-toolbar.Actions [type="submit"] {
  width: 180px;
}

.home-event-collection {
  margin-bottom: 20px;
}

.home-spoilt-target {
  display: block;
  margin: auto;
  max-width: 372px;
  width: 100%;
  padding-top: 10px;
}

.home-spoilt-target img {
  width: 100%;
}

.home-multiple-events {
  padding-top: 30px;
  padding-bottom: 20px;
}

.vip-experience {
  background-color: #EEE;
}

.vip-experience_cta .cta_content {
  color: white;
  background: #313131;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
}

.vip-experience_cta .cta_content h1 {
  font-size: 38px;
  color: #BE9A55;
  letter-spacing: 0;
  line-height: 48px;
  padding-bottom: 26px;
  border-bottom: 1px solid #BE9A55;
}

.vip-experience_cta .cta_content .button.outline {
  border: 1px solid #BE9A55;
  font-size: 18px;
  color: #BE9A55;
  letter-spacing: -0.25px;
  text-align: center;
  margin-top: 15px;
}

.vip-experience_cta .cta_image img {
  width: 100%;
  vertical-align: middle;
}

.vip-experience_content {
  padding-bottom: 1px;
}

.vip-experience_content .vip_image img {
  width: 100%;
  vertical-align: middle;
}

.vip-experience_content .vip_content {
  padding-top: 30px;
  margin: 0 20px 30px;
  border-bottom: 1px solid #BE9A55;
  background-color: #eee;
}

.event-layout {
  padding-top: 30px;
  padding-bottom: 30px;
}

.venue {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14);
  padding-top: 20px;
  margin-bottom: 30px;
}

.venue .title,
.venue .content {
  padding-left: 20px;
  padding-right: 20px;
}

.venue .content {
  margin-bottom: 30px;
}

.spoilt-block {
  width: 100%;
}

.event-times {
  padding-left: 20px;
  padding-right: 20px;
}

.event-times .event-time-list {
  padding-left: 0;
  list-style: none;
  color: #808080;
}

.event-times .event-time-list li {
  margin-bottom: 4px;
}

.event-holder-multiple-events {
  padding-top: 40px;
}

.event-holder-switch {
  padding-top: 30px;
}

.event-time-switches {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  width: 260px;
}

.event-time-switches .toggle {
  color: #313131;
  display: block;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  width: 50%;
}

.event-time-switches .toggle.current {
  background: #BE9A55;
  color: white;
}

.community-wrapper {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.about-page {
  margin: 30px auto 60px;
  max-width: 820px;
  padding-left: 20px;
  padding-right: 20px;
}

.venue-panel {
  background-position: center;
  background-size: cover;
  display: block;
  height: 245px;
  padding-top: 25px;
  transition: all .25s;
  width: 100%;
}

.venue-panel:hover {
  opacity: 0.9;
}

.venue-panel .tag {
  display: inline-block;
  line-height: 40px;
  font-family: "oswalddemibold";
  font-size: 22px;
  padding-left: 10px;
  padding-right: 15px;
}

.contact-wrapper {
  padding-top: 20px;
  padding-bottom: 30px;
}

.contact-page {
  max-width: 720px;
  padding-top: 20px;
  padding-bottom: 30px;
  width: 100%;
}

.contact-page input[type=text],
.contact-page input[type=email],
.contact-page textarea {
  background: #F7F7F7;
  border: 0 solid #CECECE;
  border-radius: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.contact-panel {
  background: white;
  border: 0 solid #CECECE;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 25px;
}

.contact-panel a {
  color: #313131;
}

.contact-panel i {
  width: 15px;
  margin-right: 15px;
}

#Form_ContactForm_error {
  font-size: 1.4em;
  color: #6ABD45;
}

#Form_ContactForm_error .bad {
  color: #F43B3D;
}

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

.u-container.u-container--thin {
  max-width: 996px;
}

.u-content-container {
  max-width: 590px;
  margin-right: auto;
}

.u-spacing {
  padding-top: 25px;
  padding-bottom: 25px;
}

.u-left {
  flex-direction: row;
}

.u-right {
  flex-direction: row-reverse;
}

.o-button {
  font-family: "oswalddemibold";
  width: 280px;
  max-width: 100%;
  display: inline-block;
  text-align: center;
  padding: 13px 20px;
  background-color: transparent;
  border: 2px solid;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.25;
  line-height: 26px;
  transition: color .3s ease-in-out, background-color .3s ease-in-out;
}

.o-button.o-button--small {
  width: unset;
  padding: 6px 24px 6px 24px;
  border-color: #BE9A55;
  color: #BE9A55;
  background-color: rgba(0, 0, 0, 0.6);
}

.o-button.o-button--small:hover {
  color: white;
  background-color: #BE9A55;
}

.o-button--primary {
  color: white;
  border-color: #313131;
  background-color: #313131;
}

.o-button--primary:hover {
  background-color: white;
  color: #313131;
}

.o-button--gold {
  color: white;
  border-color: #BE9A55;
  background-color: rgba(49, 49, 49, 0.75);
}

.o-button--gold:hover {
  color: #BE9A55;
  background-color: white;
}

.o-button--b-default {
  margin-bottom: 30px;
}

.o-tile {
  display: block;
  color: white;
  padding: 50px 15px 30px;
  margin-left: -20px;
  margin-right: -20px;
  background-size: cover;
  background-position: center;
  background-color: rgba(49, 49, 49, 0.5);
}

.o-tilea {
  color: white;
  pointer-events: none;
}

.o-tile:hover {
  color: white;
}

.o-tile .o-tile--header {
  font-size: 30px;
  line-height: 45px;
  font-weight: bold;
  font-family: "oswalddemibold";
}

.o-tile .o-tile--desc {
  font-size: 16px;
  line-height: 22px;
}

.o-tile .o-button {
  margin-top: 45px;
}

.e-banner__slide {
  width: 100%;
  color: white;
  padding: 55px 0;
  background-size: cover;
  background-position: center;
  min-height: 370px;
}

.e-banner .carousel-progress {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 6px;
  background-color: white;
}

.e-banner .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 0%;
  background-color: #BE9A55;
}

.e-banner__header {
  font-family: "oswalddemibold";
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 1.88px;
  line-height: 40px;
  text-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.e-banner__description {
  font-family: "oswalddemibold";
  font-size: 24px;
  letter-spacing: 1.32px;
  line-height: 36px;
}

.e-content__wrapper {
  max-width: 795px;
  margin-right: auto;
}

.e-ctas {
  text-align: center;
}

.e-ctas__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.e-image-text__image {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 20px;
}

.e-image-text__image img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.e-image-text__cta {
  margin-top: 20px;
}

.e-slider__wrapper {
  padding-bottom: 35px;
  margin-left: -20px;
  margin-right: -20px;
}

.e-slider__wrapper .flickity-prev-next-button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.e-slider__wrapper .flickity-prev-next-button .flickity-button-icon {
  width: 30%;
  left: 35%;
}

.e-slider__wrapper .flickity-prev-next-button.next {
  right: 10px;
}

.e-slider__wrapper .flickity-prev-next-button.previous {
  left: 10px;
}

.e-slider__wrapper .flickity-page-dots {
  padding-right: 0;
  text-align: center;
  bottom: 0;
}

.e-slider__wrapper .flickity-page-dots .dot {
  border-radius: 0;
  opacity: 1;
  background-color: black;
  border-color: white;
  box-shadow: unset;
  height: 14px;
  width: 14px;
}

.e-slider__wrapper .flickity-page-dots .dot.is-selected {
  box-shadow: unset;
  background-color: #BE9A55;
}

.e-slider__slide {
  width: 100%;
}

.e-slider__slide img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.error-page {
  margin-top: 40px;
  margin-bottom: 40px;
}

.container {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.container-np {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding-left: 20px;
  padding-right: 20px;
}

body.is-active {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .featured-events-background {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .featured-events {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 4px;
    padding-right: 4px;
  }
  .featured-events .event-tile {
    width: 49%;
  }
  .featured-all-events p {
    width: 50%;
  }
  .multiple-events .upcoming-all-events p {
    width: 50%;
  }
  .multiple-events-list .event-tile,
  .multiple-events-list .event-tile-fake {
    width: 49%;
  }
  .event-collections {
    display: flex;
    flex-wrap: wrap;
  }
  .event-collection {
    min-height: 250px;
    width: 50%;
  }
  .instagram-post {
    width: 25%;
  }
  .event-banner-info .event-banner-button {
    display: flex;
    justify-content: space-around;
    width: 50%;
  }
  .event-banner-info .event-banner-button .button {
    padding-left: 14px;
    padding-right: 14px;
    line-height: 50px;
    max-height: 50px;
    padding: 0;
    width: 46%;
  }
  .event-banner-info {
    display: flex;
    flex-wrap: wrap;
  }
  .event-banner-info h2 {
    width: 100%;
  }
  .event-banner-info .event-banner-text {
    width: 50%;
  }
  .event-gallery {
    padding-left: 30px;
    padding-right: 30px;
  }
  .newsletter {
    padding-left: 30px;
    padding-right: 30px;
  }
  header .logo.sfc-logo {
    min-width: 323px;
  }
  header .logo.sfc-logo .mobile {
    display: none;
  }
  header .logo.sfc-logo .desktop {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 323px;
    height: 75px;
  }
  header .logo.sfc-logo a {
    position: static;
    width: auto;
    height: auto;
  }
  .banner-content h1 {
    font-size: 48px;
  }
  .banner-content .banner-text {
    margin-bottom: 40px;
    max-width: 560px;
  }
  .banner-content .banner-info:last-of-type {
    margin-bottom: 30px;
  }
  .banner-content .buttons {
    display: flex;
    justify-content: space-between;
    max-width: 460px;
  }
  .banner-content .buttons .button {
    width: 160px;
    padding-left: 0;
    padding-right: 0;
  }
  .banner-content .buttons .find-out-more {
    width: 190px;
  }
  .flickity-page-dots {
    text-align: right;
    padding-right: 95px;
  }
  .spoilt-offering-fakey,
  .spoilt-offering {
    width: 49%;
  }
  .home-multiple-events {
    padding-bottom: 60px;
  }
  .venue {
    height: 100%;
    width: 49%;
  }
  .venue .button-para {
    margin-bottom: 0;
  }
  .event-panels .event-links {
    display: flex;
    justify-content: space-between;
  }
  .event-panels .event-links p {
    margin-bottom: 20px;
    width: 49%;
  }
  .event-panels .event-panel-box {
    display: flex;
    justify-content: space-between;
  }
  .spoilt-block {
    width: 49%;
  }
  .about-page {
    padding-left: 30px;
    padding-right: 30px;
  }
  .venue-panels {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
    margin: auto;
    max-width: 1200px;
  }
  .venue-panel {
    margin-bottom: 20px;
    height: 365px;
    width: 49%;
  }
  .contact-wrapper {
    background: url(../../images/contact-bg.jpg) no-repeat bottom right;
    background-size: contain;
    padding-bottom: 60px;
  }
  .u-spacing {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .o-button.o-button--short {
    width: 180px;
  }
  .e-banner__slide {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .e-banner__header {
    font-size: 48px;
    letter-spacing: 2.65px;
    line-height: 54px;
  }
  .e-banner__description {
    font-size: 30px;
    letter-spacing: 1.66px;
    line-height: 45px;
  }
  .e-image-text__wrapper {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
  }
  .e-image-text__image {
    width: calc(50% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  .e-image-text__cta {
    margin-top: 28px;
  }
  .e-image-text__content {
    width: calc(50% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  .e-slider__wrapper {
    padding-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .e-slider__wrapper .flickity-prev-next-button {
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.75);
    border: 1px solid #BE9A55;
    border-radius: 3px;
  }
  .e-slider__wrapper .flickity-page-dots {
    bottom: 15px;
  }
  .e-slider__wrapper .flickity-page-dots .dot {
    height: 13px;
    width: 13px;
    border: 2px solid white;
  }
  .e-slider__wrapper .flickity-page-dots .dot.is-selected {
    border: 2px solid white;
  }
  .section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .vip-experience {
    padding-bottom: 50px;
  }
  .vip-experience_cta {
    display: flex;
    align-items: center;
    padding-bottom: 50px;
  }
  .vip-experience_cta .cta_content--wrapper {
    width: 385px;
    margin-right: -192px;
    position: relative;
  }
  .vip-experience_cta .cta_content h1 {
    font-size: 44px;
    line-height: 54px;
  }
  .vip-experience_cta .cta_image {
    width: 85%;
  }
  .vip-experience_content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .vip-experience_content .vip_image {
    width: calc(100% / 3);
    margin-left: 15%;
  }
  .vip-experience_content .vip_content {
    width: 45%;
    margin-left: 0;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (min-width: 1200px) {
  .event-tile {
    display: block;
  }
  .event-tile .event-tile-content {
    width: 100%;
  }
  .featured-events-background {
    background: url("../../images/background-featured.jpg") no-repeat center;
  }
  .featured-events {
    padding-left: 30px;
    padding-right: 30px;
  }
  .featured-events .event-tile {
    width: 32%;
  }
  .featured-events .event-tile .event-tile-image {
    min-height: 263px;
  }
  .featured-all-events p {
    width: 32%;
  }
  .multiple-events .upcoming-all-events p {
    width: 32%;
  }
  .multiple-events-list {
    padding-left: 30px;
    padding-right: 30px;
  }
  .multiple-events-list .event-tile,
  .multiple-events-list .event-tile-fake {
    width: 22.5%;
  }
  .multiple-events-list .event-tile {
    margin-bottom: 30px;
  }
  .multiple-events-list .miscellaneous {
    background: white center;
    background-size: cover;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
    display: flex;
    margin-bottom: 30px;
    min-height: 270px;
    width: 22.5%;
    transition: box-shadow .2s ease, transform .2s ease;
  }
  .multiple-events-list .miscellaneous:active, .multiple-events-list .miscellaneous:hover, .multiple-events-list .miscellaneous:focus {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  }
  .multiple-events-list .miscellaneous .miscellaneous-block {
    display: block;
    width: 100%;
  }
  .multiple-events-list.upcoming-events .event-tile:nth-of-type(8n) {
    display: none;
  }
  .event-collections-gradient-bottom {
    background-image: linear-gradient(0deg, rgba(63, 105, 178, 0.15) 1%, rgba(255, 255, 255, 0) 85%);
    padding-bottom: 110px;
  }
  .event-collections.event-holder {
    box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.5);
  }
  .event-collection {
    width: 33.33333%;
  }
  .instagram-gradient-bottom {
    background-image: linear-gradient(0deg, rgba(63, 105, 178, 0.15) 1%, rgba(255, 255, 255, 0) 85%);
    padding-bottom: 110px;
  }
  .instagram {
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  }
  .instagram-post {
    width: 20%;
  }
  .instagram-link {
    width: 20%;
    height: auto;
  }
  .event-banner {
    display: flex;
  }
  .event-banner .event-banner-image {
    width: 60%;
  }
  .event-banner-info .event-banner-button {
    justify-content: space-between;
    width: 100%;
  }
  .event-banner-info .event-banner-button .button {
    margin-bottom: 0;
  }
  .event-banner-info {
    align-content: space-between;
    width: 40%;
    padding: 30px 35px;
  }
  .event-gallery {
    max-width: 1260px;
    margin: auto;
  }
  .newsletter {
    display: flex;
    align-items: center;
  }
  .newsletter .newsletter-content {
    min-width: 300px;
    width: 300px;
  }
  .newsletter .newsletter-form {
    width: 100%;
    max-height: 60px;
  }
  header .logo {
    width: 100px;
  }
  header .search-button {
    line-height: 80px;
  }
  header {
    align-items: flex-end;
  }
  header .logo {
    position: relative;
    height: 80px;
  }
  header .logo a {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
  }
  .hamburger {
    display: none;
  }
  .navigation {
    background: none;
    max-height: none;
    position: static;
    overflow: inherit;
  }
  .navigation .navigation-list {
    padding-top: 0;
    text-align: right;
    width: 100%;
    display: block;
  }
  .navigation p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 0;
    padding: 0 11px;
  }
  .navigation a {
    display: block;
    padding: 19px 15px;
    border-bottom: 4px solid transparent;
  }
  .navigation a:hover {
    border-bottom: 4px solid #BE9A55;
  }
  .navigation .sfc-hover:hover {
    border-bottom: 4px solid #BE9A55;
  }
  .navigation .current, .navigation .section {
    border-bottom: 4px solid #BE9A55;
  }
  .navigation .sfc-current {
    border-bottom: 4px solid #BE9A55;
  }
  .navigation .sfc-current:hover {
    border-bottom: 4px solid #be9a55;
  }
  .navigation li {
    display: inline-block;
  }
  .navigation-children-holder {
    position: relative;
  }
  .navigation-children-holder .navigation-children {
    max-height: 0;
    overflow: hidden;
    transition: all .25s;
  }
  .navigation-children-holder .sfc-navigation-back {
    display: none;
  }
  .navigation-children-holder:hover .navigation-children {
    max-height: 100vh;
  }
  .navigation-children-holder .navigation-children {
    position: absolute;
    top: 100%;
    text-align: left;
    box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.15);
    width: 144px;
  }
  .navigation-children-holder .navigation-children p {
    padding: 0;
  }
  .navigation-children-holder .navigation-children a {
    background: white;
    border-bottom: 1px solid #F3F3F3;
  }
  .navigation-children-holder .navigation-children a:hover {
    background: #F7F7F7;
    border-bottom: 1px solid #F3F3F3;
  }
  .navigation-children-holder .sfc-navigation-button {
    display: none;
  }
  .navigation-children-holder .navigation-children-title {
    display: none;
  }
  .navigation-back {
    display: none;
  }
  .banners {
    margin: 40px auto 0;
  }
  .banner {
    display: flex;
  }
  .banner-image {
    width: 71%;
  }
  .banner-content {
    padding: 20px 30px 10px;
    width: 40%;
  }
  .find-an-event-button {
    display: none;
  }
  .back-button {
    display: none;
  }
  .show-finder-form {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1.25rem 0;
    background: linear-gradient(-1deg, rgba(247, 247, 247, 0) 1%, #EEEEEE 99%);
    height: inherit;
  }
  .show-finder-form h2 {
    display: none;
  }
  .show-finder-form .find-an-event-search {
    line-height: 38px;
    width: auto;
  }
  .show-finder-form .find-an-event-search span {
    display: none;
  }
  .show-finder-form span {
    display: inline-block;
    margin-right: .625rem;
    margin-left: .625rem;
    line-height: 1;
    margin-bottom: 0;
  }
  .select-wrapper {
    height: 2.5rem;
    width: auto;
    margin-bottom: 0;
  }
  .select-wrapper select {
    width: 13.125rem;
  }
  .select-wrapper:last-of-type {
    margin-right: 20px;
  }
  .spoilt-offering-fakey,
  .spoilt-offering {
    width: 31%;
  }
  .sfc-modal-offerings .sfc-modal-offering-fakey {
    width: 31%;
  }
  .sfc-modal-offerings .sfc-modal-offering {
    width: 31%;
  }
  .sfc-modal-offerings .sfc-modal-offering.is-active .purple-diamond {
    bottom: -6px;
    display: block;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 12px;
  }
  .sfc-modal-content.is-active {
    display: block;
  }
  .sfc-modal-contact {
    width: 69%;
  }
  .keyword-search-form {
    display: flex;
  }
  .keyword-search-form fieldset {
    width: 100%;
    margin-right: 20px;
  }
  .keyword-search-form .action {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .field {
    margin-bottom: 35px;
  }
  .home-event-collection {
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 60px;
  }
  .home-spoilt-target {
    display: none;
  }
  .event-layout {
    display: flex;
    justify-content: space-between;
  }
  .event-layout .event-content {
    width: 64%;
  }
  .event-layout .event-panels {
    width: 34%;
  }
  .venue {
    width: 100%;
  }
  .event-panels .event-links {
    display: block;
  }
  .event-panels .event-links p {
    width: 100%;
  }
  .event-panels .event-panel-box {
    display: block;
  }
  .spoilt-block {
    width: 100%;
  }
  .about-page {
    margin-top: 60px;
  }
  .contact-wrapper {
    padding-bottom: 110px;
  }
  .contact-container {
    display: flex;
    justify-content: space-between;
  }
  .contact-container .contact-panel {
    max-height: 200px;
  }
  .contact-panel {
    max-width: 360px;
  }
  .u-container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
  .u-spacing {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .o-tile {
    width: calc((100% / 3) - 24px);
    margin: 12px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .e-banner__slide {
    padding-top: 85px;
    padding-bottom: 70px;
  }
  .e-ctas__wrapper {
    padding-top: 26px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .e-slider__wrapper .flickity-prev-next-button {
    width: 72px;
    height: 72px;
  }
  .e-slider__wrapper .flickity-prev-next-button.next {
    right: 20px;
  }
  .e-slider__wrapper .flickity-prev-next-button.previous {
    left: 20px;
  }
  .e-tiles__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
  }
}

@media screen and (min-width: 1600px) {
  .contact-wrapper {
    background-size: cover;
  }
}

@media screen and (max-width: 1200px) {
  .navigation-children-holder .sfc-navigation-button {
    background: none;
    border: none;
    border-radius: 0;
    color: #313131;
    font-family: "oswalddemibold";
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 29px;
    padding: 0;
    text-transform: none;
  }
  .navigation-children-holder .sfc-desktop-link {
    display: none;
  }
  .navigation-children-holder .navigation-children-title {
    text-decoration: underline;
  }
  .navigation-children-holder .navigation-children {
    background: #f7f7f7;
    position: absolute;
    right: 100%;
    width: 100vw;
    height: 100vh;
    transition: all .25s;
    z-index: 200;
  }
  .navigation-children-holder .navigation-children-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    margin: auto;
    height: 100%;
  }
  .navigation-children-holder .sfc-navigation-back {
    background: #f7f7f7 url(../../images/icons/back-chev-gold.svg) no-repeat 50%;
    border: 1px solid #BE9A55;
    left: 30px;
    height: 30px;
    padding: 0;
    position: absolute;
    top: 20px;
    width: 30px;
  }
  .navigation-children-holder.is-active .navigation-children {
    right: 0;
    top: 0;
    left: 0;
  }
}
