/* ==========================================================================
   VibesDev SCSS Styles [VARIABLES]
   Theme Settings
   ========================================================================== */
/* ========================================================== */
/* 			            01. general                               */
/* ========================================================== */
/* ========================================================== */
/* 			            02. grid                                  */
/* ========================================================== */
/* We can have extra column sizes */
/* ========================================================== */
/* 			            03. utils                                 */
/* ========================================================== */
/* ========================================================== */
/* 			            04. breakpoints                           */
/* ========================================================== */
/* ========================================================== */
/* 			            05. css variables                         */
/* ========================================================== */
:root {
  /* html|body */
  --main-font-family: "Montserrat", sans-serif;
  --main-font-size: 16px;
  --main-font-color: #323335;
  --body-background: #f2f3f5;
  --hover-color: #0056b3;
  /* layout */
  --container-width: 1920px;
  --container-pad: 40px;
  /*--> Place custom settings here <--*/
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 500px) {
  :root {
    --container-pad: 20px;
  }
}
/* ==========================================================================
   VibesDev SCSS FUNCTIONS [TYPES]

   A collection of function for advanced type checking
   ========================================================================== */
/* ==========================================================================
   VibesDev SCSS FUNCTIONS [INTERNAL]
   ========================================================================== */
/**
 * Replaces substring on a string variable
 */
/**
 * Splits a string with a specific separator
 */
/* ==========================================================================
   VibesDev SCSS FUNCTIONS [UNITS]
   ========================================================================== */
/**
 * Removes unit from value
 */
/**
 * Adds unit to a unitless value
 */
/**
 * Converts to rem values
 */
/**
 * Converts to vw values
 */
/* ==========================================================================
   VibesDev SCSS MIXINS [VARIOUS]
   ========================================================================== */
/**
 * Set placeholder color to inputs
 * Usage:
 * element{
 *   @placeholder-color(#cccccc)
 * }
 */
/**
 * Gives size to an element
 * Usage:
 * @include box(150, 450);
 */
/**
 * Truncates the text
 * Usage:
 * @include ellipsis-text();
 */
/**
 * Support for retina background images
 */
/**
 * CSS Opacity with fallback for IE8+.
 * Usage:
 * .opacity-box { @include opacity(.4); }
 */
/**
 * Implementing font-size with rem units and pixel fallback.
 */
/**
 * Adds a cover background to an element
 * Usage:
 * div {
 *   background-image: url("banner.jpg");
 *   @include cover-background;
 * }
 */
/**
 * A quick placeholder maker (with custom size/colors/text)
 * Uses: https://placeholder.com/
 * Usage:
 * .thumb {
 *   @include placeholder-image(400, 200);
 *   width: 400px;
 *   height: 200px;
 * }
 */
/**
 * Centering Elements
 * A mixin for absolute centering an element in its parent..
 */
/**
 * Hide Text
 * A mixin to visually hide text (for screen readers).
 */
/**
 * A mixin for defining CSS position properties.
 *
 */
/**
 * Flex properties
 * A mixin for common flex properties.
 */
/**
 * Prefixer
 * In case that PostCSS unable to do it,
 * add vendor prefixes to any CSS property.
 */
/**
 * FONT-FACE RULE
 * Auto creation of @font-face rule for custom fonts
 */
/**
 * Triangle Arrow with 4 optional directions
 * Create an arrow
 */
/**
 * Background Gradient
 * A simple SASS mixin to implement CSS linear gradients
 */
/**
 * More Generic Placeholder Styles
 * Usage:
 * element{
 *   @include placeholder {
 *   color: #cccccc;
 *   font-size: 16px;
 *   font-weight: 400;
 * }
 */
/* ==========================================================================
   VibesDev SCSS Styles [UTILITIES]

   A tiny utility-first CSS "framework"
   ========================================================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-none {
  display: none;
}

@media screen and (max-width: 1366px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
  .float-xl-left {
    float: left;
  }
  .float-xl-right {
    float: right;
  }
  .overflow-xl-hidden {
    overflow: hidden;
  }
  .overflow-xl-visible {
    overflow: visible;
  }
  .position-xl-static {
    position: static;
  }
  .position-xl-relative {
    position: relative;
  }
  .position-xl-absolute {
    position: absolute;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-none {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .float-lg-left {
    float: left;
  }
  .float-lg-right {
    float: right;
  }
  .overflow-lg-hidden {
    overflow: hidden;
  }
  .overflow-lg-visible {
    overflow: visible;
  }
  .position-lg-static {
    position: static;
  }
  .position-lg-relative {
    position: relative;
  }
  .position-lg-absolute {
    position: absolute;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .float-md-left {
    float: left;
  }
  .float-md-right {
    float: right;
  }
  .overflow-md-hidden {
    overflow: hidden;
  }
  .overflow-md-visible {
    overflow: visible;
  }
  .position-md-static {
    position: static;
  }
  .position-md-relative {
    position: relative;
  }
  .position-md-absolute {
    position: absolute;
  }
  .d-md-block {
    display: block;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-none {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .float-sm-left {
    float: left;
  }
  .float-sm-right {
    float: right;
  }
  .overflow-sm-hidden {
    overflow: hidden;
  }
  .overflow-sm-visible {
    overflow: visible;
  }
  .position-sm-static {
    position: static;
  }
  .position-sm-relative {
    position: relative;
  }
  .position-sm-absolute {
    position: absolute;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-none {
    display: none;
  }
}
/* ==========================================================================
   VibesDev SCSS Styles [GRID]
   ========================================================================== */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row--hcenter {
  justify-content: center;
}
.row--vcenter {
  align-items: center;
}

