/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
/* line 11, ../../src/styles/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
/* line 30, ../../src/styles/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 41, ../../src/styles/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
/* line 50, ../../src/styles/_normalize.scss */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 64, ../../src/styles/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Removes default margin.
 */
/* line 74, ../../src/styles/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
/* line 86, ../../src/styles/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
/* line 94, ../../src/styles/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
/* line 108, ../../src/styles/_normalize.scss */
h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 116, ../../src/styles/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 124, ../../src/styles/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
/* line 133, ../../src/styles/_normalize.scss */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */
/* line 141, ../../src/styles/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
/* line 151, ../../src/styles/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
/* line 163, ../../src/styles/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
/* line 173, ../../src/styles/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
/* line 181, ../../src/styles/_normalize.scss */
small {
  font-size: 80%;
}

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

/* line 197, ../../src/styles/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 201, ../../src/styles/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
/* line 213, ../../src/styles/_normalize.scss */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
/* line 221, ../../src/styles/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
/* line 233, ../../src/styles/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
/* line 245, ../../src/styles/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 256, ../../src/styles/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
/* line 267, ../../src/styles/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 281, ../../src/styles/_normalize.scss */
button,
input {
  line-height: normal;
}

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

/*
 * Re-set default cursor for disabled elements.
 */
/* line 306, ../../src/styles/_normalize.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
/* line 316, ../../src/styles/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 328, ../../src/styles/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 340, ../../src/styles/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
/* line 349, ../../src/styles/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
/* line 360, ../../src/styles/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
/* line 373, ../../src/styles/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*******************************
  1. Commonly Used (Extends)
  2. Media Queries
  3. Custom
*******************************/
/*******************************
  1. COMMONLY USED (EXTENDS)
*******************************/
/* line 11, ../../src/styles/_mixins.scss */
.single-events #et-main-area .divider:after,
.single-films #et-main-area .divider:after {
  display: block;
  width: 0;
  height: 0;
  clear: both;
}

/*******************************
  2. MEDIA QUERIES
*******************************/
/*******************************
  3. Custom
*******************************/
/* line 94, ../../src/styles/_mixins.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit]:after, .et_pb_module a.et_pb_button.btn-download:after, .et_pb_posts a.more-link:after,
.et_pb_module a.et_pb_button:after, a.back:before,
.et_pb_module a.back:before, .chevron-link a:after, .et_pb_toggle.et_pb_module .et_pb_toggle_title:before, .press-accordion.et_pb_section > .et_pb_row:first-child h2:before, .search-results .pagination a:after, .film-filters .select-wrapper:after, .gform_wrapper.gravity-theme .gfield .ginput_container_select:after, .single-events #et-main-area .film-still.has-trailer:before,
.single-films #et-main-area .film-still.has-trailer:before {
  font-family: "Font Awesome 5 Pro" !important;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* line 105, ../../src/styles/_mixins.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit], .et_pb_module a.et_pb_button.btn-download, .et_pb_posts a.more-link,
.et_pb_module a.et_pb_button {
  font-family: 'KnockoutFeatherweight', sans-serif;
  font-size: 26px;
  border: 2px solid #DB6D06;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  text-transform: uppercase;
  color: #1E242B;
  text-align: center;
  padding: 2px 30px 0 12px;
  position: relative;
  text-decoration: none;
  transition: all 250ms;
}
/* line 118, ../../src/styles/_mixins.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit]:after, .et_pb_module a.et_pb_button.btn-download:after, .et_pb_posts a.more-link:after,
.et_pb_module a.et_pb_button:after {
  content: "\f054";
  display: block;
  color: #DB6D06;
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  opacity: 1;
  margin-left: 0;
  padding-top: 2px;
}
/* line 132, ../../src/styles/_mixins.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover, .et_pb_posts a.more-link:hover,
.et_pb_module a.et_pb_button:hover {
  background-color: #DB6D06;
  border-color: #BC563F;
  color: #fff;
  padding: 2px 30px 0 12px !important;
}
/* line 137, ../../src/styles/_mixins.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover:after, .et_pb_posts a.more-link:hover:after,
.et_pb_module a.et_pb_button:hover:after {
  color: #fff;
}

/* line 143, ../../src/styles/_mixins.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit] {
  padding: 12px 20px 12px 12px !important;
}
/* line 146, ../../src/styles/_mixins.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit]:after {
  display: none;
}
/* line 149, ../../src/styles/_mixins.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover, .gform_wrapper.gravity-theme .gform_footer input[type=submit]:focus {
  padding: 12px 20px 12px 12px !important;
}

/* line 155, ../../src/styles/_mixins.scss */
.et_pb_module a.et_pb_button.btn-download {
  padding: 2px 60px 0 25px !important;
  line-height: 1.15;
  background-color: #fff;
}
/* line 160, ../../src/styles/_mixins.scss */
.et_pb_module a.et_pb_button.btn-download:after {
  content: "\f019";
  right: 25px;
  padding-top: 0;
}
/* line 165, ../../src/styles/_mixins.scss */
.et_pb_module a.et_pb_button.btn-download:hover, .et_pb_module a.et_pb_button.btn-download:focus {
  background-color: #DB6D06;
  padding: 2px 60px 0 25px !important;
}

/*********************
	1. Fonts
	2. Typography
  3. Layout
*********************/
/*********************
	1. Fonts
*********************/
@font-face {
  font-family: 'GeometricBlack';
  src: url(../../fonts/Geometric/Geometric415Black.woff);
  src: url(../../fonts/Geometric/Geometric415Black.woff2);
  src: url(../../fonts/Geometric/Geometric415Black.otf);
}
@font-face {
  font-family: 'GeometricBlackItalic';
  src: url(../../fonts/Geometric/Geometric415BlackItalic.woff);
  src: url(../../fonts/Geometric/Geometric415BlackItalic.woff2);
  src: url(../../fonts/Geometric/Geometric415BlackItalic.otf);
}
@font-face {
  font-family: 'GeometricLight';
  src: url(../../fonts/Geometric/Geometric415Light.woff);
  src: url(../../fonts/Geometric/Geometric415Light.woff2);
  src: url(../../fonts/Geometric/Geometric415Light.otf);
}
@font-face {
  font-family: 'GeometricLightItalic';
  src: url(../../fonts/Geometric/Geometric415LightItalic.woff);
  src: url(../../fonts/Geometric/Geometric415LightItalic.woff2);
  src: url(../../fonts/Geometric/Geometric415LightItalic.otf);
}
@font-face {
  font-family: 'GeometricMedium';
  src: url(../../fonts/Geometric/Geometric415Medium.woff);
  src: url(../../fonts/Geometric/Geometric415Medium.woff2);
  src: url(../../fonts/Geometric/Geometric415Medium.otf);
}
@font-face {
  font-family: 'GeometricMediumItalic';
  src: url(../../fonts/Geometric/Geometric415MediumItalic.woff);
  src: url(../../fonts/Geometric/Geometric415MediumItalic.woff2);
  src: url(../../fonts/Geometric/Geometric415MediumItalic.otf);
}
@font-face {
  font-family: 'KnockoutJuniorLite';
  src: url(../../fonts/Knockout/Knockout-HTF29-JuniorLiteweight.woff);
  src: url(../../fonts/Knockout/Knockout-HTF29-JuniorLiteweight.woff2);
  src: url(../../fonts/Knockout/Knockout-HTF29-JuniorLiteweight.otf);
}
@font-face {
  font-family: 'KnockoutJuniorWelter';
  src: url(../../fonts/Knockout/Knockout-HTF30-JuniorWelterwt.woff);
  src: url(../../fonts/Knockout/Knockout-HTF30-JuniorWelterwt.woff2);
  src: url(../../fonts/Knockout/Knockout-HTF30-JuniorWelterwt.otf);
}
@font-face {
  font-family: 'KnockoutFeatherweight';
  src: url(../../fonts/Knockout/Knockout-HTF48-Featherweight.woff);
  src: url(../../fonts/Knockout/Knockout-HTF48-Featherweight.woff2);
  src: url(../../fonts/Knockout/Knockout-HTF48-Featherweight.otf);
}
@font-face {
  font-family: 'KnockoutLiteweight';
  src: url(../../fonts/Knockout/Knockout-HTF49-Liteweight.woff);
  src: url(../../fonts/Knockout/Knockout-HTF49-Liteweight.woff2);
  src: url(../../fonts/Knockout/Knockout-HTF49-Liteweight.otf);
}
/*********************
	2. Typography
*********************/
/* line 83, ../../src/styles/_universal.scss */
html {
  margin-top: 0 !important;
}

