/* ==========================================================================
   PSDGator 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: "Graphik Medium", sans-serif;
  --main-font-size: 14px;
  --main-font-color: #000000;
  /* layout */
  --container-width: 1390px;
  --container-pad: min(25px, 25px);
  /*--> Place custom settings here <--*/ }

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

   A collection of function for advanced type checking
   ========================================================================== */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [INTERNAL]
   ========================================================================== */
/**
 * Replaces substring on a string variable
 */
/**
 * Splits a string with a specific separator
 */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [UNITS]
   ========================================================================== */
/**
 * Removes unit from value
 */
/**
 * Adds unit to a unitless value
 */
/**
 * Converts to rem values
 */
/**
 * Converts to vw values
 */
/* ==========================================================================
   PSDGator 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;
 * }
 */
/* ==========================================================================
   PSDGator 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: 635px) {
  .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; } }
/* ==========================================================================
   PSDGator 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-1,
.gap-1-x {
  margin-left: -15px; }
  .gap-1 > *,
  .gap-1-x > * {
    padding-left: 15px; }

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

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

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

/* 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-1,
  .gap-xl-1-x {
    margin-left: -15px; }
    .gap-xl-1 > *,
    .gap-xl-1-x > * {
      padding-left: 15px; }

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

  .gap-xl-2,
  .gap-xl-2-x {
    margin-left: -25px; }
    .gap-xl-2 > *,
    .gap-xl-2-x > * {
      padding-left: 25px; }

  .gap-xl-2,
  .gap-xl-2-y {
    margin-top: -25px; }
    .gap-xl-2 > *,
    .gap-xl-2-y > * {
      padding-top: 25px; }

  .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-1,
  .gap-lg-1-x {
    margin-left: -15px; }
    .gap-lg-1 > *,
    .gap-lg-1-x > * {
      padding-left: 15px; }

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

  .gap-lg-2,
  .gap-lg-2-x {
    margin-left: -25px; }
    .gap-lg-2 > *,
    .gap-lg-2-x > * {
      padding-left: 25px; }

  .gap-lg-2,
  .gap-lg-2-y {
    margin-top: -25px; }
    .gap-lg-2 > *,
    .gap-lg-2-y > * {
      padding-top: 25px; }

  .reset-lg {
    margin-left: 0; } }
@media screen and (max-width: 635px) {
  .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-1,
  .gap-md-1-x {
    margin-left: -15px; }
    .gap-md-1 > *,
    .gap-md-1-x > * {
      padding-left: 15px; }

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

  .gap-md-2,
  .gap-md-2-x {
    margin-left: -25px; }
    .gap-md-2 > *,
    .gap-md-2-x > * {
      padding-left: 25px; }

  .gap-md-2,
  .gap-md-2-y {
    margin-top: -25px; }
    .gap-md-2 > *,
    .gap-md-2-y > * {
      padding-top: 25px; }

  .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-1,
  .gap-sm-1-x {
    margin-left: -15px; }
    .gap-sm-1 > *,
    .gap-sm-1-x > * {
      padding-left: 15px; }

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

  .gap-sm-2,
  .gap-sm-2-x {
    margin-left: -25px; }
    .gap-sm-2 > *,
    .gap-sm-2-x > * {
      padding-left: 25px; }

  .gap-sm-2,
  .gap-sm-2-y {
    margin-top: -25px; }
    .gap-sm-2 > *,
    .gap-sm-2-y > * {
      padding-top: 25px; }

  .reset-sm {
    margin-left: 0; } }
/* ==========================================================================
   PSDGator 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 {
  background-color: var(--body-background); }

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:HEADER]
   ========================================================================== */
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  display: block;
  font-family: "Graphik Medium";
  font-size: 14px;
  line-height: 45px;
  color: #ffffff;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  width: 120px;
  /*style the arrow inside the select element:*/
  /*point the arrow upwards when the select box is open (active):*/
  /*style the items (options), including the selected item:*/
  /*style items (options):*/
  /*hide the items when the select box is closed:*/ }
  @media only screen and (max-width: 635px) {
    .custom-select {
      width: 100%;
      padding: 0 15px; } }
  .custom-select select {
    display: none;
    /*hide original SELECT element:*/ }
  .custom-select .select-selected:after {
    content: "";
    margin-left: 24px;
    width: 13px;
    height: 8px;
    background-image: url(../images/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    transform: rotate(0deg); }
  .custom-select .select-items div,
  .custom-select .select-selected {
    cursor: pointer;
    user-select: none; }
  .custom-select .select-selected {
    display: flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (max-width: 635px) {
      .custom-select .select-selected {
        justify-content: space-between; } }
  .custom-select .select-items {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 99;
    background: #ffffff;
    padding: 10px 16px;
    width: 145px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25); }
    @media only screen and (max-width: 635px) {
      .custom-select .select-items {
        top: unset;
        bottom: calc(100% + 6px);
        width: 100%; } }
    .custom-select .select-items > div, .custom-select .select-items a {
      display: flex;
      font-family: "Graphik Medium";
      font-weight: 500;
      font-size: 15px;
      line-height: 32px;
      color: #121217;
      padding-left: 24px; }
      .custom-select .select-items > div.same-as-selected, .custom-select .select-items a.same-as-selected {
        position: relative; }
        .custom-select .select-items > div.same-as-selected:before, .custom-select .select-items a.same-as-selected:before {
          content: "";
          position: absolute;
          left: 0;
          width: 12px;
          height: 8px;
          top: 50%;
          transform: translate(0, -50%);
          background-image: url(../images/icons/selected-tick.svg);
          background-repeat: no-repeat;
          background-size: 12px 8px;
          background-position: center center; }
  .custom-select .select-hide {
    display: none; }

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:ELEMENTS]
   ========================================================================== */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Graphik Medium";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: -0.16px;
  color: #000;
  min-width: 80px;
  padding: 0 6px;
  height: 36px;
  border-radius: 6px;
  background-color: #f3f3f3;
  cursor: pointer; }
  .btn:hover {
    color: #fff;
    background-color: #000; }
  .btn.pre-save.saved {
    background-color: #00c74f;
    color: #fff; }

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:MAIN]
   ========================================================================== */
@font-face {
  font-family: "Graphik Regular";
  src: url("../fonts/Graphik-Regular-Web.eot");
  src: url("../fonts/Graphik-Regular-Web.eot#iefix") format("embedded-opentype"), url("../fonts/Graphik-Regular-Web.woff2") format("woff2"), url("../fonts/Graphik-Regular-Web.woff") format("woff"), url("../fonts/Graphik-Regular-Web.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: "Graphik Medium";
  src: url("../fonts/Graphik-Medium-Web.eot");
  src: url("../fonts/Graphik-Medium-Web.eot#iefix") format("embedded-opentype"), url("../fonts/Graphik-Medium-Web.woff2") format("woff2"), url("../fonts/Graphik-Medium-Web.woff") format("woff"), url("../fonts/Graphik-Medium-Web.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: "Graphik Semibold";
  src: url("../fonts/Graphik-Semibold-Web.eot");
  src: url("../fonts/Graphik-Semibold-Web.eot#iefix") format("embedded-opentype"), url("../fonts/Graphik-Semibold-Web.woff2") format("woff2"), url("../fonts/Graphik-Semibold-Web.woff") format("woff"), url("../fonts/Graphik-Semibold-Web.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }
.main-content {
  padding-top: 30px; }

#app {
  position: relative;
  min-height: 100vh; }
  #app:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4); }

.main-content {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 50px; }
  @media only screen and (max-width: 635px) {
    .main-content {
      flex-direction: column;
      padding-top: 0; } }
  .main-content .logo {
    max-width: 150px; }
    @media only screen and (min-width: 635.01px) {
      .main-content .logo {
        position: fixed;
        left: 25px;
        top: 25px; } }
    @media only screen and (max-width: 635px) {
      .main-content .logo {
        display: none; } }
  @media only screen and (max-width: 635px) {
    .main-content .section-widget {
      flex-basis: 100%;
      max-width: 100%; } }
  @media only screen and (min-width: 635.01px) {
    .main-content .languages {
      position: fixed;
      right: 25px;
      top: 25px; } }
  @media only screen and (max-width: 635px) {
    .main-content .languages {
      margin: 30px auto 0 auto;
      width: 100%;
      padding: 0 20px; } }

@media only screen and (max-width: 635px) {
  main > .container {
    padding: 0; } }

h1 {
  font-family: "Graphik Medium";
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -0.3px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin: 0; }

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: none !important; }

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:widget]
   ========================================================================== */
.section-widget {
  flex-basis: 375px;
  max-width: 375px; }

.widget {
  display: flex;
  flex-direction: column;
  width: 100%; }
  .widget--top {
    padding: 50px 25px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media only screen and (max-width: 635px) {
      .widget--top {
        padding: 35px 25px 30px; } }
    .widget--top > * {
      z-index: 2;
      position: relative; }
    .widget--top:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.3;
      mix-blend-mode: multiply;
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 100%);
      z-index: 1; }
  .widget--mid {
    background-color: #000;
    padding: 15px 15px; }
  .widget--bottom {
    padding: 20px 19px 20px 20px;
    background-color: #fff; }
    .widget--bottom img.video-overview-image {
      border-radius: 6px;
      margin-bottom: 10px; }

.image-cover {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  margin-bottom: 25px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 205px;
  height: 205px; }
  .image-cover:before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d8d8d8;
    opacity: 0.3;
    mix-blend-mode: multiply;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 100%); }