/**
 * A small hack so we don't have to include max-width
 * with the appropriate percentage everywhere (less file size)
 *
 * Generally it works but it seems to fail when a col is
 * alone in its row (it will expand to 100%)
 */
/**
 * Builders
 */
/**
 * Generate everything
 */
.col {
  flex: 1;
  max-width: 100%;
}

.col-auto {
  flex: auto;
  max-width: 100%;
  width: auto;
}

/* Generate all column/offset classes */
.col-1 {
  flex: 8.3333333333%;
  max-width: 8.3333333333%;
}

.off-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  flex: 16.6666666667%;
  max-width: 16.6666666667%;
}

.off-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  flex: 25%;
  max-width: 25%;
}

.off-3 {
  margin-left: 25%;
}

.col-4 {
  flex: 33.3333333333%;
  max-width: 33.3333333333%;
}

.off-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  flex: 41.6666666667%;
  max-width: 41.6666666667%;
}

.off-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  flex: 50%;
  max-width: 50%;
}

.off-6 {
  margin-left: 50%;
}

.col-7 {
  flex: 58.3333333333%;
  max-width: 58.3333333333%;
}

.off-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  flex: 66.6666666667%;
  max-width: 66.6666666667%;
}

.off-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  flex: 75%;
  max-width: 75%;
}

.off-9 {
  margin-left: 75%;
}

.col-10 {
  flex: 83.3333333333%;
  max-width: 83.3333333333%;
}

.off-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  flex: 91.6666666667%;
  max-width: 91.6666666667%;
}

.off-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  flex: 100%;
  max-width: 100%;
}

.off-12 {
  margin-left: 100%;
}

/* Generate the extra classes */
.col-20 {
  flex: 20%;
  max-width: 20%;
}

/* Generate all gap classes */
.gap-0,
.gap-0-x {
  margin-left: 0;
}
.gap-0 > *,
.gap-0-x > * {
  padding-left: 0;
}

.gap-0,
.gap-0-y {
  margin-top: 0;
}
.gap-0 > *,
.gap-0-y > * {
  padding-top: 0;
}

.gap-12,
.gap-12-x {
  margin-left: -12px;
}
.gap-12 > *,
.gap-12-x > * {
  padding-left: 12px;
}

.gap-12,
.gap-12-y {
  margin-top: -12px;
}
.gap-12 > *,
.gap-12-y > * {
  padding-top: 12px;
}

.gap-24,
.gap-24-x {
  margin-left: -24px;
}
.gap-24 > *,
.gap-24-x > * {
  padding-left: 24px;
}

.gap-24,
.gap-24-y {
  margin-top: -24px;
}
.gap-24 > *,
.gap-24-y > * {
  padding-top: 24px;
}

.gap-1,
.gap-1-x {
  margin-left: -1px;
}
.gap-1 > *,
.gap-1-x > * {
  padding-left: 1px;
}

.gap-1,
.gap-1-y {
  margin-top: -1px;
}
.gap-1 > *,
.gap-1-y > * {
  padding-top: 1px;
}