/* line 86, ../../src/styles/_universal.scss */
body {
  font-family: 'GeometricLight';
  font-size: 18px;
  line-height: 1.67;
  color: #1E242B;
}

/* line 93, ../../src/styles/_universal.scss */
strong {
  font-family: 'GeometricBlack', sans-serif;
  font-weight: 400;
}

/* line 98, ../../src/styles/_universal.scss */
em strong,
strong em {
  font-family: 'GeometricBlackItalic', sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* line 105, ../../src/styles/_universal.scss */
.et_pb_module h1,
.et_pb_module h2,
.et_pb_module h3,
.et_pb_module h4,
.et_pb_module h5,
.et_pb_module h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'KnockoutLiteweight';
  color: #1E242B;
  line-height: 1.1;
}
/* line 120, ../../src/styles/_universal.scss */
.et_pb_module h1 a,
.et_pb_module h2 a,
.et_pb_module h3 a,
.et_pb_module h4 a,
.et_pb_module h5 a,
.et_pb_module h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #1E242B;
  transition: color 250ms;
}
/* line 123, ../../src/styles/_universal.scss */
.et_pb_module h1 a:hover,
.et_pb_module h2 a:hover,
.et_pb_module h3 a:hover,
.et_pb_module h4 a:hover,
.et_pb_module h5 a:hover,
.et_pb_module h6 a:hover,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #DB6D06;
  text-decoration: none;
}

/* line 130, ../../src/styles/_universal.scss */
.et_pb_module h1,
h1 {
  font-size: 60px;
  text-transform: uppercase;
}

/* line 136, ../../src/styles/_universal.scss */
.et_pb_module h2,
h2 {
  font-size: 40px;
  text-transform: uppercase;
}

/* line 142, ../../src/styles/_universal.scss */
.et_pb_module h3,
.post-type-archive-films.et-db #et-boc .et-l .et_pb_column_1_3 h3,
h3 {
  font-size: 30px;
}

/* line 148, ../../src/styles/_universal.scss */
.et_pb_module h4,
h4 {
  font-size: 24px;
  color: #575757;
  text-transform: uppercase;
  padding-bottom: 15px;
}

/* line 156, ../../src/styles/_universal.scss */
a,
.et_pb_module a {
  text-decoration: underline;
  transition: all 250ms;
  color: #1E242B;
}
/* line 161, ../../src/styles/_universal.scss */
a:hover,
.et_pb_module a:hover {
  color: #DB6D06;
}
/* line 164, ../../src/styles/_universal.scss */
a.back,
.et_pb_module a.back {
  padding-left: 18px;
  position: relative;
}
/* line 167, ../../src/styles/_universal.scss */
a.back:before,
.et_pb_module a.back:before {
  content: "\f053";
  position: absolute;
  left: 0;
  top: 0.15em;
}

/* line 178, ../../src/styles/_universal.scss */
.entry-content p + ul {
  padding-top: 1em;
}
/* line 181, ../../src/styles/_universal.scss */
.entry-content ol {
  list-style: none;
  counter-reset: custom-counter;
}
/* line 184, ../../src/styles/_universal.scss */
.entry-content ol > li {
  line-height: 1.5;
  counter-increment: custom-counter;
  position: relative;
  padding-left: 1.75em;
}
/* line 189, ../../src/styles/_universal.scss */
.entry-content ol > li:not(:last-child) {
  padding-bottom: 8px;
}
/* line 192, ../../src/styles/_universal.scss */
.entry-content ol > li:before {
  content: counter(custom-counter) ". ";
  font-weight: 700;
  position: absolute;
  display: inline-block;
  transform: translateX(-100%);
  padding-right: 10px;
}
/* line 201, ../../src/styles/_universal.scss */
.entry-content ol ol {
  list-style: lower-alpha;
}
/* line 203, ../../src/styles/_universal.scss */
.entry-content ol ol li {
  padding-left: 0;
}
/* line 205, ../../src/styles/_universal.scss */
.entry-content ol ol li:before {
  display: none;
}

/* line 223, ../../src/styles/_universal.scss */
.et_pb_posts a.more-link {
  display: inline-block;
  text-decoration: none;
  margin-top: 25px;
  transition: all 250ms;
}
/* line 228, ../../src/styles/_universal.scss */
.et_pb_posts a.more-link:hover, .et_pb_posts a.more-link:hover mark {
  color: #fff !important;
}

@media screen and (min-width: 768px) {
  /* line 235, ../../src/styles/_universal.scss */
  .et_pb_button_module_wrapper.btn-inline {
    display: inline-block;
    margin-right: 32px;
  }
  /* line 238, ../../src/styles/_universal.scss */
  .et_pb_button_module_wrapper.btn-inline + .et_pb_button_module_wrapper.btn-inline {
    margin-right: 0;
  }
}
/* line 245, ../../src/styles/_universal.scss */
.et_pb_post:not(:last-child) {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #F98D29;
}
/* line 250, ../../src/styles/_universal.scss */
.et_pb_post:last-child {
  margin-bottom: 50px;
}

/* line 256, ../../src/styles/_universal.scss */
.chevron-link a {
  position: relative;
}
/* line 258, ../../src/styles/_universal.scss */
.chevron-link a:after {
  content: "\f054";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 1;
  margin-left: 0;
  padding-top: 2px;
}
/* line 272, ../../src/styles/_universal.scss */
.chevron-link:not(.chevron-link-back) a {
  padding-right: 18px;
}
/* line 276, ../../src/styles/_universal.scss */
.chevron-link.chevron-link-back a {
  padding-left: 18px;
}
/* line 278, ../../src/styles/_universal.scss */
.chevron-link.chevron-link-back a:after {
  right: unset;
  left: 0;
  transform: scaleX(-1) translateY(-50%);
}

/* line 286, ../../src/styles/_universal.scss */
mark {
  background: transparent;
  color: #DB6D06 !important;
  transition: all 250ms;
}

/* line 292, ../../src/styles/_universal.scss */
.et_pb_blog_0_tb_body .et_pb_post .post-content > *:not(.more-link) mark {
  font-family: 'GeometricBlack';
  background: transparent;
  color: #DB6D06 !important;
}

/*********************
  3. Layout
*********************/
/* line 301, ../../src/styles/_universal.scss */
body, html {
  overflow-x: hidden;
}