.release-date {
  display: block;
  margin-top: 7px;
  opacity: 0.6;
  font-family: "Graphik Medium";
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: #fff; }

.countdown {
  display: flex;
  align-items: center;
  justify-content: center; }
  .countdown img {
    margin-right: 8px; }
  .countdown span {
    display: block;
    font-family: "Graphik Medium";
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #fff; }

.tabs {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: solid 1px rgba(189, 191, 195, 0.5); }
  @media only screen and (max-width: 500px) {
    .tabs {
      overflow: auto; } }
  .tabs span {
    display: block;
    font-family: "Graphik Medium";
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: -0.2px;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer; }
    .tabs span:hover {
      color: #000; }
    .tabs span:not(:last-of-type) {
      margin-right: 30px; }
    .tabs span.active {
      color: #000;
      position: relative; }
      .tabs span.active:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 0;
        background-color: #000;
        height: 2px;
        width: 100%; }

.tab-content {
  display: none; }
  .tab-content.active {
    display: block; }
  .tab-content__stores .tab-content__item, .tab-content__social .tab-content__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 66px; }
    .tab-content__stores .tab-content__item.border, .tab-content__social .tab-content__item.border {
      border-bottom: solid 1px rgba(189, 191, 195, 0.25); }
  .tab-content__videos {
    margin-top: 25px; }
    .tab-content__videos .tab-content__item:not(:last-of-type) {
      margin-bottom: 25px; }
    .tab-content__videos .tab-content__item a {
      display: block;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      margin-bottom: 10px; }
      .tab-content__videos .tab-content__item a:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-image: url(../images/icons/play.svg);
        background-size: 70px 70px;
        background-repeat: no-repeat;
        background-position: center;
        width: 70px;
        height: 70px; }
    .tab-content__videos .tab-content__item span {
      display: block;
      font-family: "Graphik Medium";
      font-size: 15px;
      font-weight: 500;
      line-height: 20px;
      color: #000000; }
  .tab-content__merchandise {
    margin-top: 25px; }
    .tab-content__merchandise .frame {
      width: 100%;
      background-color: #f3f3f3;
      border-radius: 6px;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center; }
    .tab-content__merchandise h3 {
      font-family: "Graphik Medium";
      font-size: 15px;
      font-weight: 500;
      line-height: 20px;
      color: #000;
      margin-top: 11px; }
    .tab-content__merchandise span {
      display: block;
      opacity: 0.6;
      font-family: "Graphik Medium";
      font-size: 14px;
      font-weight: 500;
      line-height: 19px;
      color: #000;
      margin-top: 1px; }
    .tab-content__merchandise a:not(.merchandise_link) {
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Graphik Medium";
      font-size: 14px;
      font-weight: 500;
      line-height: 1.64;
      letter-spacing: -0.16px;
      color: #000;
      margin-top: 26px;
      width: 100%;
      border-radius: 6px;
      border: solid 1px #000;
      height: 45px; }
    .tab-content__merchandise img {
      max-height: 100%; }

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
footer {
  padding: 30px 0 71px; }
  @media only screen and (max-width: 635px) {
    footer {
      padding: 26px 0 29px; } }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 635px) {
    .site-footer {
      margin-left: 0; } }
  .site-footer a {
    display: block;
    font-family: "Graphik Medium";
    font-weight: 500;
    font-size: 15px;
    opacity: 0.5;
    line-height: 1.53;
    letter-spacing: -0.17px;
    color: #fff; }
    .site-footer a:first-of-type {
      padding-right: 15px;
      position: relative; }
      .site-footer a:first-of-type:after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        width: 1px;
        height: 25px;
        opacity: 0.25;
        background-color: #fff; }
    .site-footer a:last-of-type {
      padding-left: 15px; }
      .site-footer a:last-of-type:after {
        display: none; }

/* ==========================================================================
   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; } }
.play-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto; }
  .play-btn.play-icon {
    background: url("../../v2/images/play-icon.png") no-repeat transparent;
    background-size: contain; }
  .play-btn.pause-icon {
    background: url("../../v2/images/pause-icon.png") no-repeat transparent;
    background-size: contain; }

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