/* main styles
*******************************************/
*, *:before, *:after {
  box-sizing: border-box; }

body {
  background: #fff;
  color: #444444;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  cursor: default; }
  body.admin-bar {
    position: static; }

h1, h2, h3, h4 {
  font-family: "Muli", sans-serif;
  font-weight: 700;
  text-align: center; }

a {
  text-decoration: underline;
  color: #7f4098; }

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

figure {
  margin: 0; }

.container {
  background-color: #fff; }
  @media (min-width: 992px) {
    .container {
      margin: 0px 60px; } }
  @media (min-width: 1200px) {
    .container {
      margin: 0px 80px; } }

.content {
  padding: 10px 10px 50px 10px; }
  @media (min-width: 767px) {
    .content {
      padding: 10px 20px 60px 20px; } }
  @media (min-width: 992px) {
    .content {
      padding: 30px 0 60px 0; } }

.grid-wrapper {
  vertical-align: baseline; }
  .grid-wrapper:before, .grid-wrapper:after {
    content: " ";
    display: table; }
  .grid-wrapper:after {
    clear: both; }

.col {
  padding-bottom: 10px; }
  @media (min-width: 992px) {
    .col {
      display: inline-block;
      float: left; }
      .col.col-2 {
        width: 50%; }
      .col.col-3 {
        width: 33.3333%; } }

.inline {
  display: inline-block; }

/* menu toggle
*******************************************/
.menu-toggle .icon-menu {
  position: absolute;
  top: 29px;
  right: 0;
  margin-left: -11px;
  margin-top: -7px;
  width: 22px;
  height: 14px;
  box-shadow: none;
  display: block;
  -webkit-transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
.menu-toggle .icon-bar {
  background-color: #000;
  display: block;
  width: 22px;
  height: 2px;
  -webkit-transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .menu-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  .menu-toggle .icon-bar:first-child {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top; }
  .menu-toggle .icon-bar:last-child {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom; }

.menu--visible .menu-toggle {
  opacity: 1 !important;
  filter: alpha(opacity=100);
  -webkit-transform: rotateX(0deg) !important;
  transform: rotateX(0deg) !important;
  visibility: visible !important;
  -webkit-animation: none !important;
  animation: none !important; }
  .menu--visible .menu-toggle .icon-menu {
    background: none;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .menu--visible .menu-toggle .icon-bar {
    opacity: 0;
    filter: alpha(opacity=0);
    width: 24px;
    background: #000 !important; }
    .menu--visible .menu-toggle .icon-bar:first-child {
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: rotate(45deg) translate3d(2px, -5px, 0);
      transform: rotate(45deg) translate3d(2px, -5px, 0); }
    .menu--visible .menu-toggle .icon-bar:last-child {
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: rotate(-45deg) translate3d(2px, 5px, 0);
      transform: rotate(-45deg) translate3d(2px, 5px, 0); }

/* header
*******************************************/
.header, .footer {
  position: relative;
  width: 100%;
  padding: 1em;
  font-family: "Muli", sans-serif;
  background-color: #fff;
  color: #222; }
  @media (min-width: 992px) {
    .header, .footer {
      padding: 20px 60px; } }
  @media (min-width: 1200px) {
    .header, .footer {
      padding: 20px 80px; } }

.header {
  font-size: 1.1em; }
  .header .logo {
    text-align: center; }
    .header .logo img {
      max-width: 300px;
      width: 100%; }
    @media (min-width: 767px) {
      .header .logo {
        width: 250px;
        margin: 0 auto; } }
    @media (min-width: 992px) {
      .header .logo {
        width: 250px;
        display: inline-block; } }
  .header .dates {
    position: relative;
    padding: 15px 0;
    margin-bottom: 0;
    font-size: 1.1em;
    font-weight: 400;
    text-align: left;
    border-top: 1px solid #e5cfed; }
    @media (min-width: 767px) {
      .header .dates {
        text-align: center; }
        .header .dates .mobile-menu-btn {
          display: none; } }
    @media (min-width: 992px) {
      .header .dates {
        margin-top: 0;
        margin-left: 128px;
        margin-bottom: 0;
        text-align: left;
        border: none;
        padding-top: 0; } }
  .header .nav {
    font-weight: bold;
    text-align: center;
    border-top: 1px solid #e5cfed;
    padding: 0;
    overflow: hidden; }
    .header .nav ul {
      text-align: left;
      visibility: hidden;
      max-height: 0;
      overflow: hidden;
      padding: 0;
      border-bottom: 1px solid #e5cfed;
      -webkit-transition: max-height 0.3s, visibility 0.3s, padding 0.3s;
      -moz-transition: max-height 0.3s, visibility 0.3s, padding 0.3s;
      -ms-transition: max-height 0.3s, visibility 0.3s, padding 0.3s;
      -o-transition: max-height 0.3s, visibility 0.3s, padding 0.3s;
      transition: max-height 0.3s, visibility 0.3s, padding 0.3s; }
      @media (min-width: 767px) {
        .header .nav ul {
          display: block; } }
    .header .nav li {
      padding-bottom: 0.17em; }
      .header .nav li a {
        text-transform: uppercase;
        color: #222;
        padding-bottom: 0.1em; }
      .header .nav li.active a, .header .nav li:hover a {
        color: #222;
        border-bottom: 0.17em solid #222;
        padding-bottom: 0; }
      .header .nav li.active .dropdown a, .header .nav li:hover .dropdown a {
        color: #222; }
        .header .nav li.active .dropdown a:hover, .header .nav li:hover .dropdown a:hover {
          color: #222; }
    @media (min-width: 767px) {
      .header .nav {
        display: block;
        vertical-align: middle; }
        .header .nav ul {
          display: block;
          padding: 15px 0;
          max-height: 9999px;
          visibility: visible;
          text-align: center; }
          .header .nav ul li {
            display: inline;
            margin: 0 10px; } }
    @media (min-width: 992px) {
      .header .nav {
        position: absolute;
        top: 70px;
        right: 50px;
        vertical-align: middle;
        border: none;
        padding-top: 0; }
        .header .nav ul {
          border: none; }
        .header .nav li {
          float: left;
          margin-right: 20px; } }
    @media (min-width: 1200px) {
      .header .nav {
        right: 70px; } }

body.menu--visible .main-nav ul {
  padding: 15px 0;
  max-height: 400px;
  visibility: visible; }

.nav ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  .nav ul li a {
    text-decoration: none;
    display: inline-block;
    color: #222; }

/* homepage
*******************************************/
.main-block {
  width: auto; }
  @media (min-width: 992px) {
    .main-block {
      width: 60%; } }

.slideshow-block {
  position: relative;
  background-color: #000; }
  .slideshow-block .slider-content {
    color: #fff;
    background-color: #000;
    padding: 0 1em; }
    .slideshow-block .slider-content h2, .slideshow-block .slider-content h3, .slideshow-block .slider-content h4 {
      text-align: left; }

@media (min-width: 992px) {
  .sidebar {
    width: 40%;
    padding-left: 30px; } }

/* buttons and forms
*******************************************/
input[type="email"], input[type="text"] {
  -webkit-appearance: none;
  background-color: white;
  font-family: inherit;
  border: 2px solid #e7e7e7;
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  height: 2.3125rem;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
  letter-spacing: 0.02em;
  font-style: italic; }

#mc_embed_signup_scroll {
  max-width: 600px;
  margin: 0 auto; }

.mce_inline_error {
  border-color: #7f4098 !important; }
  .mce_inline_error:not(input) {
    background-color: #7f4098 !important; }

.button {
  display: block;
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: normal;
  margin: 0 auto;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1.0625rem;
  padding-left: 2rem;
  font-size: 1rem;
  background-color: #7f4098;
  border-color: #6a357f;
  color: white;
  transition: background-color 300ms ease-out; }
  .button:hover {
    background-color: #6a357f; }

input:focus, textarea:focus, select:focus, button:focus {
  outline: none; }

/* search and filters
*******************************************/
.search-box {
  position: relative;
  padding: 0 10px;
  margin-bottom: 30px; }
  .search-box .search-submit {
    cursor: pointer;
    border-width: 0px;
    border-radius: 0px;
    position: absolute;
    right: 10px;
    margin: 0.5rem;
    line-height: normal;
    font-size: 1rem;
    background-color: #fff;
    -webkit-appearance: none;
    -webkit-border-radius: 3px;
    transition: background-color 300ms ease-out; }
  .search-box .search-button-wrap {
    position: absolute;
    top: 0;
    right: 0; }

.select-wrap {
  width: 100%;
  height: auto;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  background: #f7f7f7 url(../img/bg-select.png) right center no-repeat;
  overflow: hidden; }
  .select-wrap select {
    width: 190px;
    cursor: pointer;
    padding: 8.5px;
    font-size: 15px; }

select {
  padding: 10px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  margin: 0; }

.user-options {
  opacity: 0;
  max-height: 0;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
  -webkit-transition: max-height 0.5s, opacity 0.5s;
  -moz-transition: max-height 0.5s, opacity 0.5s;
  -ms-transition: max-height 0.5s, opacity 0.5s;
  -o-transition: max-height 0.5s, opacity 0.5s;
  transition: max-height 0.5s, opacity 0.5s; }
  .user-options h2 {
    margin-top: 0; }
  .user-options .filters {
    text-align: center; }
    .user-options .filters .filter {
      display: inline-block;
      vertical-align: bottom;
      margin: 10px; }
      .user-options .filters .filter h4 {
        margin: 0 0 10px;
        text-align: left; }
      @media (min-width: 767px) {
        .user-options .filters .filter {
          margin: 0 20px; } }
      @media (min-width: 992px) {
        .user-options .filters .filter {
          margin: 0 30px; } }
    .user-options .filters .filter-btn {
      margin: 1em auto;
      display: block;
      font-size: 18px; }
      @media (min-width: 992px) {
        .user-options .filters .filter-btn {
          margin: 1.5em auto; } }
  .user-options.show-filters {
    opacity: 1;
    max-height: 400px;
    margin-bottom: 30px; }
  .user-options .hide-filters {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px; }
  .user-options .hide-filters, .user-options .filter-btn span {
    padding: 0 12px;
    color: #7f4098;
    cursor: pointer; }

/* films display
*******************************************/
.alm-load-more-btn {
  width: calc(100% - 20px);
  padding: 10px; }
  .alm-load-more-btn.done {
    visibility: hidden !important;
    height: 0;
    padding: 0; }

.ajax-load-more-wrap {
  min-height: 400px; }

.film-card {
  margin-bottom: 30px; }
  @media (min-width: 767px) {
    .film-card {
      display: inline-block;
      float: left;
      width: 50%;
      padding: 0 10px; } }
  @media (min-width: 992px) {
    .film-card {
      margin-bottom: 50px; } }

.film-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%; }
  .film-wrapper .permalink {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99; }
  @media (min-width: 992px) {
    .film-wrapper .film-content:after {
      content: "";
      background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.68) 70%, transparent 100%);
      display: block;
      position: absolute;
      height: 30px;
      width: 100%;
      bottom: 0;
      left: 0; }
    .film-wrapper:hover .film-content {
      height: 205px; } }

.image-placeholder {
  position: relative;
  width: 100%;
  background-color: #222;
  overflow: hidden; }
  .image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
  .image-placeholder.film-image {
    margin-bottom: 125px; }
  .image-placeholder:after {
    padding-top: 56.25%;
    display: block;
    content: ' '; }

.film-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em 0.7em;
  height: 125px;
  background-color: #000;
  color: #fff;
  letter-spacing: 0.02em;
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  -ms-transition: height 0.5s;
  -o-transition: height 0.5s;
  transition: height 0.5s; }
  .film-content h3 {
    margin: 0;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .film-content .meta {
    margin: 0.7em 0;
    font-size: 0.8em;
    font-weight: 400;
    text-align: center; }
  .film-content p {
    font-size: 0.8em;
    margin-top: 25px; }

/* partners display gallery
*******************************************/
.partners-gallery {
  border-top: 2px solid #e5cfed; }

.partner {
  display: inline-block;
  width: 33.3333%;
  padding: .7em; }
  @media (min-width: 767px) {
    .partner {
      width: 20%;
      padding: 1em; } }
  @media (min-width: 992px) {
    .partner {
      width: 12.5%;
      padding: 1em; } }

/* program
*******************************************/
.program-nav {
  display: none; }
  @media (min-width: 767px) {
    .program-nav {
      display: block;
      padding: 0.5rem 1em;
      font-size: .9em;
      text-transform: uppercase;
      font-weight: bold; }
      .program-nav ul {
        display: flex; }
        .program-nav ul li {
          display: inline-block;
          flex-grow: 1;
          text-align: center;
          padding: 0 15px; }
          .program-nav ul li.active:after {
            content: ' ';
            margin: 0 auto;
            width: 0px;
            height: 10px;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 9px solid #7f4098;
            display: inline-block; } }
  @media (min-width: 992px) {
    .program-nav {
      border-top: 2px solid #e5cfed;
      border-bottom: 2px solid #e5cfed; } }
  @media (min-width: 1200px) {
    .program-nav ul li {
      padding: 0 5px; }
      .program-nav ul li.active:before, .program-nav ul li.active:after {
        content: ' ';
        margin: 0 7px;
        width: 0px;
        height: 10px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 9px solid #7f4098;
        display: inline-block; } }

.program a {
  text-decoration: none; }

.event-card {
  width: 100%;
  margin-bottom: 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none; }
  .event-card .event-info {
    padding: 0 10px;
    font-size: 0.7em; }
  @media (min-width: 767px) {
    .event-card {
      margin-bottom: 30px; }
      .event-card .event-info, .event-card .image-placeholder {
        display: inline-block;
        vertical-align: top; }
      .event-card .event-info {
        text-align: left;
        width: 60%;
        float: right;
        padding: 0 20px; }
        .event-card .event-info .subtitle, .event-card .event-info .meta-screendate {
          font-weight: normal;
          margin: 0.6em 0; }
        .event-card .event-info h1, .event-card .event-info h2, .event-card .event-info h3, .event-card .event-info h4, .event-card .event-info h5 {
          text-align: left; }
      .event-card .image-placeholder {
        width: 40%; } }
  @media (min-width: 992px) {
    .event-card .event-info {
      font-size: 0.8em; } }
  @media (min-width: 1200px) {
    .event-card .event-info {
      font-size: 1em; } }

.event-inner {
  overflow: hidden;
  height: 100%; }
  .event-inner .subheader {
    padding-bottom: 5px;
    border-bottom: 2px solid #e5cfed; }

@media (min-width: 992px) {
  .program-title {
    padding-bottom: 30px; } }
/* film singles
*******************************************/
.film img {
  width: 100%; }

section.hero {
  position: relative; }
  section.hero .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); }
  section.hero .row {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    color: #fff;
    padding: 0 10px; }
    section.hero .row h1 {
      text-transform: uppercase;
      font-size: 1.3em; }
    section.hero .row h2 {
      font-size: 0.8em;
      font-weight: 400; }
    @media (min-width: 500px) {
      section.hero .row {
        padding: 0 20px; }
        section.hero .row h1 {
          font-size: 1.6em; }
        section.hero .row h2 {
          font-size: 1em; } }
    @media (min-width: 767px) {
      section.hero .row h1 {
        font-size: 2em; }
      section.hero .row h2 {
        font-size: 1.2em; } }
    @media (min-width: 992px) {
      section.hero .row {
        padding: 0 40px; }
        section.hero .row h1 {
          font-size: 2.5em; }
        section.hero .row h2 {
          font-size: 1.3em; } }
    @media (min-width: 1200px) {
      section.hero .row h1 {
        font-size: 3.5em; }
      section.hero .row h2 {
        font-size: 1.5em; } }

section.film-info, section.event-content, section.event-details {
  padding: 10px 0; }
  @media (min-width: 767px) {
    section.film-info, section.event-content, section.event-details {
      padding: 20px 0; } }
  @media (min-width: 992px) {
    section.film-info, section.event-content, section.event-details {
      padding: 30px 0; } }
section.director-info {
  border-top: 2px solid #e5cfed; }

.film-trailer {
  text-align: center;
  margin: 40px 0; }

.video-container {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%; }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* program singles
*******************************************/
.subheader {
  padding-bottom: 5px;
  border-bottom: 2px solid #e5cfed; }

.image-content {
  text-align: center; }

.event-content .further-event-details {
  margin: 50px 0 0;
  border-top: 2px solid #e5cfed;
  background-color: #fff; }
  .event-content .further-event-details h2, .event-content .further-event-details h3, .event-content .further-event-details h4 {
    text-align: left; }

.event-details {
  text-align: center; }

.tickets {
  text-align: center;
  margin: 10px; }

/* footer
*******************************************/
.footer {
  font-size: 0.9em; }
  .footer .column {
    display: block; }
    .footer .column:last-child {
      margin-right: 0; }
    .footer .column h3, .footer .column h4 {
      margin-top: 18px;
      text-align: left;
      margin-bottom: 0.3em; }
    .footer .column h4 {
      font-weight: normal; }
  .footer:after {
    clear: both;
    content: "";
    display: table; }
  .footer .footer-nav {
    line-height: 2;
    padding: 15px 0;
    border-top: 1px solid #e5cfed;
    border-bottom: 1px solid #e5cfed; }
    .footer .footer-nav a:hover {
      text-decoration: underline; }
    .footer .footer-nav .dropdown li {
      display: inline-block; }
      .footer .footer-nav .dropdown li + li {
        border-left: 1px solid #222;
        padding-left: 3px; }
    .footer .footer-nav .has-dropdown > a:hover {
      text-decoration: none; }
  .footer .copyright p {
    font-size: 0.85em;
    margin-top: 30px; }
  @media (min-width: 992px) {
    .footer .column {
      display: inline-block;
      vertical-align: top;
      margin-right: 80px; }
    .footer .program-download {
      position: absolute;
      bottom: 65px;
      right: 80px; }
    .footer .footer-nav {
      border: none;
      margin-top: 18px;
      padding: 0; } }

.social a {
  font-size: 1.5em;
  margin-right: 15px;
  color: #222; }
  .social a:hover {
    color: #7f4098; }

/* 404
*******************************************/
.error-content .error p {
  text-align: center;
  font-size: 1.1em; }
.error-content .social {
  text-align: center; }

/*# sourceMappingURL=bffw-style.css.map */