@media screen and (min-width: 981px) {
  /* line 306, ../../src/styles/_universal.scss */
  .et_pb_gutters3 .et_pb_column_1_4,
  .et_pb_gutters3.et_pb_row .et_pb_column_1_4 {
    width: calc(25% - calc(32px / 4));
  }
  /* line 309, ../../src/styles/_universal.scss */
  .et_pb_gutters3 .et_pb_column_1_4 + .et_pb_column_1_2,
  .et_pb_gutters3.et_pb_row .et_pb_column_1_4 + .et_pb_column_1_2 {
    width: calc(50% - 64px);
  }

  /* line 313, ../../src/styles/_universal.scss */
  .et_pb_gutters3 .et_pb_column_1_2,
  .et_pb_gutters3.et_pb_row .et_pb_column_1_2 {
    width: calc(50% - calc(32px / 2));
  }

  /* line 317, ../../src/styles/_universal.scss */
  .et_pb_gutters3 .et_pb_column_1_3,
  .et_pb_gutters3.et_pb_row .et_pb_column_1_3 {
    width: calc(33.3% - calc(64px / 3));
  }

  /* line 321, ../../src/styles/_universal.scss */
  .et_pb_gutters3 .et_pb_column_1_2,
  .et_pb_gutters3 .et_pb_column_1_4,
  .et_pb_gutters3 .et_pb_column_1_3,
  .et_pb_gutters3 .et_pb_column_2_3,
  .et_pb_gutters3.et_pb_row .et_pb_column_1_3 {
    margin-right: 32px;
  }

  /* line 328, ../../src/styles/_universal.scss */
  .et_pb_gutters3 .et_pb_column_2_3,
  .et_pb_gutters3.et_pb_row .et_pb_column_2_3 {
    width: calc(66.7% - calc(32px / 2));
  }

  /* line 333, ../../src/styles/_universal.scss */
  .et_pb_gutters2 .et_pb_column_1_2,
  .et_pb_gutters2.et_pb_row .et_pb_column_1_2 {
    width: calc(50% - calc(20px / 2));
  }

  /* line 337, ../../src/styles/_universal.scss */
  .et_pb_gutters2 .et_pb_column_1_3,
  .et_pb_gutters2.et_pb_row .et_pb_column_1_3 {
    width: calc(33.3% - calc(40px / 3));
  }

  /* line 341, ../../src/styles/_universal.scss */
  .et_pb_gutters2 .et_pb_column_1_2,
  .et_pb_gutters2 .et_pb_column_1_3,
  .et_pb_gutters2 .et_pb_column_2_3,
  .et_pb_gutters2.et_pb_row .et_pb_column_1_3 {
    margin-right: 20px;
  }

  /* line 347, ../../src/styles/_universal.scss */
  .et_pb_gutters2 .et_pb_column_2_3,
  .et_pb_gutters2.et_pb_row .et_pb_column_2_3 {
    width: calc(66.7% - calc(20px / 2));
  }
}
/* line 353, ../../src/styles/_universal.scss */
.et_pb_section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  /* line 353, ../../src/styles/_universal.scss */
  .et_pb_section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* line 360, ../../src/styles/_universal.scss */
.et_pb_section.shaded {
  background-color: #F1F2F3;
}
/* line 362, ../../src/styles/_universal.scss */
.et_pb_section.shaded .et_pb_button:not(.btn-download) {
  background-color: transparent !important;
}
/* line 364, ../../src/styles/_universal.scss */
.et_pb_section.shaded .et_pb_button:not(.btn-download):hover {
  background-color: #DB6D06 !important;
}
@media screen and (max-width: 980px) {
  /* line 371, ../../src/styles/_universal.scss */
  .et_pb_section.flip-mobile .et_pb_row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  /* line 374, ../../src/styles/_universal.scss */
  .et_pb_section.flip-mobile .et_pb_row .et_pb_column:not(.et-last-child) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0 !important;
    margin-top: 30px !important;
  }
}
/* line 382, ../../src/styles/_universal.scss */
.et_pb_section > .et_pb_row {
  padding: 20px 40px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  /* line 382, ../../src/styles/_universal.scss */
  .et_pb_section > .et_pb_row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 980px) {
  /* line 393, ../../src/styles/_universal.scss */
  .et_pb_section.swap-mobile > .et_pb_row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  /* line 396, ../../src/styles/_universal.scss */
  .et_pb_section.swap-mobile > .et_pb_row .et_pb_column:first-child {
    order: 2;
    margin-top: 30px;
    margin-bottom: 0;
  }
}
/* line 405, ../../src/styles/_universal.scss */
.et_pb_section:not(.wide) > .et_pb_row {
  max-width: 976px;
}
/* line 411, ../../src/styles/_universal.scss */
.et_pb_section.hero > .et_pb_row, .et_pb_section.wide > .et_pb_row {
  max-width: 1440px;
}
/* line 415, ../../src/styles/_universal.scss */
.et_pb_section .et_pb_blurb_content {
  max-width: 100%;
}
/* line 418, ../../src/styles/_universal.scss */
.et_pb_section .et_pb_blurb_position_left .et_pb_blurb_container {
  padding-left: 32px;
}

/* line 423, ../../src/styles/_universal.scss */
.expand-this {
  display: none !important;
}

/* line 428, ../../src/styles/_universal.scss */
.expanded .expandable {
  background-color: #DB6D06 !important;
  border-color: #BC563F !important;
  color: #fff !important;
}
/* line 432, ../../src/styles/_universal.scss */
.expanded .expandable:after {
  color: #fff !important;
  transform: translateY(-50%) rotate(90deg) !important;
}
/* line 437, ../../src/styles/_universal.scss */
.expanded + .expand-this {
  display: inherit !important;
}

/* line 442, ../../src/styles/_universal.scss */
.et_pb_module.hide {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 300ms;
}

/* line 449, ../../src/styles/_universal.scss */
.awl-logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 981px) {
  /* line 452, ../../src/styles/_universal.scss */
  .awl-logos .et_pb_column_1_4 {
    width: calc(25% - calc(96px / 4));
  }
}

