/**
 * styles.scss
 * ---
 * Main `sass` file. Import here `sass` files
 */
/**
 * modules/variables
 * ---
 */
/**
 * Typography
 */
/**
 * Colors
 */
/**
 * Grid
 */
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Sizing Variables ================*/
/**
 * modules/mixins
 * ---
 */
/*================ Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/app/assets/stylesheets/addons/_prefixer.scss

  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/**
 * modules/fonts
 * ---
 * Declare fonts here
 */
/*
@font-face {
  font-family: "Font-Name";
  src: url("fonts/font-name.eot");
  src: url("fonts/font-name.eot?#iefix") format("embedded-opentype"),
    url("fonts/font-name.woff") format("woff"),
    url("fonts/font-name.ttf") format("truetype"),
    url("fonts/font-name.svg#font-name") format("svg");
  font-weight: normal;
  font-style: normal;
}
*/
/*============================================================================
  Grid
    - Based on CSS Wizardry grid
==============================================================================*/
.grid {
    *zoom: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: -30px; }
    .grid::after {
      content: '';
      display: table;
      clear: both; }
  
  .grid__item {
    float: left;
    padding-left: 30px;
    width: 100%; }
    .grid__item[class*='--push'] {
      position: relative; }
  
  /*============================================================================
    Reversed grids allow you to structure your source in the opposite
    order to how your rendered layout will appear.
  ==============================================================================*/
  .grid--rev {
    direction: rtl;
    text-align: left; }
    .grid--rev > .grid__item {
      direction: ltr;
      text-align: left;
      float: right; }
  
  /*============================================================================
    Grid Columns
      - Create width classes, prepended by the breakpoint name.
  ==============================================================================*/
  /*================ Grid push classes ================*/
  /*================ Clearfix helper on uniform grids ================*/
  /*================ Build Base Grid Classes ================*/
  /** Whole */
  .one-whole {
    width: 100%; }
  
  /* Halves */
  .one-half {
    width: 50%; }
  
  /* Thirds */
  .one-third {
    width: 33.33333%; }
  
  .two-thirds {
    width: 66.66667%; }
  
  /* Quarters */
  .one-quarter {
    width: 25%; }
  
  .two-quarters {
    width: 50%; }
  
  .three-quarters {
    width: 75%; }
  
  /* Fifths */
  .one-fifth {
    width: 20%; }
  
  .two-fifths {
    width: 40%; }
  
  .three-fifths {
    width: 60%; }
  
  .four-fifths {
    width: 80%; }
  
  /* Sixths */
  .one-sixth {
    width: 16.66667%; }
  
  .two-sixths {
    width: 33.33333%; }
  
  .three-sixths {
    width: 50%; }
  
  .four-sixths {
    width: 66.66667%; }
  
  .five-sixths {
    width: 83.33333%; }
  
  /* Eighths */
  .one-eighth {
    width: 12.5%; }
  
  .two-eighths {
    width: 25%; }
  
  .three-eighths {
    width: 37.5%; }
  
  .four-eighths {
    width: 50%; }
  
  .five-eighths {
    width: 62.5%; }
  
  .six-eighths {
    width: 75%; }
  
  .seven-eighths {
    width: 87.5%; }
  
  /* Tenths */
  .one-tenth {
    width: 10%; }
  
  .two-tenths {
    width: 20%; }
  
  .three-tenths {
    width: 30%; }
  
  .four-tenths {
    width: 40%; }
  
  .five-tenths {
    width: 50%; }
  
  .six-tenths {
    width: 60%; }
  
  .seven-tenths {
    width: 70%; }
  
  .eight-tenths {
    width: 80%; }
  
  .nine-tenths {
    width: 90%; }
  
  /* Twelfths */
  .one-twelfth {
    width: 8.33333%; }
  
  .two-twelfths {
    width: 16.66667%; }
  
  .three-twelfths {
    width: 25%; }
  
  .four-twelfths {
    width: 33.33333%; }
  
  .five-twelfths {
    width: 41.66667%; }
  
  .six-twelfths {
    width: 50%; }
  
  .seven-twelfths {
    width: 58.33333%; }
  
  .eight-twelfths {
    width: 66.66667%; }
  
  .nine-twelfths {
    width: 75%; }
  
  .ten-twelfths {
    width: 83.33333%; }
  
  .eleven-twelfths {
    width: 91.66667%; }
  
  .show {
    display: block !important; }
  
  .hide {
    display: none !important; }
  
  .text-left {
    text-align: left !important; }
  
  .text-right {
    text-align: right !important; }
  
  .text-center {
    text-align: center !important; }
  
  /*================ Build Responsive Grid Classes ================*/
  @media only screen and (max-width: 749px) {
    /** Whole */
    .small--one-whole {
      width: 100%; }
    /* Halves */
    .small--one-half {
      width: 50%; }
    /* Thirds */
    .small--one-third {
      width: 33.33333%; }
    .small--two-thirds {
      width: 66.66667%; }
    /* Quarters */
    .small--one-quarter {
      width: 25%; }
    .small--two-quarters {
      width: 50%; }
    .small--three-quarters {
      width: 75%; }
    /* Fifths */
    .small--one-fifth {
      width: 20%; }
    .small--two-fifths {
      width: 40%; }
    .small--three-fifths {
      width: 60%; }
    .small--four-fifths {
      width: 80%; }
    /* Sixths */
    .small--one-sixth {
      width: 16.66667%; }
    .small--two-sixths {
      width: 33.33333%; }
    .small--three-sixths {
      width: 50%; }
    .small--four-sixths {
      width: 66.66667%; }
    .small--five-sixths {
      width: 83.33333%; }
    /* Eighths */
    .small--one-eighth {
      width: 12.5%; }
    .small--two-eighths {
      width: 25%; }
    .small--three-eighths {
      width: 37.5%; }
    .small--four-eighths {
      width: 50%; }
    .small--five-eighths {
      width: 62.5%; }
    .small--six-eighths {
      width: 75%; }
    .small--seven-eighths {
      width: 87.5%; }
    /* Tenths */
    .small--one-tenth {
      width: 10%; }
    .small--two-tenths {
      width: 20%; }
    .small--three-tenths {
      width: 30%; }
    .small--four-tenths {
      width: 40%; }
    .small--five-tenths {
      width: 50%; }
    .small--six-tenths {
      width: 60%; }
    .small--seven-tenths {
      width: 70%; }
    .small--eight-tenths {
      width: 80%; }
    .small--nine-tenths {
      width: 90%; }
    /* Twelfths */
    .small--one-twelfth {
      width: 8.33333%; }
    .small--two-twelfths {
      width: 16.66667%; }
    .small--three-twelfths {
      width: 25%; }
    .small--four-twelfths {
      width: 33.33333%; }
    .small--five-twelfths {
      width: 41.66667%; }
    .small--six-twelfths {
      width: 50%; }
    .small--seven-twelfths {
      width: 58.33333%; }
    .small--eight-twelfths {
      width: 66.66667%; }
    .small--nine-twelfths {
      width: 75%; }
    .small--ten-twelfths {
      width: 83.33333%; }
    .small--eleven-twelfths {
      width: 91.66667%; }
    .grid--uniform .small--one-half:nth-child(2n+1),
    .grid--uniform .small--one-third:nth-child(3n+1),
    .grid--uniform .small--one-quarter:nth-child(4n+1),
    .grid--uniform .small--one-fifth:nth-child(5n+1),
    .grid--uniform .small--one-sixth:nth-child(6n+1),
    .grid--uniform .small--two-sixths:nth-child(3n+1),
    .grid--uniform .small--three-sixths:nth-child(2n+1),
    .grid--uniform .small--one-eighth:nth-child(8n+1),
    .grid--uniform .small--two-eighths:nth-child(4n+1),
    .grid--uniform .small--four-eighths:nth-child(2n+1),
    .grid--uniform .small--five-tenths:nth-child(2n+1),
    .grid--uniform .small--one-twelfth:nth-child(12n+1),
    .grid--uniform .small--two-twelfths:nth-child(6n+1),
    .grid--uniform .small--three-twelfths:nth-child(4n+1),
    .grid--uniform .small--four-twelfths:nth-child(3n+1),
    .grid--uniform .small--six-twelfths:nth-child(2n+1) {
      clear: both; }
    .small--show {
      display: block !important; }
    .small--hide {
      display: none !important; }
    .small--text-left {
      text-align: left !important; }
    .small--text-right {
      text-align: right !important; }
    .small--text-center {
      text-align: center !important; } }
  
  @media only screen and (min-width: 750px) {
    /** Whole */
    .medium-up--one-whole {
      width: 100%; }
    /* Halves */
    .medium-up--one-half {
      width: 50%; }
    /* Thirds */
    .medium-up--one-third {
      width: 33.33333%; }
    .medium-up--two-thirds {
      width: 66.66667%; }
    /* Quarters */
    .medium-up--one-quarter {
      width: 25%; }
    .medium-up--two-quarters {
      width: 50%; }
    .medium-up--three-quarters {
      width: 75%; }
    /* Fifths */
    .medium-up--one-fifth {
      width: 20%; }
    .medium-up--two-fifths {
      width: 40%; }
    .medium-up--three-fifths {
      width: 60%; }
    .medium-up--four-fifths {
      width: 80%; }
    /* Sixths */
    .medium-up--one-sixth {
      width: 16.66667%; }
    .medium-up--two-sixths {
      width: 33.33333%; }
    .medium-up--three-sixths {
      width: 50%; }
    .medium-up--four-sixths {
      width: 66.66667%; }
    .medium-up--five-sixths {
      width: 83.33333%; }
    /* Eighths */
    .medium-up--one-eighth {
      width: 12.5%; }
    .medium-up--two-eighths {
      width: 25%; }
    .medium-up--three-eighths {
      width: 37.5%; }
    .medium-up--four-eighths {
      width: 50%; }
    .medium-up--five-eighths {
      width: 62.5%; }
    .medium-up--six-eighths {
      width: 75%; }
    .medium-up--seven-eighths {
      width: 87.5%; }
    /* Tenths */
    .medium-up--one-tenth {
      width: 10%; }
    .medium-up--two-tenths {
      width: 20%; }
    .medium-up--three-tenths {
      width: 30%; }
    .medium-up--four-tenths {
      width: 40%; }
    .medium-up--five-tenths {
      width: 50%; }
    .medium-up--six-tenths {
      width: 60%; }
    .medium-up--seven-tenths {
      width: 70%; }
    .medium-up--eight-tenths {
      width: 80%; }
    .medium-up--nine-tenths {
      width: 90%; }
    /* Twelfths */
    .medium-up--one-twelfth {
      width: 8.33333%; }
    .medium-up--two-twelfths {
      width: 16.66667%; }
    .medium-up--three-twelfths {
      width: 25%; }
    .medium-up--four-twelfths {
      width: 33.33333%; }
    .medium-up--five-twelfths {
      width: 41.66667%; }
    .medium-up--six-twelfths {
      width: 50%; }
    .medium-up--seven-twelfths {
      width: 58.33333%; }
    .medium-up--eight-twelfths {
      width: 66.66667%; }
    .medium-up--nine-twelfths {
      width: 75%; }
    .medium-up--ten-twelfths {
      width: 83.33333%; }
    .medium-up--eleven-twelfths {
      width: 91.66667%; }
    .grid--uniform .medium-up--one-half:nth-child(2n+1),
    .grid--uniform .medium-up--one-third:nth-child(3n+1),
    .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
    .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
    .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
    .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
    .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
    .grid--uniform .medium-up--one-eighth:nth-child(8n+1),
    .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
    .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
    .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
    .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
    .grid--uniform .medium-up--two-twelfths:nth-child(6n+1),
    .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
    .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
    .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
      clear: both; }
    .medium-up--show {
      display: block !important; }
    .medium-up--hide {
      display: none !important; }
    .medium-up--text-left {
      text-align: left !important; }
    .medium-up--text-right {
      text-align: right !important; }
    .medium-up--text-center {
      text-align: center !important; } }
  
  @media only screen and (min-width: 990px) {
    /** Whole */
    .large-up--one-whole {
      width: 100%; }
    /* Halves */
    .large-up--one-half {
      width: 50%; }
    /* Thirds */
    .large-up--one-third {
      width: 33.33333%; }
    .large-up--two-thirds {
      width: 66.66667%; }
    /* Quarters */
    .large-up--one-quarter {
      width: 25%; }
    .large-up--two-quarters {
      width: 50%; }
    .large-up--three-quarters {
      width: 75%; }
    /* Fifths */
    .large-up--one-fifth {
      width: 20%; }
    .large-up--two-fifths {
      width: 40%; }
    .large-up--three-fifths {
      width: 60%; }
    .large-up--four-fifths {
      width: 80%; }
    /* Sixths */
    .large-up--one-sixth {
      width: 16.66667%; }
    .large-up--two-sixths {
      width: 33.33333%; }
    .large-up--three-sixths {
      width: 50%; }
    .large-up--four-sixths {
      width: 66.66667%; }
    .large-up--five-sixths {
      width: 83.33333%; }
    /* Eighths */
    .large-up--one-eighth {
      width: 12.5%; }
    .large-up--two-eighths {
      width: 25%; }
    .large-up--three-eighths {
      width: 37.5%; }
    .large-up--four-eighths {
      width: 50%; }
    .large-up--five-eighths {
      width: 62.5%; }
    .large-up--six-eighths {
      width: 75%; }
    .large-up--seven-eighths {
      width: 87.5%; }
    /* Tenths */
    .large-up--one-tenth {
      width: 10%; }
    .large-up--two-tenths {
      width: 20%; }
    .large-up--three-tenths {
      width: 30%; }
    .large-up--four-tenths {
      width: 40%; }
    .large-up--five-tenths {
      width: 50%; }
    .large-up--six-tenths {
      width: 60%; }
    .large-up--seven-tenths {
      width: 70%; }
    .large-up--eight-tenths {
      width: 80%; }
    .large-up--nine-tenths {
      width: 90%; }
    /* Twelfths */
    .large-up--one-twelfth {
      width: 8.33333%; }
    .large-up--two-twelfths {
      width: 16.66667%; }
    .large-up--three-twelfths {
      width: 25%; }
    .large-up--four-twelfths {
      width: 33.33333%; }
    .large-up--five-twelfths {
      width: 41.66667%; }
    .large-up--six-twelfths {
      width: 50%; }
    .large-up--seven-twelfths {
      width: 58.33333%; }
    .large-up--eight-twelfths {
      width: 66.66667%; }
    .large-up--nine-twelfths {
      width: 75%; }
    .large-up--ten-twelfths {
      width: 83.33333%; }
    .large-up--eleven-twelfths {
      width: 91.66667%; }
    .grid--uniform .large-up--one-half:nth-child(2n+1),
    .grid--uniform .large-up--one-third:nth-child(3n+1),
    .grid--uniform .large-up--one-quarter:nth-child(4n+1),
    .grid--uniform .large-up--one-fifth:nth-child(5n+1),
    .grid--uniform .large-up--one-sixth:nth-child(6n+1),
    .grid--uniform .large-up--two-sixths:nth-child(3n+1),
    .grid--uniform .large-up--three-sixths:nth-child(2n+1),
    .grid--uniform .large-up--one-eighth:nth-child(8n+1),
    .grid--uniform .large-up--two-eighths:nth-child(4n+1),
    .grid--uniform .large-up--four-eighths:nth-child(2n+1),
    .grid--uniform .large-up--five-tenths:nth-child(2n+1),
    .grid--uniform .large-up--one-twelfth:nth-child(12n+1),
    .grid--uniform .large-up--two-twelfths:nth-child(6n+1),
    .grid--uniform .large-up--three-twelfths:nth-child(4n+1),
    .grid--uniform .large-up--four-twelfths:nth-child(3n+1),
    .grid--uniform .large-up--six-twelfths:nth-child(2n+1) {
      clear: both; }
    .large-up--show {
      display: block !important; }
    .large-up--hide {
      display: none !important; }
    .large-up--text-left {
      text-align: left !important; }
    .large-up--text-right {
      text-align: right !important; }
    .large-up--text-center {
      text-align: center !important; } }
  
  /*================ Build Grid Push Classes ================*/
  @media only screen and (max-width: 749px) {
    /* Halves */
    .small--push-one-half {
      left: 50%; }
    /* Thirds */
    .small--push-one-third {
      left: 33.33333%; }
    .small--push-two-thirds {
      left: 66.66667%; }
    /* Quarters */
    .small--push-one-quarter {
      left: 25%; }
    .small--push-two-quarters {
      left: 50%; }
    .small--push-three-quarters {
      left: 75%; }
    /* Fifths */
    .small--push-one-fifth {
      left: 20%; }
    .small--push-two-fifths {
      left: 40%; }
    .small--push-three-fifths {
      left: 60%; }
    .small--push-four-fifths {
      left: 80%; }
    /* Sixths */
    .small--push-one-sixth {
      left: 16.66667%; }
    .small--push-two-sixths {
      left: 33.33333%; }
    .small--push-three-sixths {
      left: 50%; }
    .small--push-four-sixths {
      left: 66.66667%; }
    .small--push-five-sixths {
      left: 83.33333%; }
    /* Eighths */
    .small--push-one-eighth {
      left: 12.5%; }
    .small--push-two-eighths {
      left: 25%; }
    .small--push-three-eighths {
      left: 37.5%; }
    .small--push-four-eighths {
      left: 50%; }
    .small--push-five-eighths {
      left: 62.5%; }
    .small--push-six-eighths {
      left: 75%; }
    .small--push-seven-eighths {
      left: 87.5%; }
    /* Tenths */
    .small--push-one-tenth {
      left: 10%; }
    .small--push-two-tenths {
      left: 20%; }
    .small--push-three-tenths {
      left: 30%; }
    .small--push-four-tenths {
      left: 40%; }
    .small--push-five-tenths {
      left: 50%; }
    .small--push-six-tenths {
      left: 60%; }
    .small--push-seven-tenths {
      left: 70%; }
    .small--push-eight-tenths {
      left: 80%; }
    .small--push-nine-tenths {
      left: 90%; }
    /* Twelfths */
    .small--push-one-twelfth {
      left: 8.33333%; }
    .small--push-two-twelfths {
      left: 16.66667%; }
    .small--push-three-twelfths {
      left: 25%; }
    .small--push-four-twelfths {
      left: 33.33333%; }
    .small--push-five-twelfths {
      left: 41.66667%; }
    .small--push-six-twelfths {
      left: 50%; }
    .small--push-seven-twelfths {
      left: 58.33333%; }
    .small--push-eight-twelfths {
      left: 66.66667%; }
    .small--push-nine-twelfths {
      left: 75%; }
    .small--push-ten-twelfths {
      left: 83.33333%; }
    .small--push-eleven-twelfths {
      left: 91.66667%; } }
  
  @media only screen and (min-width: 750px) {
    /* Halves */
    .medium-up--push-one-half {
      left: 50%; }
    /* Thirds */
    .medium-up--push-one-third {
      left: 33.33333%; }
    .medium-up--push-two-thirds {
      left: 66.66667%; }
    /* Quarters */
    .medium-up--push-one-quarter {
      left: 25%; }
    .medium-up--push-two-quarters {
      left: 50%; }
    .medium-up--push-three-quarters {
      left: 75%; }
    /* Fifths */
    .medium-up--push-one-fifth {
      left: 20%; }
    .medium-up--push-two-fifths {
      left: 40%; }
    .medium-up--push-three-fifths {
      left: 60%; }
    .medium-up--push-four-fifths {
      left: 80%; }
    /* Sixths */
    .medium-up--push-one-sixth {
      left: 16.66667%; }
    .medium-up--push-two-sixths {
      left: 33.33333%; }
    .medium-up--push-three-sixths {
      left: 50%; }
    .medium-up--push-four-sixths {
      left: 66.66667%; }
    .medium-up--push-five-sixths {
      left: 83.33333%; }
    /* Eighths */
    .medium-up--push-one-eighth {
      left: 12.5%; }
    .medium-up--push-two-eighths {
      left: 25%; }
    .medium-up--push-three-eighths {
      left: 37.5%; }
    .medium-up--push-four-eighths {
      left: 50%; }
    .medium-up--push-five-eighths {
      left: 62.5%; }
    .medium-up--push-six-eighths {
      left: 75%; }
    .medium-up--push-seven-eighths {
      left: 87.5%; }
    /* Tenths */
    .medium-up--push-one-tenth {
      left: 10%; }
    .medium-up--push-two-tenths {
      left: 20%; }
    .medium-up--push-three-tenths {
      left: 30%; }
    .medium-up--push-four-tenths {
      left: 40%; }
    .medium-up--push-five-tenths {
      left: 50%; }
    .medium-up--push-six-tenths {
      left: 60%; }
    .medium-up--push-seven-tenths {
      left: 70%; }
    .medium-up--push-eight-tenths {
      left: 80%; }
    .medium-up--push-nine-tenths {
      left: 90%; }
    /* Twelfths */
    .medium-up--push-one-twelfth {
      left: 8.33333%; }
    .medium-up--push-two-twelfths {
      left: 16.66667%; }
    .medium-up--push-three-twelfths {
      left: 25%; }
    .medium-up--push-four-twelfths {
      left: 33.33333%; }
    .medium-up--push-five-twelfths {
      left: 41.66667%; }
    .medium-up--push-six-twelfths {
      left: 50%; }
    .medium-up--push-seven-twelfths {
      left: 58.33333%; }
    .medium-up--push-eight-twelfths {
      left: 66.66667%; }
    .medium-up--push-nine-twelfths {
      left: 75%; }
    .medium-up--push-ten-twelfths {
      left: 83.33333%; }
    .medium-up--push-eleven-twelfths {
      left: 91.66667%; } }
  
  h1, h2, h3, h4, h5, h6, p {
    line-height: 1.5em;
    margin: 0;
    margin-bottom: 0.5em; }
  
  h1, .h1 {
    font-size: 45px;
    font-weight: 700;
    color: #1475FF; }
    @media only screen and (max-width: 749px) {
      h1, .h1 {
        font-size: 25px; } }
  
  h2, .h2, .search-input {
    font-size: 29px;
    font-weight: 700;
    color: #1475FF; }
    @media only screen and (max-width: 749px) {
      h2, .h2, .search-input {
        font-size: 18px; } }
  
  h3, .h3 {
    font-size: 14px;
    font-weight: 500;
    color: #999189; }
  
  h4, .h4 {
    font-size: 17px;
    font-weight: 300;
    color: #999189; }
  
  h5, .h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1475FF; }
  
  h6, .h6 {
    font-size: 10px;
    font-weight: 300;
    color: #1475FF;
    text-transform: uppercase; }
  
  p {
    font-size: 14px;
    color: #999189; }
    @media only screen and (max-width: 749px) {
      p {
        font-size: 12px; } }
  
  a {
    color: #1475FF; }
  
  .btn {
    font-weight: 700;
    font-size: 16px;
    padding: 10px 30px;
    background-color: #1475FF;
    color: white;
    text-decoration: none;
    outline: none;
    display: inline-block;
    text-decoration: none !important;
    transition: all 0.3s;
    border: 2px solid #1475FF; }
    .btn:hover {
      background: white;
      color: #1475FF; }
  
  .slct {
    padding: 3px 40px 3px 10px;
    background-image: url(./img/icons/down-arrow.png);
    background-position: right 10px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    background-color: white;
    border-radius: 0;
    border: 2px solid black;
    outline: none; }
    .slct option {
      color: #1475FF; }
  
  .slct--white {
    background-image: url(./img/icons/down-arrow-white.png);
    border: 2px solid white;
    background-color: transparent; }
  
  .slct--blue {
    background-image: url(./img/icons/down-arrow-blue.png);
    border: 2px solid #1475FF;
    background-color: transparent; }
  
  /**
   * partials/reset
   * ---
   * Reset file
   * NOTE: also `normalize.css` is used
   */
  *,
  *:after,
  *:before {
    box-sizing: border-box; }
  
  html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: transparent; }
  
  body {
    font-family: "Gotham SSm A", "Gotham SSm B", Helvetica, Arial, "Open Sans", sans-serif;
    font-size: 140%;
    line-height: 1.5;
    color: #444;
    background-color: #fff; }
  
  img {
    max-width: 100%;
    vertical-align: middle;
    height: auto; }
  
  a {
    text-decoration: none; }
    a:focus, a:hover {
      text-decoration: underline; }
  
  input[type="text"],
  input[type="search"] {
    box-sizing: border-box; }
  
  ::selection {
    background-color: #04A4CC;
    color: #fff;
    text-shadow: none; }
  
  /**
   * partials/wordpress
   * ---
   * Wordpess core classes
   */
  /**
   * Alignment
   */
  .alignnone {
    margin: 5px 15px 15px 0; }
  
  .aligncenter {
    display: block;
    margin: 5px auto; }
  
  .alignright {
    float: right;
    margin: 5px 0 15px 15px; }
  
  .alignleft {
    float: left;
    margin: 5px 15px 15px 0; }
  
  /**
   * Gallery & images
   */
  .wp-caption {
    max-width: 100%; }
    .wp-caption img {
      max-width: 100%;
      height: auto;
      padding: 0;
      margin: 0; }
  
  .wp-caption .wp-caption-text,
  .gallery-caption {
    text-align: center;
    font-size: 16px;
    color: #A7A9AC;
    padding: 30px;
    margin: 0;
    line-height: 1.5; }
  
  /**
   * partials/utils
   * ---
   * Utils classes
   */
  .clear:before, .clear:after {
    content: " ";
    display: table; }
  
  .clear:after {
    clear: both; }
  
  .reset-box {
    padding: 0;
    margin: 0; }
  
  /**
   * partials/wrapper
   * ---
   */
  .wrapper {
    max-width: 1280px;
    padding: 0 30px;
    margin: 0 auto;
    position: relative; }
  
  /**
   * partials/header
   * ---
   */
  .utility-container {
    background-color: #000A3C;
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    color: white;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 12px; }
    .utility-container a {
      color: white; }
  
  .utility-item {
    padding-right: 30px; }
    .utility-item:last-of-type {
      padding-right: 0; }
    .utility-item:nth-of-type(2) {
      -webkit-flex-grow: 1;
      -moz-flex-grow: 1;
      flex-grow: 1; }
    @media only screen and (max-width: 749px) {
      .utility-item {
        padding-right: 15px; } }
  
  .utility-select {
    cursor: pointer; }
    .utility-select span {
      margin-right: 15px; }
    .utility-select select {
      text-transform: uppercase;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      -ms-appearance: none; }
  
  .social {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex; }
  
  .social-item {
    padding: 0 5px; }
    .social-item:first-of-type {
      padding-left: 0; }
    .social-item:last-of-type {
      padding-right: 0; }
  
  .nav-container {
    padding: 10px 30px;
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    color: #1475FF; }
    .nav-container .social a {
      color: #1475FF; }
  
  .nav-select {
    font-size: 12px; }
    .nav-select select {
      text-transform: uppercase; }
  
  .nav ul {
    list-style-type: none;
    -webkit-display: flex;
    -moz-display: flex;
    display: flex; }
  
  .nav li {
    padding: 5px 15px;
    font-weight: bold; }
    .nav li a {
      color: black; }
  
  /**
   * partials/nav
   * ---
   * Menus
   */
  /**
   * partials/sidebar
   * ---
   */
  /**
   * partials/footer
   * ---
   */
  .footer {
    padding: 0; }
    .footer .logos {
      background-color: #EFEFEF; }
      @media only screen and (max-width: 749px) {
        .footer .logos {
          display: none; } }
    .footer h2 {
      font-size: 18px; }
    .footer .social {
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      justify-content: flex-end;
      margin-bottom: 10px; }
      @media only screen and (max-width: 749px) {
        .footer .social {
          -webkit-justify-content: center;
          -moz-justify-content: center;
          justify-content: center; } }
    .footer .social-item {
      background-color: #1475FF;
      border-radius: 50%;
      height: 25px;
      width: 25px;
      padding: 0;
      margin-left: 5px;
      -webkit-display: flex;
      -moz-display: flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center; }
      .footer .social-item a {
        color: white; }
    .footer h4 {
      margin-bottom: 0px;
      font-size: 12px; }
    .footer .info {
      padding: 30px 0; }
  
  @media only screen and (max-width: 749px) {
    .footer-info {
      margin-bottom: 30px;
      text-align: center; } }
  
  .newsletter {
    padding: 20px; }
  
    @media only screen and (max-width: 989px) {
      .newsletter {
        padding: 20px; } }
  
  .newsletter-signup {
    text-align: center;
    margin-bottom: 50px; }
  
  .newsletter-signup-title {
    margin-bottom: 30px; }
  
  .newsletter-container {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex; }
  
  .newsletter-field {
    padding: 10px;
    background-color: #EFEFEF;
    border: 0;
    min-width: 120px;
    -webkit-flex: 1;
    -moz-flex: 1;
    flex: 1; }
  
  
  .newsletter--sea-bg {
    background-color: #efefef;
  }
  
  .newsletter--sea h2{
    color: #000000;
  }
  
  .newsletter--sea .btn--red {
    background-color: red;
    border-color: red;
  }
  
  .newsletter--sea .btn--red:hover {
    background-color: white;
    color: red;
  }
  
  .newsletter--sea .newsletter-field {
    background-color: #ffffff;
  }
  
  .logos {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  
  .logos-item {
    padding: 15px; }
  
  @media only screen and (max-width: 749px) {
    .copyright {
      text-align: center; } }
  
  .mobile-logos {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    max-width: 300px;
    margin: 0 auto 30px; }
    .mobile-logos .logos-item {
      padding: 10px; }
    .mobile-logos .logos-item:first-of-type {
      text-align: center;
      width: 100%;
      border-bottom: 2px solid #888;
      padding-bottom: 20px;
      margin-bottom: 15px; }
    .mobile-logos .logos-item:nth-of-type(2) {
      display: none; }
  
  /**
   * partials/print
   * ---
   * Print version
   * (from https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css)
   */
  @media print {
    *,
    *:before,
    *:after {
      background: transparent !important;
      color: #000 !important;
      /* Black prints faster: h5bp.com/s */
      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,
    blockquote {
      border: 1px solid #999;
      page-break-inside: avoid; }
    thead {
      display: table-header-group;
      /* h5bp.com/t */ }
    tr,
    img {
      page-break-inside: avoid; }
    img {
      max-width: 100% !important; }
    p,
    h2,
    h3 {
      orphans: 3;
      widows: 3; }
    h2,
    h3 {
      page-break-after: avoid; } }
  
  .featured {
    background: #EFEFEF;
    padding: 30px 0; }
  
  .featured--large {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    position: relative; }
    @media only screen and (max-width: 989px) {
      .featured--large {
        min-height: 250px;
        margin-bottom: 20px; } }
    .featured--large .featured--content {
      background-color: rgba(255, 255, 255, 0.9);
      padding: 30px;
      max-width: 500px;
      margin: auto; }
      @media only screen and (min-width: 990px) {
        .featured--large .featured--content {
          position: absolute;
          bottom: 30px;
          left: 50%;
          transform: translateX(-50%); } }
      @media only screen and (max-width: 749px) {
        .featured--large .featured--content {
          padding: 30px 10px;
          min-width: inherit; } }
      .featured--large .featured--content h2 {
        font-size: 29px; }
        .featured--large .featured--content h2 a {
          color: #231F20; }
        @media only screen and (max-width: 749px) {
          .featured--large .featured--content h2 {
            font-size: 20px; } }
    .featured--large .subscribe-featured--content {
      background-color: rgba(255, 255, 255, 0.9);
      width: calc(100% - 60px);
      position: absolute;
      left: 30px;
      top: 50%;
      transform: translateY(-50%); }
  
  @media only screen and (min-width: 990px) {
    .featured .grid .grid__item:last-of-type .featured--small {
      margin-bottom: 0; } }
  
  .featured-about .featured--large {
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
    @media only screen and (min-width: 990px) {
      .featured-about .featured--large .featured--content {
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%; } }
  
  @media only screen and (max-width: 989px) {
    .recent-posts .grid .grid__item:last-of-type .recent-posts-item {
      margin-bottom: 0; } }
  
  .featured--content {
    text-align: center; }
    .featured--content > div {
      width: 100%; }
    .featured--content div:last-of-type {
      margin-bottom: 0; }
    .featured--content h2 {
      color: #231F20; }
  
  .author-field, .date {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 300;
    color: #1475FF;
    margin-bottom: 10px; }
  
  .date {
    color: black; }
  
  .featured--small {
    width: 100%;
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap; }
    .featured--small .featured--image {
      width: 50%;
      min-height: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }
      @media only screen and (max-width: 989px) {
        .featured--small .featured--image {
          width: 100%;
          min-height: 225px; } }
    .featured--small .featured--content {
      width: 50%;
      padding: 15px;
      background-color: white;
      min-height: 100%;
      -webkit-display: flex;
      -moz-display: flex;
      display: flex;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center;
      border-bottom: 3px solid #000A3C; }
      @media only screen and (max-width: 989px) {
        .featured--small .featured--content {
          width: 100%;
          min-height: auto;
          border-bottom: 3px solid #000A3C !important; } }
    .featured--small h2 a {
      color: black; }
  
  .featured .featured--small {
    height: 180px;
    margin-bottom: 30px; }
    .featured .featured--small .featured--content h2 {
      font-size: 14px; }
    @media only screen and (max-width: 989px) {
      .featured .featured--small {
        height: 400px; } }
  
  .posts .featured--small {
    min-height: 500px;
    padding: 10px; }
    @media only screen and (max-width: 989px) {
      .posts .featured--small {
        padding: 0;
        margin-bottom: 20px;
        min-height: 0; }
        .posts .featured--small .featured--content h2 {
          font-size: 14px; } }
  
  .posts .featured--content {
    padding: 50px;
    border-bottom: 0; }
    .posts .featured--content h2 a {
      color: black; }
    @media only screen and (max-width: 989px) {
      .posts .featured--content {
        padding: 50px 20px; } }
  
  .featured--meta {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    padding-top: 30px; }
  
  .recent-posts {
    padding: 100px 0;
    background-color: #EFEFEF; }
    @media only screen and (max-width: 989px) {
      .recent-posts {
        padding: 50px 0; } }
  
  .related-posts {
    padding: 50px 0;
    background-color: #EFEFEF; }
  
  .posts {
    background-color: #EFEFEF;
    padding: 30px 0; }
  
  .related-posts-title {
    text-align: center;
    margin-bottom: 20px; }
  
  .recent-posts-container, .posts-container {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap; }
  
  .posts-container {
    margin: 0 -10px 0; }
    @media only screen and (max-width: 989px) {
      .posts-container {
        margin: 0; } }
  
  .recent-posts-item {
    padding: 10px;
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column; }
    @media only screen and (max-width: 989px) {
      .recent-posts-item {
        margin-bottom: 20px;
        padding: 0;
        width: 100%; } }
  
  .recent-posts-item--image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 225px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s; }
    .recent-posts-item--image img {
      min-width: 100%; }
  
  .recent-posts-item--container {
    height: 250px;
    width: 100%; }
  
  .recent-posts-item--content {
    padding: 20px;
    background-color: white;
    border-bottom: 3px solid #1475FF;
    height: 100%;
    -webkit-flex: 1;
    -moz-flex: 1;
    flex: 1;
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column; }
    .recent-posts-item--content h2 {
      font-size: 16px; }
      .recent-posts-item--content h2 a {
        color: black; }
    .recent-posts-item--content p {
      flex: 1; }
  
  .quotes {
    padding: 50px 0; }
  
  .quotes-slider {
    position: relative;
    padding: 0 100px; }
    .quotes-slider .slick-arrow {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media only screen and (max-width: 749px) {
        .quotes-slider .slick-arrow {
          width: 15px; } }
    .quotes-slider .slick-next {
      right: 0; }
    .quotes-slider .slick-prev {
      left: 0; }
    @media only screen and (max-width: 749px) {
      .quotes-slider {
        padding: 0 25px; } }
  
  .quotes-slide {
    text-align: center; }
  
  .quotes-slide-attribution p {
    color: black; }
  
  .content {
    padding: 75px 30px 50px; }
    .content p {
      color: black;
      margin-bottom: 30px; }
    @media only screen and (max-width: 989px) {
      .content {
        padding: 50px; } }
  
  blockquote {
    text-align: center;
    width: 100%;
    background-color: #EFEFEF;
    margin: 0;
    padding: 100px;
    margin-bottom: 30px; }
    blockquote p {
      font-size: 45px;
      color: #1475FF !important;
      font-weight: bold; }
      @media only screen and (max-width: 749px) {
        blockquote p {
          font-size: 30px; } }
    @media only screen and (max-width: 749px) {
      blockquote {
        padding: 50px 25px; } }
  
  .social-sidebar {
    position: fixed;
    left: 0px;
    top: 50%;
    z-index: 100;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%); }
  
  .social-sidebar__item {
    margin: 10px 3px;
    padding: 5px;
    width: 25px;
    height: 25px;
    background-color: #1475FF;
    border-radius: 50%;
    color: white;
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
    .social-sidebar__item:hover {
      text-decoration: none;
      opacity: 0.7; }
  
  .title-container {
    margin: 50px 0;
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column; }
  
  .category-title {
    text-align: center;
    margin: 40px 0 60px; }
    .category-title span {
      color: black; }
  
  .search-icon {
    cursor: pointer; }
  
  .search-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(20, 117, 255, 0.9);
    z-index: 200;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
  
  .search-overlay--hidden {
    display: none; }
  
  .search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer; }
  
  .search-container {
    width: 550px;
    margin: auto; }
    @media only screen and (max-width: 749px) {
      .search-container {
        width: 100%;
        padding: 0 30px; } }
  
  .search-overlay-container {
    width: 550px;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%; }
    @media only screen and (max-width: 749px) {
      .search-overlay-container {
        width: 100%;
        padding: 0 30px; } }
  
  .search-input {
    background-image: url(./img/search-icon.png);
    background-position: right 20px center;
    background-repeat: no-repeat;
    padding: 20px;
    padding-right: 50px;
    border: 0;
    color: #1475FF;
    outline: none;
    width: 100%; }
    .search-input::-webkit-input-placeholder {
      color: #1475FF; }
    .search-input:-moz-placeholder {
      color: #1475FF; }
    .search-input::-moz-placeholder {
      color: #1475FF; }
    .search-input:-ms-input-placeholder {
      color: #1475FF; }
  
  form.search {
    width: 100%;
    margin-bottom: 30px; }
  
  .search-related {
    text-align: center; }
    .search-related h2 {
      color: white;
      margin-bottom: 30px; }
  
  .search-related-items {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3; }
  
  .search-related-item {
    font-size: 16px; }
    .search-related-item a {
      color: white; }
  
  .search-title .search-input {
    border: 3px solid; }
  
  .no-results {
    display: block;
    width: 100%;
    text-align: center; }
  
  .search-results-container {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -10px;
    margin: -10px -10px 60px; }
    .search-results-container .posts-container {
      margin: 0 -10px -60px 0; }
    @media only screen and (max-width: 749px) {
      .search-results-container {
        margin: 0; } }
  
  .filter-container {
    padding: 10px; }
    @media only screen and (max-width: 749px) {
      .filter-container {
        padding: 0 0 20px; } }
  
  .filter {
    padding: 30px;
    background: white;
    height: 100%; }
  
  .filter-meta {
    text-transform: uppercase;
    font-size: 10px;
    color: #A7A9AC;
    font-weight: 300;
    margin-bottom: 10px; }
  
  .filter-item {
    border-bottom: 2px solid #1475FF; }
    .filter-item:first-of-type {
      border-top: 2px solid #1475FF; }
  
  .filter-title {
    padding: 5px 0;
    cursor: pointer;
    position: relative; }
    .filter-title h2 {
      margin-bottom: 0; }
  
  .filter--closed:after {
    content: "";
    background-image: url("./img/icons/plus@2x.png");
    height: 15px;
    width: 15px;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%); }
  
  .filter--open:after {
    content: "";
    background-image: url("./img/icons/minus@2x.png");
    height: 2px;
    width: 15px;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%); }
  
  .filter-item-inner {
    margin-bottom: 10px;
    display: none; }
  
  .about-posts-container {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap; }
    .about-posts-container .recent-posts-item--container {
      height: 200px; }
    .about-posts-container .recent-posts-item--content {
      text-align: center; }
    .about-posts-container .recent-posts-item--image {
      height: 300px; }
  
  .related-topics {
    padding: 30px 0; }
  
  .category-active {
    border: 2px solid #1475FF; }
    .category-active a {
      color: #1475FF !important; }
      .category-active a:hover {
        text-decoration: none;
        color: black !important;
        border-color: black; }
  
  .tooltip {
    position: relative; }
    .tooltip:after {
      position: absolute;
      content: "";
      width: 0px;
      height: 0px;
      border-top: 15px solid transparent;
      border-right: 15px solid transparent;
      border-bottom: 15px solid #EFEFEF;
      border-left: 15px solid transparent;
      bottom: -30px;
      left: 50%;
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      transform: translate(-50%); }
  
  .alm-reveal {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap; }
  
  .ajax-load-more-wrap {
    width: 100%; }
  
  .pagination {
    text-align: center;
    width: 100%;
    padding: 20px; }
  
  #post-404 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px; }
  
  .featured--custom-logo {
    -webkit-display: flex;
    -moz-display: flex;
    display: flex; }
    .featured--custom-logo > div {
      padding: 0 10px;
      max-width: 120px;
      width: 120px; }
      .featured--custom-logo > div:last-of-type {
        padding-right: 0; }
  
  .subscribe-section {
    background-color: #EFEFEF; }
    .subscribe-section .newsletter-signup {
      margin-bottom: 0; }
    @media only screen and (max-width: 989px) {
      .subscribe-section .wrapper {
        padding: 0; }
      .subscribe-section .featured {
        padding: 0; }
      .subscribe-section .featured--large {
        min-height: 325px; } }
    .subscribe-section .newsletter-field {
      background-color: white; }
  
  select::-ms-expand {
    display: none; }
  
  /* Slider */
  .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent; }
  
  .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0; }
    .slick-list:focus {
      outline: none; }
    .slick-list.dragging {
      cursor: pointer;
      cursor: hand; }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  
  .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block; }
    .slick-track:before, .slick-track:after {
      content: "";
      display: table; }
    .slick-track:after {
      clear: both; }
    .slick-loading .slick-track {
      visibility: hidden; }
  
  .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none; }
    [dir="rtl"] .slick-slide {
      float: right; }
    .slick-slide img {
      display: block; }
    .slick-slide.slick-loading img {
      display: none; }
    .slick-slide.dragging img {
      pointer-events: none; }
    .slick-initialized .slick-slide {
      display: block; }
    .slick-loading .slick-slide {
      visibility: hidden; }
    .slick-vertical .slick-slide {
      display: block;
      height: auto;
      border: 1px solid transparent; }
  
  .slick-arrow.slick-hidden {
    display: none; }
  
  /*# sourceMappingURL=style.css.map */
  