/* Generate all responsive steps */
@media screen and (max-width: 1366px) {
  .col-xl {
    flex: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-xl-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-xl-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-xl-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-xl-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-xl-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-xl-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-xl-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-xl-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-xl-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-xl-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-xl-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-xl-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-xl-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-xl-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-xl-0,
  .gap-xl-0-x {
    margin-left: 0;
  }
  .gap-xl-0 > *,
  .gap-xl-0-x > * {
    padding-left: 0;
  }
  .gap-xl-0,
  .gap-xl-0-y {
    margin-top: 0;
  }
  .gap-xl-0 > *,
  .gap-xl-0-y > * {
    padding-top: 0;
  }
  .gap-xl-12,
  .gap-xl-12-x {
    margin-left: -12px;
  }
  .gap-xl-12 > *,
  .gap-xl-12-x > * {
    padding-left: 12px;
  }
  .gap-xl-12,
  .gap-xl-12-y {
    margin-top: -12px;
  }
  .gap-xl-12 > *,
  .gap-xl-12-y > * {
    padding-top: 12px;
  }
  .gap-xl-24,
  .gap-xl-24-x {
    margin-left: -24px;
  }
  .gap-xl-24 > *,
  .gap-xl-24-x > * {
    padding-left: 24px;
  }
  .gap-xl-24,
  .gap-xl-24-y {
    margin-top: -24px;
  }
  .gap-xl-24 > *,
  .gap-xl-24-y > * {
    padding-top: 24px;
  }
  .gap-xl-1,
  .gap-xl-1-x {
    margin-left: -1px;
  }
  .gap-xl-1 > *,
  .gap-xl-1-x > * {
    padding-left: 1px;
  }
  .gap-xl-1,
  .gap-xl-1-y {
    margin-top: -1px;
  }
  .gap-xl-1 > *,
  .gap-xl-1-y > * {
    padding-top: 1px;
  }
  .reset-xl {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .col-lg {
    flex: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-lg-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-lg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-lg-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-lg-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-lg-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-lg-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-lg-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-lg-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-lg-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-lg-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-lg-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-lg-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-lg-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-lg-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-lg-0,
  .gap-lg-0-x {
    margin-left: 0;
  }
  .gap-lg-0 > *,
  .gap-lg-0-x > * {
    padding-left: 0;
  }
  .gap-lg-0,
  .gap-lg-0-y {
    margin-top: 0;
  }
  .gap-lg-0 > *,
  .gap-lg-0-y > * {
    padding-top: 0;
  }
  .gap-lg-12,
  .gap-lg-12-x {
    margin-left: -12px;
  }
  .gap-lg-12 > *,
  .gap-lg-12-x > * {
    padding-left: 12px;
  }
  .gap-lg-12,
  .gap-lg-12-y {
    margin-top: -12px;
  }
  .gap-lg-12 > *,
  .gap-lg-12-y > * {
    padding-top: 12px;
  }
  .gap-lg-24,
  .gap-lg-24-x {
    margin-left: -24px;
  }
  .gap-lg-24 > *,
  .gap-lg-24-x > * {
    padding-left: 24px;
  }
  .gap-lg-24,
  .gap-lg-24-y {
    margin-top: -24px;
  }
  .gap-lg-24 > *,
  .gap-lg-24-y > * {
    padding-top: 24px;
  }
  .gap-lg-1,
  .gap-lg-1-x {
    margin-left: -1px;
  }
  .gap-lg-1 > *,
  .gap-lg-1-x > * {
    padding-left: 1px;
  }
  .gap-lg-1,
  .gap-lg-1-y {
    margin-top: -1px;
  }
  .gap-lg-1 > *,
  .gap-lg-1-y > * {
    padding-top: 1px;
  }
  .reset-lg {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md {
    flex: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-md-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-md-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-md-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-md-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-md-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-md-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-md-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-md-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-md-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-md-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-md-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-md-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-md-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-md-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-md-0,
  .gap-md-0-x {
    margin-left: 0;
  }
  .gap-md-0 > *,
  .gap-md-0-x > * {
    padding-left: 0;
  }
  .gap-md-0,
  .gap-md-0-y {
    margin-top: 0;
  }
  .gap-md-0 > *,
  .gap-md-0-y > * {
    padding-top: 0;
  }
  .gap-md-12,
  .gap-md-12-x {
    margin-left: -12px;
  }
  .gap-md-12 > *,
  .gap-md-12-x > * {
    padding-left: 12px;
  }
  .gap-md-12,
  .gap-md-12-y {
    margin-top: -12px;
  }
  .gap-md-12 > *,
  .gap-md-12-y > * {
    padding-top: 12px;
  }
  .gap-md-24,
  .gap-md-24-x {
    margin-left: -24px;
  }
  .gap-md-24 > *,
  .gap-md-24-x > * {
    padding-left: 24px;
  }
  .gap-md-24,
  .gap-md-24-y {
    margin-top: -24px;
  }
  .gap-md-24 > *,
  .gap-md-24-y > * {
    padding-top: 24px;
  }
  .gap-md-1,
  .gap-md-1-x {
    margin-left: -1px;
  }
  .gap-md-1 > *,
  .gap-md-1-x > * {
    padding-left: 1px;
  }
  .gap-md-1,
  .gap-md-1-y {
    margin-top: -1px;
  }
  .gap-md-1 > *,
  .gap-md-1-y > * {
    padding-top: 1px;
  }
  .reset-md {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .col-sm {
    flex: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-sm-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-sm-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-sm-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-sm-0,
  .gap-sm-0-x {
    margin-left: 0;
  }
  .gap-sm-0 > *,
  .gap-sm-0-x > * {
    padding-left: 0;
  }
  .gap-sm-0,
  .gap-sm-0-y {
    margin-top: 0;
  }
  .gap-sm-0 > *,
  .gap-sm-0-y > * {
    padding-top: 0;
  }
  .gap-sm-12,
  .gap-sm-12-x {
    margin-left: -12px;
  }
  .gap-sm-12 > *,
  .gap-sm-12-x > * {
    padding-left: 12px;
  }
  .gap-sm-12,
  .gap-sm-12-y {
    margin-top: -12px;
  }
  .gap-sm-12 > *,
  .gap-sm-12-y > * {
    padding-top: 12px;
  }
  .gap-sm-24,
  .gap-sm-24-x {
    margin-left: -24px;
  }
  .gap-sm-24 > *,
  .gap-sm-24-x > * {
    padding-left: 24px;
  }
  .gap-sm-24,
  .gap-sm-24-y {
    margin-top: -24px;
  }
  .gap-sm-24 > *,
  .gap-sm-24-y > * {
    padding-top: 24px;
  }
  .gap-sm-1,
  .gap-sm-1-x {
    margin-left: -1px;
  }
  .gap-sm-1 > *,
  .gap-sm-1-x > * {
    padding-left: 1px;
  }
  .gap-sm-1,
  .gap-sm-1-y {
    margin-top: -1px;
  }
  .gap-sm-1 > *,
  .gap-sm-1-y > * {
    padding-top: 1px;
  }
  .reset-sm {
    margin-left: 0;
  }
}
/* ==========================================================================
   VibesDev SCSS Styles [BASE]
   ========================================================================== */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

picture,
img {
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/**
 * Helpers
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/**
 * The Container
 */
.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--container-pad);
  margin: 0 auto;
}
.container--fluid {
  max-width: 100%;
}

/**
 * Global styles
 */
* {
  margin: 0;
  padding: 0;
}

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

html {
  color: var(--main-font-color);
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  font-weight: 400;
  line-height: 1.5;
}

body {
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--body-background);
}

h1, h2, h3, h4, h5, h6 {
  margin: 1rem 0;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  color: var(--secondary-color);
}

h2 {
  font-size: 2rem;
  color: var(--secondary-color);
}

h3 {
  font-size: 1.6rem;
  color: var(--secondary-color);
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

p {
  margin: 1rem 0;
}

ul, ol {
  margin: 1rem;
}

ul li, ol li {
  margin: 0.5rem 0;
}

a {
  color: #007bff;
}

a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

blockquote {
  margin: 1rem 0;
  padding: 0 1rem;
  color: #6c757d;
  border-left: 0.25rem solid #dee2e6;
}

code {
  font-family: "Courier New", Courier, monospace;
}

pre {
  margin: 1rem 0;
  padding: 1rem;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  overflow: auto;
}

.button {
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  font-size: 20px;
  letter-spacing: 4px;
  color: #000000;
  text-decoration: none !important;
}
.button:hover {
  color: var(--secondary-color);
}
.button::after {
  content: url("../img/icons/arrow.svg");
  display: flex;
  position: relative;
}

/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:HEADER]
   ========================================================================== */
.site-header {
  z-index: 2;
  position: relative;
  background: var(--primary-color);
}
.site-header .row {
  align-items: center;
  padding: 36px 0;
}
@media only screen and (max-width: 1024px) {
  .site-header .row {
    padding: 15px 0 !important;
  }
}
.site-header .site-logo img {
  max-height: 77px;
  width: auto;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .site-header .site-logo img {
    max-height: 40px;
  }
}
.site-header--top .row {
  padding: 36px 0;
}
.site-header--top .row .header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.site-header--top .row .header-right h2 {
  color: #fff;
}
.site-header--top .social-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header--top .social-wrapper svg {
  height: 30px;
}
.site-header--top .social-wrapper .round {
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  color: #fff !important;
}
.site-header--top .social-wrapper .round svg {
  width: 20px;
}
@media only screen and (max-width: 1024px) {
  .site-header--top .social-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .site-header--top .alt-logo {
    display: none;
  }
}
.site-header--top a.mobile--trigger.jsMobileOpen svg path {
  fill: #fff;
}
.site-header--bottom {
  border-top: 2px solid #fff;
}
.site-header--bottom .row {
  padding: 15px 0;
}
.site-header--bottom .row ul.menu {
  display: flex;
  gap: 30px;
  margin: 0;
  list-style: none;
  position: relative;
}
.site-header--bottom .row ul.menu li a {
  color: #fff;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 20px;
}
@media only screen and (max-width: 1366px) {
  .site-header--bottom .row ul.menu li a {
    font-size: 16px;
  }
}
.site-header--bottom .row ul.menu li .sub-menu {
  display: none;
  position: absolute;
  font-size: 14px;
  margin: 0;
  padding: 10px 20px;
  background: #000a55;
  top: 61px;
  transform: translateX(-20px);
  list-style: none;
}
.site-header--bottom .row ul.menu li .sub-menu a {
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .site-header--bottom {
    display: none;
  }
}
.site-header li.filmfreeway a {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
.site-header li.filmfreeway a img {
  flex: 1;
  max-width: 130px;
  width: 100%;
}

.main-menu--list {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
}
.main-menu--item {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.main-menu--item__link {
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  padding: 6px 3px 8px;
}
.main-menu--item__link:hover {
  color: #000;
  text-decoration: underline;
}
.main-menu--item .dropdown--list {
  position: absolute;
  top: -10000px;
  background: #fff;
  border: 1px solid rgba(35, 35, 35, 0.1);
  margin: 0;
  list-style: none;
  border-radius: 3px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms, visibility 300ms;
}
@media only screen and (max-width: 1024px) {
  .main-menu--item .dropdown--list {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.75rem;
  }
}
.main-menu--item .dropdown--list.active {
  opacity: 1;
  visibility: visible;
  top: 50px;
}
@media only screen and (max-width: 1024px) {
  .main-menu--item .dropdown--list.active {
    z-index: 1;
    top: 0px;
  }
}
.main-menu--item .dropdown--item {
  margin: 0;
}
.main-menu--item .dropdown--link {
  padding: 9px;
  width: 200px;
  display: flex;
  justify-content: center;
  color: #000;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .main-menu--item .dropdown--link {
    max-width: 100%;
    width: 100%;
  }
}
.main-menu--item .dropdown--separator {
  height: 1px;
  display: block;
  background: rgba(35, 35, 35, 0.1);
  margin: 6px 0;
}
@media only screen and (max-width: 1024px) {
  .main-menu--desktop {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .main-menu--mobile {
    display: none;
  }
}
.main-menu--mobile .mobile--menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.875rem var(--container-pad);
  background: var(--primary-color);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}
.main-menu--mobile .mobile--menu ul {
  list-style: none;
}
.main-menu--mobile .mobile--menu ul .menu-item-has-children > a {
  position: relative;
}
.main-menu--mobile .mobile--menu ul .menu-item-has-children > a::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/icons/chevron-down.svg);
  height: 20px;
  width: 20px;
  right: 0;
  top: 0;
  margin-top: 2px;
}
.main-menu--mobile .mobile--menu ul .menu-item-has-children > a.active::after {
  transform: rotate(180deg);
  margin-top: 5px;
}
.main-menu--mobile .mobile--menu ul .menu-item-has-children .sub-menu {
  display: none;
}
.main-menu--mobile .mobile--menu ul a {
  color: #fff;
  font-size: 18px;
}
.main-menu--mobile .mobile--menu ul#menu-primary > li {
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}
.main-menu--mobile .mobile--menu ul#menu-primary > li a {
  display: flex;
  width: 100%;
  text-decoration: none;
}
.main-menu--mobile .mobile--menu.active {
  opacity: 1;
  visibility: visible;
}
.main-menu--mobile .mobile--menu .main-menu--list {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  position: relative;
  top: -30px;
}
.main-menu--mobile .mobile--trigger {
  max-width: 30px;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.main-menu--mobile .main-menu--item__link {
  font-size: 1.75rem;
  transition: transform 300ms, font-weight 300ms;
  text-align: center;
}
.main-menu--mobile .main-menu--item__link:hover {
  text-decoration: none;
  transform: scale(1.5);
  font-weight: 600;
}

.icon-dropdown {
  margin-left: 6px;
  margin-bottom: 2px;
}
@media only screen and (max-width: 1024px) {
  .icon-dropdown {
    width: 1.25rem;
  }
}

/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:MAIN]
   ========================================================================== */
.vanished {
  display: none;
}

.unlist {
  margin: 0;
  list-style: none;
}

.section {
  padding: 60px 0;
  position: relative;
}

.section-title {
  text-transform: uppercase;
}

#app {
  background: #fff;
}

.slider-example {
  margin-bottom: 60px;
}
.slider-example .slick-slide {
  padding: 240px 60px;
  font-size: 30px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(35, 35, 35, 0.1);
  border-radius: 3px;
}

.slick-prev::before, .slick-next::before {
  color: #000;
}

.slick-next {
  right: 25px;
  z-index: 1;
}

.slick-prev {
  left: 25px;
  z-index: 1;
}

/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
.site-footer-form-section {
  background: var(--secondary-color);
  padding: 50px 0;
}
.site-footer-form-section h2 {
  color: #fff;
}
.site-footer-form-section form {
  display: flex;
  gap: 20px 50px;
  flex-wrap: wrap;
}
.site-footer-form-section form p {
  width: 33%;
  flex: 1;
}
.site-footer-form-section form p span.wpcf7-form-control-wrap {
  width: 100%;
}
.site-footer-form-section form p input {
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  outline: none !important;
}
.site-footer-form-section form p input::placeholder {
  color: #fff; /* Change this color to your desired placeholder color */
}
.site-footer-form-section form p input.wpcf7-submit {
  border: 2px solid #fff;
}
@media only screen and (max-width: 1024px) {
  .site-footer-form-section form {
    flex-direction: column;
    justify-content: center;
  }
  .site-footer-form-section form p {
    width: 100%;
  }
}
.site-footer-form-section .wpcf7-response-output {
  width: 100%;
  color: #fff;
  text-align: center;
}
.site-footer-main-section {
  background: var(--footer-color);
  padding: 50px 0;
}
.site-footer-main-section * {
  color: #fff;
}
.site-footer-main-section .site-logo {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  max-width: 180px;
  align-items: flex-start;
}
.site-footer-main-section .contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer-main-section .contact-wrapper b {
  text-transform: uppercase;
}
.site-footer-main-section .contact-wrapper * {
  margin: 0;
  line-height: 1;
}
.site-footer-main-section .footer-menu * {
  margin: 0;
  line-height: 1;
}
.site-footer-main-section .footer-menu ul#menu-footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer-main-section .footer-menu ul#menu-footer-menu a {
  font-weight: bold;
  text-transform: uppercase;
}
.site-footer-main-section .row > div {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .site-footer-main-section .row > div {
    flex-direction: column;
  }
}
.site-footer-main-section .social-organizer-wrapper .social-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-footer-main-section .social-organizer-wrapper .social-wrapper svg {
  height: 30px;
}
.site-footer-main-section .social-organizer-wrapper .social-wrapper .round {
  height: 50px;
  width: 50px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
}
.site-footer-main-section .social-organizer-wrapper .social-wrapper .round svg {
  width: 30px;
}
.site-footer-main-section .social-organizer-wrapper .organizer {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.site-footer-main-section .social-organizer-wrapper .organizer p {
  margin: 0;
  line-height: 1;
}
.site-footer-main-section .social-organizer-wrapper .organizer img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: flex;
  max-height: 60px;
}
.site-footer-main-section .footer-left {
  justify-content: flex-start;
}
.site-footer-main-section .footer-center {
  justify-content: center;
}
.site-footer-main-section .footer-right {
  justify-content: flex-end;
}
.site-footer-copyright-section {
  background: var(--copyright-color);
  padding: 10px 0;
}
.site-footer-copyright-section .copyright-legal {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .site-footer-copyright-section .copyright-legal {
    flex-direction: column;
    justify-content: center;
  }
}
.site-footer-copyright-section .copyright-legal .copyright-info {
  display: flex;
}
.site-footer-copyright-section .copyright-legal .copyright-info .copyright-text {
  padding-right: 5px;
  border-right: 1px solid #000;
  margin-right: 5px;
}
@media only screen and (max-width: 768px) {
  .site-footer-copyright-section .copyright-legal .copyright-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .site-footer-copyright-section .copyright-legal .copyright-info .copyright-text {
    border-right: none;
  }
}
.site-footer-copyright-section .copyright-legal p {
  margin: 0;
  font-size: 14px;
  line-height: 1;
}
.site-footer-copyright-section .copyright-legal .menu-copyright-footer-container {
  justify-content: center;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .site-footer-copyright-section .copyright-legal .menu-copyright-footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.site-footer-copyright-section .copyright-legal .menu-copyright-footer-container ul#menu-copyright-footer {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 10px;
}
.site-footer-copyright-section .copyright-legal .menu-copyright-footer-container ul#menu-copyright-footer li {
  margin: 0;
}
.site-footer-copyright-section .copyright-legal .menu-copyright-footer-container ul#menu-copyright-footer li a {
  font-size: 14px;
}