/*******************************
	0. Hero
	1. Page Title Bar
	2. 1/3 Image + 2/3 Text
	3. 1/4 Image + 3/4 Text
	4. Team List
	5. Toggles / Accordions
	6. Press Accordions
	7. Search Results
	8. Film Filters
*******************************/
/* line 13, ../../src/styles/_components.scss */
.et_pb_module.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
/* line 16, ../../src/styles/_components.scss */
.et_pb_module.pagination > * {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
/* line 19, ../../src/styles/_components.scss */
.et_pb_module.pagination .next {
  text-align: right;
}

/*******************************
	0. Hero
*******************************/
/* line 27, ../../src/styles/_components.scss */
.hero.et_pb_section {
  padding: 0;
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: right center;
}
/* line 32, ../../src/styles/_components.scss */
.hero.et_pb_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(45deg, #7c858c 0%, #eeeeee 100%) !important;
}
/* line 41, ../../src/styles/_components.scss */
.hero.et_pb_section .hero-bg {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: calc(50% + 55px);
  right: 0;
  bottom: 0;
  z-index: 100;
  background-position: left center;
  clip-path: ellipse(100% 130% at 100% 50%);
}
/* line 53, ../../src/styles/_components.scss */
.hero.et_pb_section h1 {
  padding-bottom: 25px;
}
/* line 56, ../../src/styles/_components.scss */
.hero.et_pb_section .et_pb_button_module_wrapper {
  margin-top: 35px;
}
/* line 59, ../../src/styles/_components.scss */
.hero.et_pb_section .et_pb_row {
  display: flex;
}
@media screen and (min-width: 981px) {
  /* line 63, ../../src/styles/_components.scss */
  .hero.et_pb_section .et_pb_row {
    min-height: 600px;
    align-items: stretch;
    padding: 0;
  }
  /* line 68, ../../src/styles/_components.scss */
  .hero.et_pb_section .et_pb_column {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* line 72, ../../src/styles/_components.scss */
  .hero.et_pb_section .et_pb_column:not(.et-last-child) {
    position: relative;
  }
  /* line 75, ../../src/styles/_components.scss */
  .hero.et_pb_section .et_pb_column:not(.et-last-child) .et_pb_module:first-child {
    padding-top: 60px;
  }
  /* line 78, ../../src/styles/_components.scss */
  .hero.et_pb_section .et_pb_column:not(.et-last-child) .et_pb_module:last-child {
    padding-bottom: 60px;
  }
  /* line 83, ../../src/styles/_components.scss */
  .hero.et_pb_section .et_pb_column.et-last-child {
    border-top-left-radius: 107px 50%;
    border-bottom-left-radius: 107px 50%;
  }
  /* line 88, ../../src/styles/_components.scss */
  .hero.et_pb_section .et_pb_image {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  /* line 93, ../../src/styles/_components.scss */
  .hero.et_pb_section .hero-bg {
    display: none;
  }
  /* line 96, ../../src/styles/_components.scss */
  .hero.et_pb_section .et_pb_row {
    flex-direction: column;
    padding: 0;
  }
  /* line 99, ../../src/styles/_components.scss */
  .hero.et_pb_section .et_pb_row .et_pb_column:not(.et-last-child) {
    order: 2;
    margin-top: 32px;
    padding: 60px 10px;
  }
}

/*******************************
	1. Page Title Bar
*******************************/
/* line 112, ../../src/styles/_components.scss */
.title-bar.et_pb_section .et_pb_row {
  padding-top: 28px;
  padding-bottom: 28px;
}
/* line 116, ../../src/styles/_components.scss */
.title-bar.et_pb_section h1.entry-title {
  padding-bottom: 0;
}

/*******************************
	2. 1/3 Image + 2/3 Text
*******************************/
/* line 125, ../../src/styles/_components.scss */
.one-third-image-text.et_pb_module .et_pb_main_blurb_image {
  width: 33.3%;
}

/*******************************
	3. 1/4 Image + 3/4 Text
*******************************/
/* line 134, ../../src/styles/_components.scss */
.one-quarter-image-text.et_pb_module .et_pb_main_blurb_image {
  width: 25%;
}

/*******************************
	4. Team List
*******************************/
/* line 143, ../../src/styles/_components.scss */
.team-wrapper .team-member {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  /* line 143, ../../src/styles/_components.scss */
  .team-wrapper .team-member {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
}
/* line 150, ../../src/styles/_components.scss */
.team-wrapper .team-member img {
  width: 25%;
  height: auto;
  border-radius: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  /* line 150, ../../src/styles/_components.scss */
  .team-wrapper .team-member img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  /* line 161, ../../src/styles/_components.scss */
  .team-wrapper .team-member .team-bio {
    width: 75%;
    padding-left: 32px;
  }
}
/* line 167, ../../src/styles/_components.scss */
.team-wrapper .team-member:nth-child(even) {
  background-color: #F1F2F3;
  position: relative;
}
/* line 170, ../../src/styles/_components.scss */
.team-wrapper .team-member:nth-child(even):before, .team-wrapper .team-member:nth-child(even):after {
  content: "";
  display: block;
  width: 100vw;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #F1F2F3;
}
/* line 180, ../../src/styles/_components.scss */
.team-wrapper .team-member:nth-child(even):before {
  left: 0;
  transform: translateX(-100%);
}
/* line 184, ../../src/styles/_components.scss */
.team-wrapper .team-member:nth-child(even):after {
  right: 0;
  transform: translateX(100%);
}
/* line 190, ../../src/styles/_components.scss */
.team-wrapper .job-title + .pronouns {
  padding-left: 12px;
  margin-left: 10px;
  position: relative;
}
/* line 194, ../../src/styles/_components.scss */
.team-wrapper .job-title + .pronouns:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 1em;
  width: 2px;
  background-color: #575757;
}

/*******************************
	5. Toggles / Accordions
*******************************/
/* line 210, ../../src/styles/_components.scss */
.et_pb_toggle.et_pb_module {
  border: none;
  padding: 30px 0;
  margin-bottom: 0 !important;
}
/* line 214, ../../src/styles/_components.scss */
.et_pb_toggle.et_pb_module.et_pb_accordion_item {
  padding: 20px 25px;
}
/* line 217, ../../src/styles/_components.scss */
.et_pb_toggle.et_pb_module.et_pb_toggle_close {
  background-color: transparent;
}
/* line 220, ../../src/styles/_components.scss */
.et_pb_toggle.et_pb_module *.et_pb_toggle_title {
  font-family: 'KnockoutLiteweight';
  color: #1E242B;
  line-height: 1.1;
  font-size: 30px;
  padding-right: 0;
  padding-left: 28px;
}
/* line 227, ../../src/styles/_components.scss */
.et_pb_toggle.et_pb_module *.et_pb_toggle_title:before {
  content: "\2b";
  right: unset;
  left: 0;
  top: 0.4em;
  font-size: 30px;
  color: #1E242B;
}
/* line 237, ../../src/styles/_components.scss */
.et_pb_toggle.et_pb_module.et_pb_toggle_open {
  background-color: transparent;
}
/* line 240, ../../src/styles/_components.scss */
.et_pb_toggle.et_pb_module.et_pb_toggle_open *.et_pb_toggle_title:before {
  content: "\f068";
  font-size: 18px;
  top: 0.9em;
}

/* line 252, ../../src/styles/_components.scss */
.et_pb_toggle_item:nth-child(even),
.et_pb_toggle_item.et_pb_module.et_pb_toggle_close:nth-child(even),
.et_pb_toggle_item.et_pb_module.et_pb_toggle_open:nth-child(even) {
  background-color: rgba(124, 133, 140, 0.2);
  position: relative;
}
/* line 255, ../../src/styles/_components.scss */
.et_pb_toggle_item:nth-child(even):before, .et_pb_toggle_item:nth-child(even):after,
.et_pb_toggle_item.et_pb_module.et_pb_toggle_close:nth-child(even):before,
.et_pb_toggle_item.et_pb_module.et_pb_toggle_close:nth-child(even):after,
.et_pb_toggle_item.et_pb_module.et_pb_toggle_open:nth-child(even):before,
.et_pb_toggle_item.et_pb_module.et_pb_toggle_open:nth-child(even):after {
  content: "";
  display: block;
  background-color: rgba(124, 133, 140, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
}
/* line 265, ../../src/styles/_components.scss */
.et_pb_toggle_item:nth-child(even):before,
.et_pb_toggle_item.et_pb_module.et_pb_toggle_close:nth-child(even):before,
.et_pb_toggle_item.et_pb_module.et_pb_toggle_open:nth-child(even):before {
  left: 0;
  transform: translateX(-100%);
}
/* line 269, ../../src/styles/_components.scss */
.et_pb_toggle_item:nth-child(even):after,
.et_pb_toggle_item.et_pb_module.et_pb_toggle_close:nth-child(even):after,
.et_pb_toggle_item.et_pb_module.et_pb_toggle_open:nth-child(even):after {
  right: 0;
  transform: translateX(100%);
}

/* line 277, ../../src/styles/_components.scss */
.et_pb_accordion .et_pb_accordion_item:nth-child(even) {
  background-color: #f1f1f1;
}

/*******************************
	6. Press Accordions
*******************************/
/* line 289, ../../src/styles/_components.scss */
.press-accordion.et_pb_section > .et_pb_row:first-child h2 {
  padding-bottom: 0;
  cursor: pointer;
  padding-left: 30px;
}
/* line 293, ../../src/styles/_components.scss */
.press-accordion.et_pb_section > .et_pb_row:first-child h2:before {
  content: "\2b";
  right: unset;
  left: 0;
  top: -0.11em;
  font-size: 40px;
  color: #1E242B;
  position: absolute;
}
/* line 307, ../../src/styles/_components.scss */
.press-accordion.et_pb_section.open > .et_pb_row {
  transition: all 250ms;
}
/* line 311, ../../src/styles/_components.scss */
.press-accordion.et_pb_section.open > .et_pb_row:first-child h2:before {
  content: "\f068";
  font-size: 18px;
  top: 0.6em;
}
/* line 322, ../../src/styles/_components.scss */
.press-accordion.et_pb_section:not(.open) > .et_pb_row:not(:first-child) {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

/*******************************
	7. Search Results
*******************************/
/* line 336, ../../src/styles/_components.scss */
.search-results .et_pb_post:not(:last-child) {
  border-color: rgba(30, 36, 43, 0.3);
}
/* line 339, ../../src/styles/_components.scss */
.search-results .results-term .et_pb_text_inner {
  font-size: 40px;
  font-family: 'KnockoutLiteweight';
  text-transform: uppercase;
}
/* line 344, ../../src/styles/_components.scss */
.search-results .pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
/* line 347, ../../src/styles/_components.scss */
.search-results .pagination a {
  position: relative;
}
/* line 349, ../../src/styles/_components.scss */
.search-results .pagination a:after {
  content: "\f054";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
  padding-top: 2px;
}
/* line 360, ../../src/styles/_components.scss */
.search-results .pagination .alignleft,
.search-results .pagination .alignright {
  float: none;
}
/* line 364, ../../src/styles/_components.scss */
.search-results .pagination .alignleft {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-order: 2;
  -ms-flex-order: 2;
  order: 2;
}
/* line 367, ../../src/styles/_components.scss */
.search-results .pagination .alignright a {
  padding-left: 18px;
}
/* line 369, ../../src/styles/_components.scss */
.search-results .pagination .alignright a:after {
  right: unset;
  left: 0;
  transform: scaleX(-1) translateY(-50%);
}
/* line 375, ../../src/styles/_components.scss */
.search-results .pagination .alignleft a {
  padding-right: 18px;
}
/* line 377, ../../src/styles/_components.scss */
.search-results .pagination .alignleft a:after {
  right: 0;
}
/* line 382, ../../src/styles/_components.scss */
.search-results .search-items {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(30, 36, 43, 0.3);
}
/* line 385, ../../src/styles/_components.scss */
.search-results .search-items span {
  display: inline-block;
  position: relative;
}
/* line 388, ../../src/styles/_components.scss */
.search-results .search-items span:not(:last-child) {
  padding-right: 16px;
  margin-right: 15px;
}
/* line 391, ../../src/styles/_components.scss */
.search-results .search-items span:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  position: absolute;
  top: 0.35em;
  right: 0;
  background-color: #1E242B;
}
/* line 402, ../../src/styles/_components.scss */
.search-results .search-items span.pagination {
  display: inline-flex;
}
/* line 404, ../../src/styles/_components.scss */
.search-results .search-items span.pagination .alignright a {
  margin-right: 18px;
}
/* line 407, ../../src/styles/_components.scss */
.search-results .search-items span.pagination .alignright:empty {
  display: none;
}

/*******************************
	8. Film Filters
*******************************/
/* line 418, ../../src/styles/_components.scss */
.films-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  /* line 422, ../../src/styles/_components.scss */
  .films-grid .et_pb_column {
    margin-left: 16px;
    margin-right: 16px;
  }
}
@media screen and (min-width: 981px) {
  /* line 428, ../../src/styles/_components.scss */
  .films-grid .et_pb_column {
    width: calc(33.3% - 32px);
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  /* line 433, ../../src/styles/_components.scss */
  .films-grid .et_pb_column {
    width: calc(50% - 32px);
  }
}

/* line 439, ../../src/styles/_components.scss */
.no-results {
  text-align: center;
  max-height: 2000px;
  overflow: hidden;
  transition: all 500ms;
  transition-delay: 250ms;
  width: 100%;
}

/* line 448, ../../src/styles/_components.scss */
.single-screening.show ~ .no-results {
  max-height: 0;
}

@media (min-width: 768px) {
  /* line 453, ../../src/styles/_components.scss */
  .film-filters .select-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
/* line 458, ../../src/styles/_components.scss */
.film-filters .select-wrapper {
  width: calc(100% - 11px);
  border: 1px solid #979797;
  cursor: pointer;
  background-color: #fff;
  position: relative;
}
/* line 464, ../../src/styles/_components.scss */
.film-filters .select-wrapper:not(:last-of-type) {
  margin-right: 22px;
}
@media screen and (max-width: 767px) {
  /* line 464, ../../src/styles/_components.scss */
  .film-filters .select-wrapper:not(:last-of-type) {
    margin: 0 0 20px 0;
  }
}
/* line 470, ../../src/styles/_components.scss */
.film-filters .select-wrapper:after {
  content: "\f078";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  z-index: 1;
}
/* line 480, ../../src/styles/_components.scss */
.film-filters select {
  padding: 9px 30px 9px 14px;
  border: none;
  width: 100%;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 5;
  cursor: pointer;
  outline: none !important;
}
/* line 491, ../../src/styles/_components.scss */
.film-filters select:focus {
  outline: none;
}
/* line 494, ../../src/styles/_components.scss */
.film-filters select option {
  font-size: 18px;
  line-height: 1.67;
  color: #1E242B;
  font-family: 'GeometricLight', sans-serif;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  /* line 506, ../../src/styles/_components.scss */
  .media-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 510, ../../src/styles/_components.scss */
  .media-wrapper .media-item,
  .media-wrapper .et_pb_post {
    width: calc(50% - 16px);
  }
  /* line 513, ../../src/styles/_components.scss */
  .media-wrapper .media-item:nth-child(odd),
  .media-wrapper .et_pb_post:nth-child(odd) {
    margin-right: 16px;
  }
  /* line 516, ../../src/styles/_components.scss */
  .media-wrapper .media-item:nth-child(even),
  .media-wrapper .et_pb_post:nth-child(even) {
    margin-left: 16px;
  }
}
/* line 521, ../../src/styles/_components.scss */
.media-wrapper .media-item,
.media-wrapper .et_pb_post {
  margin-bottom: 32px;
}
/* line 524, ../../src/styles/_components.scss */
.media-wrapper .media-item .fluid-width-video-wrapper,
.media-wrapper .et_pb_post .fluid-width-video-wrapper {
  position: relative;
  margin-bottom: 20px;
  height: 0;
  padding-bottom: 56.25%;
}
/* line 529, ../../src/styles/_components.scss */
.media-wrapper .media-item .fluid-width-video-wrapper iframe,
.media-wrapper .et_pb_post .fluid-width-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 538, ../../src/styles/_components.scss */
.media-wrapper .et_pb_post {
  padding-bottom: 0;
  border-bottom: none;
}

/* line 3, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gform_body .gform_fields {
  grid-row-gap: 27px;
  grid-column-gap: 32px;
}
/* line 8, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gform_validation_errors {
  margin-bottom: 15px;
}
/* line 10, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  padding-bottom: 0;
  padding-top: 3px;
}
/* line 13, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gform_validation_errors > h2.hide_summary {
  padding-bottom: 0;
}
/* line 19, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme.gform_validation_error .gfield_validation_message,
.gform_wrapper.gravity-theme.gform_validation_error .validation_message {
  border: none;
  padding: 0;
  background-color: transparent;
}
/* line 26, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.top-label) .gfield_validation_message,
.gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.top-label) .validation_message {
  order: 3;
  margin-top: 0;
}
/* line 33, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield_required {
  font-family: 'GeometricLight';
}
/* line 37, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield:not(.top-label) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* line 43, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield:first-child .gfield_label, .gform_wrapper.gravity-theme .gfield.gfield--width-half:nth-child(2) .gfield_label {
  padding-top: 0;
}
/* line 47, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .gfield_checkbox .gchoice label,
.gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice label,
.gform_wrapper.gravity-theme .gfield .gfield_label {
  font-family: 'GeometricLight';
  font-weight: 400;
  font-size: 18px;
  line-height: 1.67;
  color: #1E242B;
}
/* line 56, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .gfield_label {
  margin-top: 4px;
  margin-bottom: 0;
  order: 2;
}
/* line 62, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield.top-label .gfield_required {
  position: relative;
  top: -5px;
}
/* line 66, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield.top-label .gfield_label {
  margin-top: 0;
  color: #1E242B;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'KnockoutLiteweight', sans-serif;
  padding-bottom: 9px;
}
/* line 77, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .ginput_container_consent label {
  padding-left: 45px;
  position: relative;
  display: block;
}
/* line 81, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .ginput_container_consent label:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #979797;
  position: absolute;
  top: 0;
  left: 0;
}
/* line 93, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .ginput_container_consent input {
  display: none;
}
/* line 96, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .ginput_container_consent input:checked + label:before {
  background-color: #DB6D06;
  border-color: #BC563F;
}
/* line 105, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice,
.gform_wrapper.gravity-theme .gfield .gfield_checkbox .gchoice {
  margin-bottom: 15px;
}
/* line 107, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice label,
.gform_wrapper.gravity-theme .gfield .gfield_checkbox .gchoice label {
  padding-left: 45px;
  position: relative;
}
/* line 110, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice label:before,
.gform_wrapper.gravity-theme .gfield .gfield_checkbox .gchoice label:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #979797;
  position: absolute;
  top: 0;
  left: 0;
}
/* line 122, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice input,
.gform_wrapper.gravity-theme .gfield .gfield_checkbox .gchoice input {
  display: none;
}
/* line 125, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice input:checked + label:before,
.gform_wrapper.gravity-theme .gfield .gfield_checkbox .gchoice input:checked + label:before {
  background-color: #DB6D06;
  border-color: #BC563F;
}
/* line 136, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice label:before {
  border-radius: 100%;
}
@media screen and (min-width: 981px) {
  /* line 134, ../../src/styles/_forms.scss */
  .gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice {
    width: calc(25% - calc(32px / 3));
    padding-right: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  /* line 134, ../../src/styles/_forms.scss */
  .gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice {
    width: calc(50% - calc(32px / 2));
    padding-right: 32px;
  }
  /* line 147, ../../src/styles/_forms.scss */
  .gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice:nth-child(n+3) {
    margin-top: 16px;
  }
}
@media (max-width: 640px) {
  /* line 134, ../../src/styles/_forms.scss */
  .gform_wrapper.gravity-theme .gfield .gfield_radio .gchoice {
    margin-bottom: 18px;
  }
}
@media (min-width: 641px) {
  /* line 157, ../../src/styles/_forms.scss */
  .gform_wrapper.gravity-theme .gfield:not(.gfield--width-half) .ginput_container_select {
    width: calc(50% - 32px);
  }
}
/* line 163, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .ginput_container_select {
  display: inherit;
  width: auto;
  border: 1px solid #979797;
  background-color: #fff;
  position: relative;
}
/* line 169, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .ginput_container_select:after {
  content: "\f078";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #1E242B;
  padding: 4px;
  background-color: #fff;
  z-index: 1;
}
/* line 181, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .ginput_container_select .gfield_select {
  border: none;
  padding: 11px 40px 11px 14px;
  width: 100%;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  z-index: 5;
  position: relative;
}
/* line 191, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield .ginput_container_select + .validation_message {
  margin-top: 8px !important;
}
/* line 197, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield.gfield_error.top-label .gfield_label {
  margin-top: 0;
  color: #c02b0a;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'KnockoutLiteweight', sans-serif;
  padding-top: 23px;
  padding-bottom: 9px;
}
/* line 208, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield.gfield_error .gfield_checkbox .gchoice label,
.gform_wrapper.gravity-theme .gfield.gfield_error .ginput_container_consent label {
  color: #c02b01;
}
/* line 212, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield.gfield_error .gfield_checkbox .gchoice label:before,
.gform_wrapper.gravity-theme .gfield.gfield_error .ginput_container_consent label:before,
.gform_wrapper.gravity-theme .gfield.gfield_error .ginput_container_select {
  border-color: #c02b0a;
}
/* line 219, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield input[type=num], .gform_wrapper.gravity-theme .gfield input[type=tel], .gform_wrapper.gravity-theme .gfield input[type=url], .gform_wrapper.gravity-theme .gfield input[type=email], .gform_wrapper.gravity-theme .gfield input[type=text] {
  border: 1px solid #979797;
  background-color: #fff;
  font-size: 18px;
  padding: 12px;
  color: #1E242B;
}
/* line 229, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield input[type=num]:focus, .gform_wrapper.gravity-theme .gfield input[type=tel]:focus, .gform_wrapper.gravity-theme .gfield input[type=url]:focus, .gform_wrapper.gravity-theme .gfield input[type=email]:focus, .gform_wrapper.gravity-theme .gfield input[type=text]:focus {
  border: 2px solid #1E242B;
  font-family: 'GeometricBlack', sans-serif;
}
/* line 236, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield textarea {
  border: 1px solid #979797;
  background-color: #fff;
  font-size: 18px;
  padding: 12px;
  color: #1E242B;
}
/* line 242, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield textarea:focus {
  font-family: 'GeometricBlack';
  border: 2px solid #1E242B;
}
/* line 248, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield.gfield_error .gfield_label {
  color: #c02b0a;
}
/* line 252, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield.gfield_error input[type=num], .gform_wrapper.gravity-theme .gfield.gfield_error input[type=email], .gform_wrapper.gravity-theme .gfield.gfield_error input[type=text] {
  border-color: #c02b0a;
}
/* line 259, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gfield hr {
  margin: 0;
  height: 1px;
  background-color: #F98D29;
  margin: 23px 0;
  border: none;
}
/* line 268, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gform_footer {
  margin-top: 34px !important;
  text-align: right;
}
/* line 271, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit] {
  padding-left: 40px !important;
  padding-right: 51px !important;
  background-image: url(../../images/icon_chevronright-2x.png);
  background-size: 11px 17px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  line-height: 1 !important;
  min-height: 0 !important;
}
/* line 281, ../../src/styles/_forms.scss */
.gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover, .gform_wrapper.gravity-theme .gform_footer input[type=submit]:focus {
  padding-left: 40px !important;
  padding-right: 51px !important;
  background-image: url(../../images/icon_chevronright_white-2x.png);
}

/* line 291, ../../src/styles/_forms.scss */
.et_pb_search {
  border-radius: 0;
  border: 1px solid #979797;
}
/* line 294, ../../src/styles/_forms.scss */
.et_pb_search input[type=text] {
  border: none;
  background-color: #fff;
  font-size: 18px;
  padding: 9px 49px 9px 14px;
  color: #1E242B;
}
/* line 300, ../../src/styles/_forms.scss */
.et_pb_search input[type=text]:focus {
  outline: none;
}
/* line 304, ../../src/styles/_forms.scss */
.et_pb_search input[type=submit] {
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  padding: 0;
  background-image: url(../../images/icon_search-2x.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}

/* line 1, ../../src/styles/_header.scss */
header {
  position: relative;
  z-index: 100;
}

/* line 5, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section {
  padding: 0 !important;
}
/* line 7, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section > .et_pb_row {
  padding-top: 32px;
  padding-bottom: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
/* line 12, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section > .et_pb_row > .et_pb_column_single {
  padding: 0;
  margin-bottom: 0;
}
/* line 16, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section > .et_pb_row .et_pb_row_inner {
  padding: 0;
}
/* line 18, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section > .et_pb_row .et_pb_row_inner:first-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 980px) {
  /* line 18, ../../src/styles/_header.scss */
  .et_pb_section_0_tb_header.et_pb_section > .et_pb_row .et_pb_row_inner:first-child {
    display: none;
  }
}
/* line 25, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section > .et_pb_row .et_pb_row_inner:first-child > .et_pb_column {
  width: auto;
  margin-right: 30px;
}
/* line 31, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section > .et_pb_row .et_pb_search {
  min-width: 246px;
  border-radius: 18px;
  border: 1px solid #979797;
}
/* line 35, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section > .et_pb_row .et_pb_search input {
  border: none;
  background-color: #fff;
  font-size: 14px;
  font-family: 'GeometricLight', sans-serif;
  line-height: 2.14;
  color: #1E242B;
  padding-left: 20px !important;
  padding-right: 50px !important;
  background-image: url(../../images/icon_search-2x.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 20px center;
}
/* line 51, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et_pb_menu__wrap {
  justify-content: flex-end;
}
/* line 57, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et-menu-nav ul li a {
  font-family: 'KnockoutLiteweight';
  text-transform: uppercase;
  color: #1E242B;
  font-size: 22px;
  text-decoration: none;
}
/* line 64, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et-menu-nav ul li.current_page_item > a, .et_pb_section_0_tb_header.et_pb_section .et-menu-nav ul li.current-menu-ancestor > a,
.et_pb_section_0_tb_header.et_pb_section .et-menu-nav ul li a:hover {
  color: #DB6D06;
  opacity: 1;
}
/* line 71, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et-menu-nav ul li.nofollow > a {
  pointer-events: none;
  cursor: pointer;
}
/* line 80, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .nav li ul {
  border-top: 0;
  box-shadow: 0 4px 3px rgba(0, 0, 0, 0.5);
  padding: 0;
  width: auto;
}
/* line 85, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .nav li ul > li {
  padding: 0;
  width: 100%;
}
/* line 88, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .nav li ul > li > a {
  padding: 0 20px;
  text-transform: none;
  line-height: 1.95;
  width: 100%;
  white-space: nowrap;
}
/* line 95, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .nav li ul > li > a:hover {
  background-color: #DB6D06;
  color: #1E242B;
}
/* line 103, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .mobile_nav .mobile_menu_bar:before,
.et_pb_section_0_tb_header.et_pb_section .et_pb_menu_0_tb_header .et_pb_menu__icon.et_pb_menu__search-button,
.et_pb_section_0_tb_header.et_pb_section .et_pb_menu_0_tb_header .et_pb_menu__icon.et_pb_menu__close-search-button,
.et_pb_section_0_tb_header.et_pb_section .et_pb_menu_0_tb_header .et_pb_menu__icon.et_pb_menu__cart-button {
  color: #DB6D06;
}
/* line 110, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et_mobile_menu {
  left: unset;
  width: 100vw;
  right: -20px;
  top: calc(100% + 32px);
  border-top: none;
  box-shadow: 0 4px 3px rgba(0, 0, 0, 0.5);
}
/* line 117, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et_mobile_menu > li {
  padding: 0;
  width: 100%;
}
/* line 120, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et_mobile_menu > li a {
  padding: 10px 20px;
  text-transform: uppercase;
  line-height: 1.5;
  width: 100%;
  text-decoration: none;
  font-size: 22px;
  font-family: 'KnockoutLiteweight', sans-serif;
  border-bottom: none;
  font-weight: 400;
}
/* line 130, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et_mobile_menu > li a:hover {
  background-color: #DB6D06;
  color: #1E242B;
}
/* line 135, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et_mobile_menu > li.menu-item-has-children a {
  background-color: transparent;
}
/* line 140, ../../src/styles/_header.scss */
.et_pb_section_0_tb_header.et_pb_section .et_mobile_menu > li.nofollow > a {
  pointer-events: none;
  cursor: pointer;
}

/* ### Menu breakpoint for the theme builder ### */
@media only screen and (max-width: 1350px) {
  /* line 151, ../../src/styles/_header.scss */
  .et_pb_menu .et_pb_menu__menu {
    display: none !important;
  }

  /* line 155, ../../src/styles/_header.scss */
  .et_mobile_nav_menu {
    display: block !important;
  }
}
/* line 2, ../../src/styles/_footer.scss */
footer .et_pb_section.wide {
  border-top: 1px solid rgba(30, 36, 43, 0.22);
  box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.16);
}
/* line 6, ../../src/styles/_footer.scss */
footer .copyright.et_pb_section {
  font-family: 'GeometricLight', sans-serif;
}
/* line 11, ../../src/styles/_footer.scss */
footer .gform_wrapper.gravity-theme .gform_body .gform_fields {
  grid-row-gap: 15px;
}
/* line 15, ../../src/styles/_footer.scss */
footer .gform_wrapper.gravity-theme .gfield {
  display: block !important;
}
/* line 17, ../../src/styles/_footer.scss */
footer .gform_wrapper.gravity-theme .gfield .gfield_label {
  line-height: 1;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}
/* line 23, ../../src/styles/_footer.scss */
footer .gform_wrapper.gravity-theme .gfield input[type=num], footer .gform_wrapper.gravity-theme .gfield input[type=tel], footer .gform_wrapper.gravity-theme .gfield input[type=email], footer .gform_wrapper.gravity-theme .gfield input[type=text] {
  border: 1px solid #1E242B;
  background-color: #fff;
  margin-bottom: 7px;
  margin-top: 0;
}
/* line 34, ../../src/styles/_footer.scss */
footer .gform_wrapper.gravity-theme .gform_footer {
  text-align: left;
  margin-top: 16px !important;
}

/* line 2, ../../src/styles/_archive.scss */
.page-template-page-films .et_pb_section.shaded {
  background-color: #F1F2F3 !important;
}
/* line 5, ../../src/styles/_archive.scss */
.page-template-page-films .et_pb_button_module_wrapper {
  text-align: center;
}
/* line 8, ../../src/styles/_archive.scss */
.page-template-page-films .film-meta {
  margin-bottom: 12px;
}
/* line 11, ../../src/styles/_archive.scss */
.page-template-page-films .film-still {
  display: block;
  position: relative;
  padding-bottom: 67%;
  overflow: hidden;
  margin-bottom: 20px;
}
/* line 17, ../../src/styles/_archive.scss */
.page-template-page-films .film-still img {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  max-width: none;
}
/* line 30, ../../src/styles/_archive.scss */
.page-template-page-films h3 a {
  text-decoration: none;
}
/* line 32, ../../src/styles/_archive.scss */
.page-template-page-films h3 a:hover {
  color: #DB6D06 !important;
}

/***********************
 	1. Single Film
***********************/
/* line 6, ../../src/styles/_single.scss */
.single-events #et-main-area .et_pb_section.title-bar,
.single-films #et-main-area .et_pb_section.title-bar {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* line 10, ../../src/styles/_single.scss */
.single-events #et-main-area .et_pb_section.title-bar:after,
.single-films #et-main-area .et_pb_section.title-bar:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
/* line 21, ../../src/styles/_single.scss */
.single-events #et-main-area .et_pb_section.title-bar .et_pb_row,
.single-films #et-main-area .et_pb_section.title-bar .et_pb_row {
  position: relative;
  z-index: 5;
}
/* line 26, ../../src/styles/_single.scss */
.single-events #et-main-area .film-still,
.single-films #et-main-area .film-still {
  margin-bottom: 27px;
}
/* line 28, ../../src/styles/_single.scss */
.single-events #et-main-area .film-still.has-trailer,
.single-films #et-main-area .film-still.has-trailer {
  position: relative;
}
/* line 30, ../../src/styles/_single.scss */
.single-events #et-main-area .film-still.has-trailer:before,
.single-films #et-main-area .film-still.has-trailer:before {
  content: "\f04b";
  font-size: 60px;
  color: #DB6D06;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
/* line 42, ../../src/styles/_single.scss */
.single-events #et-main-area .film-still img,
.single-films #et-main-area .film-still img {
  display: block;
}
/* line 45, ../../src/styles/_single.scss */
.single-events #et-main-area .film-still.has-trailer,
.single-films #et-main-area .film-still.has-trailer {
  cursor: pointer;
}
/* line 49, ../../src/styles/_single.scss */
.single-events #et-main-area .film-still.play .embedded-video,
.single-films #et-main-area .film-still.play .embedded-video {
  z-index: 1;
  opacity: 1;
}
/* line 53, ../../src/styles/_single.scss */
.single-events #et-main-area .film-still.play img,
.single-films #et-main-area .film-still.play img {
  z-index: -1;
  opacity: 0;
}
/* line 59, ../../src/styles/_single.scss */
.single-events #et-main-area .presenting-partners,
.single-events #et-main-area .director-info,
.single-films #et-main-area .presenting-partners,
.single-films #et-main-area .director-info {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(30, 36, 43, 0.3);
}
/* line 64, ../../src/styles/_single.scss */
.single-events #et-main-area .presenting-partners h4,
.single-events #et-main-area .director-info h4,
.single-films #et-main-area .presenting-partners h4,
.single-films #et-main-area .director-info h4 {
  color: #1E242B;
}
/* line 68, ../../src/styles/_single.scss */
.single-events #et-main-area ul.et_pb_social_media_follow,
.single-films #et-main-area ul.et_pb_social_media_follow {
  margin-top: 15px;
  padding: 0;
}
/* line 71, ../../src/styles/_single.scss */
.single-events #et-main-area ul.et_pb_social_media_follow li,
.single-films #et-main-area ul.et_pb_social_media_follow li {
  margin-bottom: 0;
}
/* line 73, ../../src/styles/_single.scss */
.single-events #et-main-area ul.et_pb_social_media_follow li:not(:first-child),
.single-films #et-main-area ul.et_pb_social_media_follow li:not(:first-child) {
  margin-left: 14px;
}
/* line 76, ../../src/styles/_single.scss */
.single-events #et-main-area ul.et_pb_social_media_follow li a,
.single-films #et-main-area ul.et_pb_social_media_follow li a {
  text-decoration: none;
  background-color: #1E242B;
  border-radius: 100%;
  transition: all 250ms;
  margin-right: 0;
}
/* line 82, ../../src/styles/_single.scss */
.single-events #et-main-area ul.et_pb_social_media_follow li a:hover,
.single-films #et-main-area ul.et_pb_social_media_follow li a:hover {
  background-color: #DB6D06;
}
/* line 89, ../../src/styles/_single.scss */
.single-events #et-main-area .presenting-partners .inner-wrapper,
.single-films #et-main-area .presenting-partners .inner-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 92, ../../src/styles/_single.scss */
.single-events #et-main-area .presenting-partners .inner-wrapper > .presenting-partner,
.single-films #et-main-area .presenting-partners .inner-wrapper > .presenting-partner {
  width: calc(33.3% - (calc(64px) / 3));
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  /* line 96, ../../src/styles/_single.scss */
  .single-events #et-main-area .presenting-partners .inner-wrapper > .presenting-partner:not(:last-child),
  .single-films #et-main-area .presenting-partners .inner-wrapper > .presenting-partner:not(:last-child) {
    margin-right: 32px;
  }
}
@media screen and (max-width: 767px) {
  /* line 92, ../../src/styles/_single.scss */
  .single-events #et-main-area .presenting-partners .inner-wrapper > .presenting-partner,
  .single-films #et-main-area .presenting-partners .inner-wrapper > .presenting-partner {
    width: calc(50% - (calc(32px) / 2));
  }
  /* line 102, ../../src/styles/_single.scss */
  .single-events #et-main-area .presenting-partners .inner-wrapper > .presenting-partner:not(:nth-child(even)),
  .single-films #et-main-area .presenting-partners .inner-wrapper > .presenting-partner:not(:nth-child(even)) {
    margin-right: 32px;
  }
}
/* line 106, ../../src/styles/_single.scss */
.single-events #et-main-area .presenting-partners .inner-wrapper > .presenting-partner img,
.single-films #et-main-area .presenting-partners .inner-wrapper > .presenting-partner img {
  max-height: 40px;
  width: auto;
}
/* line 113, ../../src/styles/_single.scss */
.single-events #et-main-area .divider,
.single-films #et-main-area .divider {
  display: block;
  margin-top: 50px;
  float: left;
  width: 100%;
  height: 1px;
  background-color: #F98D29;
}
/* line 124, ../../src/styles/_single.scss */
.single-events #et-main-area .screenings,
.single-films #et-main-area .screenings {
  background-color: #f1f1f1;
  padding: 24px;
}
/* line 127, ../../src/styles/_single.scss */
.single-events #et-main-area .screenings .et_pb_module a.et_pb_button,
.single-films #et-main-area .screenings .et_pb_module a.et_pb_button {
  margin-top: 0;
}
/* line 131, ../../src/styles/_single.scss */
.single-events #et-main-area .screenings .single-screening:not(:last-child),
.single-films #et-main-area .screenings .single-screening:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid #f98D29;
  margin-bottom: 20px;
}