/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:404]
   ========================================================================== */
.section--404 {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section--404 .s404-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section--404 .s404-title {
  font-size: 8rem;
}
.section--404 .s404-subtitle {
  font-size: 3rem;
}
.section--404 .s404-image {
  max-height: 250px;
}
.section--404 .s404-link {
  color: #fff !important;
  padding: 10px 20px;
  background: #39ac31;
  margin: 20px 0;
  display: inline-block;
}

/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:Pagination]
   ========================================================================== */
.pagination ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.pagination ul .page-numbers {
  color: #000000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.5s;
  border: 1px solid #DDD;
  font-size: 20px;
  margin: 0;
  width: 50px;
  display: flex;
  justify-content: center;
}
.pagination ul .page-numbers.current {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border: 1px solid var(--primary-color);
}

/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:POSTCARD]
   ========================================================================== */
.post-card {
  background: #f2f2f2;
  border-radius: 5px;
  border: 1px solid #c5c5c5;
  overflow: hidden;
}
.post-card-content {
  padding: 10px;
}

/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:POST]
   ========================================================================== */
.single-post .post-content {
  padding: 100px 0;
}
.single-post .post-content .container {
  max-width: 1200px;
}

/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:FILM]
   ========================================================================== */
.film-info {
  padding: 40px;
  background: var(--primary-color);
  color: #fff;
  height: 100%;
}
.film-info h1,
.film-info h3 {
  color: #fff;
}