/* line 140, ../../src/styles/_single.scss */
.single-screening {
  transition: all 500ms;
  overflow: hidden;
  max-width: 100vw;
  max-height: 2000px;
}
/* line 145, ../../src/styles/_single.scss */
.single-screening > * {
  font-size: 16px;
}
/* line 148, ../../src/styles/_single.scss */
.single-screening.hide {
  max-height: 0;
  max-width: 0;
  margin: 0;
}
/* line 153, ../../src/styles/_single.scss */
.single-screening h3 a {
  text-decoration: none;
}

/* line 159, ../../src/styles/_single.scss */
.screenings .et_pb_column {
  margin-bottom: 20px;
}

@media screen and (min-width: 981px) {
  /* line 164, ../../src/styles/_single.scss */
  .films-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* line 169, ../../src/styles/_single.scss */
.films-grid .et_pb_column {
  margin-bottom: 60px;
}

/* line 175, ../../src/styles/_single.scss */
.events-list.screenings {
  padding-left: 20px;
  padding-right: 20px;
}
/* line 178, ../../src/styles/_single.scss */
.events-list.screenings > .et_pb_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 181, ../../src/styles/_single.scss */
.events-list.screenings > .et_pb_row .et_pb_column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* line 184, ../../src/styles/_single.scss */
.events-list.screenings > .et_pb_row .et_pb_column .et_pb_module {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  background-color: #F1F2F3;
}
/* line 190, ../../src/styles/_single.scss */
.events-list.screenings .et_pb_module a.et_pb_button {
  margin-top: 30px;
  display: inline-block;
}
/* line 195, ../../src/styles/_single.scss */
.events-list.screenings .et_pb_module.et_pb_text > *:last-child {
  padding-bottom: 40px;
}
/* line 199, ../../src/styles/_single.scss */
.events-list.screenings .et_pb_module .et_pb_text_inner {
  background-color: #F1F2F3;
  padding: 30px 20px 0;
}
/* line 203, ../../src/styles/_single.scss */
.events-list.screenings .et_pb_button_module_wrapper {
  background-color: #F1F2F3;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 208, ../../src/styles/_single.scss */
.events-list.screenings .film-still {
  display: block;
  position: relative;
  padding-bottom: 67%;
  overflow: hidden;
}
/* line 213, ../../src/styles/_single.scss */
.events-list.screenings .film-still img {
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
}

/* line 226, ../../src/styles/_single.scss */
ul.film-meta {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
/* line 230, ../../src/styles/_single.scss */
ul.film-meta li {
  display: inline-block;
  font-size: 16px;
}
/* line 233, ../../src/styles/_single.scss */
ul.film-meta li:not(:last-child) {
  padding-right: 9px;
  margin-right: 8px;
  position: relative;
}
/* line 237, ../../src/styles/_single.scss */
ul.film-meta li:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: #1E242B;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* line 253, ../../src/styles/_single.scss */
.embedded-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
}
/* line 260, ../../src/styles/_single.scss */
.embedded-video .fluid-width-video-wrapper {
  padding-top: 46.5% !important;
}