.film-nomination-info {
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.film-nomination-info p {
  margin: 0;
  text-transform: uppercase;
}
.film-nomination-info p.info-title {
  font-size: 20px;
}
.film-nomination-info p.info-content {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 600;
}
.film-nomination-info ul.info-content {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.film-nomination-info ul.info-content li {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px;
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
}

.gallery-slider-section {
  border-top: 2px solid var(--primary-color);
}
.gallery-slider-section .container {
  display: flex;
  justify-content: space-between;
}
.gallery-slider-section a {
  text-decoration: none;
}
.gallery-slider-section .gallery-slider-controls {
  display: flex;
  position: relative;
  align-items: center;
  gap: 20px;
}
.gallery-slider-section .gallery-slider-controls button {
  position: relative !important;
  left: unset;
  right: unset;
  transform: none;
  top: unset;
  height: 30px;
  width: 38px;
}
.gallery-slider-section .gallery-slider-controls button.slick-next::before {
  content: url("../img/icons/arrow.svg");
  display: flex;
}
.gallery-slider-section .gallery-slider-controls button.slick-prev::before {
  content: url("../img/icons/arrow.svg");
  transform: translateY(-1px) rotate(180deg);
  display: flex;
}
.gallery-slider-section .gallery-slider {
  border-top: 2px solid var(--primary-color);
}
.gallery-slider-section .gallery-slide img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:PRESS RELEASE]
   ========================================================================== */
.press-releases {
  padding: 40px;
  background: var(--primary-color);
  color: #fff;
  height: 100%;
}
.press-releases h2 {
  color: #fff;
}

.media-kits {
  padding: 40px;
  background: #fff;
  color: var(--primary-color);
  height: 100%;
}
.media-kits h2 {
  color: var(--primary-color);
}

.file-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid;
}

.pdf-flipbook {
  padding: 100px 0;
  background: #f2f2f2;
}
.pdf-flipbook .container {
  display: flex;
}
.pdf-flipbook ._3d-flip-book.fb3d-thumbnail-lightbox-mode {
  margin: auto;
}
.pdf-flipbook ._3d-flip-book.fb3d-thumbnail-lightbox-mode .book-thumbnail {
  max-width: 500px;
}

.hero-slider .slick-list.draggable {
  height: 750px;
}
@media only screen and (max-width: 1024px) {
  .hero-slider .slick-list.draggable {
    height: 600px;
  }
}
.hero-slider .slick-track {
  height: 750px;
}
@media only screen and (max-width: 1024px) {
  .hero-slider .slick-track {
    height: 600px;
  }
}
.hero-slider .hero-slide {
  position: relative;
  height: 100%;
  max-height: 800px;
  overflow: hidden;
}
.hero-slider .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider .hero-slide .slide-content {
  position: absolute;
  bottom: 70px;
  left: 0;
  color: #fff;
  text-align: left;
  width: 100%;
}
.hero-slider .hero-slide .slide-content .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.hero-slider .hero-slide .slide-content .container .slide-title {
  font-size: 44px;
  margin-bottom: 10px;
  color: #fff;
  background: var(--primary-color);
  padding: 20px;
}
.hero-slider .hero-slide .slide-content .container a {
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.hero-slider .hero-slide .slide-content .container a:hover {
  background-color: #fff;
  color: #000;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  animation: arrowDown 1.6s ease forwards;
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
.link-block-slider-controls {
  display: flex;
  position: relative;
  align-items: center;
  gap: 20px;
}
.link-block-slider-controls button {
  position: relative !important;
  left: unset;
  right: unset;
  transform: none;
  top: unset;
  height: 30px;
  width: 38px;
}
.link-block-slider-controls button.slick-next::before {
  content: url("../img/icons/arrow.svg");
  display: flex;
}
.link-block-slider-controls button.slick-prev::before {
  content: url("../img/icons/arrow.svg");
  transform: translateY(-1px) rotate(180deg);
  display: flex;
}

.link-block-slide {
  border: 1px solid #fff;
}
.link-block-slide img {
  width: 100%;
}
.link-block-slide .link-block-content {
  background: var(--primary-color);
  color: #fff;
  padding: 40px;
  min-height: 220px;
  border-bottom: 1px solid #fff;
}
.link-block-slide .link-block-content h3 {
  margin: 0;
  text-transform: uppercase;
  color: #fff;
}

.row.link-grid .link-block-slide {
  border: 0 !important;
}
.row.link-grid .link-block-slide .link-block-content {
  border: 0 !important;
}

.link-block-slider-section {
  background-color: #fff;
}
.link-block-slider-section .container {
  display: flex;
  justify-content: space-between;
}
.link-block-slider-section a {
  text-decoration: none;
}
.link-block-slider-section.light .link-grid {
  background: var(--primary-color);
}
.link-block-slider-section.light .link-block-slide {
  border: 1px solid var(--primary-color);
}
.link-block-slider-section.light .link-block-slide img {
  width: 100%;
}
.link-block-slider-section.light .link-block-slide .link-block-content {
  background: #fff;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color) !important;
}
.link-block-slider-section.light .link-block-slide .link-block-content h3 {
  color: var(--primary-color);
}

.blog-post-slider-section {
  background-color: #fff;
}
.blog-post-slider-section .container {
  display: flex;
  justify-content: space-between;
}
.blog-post-slider-section a {
  text-decoration: none;
}

.blog-post-slider-controls {
  display: flex;
  position: relative;
  align-items: center;
  gap: 20px;
}
.blog-post-slider-controls button {
  position: relative !important;
  left: unset;
  right: unset;
  transform: none;
  top: unset;
  height: 30px;
  width: 38px;
}
.blog-post-slider-controls button.slick-next::before {
  content: url("../img/icons/arrow.svg");
  display: flex;
}
.blog-post-slider-controls button.slick-prev::before {
  content: url("../img/icons/arrow.svg");
  transform: translateY(-1px) rotate(180deg);
  display: flex;
}

.blog-post-slide {
  border: 1px solid #fff;
}
.blog-post-slide img {
  width: 100%;
}
.blog-post-slide .blog-post-content {
  background: var(--primary-color);
  color: #fff;
  padding: 40px;
  min-height: 170px;
  border-bottom: 1px solid #fff;
}
.blog-post-slide .blog-post-content a {
  color: #fff;
}
.blog-post-slide .blog-post-content h3 {
  margin: 0;
  text-transform: uppercase;
  color: #fff;
}

.two-side-section .content-side {
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.two-side-section .content-side h2 {
  text-transform: uppercase;
}
.two-side-section .image-side {
  display: flex;
}
.two-side-section .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .two-side-section .image-side {
    order: 1 !important;
  }
}
.two-side-section.flipped .content-side {
  order: 1;
}
.two-side-section.flipped .image-side {
  order: 2;
}
.two-side-section.with-cta .image-side {
  order: 2;
}
.two-side-section.with-cta .content-side {
  order: 3;
}
.two-side-section.with-cta .cta-content {
  order: 1;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .two-side-section.with-cta .cta-content {
    order: 3 !important;
  }
}
.two-side-section.with-cta.flipped .content-side {
  order: 1;
}
.two-side-section.with-cta.flipped .image-side {
  order: 2;
}
.two-side-section.with-cta.flipped .cta-content {
  order: 3;
}

.content-section--content {
  padding: 100px 0;
  border-top: 2px solid var(--primary-color);
}
.content-section--content p {
  margin: auto;
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .content-section--content {
    padding: 40px 0;
  }
}
.content-section.narrow .content-section--winners,
.content-section.narrow .content-section--films {
  max-width: 1200px;
  margin: auto;
}
.content-section.narrow .content-section--content .container {
  max-width: 1200px;
  margin: auto;
}
.content-section .content-section--winners,
.content-section .content-section--films {
  padding-bottom: 100px;
}
.content-section .row.winner-row,
.content-section .row.film-row {
  border: 1px solid var(--primary-color);
  min-height: 500px;
}
.content-section .row.winner-row:not(:last-child),
.content-section .row.film-row:not(:last-child) {
  border-bottom: 0px;
}
.content-section .row.winner-row .image-side,
.content-section .row.film-row .image-side {
  overflow: hidden;
}
.content-section .row.winner-row .image-side img,
.content-section .row.film-row .image-side img {
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  width: 100%;
}
.content-section .row.winner-row .image-side img:hover,
.content-section .row.film-row .image-side img:hover {
  transform: scale(1.1);
}
.content-section .row.winner-row .content-side,
.content-section .row.film-row .content-side {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-section .row.winner-row .content-side a,
.content-section .row.film-row .content-side a {
  color: var(--primary-color);
  text-decoration: none;
}
.content-section .row.winner-row .content-side h3,
.content-section .row.film-row .content-side h3 {
  font-size: 28px;
  font-weight: 400;
  color: var(--main-font-color);
}
.content-section .row.winner-row .content-side h4,
.content-section .row.film-row .content-side h4 {
  font-size: 32px;
  margin-top: 0;
  color: var(--primary-color);
}

.person-info-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  height: 100%;
  z-index: 99;
}
.person-info-popup .social-wrap {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.person-info-popup .social-wrap a {
  color: var(--main-font-color);
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none !important;
}
.person-info-popup .person-info-content {
  background-color: #f2f2f8;
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-height: 80vh;
  overflow: auto;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .person-info-popup .person-info-content {
    transform: none;
    top: 0;
    max-height: 100vh;
  }
}
.person-info-popup .person-info-content .image-side {
  width: 40%;
}
.person-info-popup .person-info-content .image-side img {
  width: 100%;
}
.person-info-popup .person-info-content .info-side {
  width: 60%;
  position: relative;
}
.person-info-popup .person-info-content .close-button {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.person-info-popup .person-info-content h3 {
  margin-top: 0;
  padding-right: 50px;
}
.person-info-popup .person-info-content .bio-wrapper {
  border-top: 1px solid;
}

.person-card {
  border: 1px solid var(--primary-color);
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  cursor: pointer;
}
.person-card--image {
  height: 350px;
  overflow: hidden;
}
.person-card--image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.person-card--info {
  padding: var(--container-pad);
}
.person-card--info h3 {
  margin-top: 0;
  text-transform: uppercase;
}
.person-card--info h4 {
  text-transform: uppercase;
  margin-bottom: 0;
}

.partners-section .supports, .partners-section .p-sponsors, .partners-section .m-sponsors {
  padding: 20px 0;
  border-top: 2px solid var(--primary-color);
}
.partners-section .m-sponsors {
  border-bottom: 2px solid var(--primary-color);
}

.video-section {
  border-top: 2px solid var(--primary-color);
}
.video-section .video-embed {
  border-top: 2px solid var(--primary-color);
}
.video-section .video-linked {
  border-top: 2px solid var(--primary-color);
}
.video-section .video-linked video {
  max-width: 1200px;
  margin: auto;
  width: 100%;
  display: block;
}
.video-section .video-embed-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}
@media (min-width: 1200px) {
  .video-section .video-embed-container {
    padding-bottom: 40%; /* 16:9 aspect ratio */
  }
}
.video-section .video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.day-block {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--primary-color);
}
.day-block:not(:last-child) {
  margin-bottom: 50px;
}
.day-block .day-block-date {
  margin: 0;
  display: flex;
  padding: 20px 40px 0;
}
.day-block .day-block-date h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 800;
}
.day-block .day-block-day-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px 20px;
}
.day-block .day-block-day-info h3 {
  margin: 0;
  font-size: 35px;
  color: var(--main-font-color);
}
.day-block .day-block-day-info .day-block-doors-open p {
  font-size: 25px;
}
@media only screen and (max-width: 768px) {
  .day-block .day-block-day-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.day-block .day-block-slot-separator {
  display: flex;
  width: 100%;
  background: var(--primary-color);
  justify-content: flex-end;
  padding: 20px 40px;
  gap: 10px;
}
.day-block .day-block-slot-separator .day-block-slot-time {
  display: none;
  gap: 5px;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .day-block .day-block-slot-separator .day-block-slot-time {
    display: flex;
  }
}
.day-block .day-block-slot-separator .day-block-slot-number {
  display: flex;
  justify-content: flex-end;
  color: #fff;
  margin: 0;
  font-size: 30px;
  font-weight: 800;
}
@media only screen and (max-width: 1024px) {
  .day-block .day-block-slot-separator {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  .day-block .day-block-slot-separator {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.day-block .day-block-slot-time-films {
  display: flex;
  position: relative;
  flex-direction: column;
}
.day-block .day-block-slot-time-films .day-block-slot-time {
  display: flex;
  justify-content: flex-start;
  width: 20%;
  flex-direction: column;
  position: absolute;
  top: 30px;
  left: 40px;
}
@media only screen and (max-width: 1024px) {
  .day-block .day-block-slot-time-films .day-block-slot-time {
    display: none;
  }
}
.day-block .day-block-slot-time-films .day-block-slot-time p {
  margin: unset;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}
.day-block .day-block-slot-time-films .day-block-slot-films {
  width: 100%;
}
.day-block .day-block-slot-time-films .day-block-slot-films .day-block-slot-film {
  padding: 30px 40px;
  padding-left: 20%;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .day-block .day-block-slot-time-films .day-block-slot-films .day-block-slot-film {
    padding-left: 40px;
  }
}
.day-block .day-block-slot-time-films .day-block-slot-films .day-block-slot-film:not(:last-child) {
  border-bottom: 2px solid var(--primary-color);
}
.day-block .day-block-slot-time-films .day-block-slot-films .day-block-slot-film h4 {
  font-size: 30px;
  margin: 0;
}
.day-block .day-block-slot-time-films .day-block-slot-films .day-block-slot-film.active {
  background: #d9dbeb;
}
.day-block .day-block-slot-time-films .day-block-slot-films .day-block-slot-film .film-description {
  display: none;
  font-size: 18px;
  margin-top: 20px;
}
.day-block .day-block-slot-time-films .day-block-slot-films .day-block-slot-film .film-description .button {
  align-items: center;
  margin-top: 20px;
}
.day-block .day-block-slot-time-films .day-block-slot-films .day-block-slot-film .film-description .button::after {
  content: "";
  display: flex;
  position: relative;
  background: url(../img/icons/arrow.svg);
  background-size: contain;
  width: 30px;
  height: 18px;
  background-repeat: no-repeat;
}
.day-block .day-block-slot-time-films .break-notice {
  margin: unset;
  padding: 20px 40px;
  padding-left: 20%;
  font-weight: bold;
  border-top: 2px solid var(--primary-color);
  background: #CBCBCB;
}
@media only screen and (max-width: 1024px) {
  .day-block .day-block-slot-time-films .break-notice {
    padding-left: 40px;
  }
}

.faq-section--qa {
  border-bottom: 2px solid var(--primary-color);
}
.faq-section--qa:first-child {
  border-top: 2px solid var(--primary-color);
}
.faq-section--qa .question-wrap {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 20px var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-section--qa .question-wrap .question {
  display: flex;
  justify-content: space-between;
  margin: 0;
  cursor: pointer;
}
.faq-section--qa .question-wrap .question svg {
  transform: rotate(90deg);
  height: 30px;
  width: 30px;
  transition: all 0.3s ease;
}
.faq-section--qa .question-wrap .answer {
  display: none;
  margin: 0;
}
.faq-section--qa.active {
  background: #D9DBEB;
}
.faq-section--qa.active .question svg {
  transform: rotate(-90deg);
}

/* ==========================================================================
   Print styles.
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
      * Don't show links that are fragment identifiers,
      * or use the `javascript:` pseudo protocol
      */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
      * Printing Tables:
      * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
      */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* ==========================================================================
   VibesDev SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
/**
 *
 * Search form block
 *
 */
.search-form {
  padding: 20px;
}
.search-form__input {
  margin-right: 10px;
}

/*# sourceMappingURL=bundle.css.map */
