/*============================================================================
  Shopify Timber
  Copyright 2016 Shopify Inc.
  Author Carson Shold @cshold
  Built with Sass - http://sass-lang.com/

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use @imports in this file
        * Use grunt or gulp tasks to enable @imports - https://github.com/Shopify/shopify-css-import
    - Helpers variables, mixins, and starter classes are provided. Change as needed.
    - The file is prepped with a CSS reset
    - The font icons are prepared using https://icomoon.io/app
==============================================================================*/
/*============================================================================
  Table of Contents

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Reponsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("https://fonts.shopifycdn.com/open_sans/opensans_n4.5460e0463a398b1075386f51084d8aa756bafb17.woff2?h1=cHJpYWNhZGVteS5vcmc&h2=cmlhY2FkZW15Lm9yZw&hmac=2204bb6d4446eab136e4749156da777a5174531824d56a981b9b9de3846a3752") format("woff2"), url("https://fonts.shopifycdn.com/open_sans/opensans_n4.8512334118d0e9cf94c4626d298dba1c9f12a294.woff?h1=cHJpYWNhZGVteS5vcmc&h2=cmlhY2FkZW15Lm9yZw&hmac=e890bbec703f79100ea925a3efe681f97540548751526e3f6167b436bf45383b") format("woff"); }

@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("https://fonts.shopifycdn.com/open_sans/opensans_n4.5460e0463a398b1075386f51084d8aa756bafb17.woff2?h1=cHJpYWNhZGVteS5vcmc&h2=cmlhY2FkZW15Lm9yZw&hmac=2204bb6d4446eab136e4749156da777a5174531824d56a981b9b9de3846a3752") format("woff2"), url("https://fonts.shopifycdn.com/open_sans/opensans_n4.8512334118d0e9cf94c4626d298dba1c9f12a294.woff?h1=cHJpYWNhZGVteS5vcmc&h2=cmlhY2FkZW15Lm9yZw&hmac=e890bbec703f79100ea925a3efe681f97540548751526e3f6167b436bf45383b") format("woff"); }

@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("https://fonts.shopifycdn.com/open_sans/opensans_n4.5460e0463a398b1075386f51084d8aa756bafb17.woff2?h1=cHJpYWNhZGVteS5vcmc&h2=cmlhY2FkZW15Lm9yZw&hmac=2204bb6d4446eab136e4749156da777a5174531824d56a981b9b9de3846a3752") format("woff2"), url("https://fonts.shopifycdn.com/open_sans/opensans_n4.8512334118d0e9cf94c4626d298dba1c9f12a294.woff?h1=cHJpYWNhZGVteS5vcmc&h2=cmlhY2FkZW15Lm9yZw&hmac=e890bbec703f79100ea925a3efe681f97540548751526e3f6167b436bf45383b") format("woff"); }

@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/icons.eot?v=15839920060943556384");
  src: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/icons.eot?v=15839920060943556384#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/icons.woff?v=16994515853337970273") format("woff"), url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/icons.ttf?v=15269834025022278972") format("truetype"), url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/icons.svg?v=163269811207092844#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: '';
    display: table;
    clear: both; }

/*============================================================================
  Prefixer mixin for generating vendor prefixes:
    - Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
    - Usage:

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

      // Output:
      .element {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
      }
==============================================================================*/
/*============================================================================
  Layer promotion mixin for creating smoother animations with higher FPS.
==============================================================================*/
/*============================================================================
  Dependency-free breakpoint mixin
    - Based on http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
    - Usage docs: http://shopify.github.io/Timber/#sass-mixins
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0; }

*:focus {
  outline: none; }

html {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

address {
  font-style: normal; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: transparent !important;
  background-image: none !important;
  color: unset !important; }

/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns, a fixed gutter size, and BEM classes
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid items
==============================================================================*/
/* Force clearfix on grids */
.grid, .grid--rev, .grid--full,
.grid-uniform {
  *zoom: 1; }
  .grid:after, .grid--rev:after, .grid--full:after,
  .grid-uniform:after {
    content: '';
    display: table;
    clear: both; }

/* Manual grid__item clearfix */
.grid__item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -15px; }

.grid__item {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  vertical-align: top;
  width: 100%; }

/*============================================================================
  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; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.333%; }

.two-thirds {
  width: 66.666%; }

/* 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.666%; }

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

/* 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.333%; }

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.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; }

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 767px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.333%; }

  .small--two-thirds {
    width: 66.666%; }

  /* 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.666%; }

  .small--two-sixths {
    width: 33.333%; }

  .small--three-sixths {
    width: 50%; }

  .small--four-sixths {
    width: 66.666%; }

  .small--five-sixths {
    width: 83.333%; }

  /* 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.333%; }

  .small--two-twelfths {
    width: 16.666%; }

  .small--three-twelfths {
    width: 25%; }

  .small--four-twelfths {
    width: 33.333%; }

  .small--five-twelfths {
    width: 41.666%; }

  .small--six-twelfths {
    width: 50%; }

  .small--seven-twelfths {
    width: 58.333%; }

  .small--eight-twelfths {
    width: 66.666%; }

  .small--nine-twelfths {
    width: 75%; }

  .small--ten-twelfths {
    width: 83.333%; }

  .small--eleven-twelfths {
    width: 91.666%; }

  .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; }

  .small--left {
    float: left !important; }

  .small--right {
    float: right !important; }

  .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--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; } }
@media only screen and (min-width: 768px) and (max-width: 1135px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

  /* Halves */
  .medium--one-half {
    width: 50%; }

  /* Thirds */
  .medium--one-third {
    width: 33.333%; }

  .medium--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .medium--one-quarter {
    width: 25%; }

  .medium--two-quarters {
    width: 50%; }

  .medium--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium--one-fifth {
    width: 20%; }

  .medium--two-fifths {
    width: 40%; }

  .medium--three-fifths {
    width: 60%; }

  .medium--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium--one-sixth {
    width: 16.666%; }

  .medium--two-sixths {
    width: 33.333%; }

  .medium--three-sixths {
    width: 50%; }

  .medium--four-sixths {
    width: 66.666%; }

  .medium--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }

  .medium--two-eighths {
    width: 25%; }

  .medium--three-eighths {
    width: 37.5%; }

  .medium--four-eighths {
    width: 50%; }

  .medium--five-eighths {
    width: 62.5%; }

  .medium--six-eighths {
    width: 75%; }

  .medium--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium--one-tenth {
    width: 10%; }

  .medium--two-tenths {
    width: 20%; }

  .medium--three-tenths {
    width: 30%; }

  .medium--four-tenths {
    width: 40%; }

  .medium--five-tenths {
    width: 50%; }

  .medium--six-tenths {
    width: 60%; }

  .medium--seven-tenths {
    width: 70%; }

  .medium--eight-tenths {
    width: 80%; }

  .medium--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }

  .medium--two-twelfths {
    width: 16.666%; }

  .medium--three-twelfths {
    width: 25%; }

  .medium--four-twelfths {
    width: 33.333%; }

  .medium--five-twelfths {
    width: 41.666%; }

  .medium--six-twelfths {
    width: 50%; }

  .medium--seven-twelfths {
    width: 58.333%; }

  .medium--eight-twelfths {
    width: 66.666%; }

  .medium--nine-twelfths {
    width: 75%; }

  .medium--ten-twelfths {
    width: 83.333%; }

  .medium--eleven-twelfths {
    width: 91.666%; }

  .medium--show {
    display: block !important; }

  .medium--hide {
    display: none !important; }

  .medium--text-left {
    text-align: left !important; }

  .medium--text-right {
    text-align: right !important; }

  .medium--text-center {
    text-align: center !important; }

  .medium--left {
    float: left !important; }

  .medium--right {
    float: right !important; }

  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 1135px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }

  /* Halves */
  .medium-down--one-half {
    width: 50%; }

  /* Thirds */
  .medium-down--one-third {
    width: 33.333%; }

  .medium-down--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .medium-down--one-quarter {
    width: 25%; }

  .medium-down--two-quarters {
    width: 50%; }

  .medium-down--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-down--one-fifth {
    width: 20%; }

  .medium-down--two-fifths {
    width: 40%; }

  .medium-down--three-fifths {
    width: 60%; }

  .medium-down--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }

  .medium-down--two-sixths {
    width: 33.333%; }

  .medium-down--three-sixths {
    width: 50%; }

  .medium-down--four-sixths {
    width: 66.666%; }

  .medium-down--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }

  .medium-down--two-eighths {
    width: 25%; }

  .medium-down--three-eighths {
    width: 37.5%; }

  .medium-down--four-eighths {
    width: 50%; }

  .medium-down--five-eighths {
    width: 62.5%; }

  .medium-down--six-eighths {
    width: 75%; }

  .medium-down--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }

  .medium-down--two-tenths {
    width: 20%; }

  .medium-down--three-tenths {
    width: 30%; }

  .medium-down--four-tenths {
    width: 40%; }

  .medium-down--five-tenths {
    width: 50%; }

  .medium-down--six-tenths {
    width: 60%; }

  .medium-down--seven-tenths {
    width: 70%; }

  .medium-down--eight-tenths {
    width: 80%; }

  .medium-down--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }

  .medium-down--two-twelfths {
    width: 16.666%; }

  .medium-down--three-twelfths {
    width: 25%; }

  .medium-down--four-twelfths {
    width: 33.333%; }

  .medium-down--five-twelfths {
    width: 41.666%; }

  .medium-down--six-twelfths {
    width: 50%; }

  .medium-down--seven-twelfths {
    width: 58.333%; }

  .medium-down--eight-twelfths {
    width: 66.666%; }

  .medium-down--nine-twelfths {
    width: 75%; }

  .medium-down--ten-twelfths {
    width: 83.333%; }

  .medium-down--eleven-twelfths {
    width: 91.666%; }

  .medium-down--show {
    display: block !important; }

  .medium-down--hide {
    display: none !important; }

  .medium-down--text-left {
    text-align: left !important; }

  .medium-down--text-right {
    text-align: right !important; }

  .medium-down--text-center {
    text-align: center !important; }

  .medium-down--left {
    float: left !important; }

  .medium-down--right {
    float: right !important; }

  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 1136px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

  /* Halves */
  .large--one-half {
    width: 50%; }

  /* Thirds */
  .large--one-third {
    width: 33.333%; }

  .large--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .large--one-quarter {
    width: 25%; }

  .large--two-quarters {
    width: 50%; }

  .large--three-quarters {
    width: 75%; }

  /* Fifths */
  .large--one-fifth {
    width: 20%; }

  .large--two-fifths {
    width: 40%; }

  .large--three-fifths {
    width: 60%; }

  .large--four-fifths {
    width: 80%; }

  /* Sixths */
  .large--one-sixth {
    width: 16.666%; }

  .large--two-sixths {
    width: 33.333%; }

  .large--three-sixths {
    width: 50%; }

  .large--four-sixths {
    width: 66.666%; }

  .large--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }

  .large--two-eighths {
    width: 25%; }

  .large--three-eighths {
    width: 37.5%; }

  .large--four-eighths {
    width: 50%; }

  .large--five-eighths {
    width: 62.5%; }

  .large--six-eighths {
    width: 75%; }

  .large--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .large--one-tenth {
    width: 10%; }

  .large--two-tenths {
    width: 20%; }

  .large--three-tenths {
    width: 30%; }

  .large--four-tenths {
    width: 40%; }

  .large--five-tenths {
    width: 50%; }

  .large--six-tenths {
    width: 60%; }

  .large--seven-tenths {
    width: 70%; }

  .large--eight-tenths {
    width: 80%; }

  .large--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }

  .large--two-twelfths {
    width: 16.666%; }

  .large--three-twelfths {
    width: 25%; }

  .large--four-twelfths {
    width: 33.333%; }

  .large--five-twelfths {
    width: 41.666%; }

  .large--six-twelfths {
    width: 50%; }

  .large--seven-twelfths {
    width: 58.333%; }

  .large--eight-twelfths {
    width: 66.666%; }

  .large--nine-twelfths {
    width: 75%; }

  .large--ten-twelfths {
    width: 83.333%; }

  .large--eleven-twelfths {
    width: 91.666%; }

  .large--show {
    display: block !important; }

  .large--hide {
    display: none !important; }

  .large--text-left {
    text-align: left !important; }

  .large--text-right {
    text-align: right !important; }

  .large--text-center {
    text-align: center !important; }

  .large--left {
    float: left !important; }

  .large--right {
    float: right !important; }

  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

/* Halves */
.push--one-half {
  left: 50%; }

/* Thirds */
.push--one-third {
  left: 33.333%; }

.push--two-thirds {
  left: 66.666%; }

/* Quarters */
.push--one-quarter {
  left: 25%; }

.push--two-quarters {
  left: 50%; }

.push--three-quarters {
  left: 75%; }

/* Fifths */
.push--one-fifth {
  left: 20%; }

.push--two-fifths {
  left: 40%; }

.push--three-fifths {
  left: 60%; }

.push--four-fifths {
  left: 80%; }

/* Sixths */
.push--one-sixth {
  left: 16.666%; }

.push--two-sixths {
  left: 33.333%; }

.push--three-sixths {
  left: 50%; }

.push--four-sixths {
  left: 66.666%; }

.push--five-sixths {
  left: 83.333%; }

/* Eighths */
.push--one-eighth {
  left: 12.5%; }

.push--two-eighths {
  left: 25%; }

.push--three-eighths {
  left: 37.5%; }

.push--four-eighths {
  left: 50%; }

.push--five-eighths {
  left: 62.5%; }

.push--six-eighths {
  left: 75%; }

.push--seven-eighths {
  left: 87.5%; }

/* Tenths */
.push--one-tenth {
  left: 10%; }

.push--two-tenths {
  left: 20%; }

.push--three-tenths {
  left: 30%; }

.push--four-tenths {
  left: 40%; }

.push--five-tenths {
  left: 50%; }

.push--six-tenths {
  left: 60%; }

.push--seven-tenths {
  left: 70%; }

.push--eight-tenths {
  left: 80%; }

.push--nine-tenths {
  left: 90%; }

/* Twelfths */
.push--one-twelfth {
  left: 8.333%; }

.push--two-twelfths {
  left: 16.666%; }

.push--three-twelfths {
  left: 25%; }

.push--four-twelfths {
  left: 33.333%; }

.push--five-twelfths {
  left: 41.666%; }

.push--six-twelfths {
  left: 50%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eight-twelfths {
  left: 66.666%; }

.push--nine-twelfths {
  left: 75%; }

.push--ten-twelfths {
  left: 83.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 768px) and (max-width: 1135px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium--one-third {
    left: 33.333%; }

  .push--medium--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium--one-quarter {
    left: 25%; }

  .push--medium--two-quarters {
    left: 50%; }

  .push--medium--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium--one-fifth {
    left: 20%; }

  .push--medium--two-fifths {
    left: 40%; }

  .push--medium--three-fifths {
    left: 60%; }

  .push--medium--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium--one-sixth {
    left: 16.666%; }

  .push--medium--two-sixths {
    left: 33.333%; }

  .push--medium--three-sixths {
    left: 50%; }

  .push--medium--four-sixths {
    left: 66.666%; }

  .push--medium--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }

  .push--medium--two-eighths {
    left: 25%; }

  .push--medium--three-eighths {
    left: 37.5%; }

  .push--medium--four-eighths {
    left: 50%; }

  .push--medium--five-eighths {
    left: 62.5%; }

  .push--medium--six-eighths {
    left: 75%; }

  .push--medium--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }

  .push--medium--two-tenths {
    left: 20%; }

  .push--medium--three-tenths {
    left: 30%; }

  .push--medium--four-tenths {
    left: 40%; }

  .push--medium--five-tenths {
    left: 50%; }

  .push--medium--six-tenths {
    left: 60%; }

  .push--medium--seven-tenths {
    left: 70%; }

  .push--medium--eight-tenths {
    left: 80%; }

  .push--medium--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }

  .push--medium--two-twelfths {
    left: 16.666%; }

  .push--medium--three-twelfths {
    left: 25%; }

  .push--medium--four-twelfths {
    left: 33.333%; }

  .push--medium--five-twelfths {
    left: 41.666%; }

  .push--medium--six-twelfths {
    left: 50%; }

  .push--medium--seven-twelfths {
    left: 58.333%; }

  .push--medium--eight-twelfths {
    left: 66.666%; }

  .push--medium--nine-twelfths {
    left: 75%; }

  .push--medium--ten-twelfths {
    left: 83.333%; }

  .push--medium--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 1135px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium-down--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }

  .push--medium-down--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium-down--one-quarter {
    left: 25%; }

  .push--medium-down--two-quarters {
    left: 50%; }

  .push--medium-down--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium-down--one-fifth {
    left: 20%; }

  .push--medium-down--two-fifths {
    left: 40%; }

  .push--medium-down--three-fifths {
    left: 60%; }

  .push--medium-down--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }

  .push--medium-down--two-sixths {
    left: 33.333%; }

  .push--medium-down--three-sixths {
    left: 50%; }

  .push--medium-down--four-sixths {
    left: 66.666%; }

  .push--medium-down--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }

  .push--medium-down--two-eighths {
    left: 25%; }

  .push--medium-down--three-eighths {
    left: 37.5%; }

  .push--medium-down--four-eighths {
    left: 50%; }

  .push--medium-down--five-eighths {
    left: 62.5%; }

  .push--medium-down--six-eighths {
    left: 75%; }

  .push--medium-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }

  .push--medium-down--two-tenths {
    left: 20%; }

  .push--medium-down--three-tenths {
    left: 30%; }

  .push--medium-down--four-tenths {
    left: 40%; }

  .push--medium-down--five-tenths {
    left: 50%; }

  .push--medium-down--six-tenths {
    left: 60%; }

  .push--medium-down--seven-tenths {
    left: 70%; }

  .push--medium-down--eight-tenths {
    left: 80%; }

  .push--medium-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }

  .push--medium-down--two-twelfths {
    left: 16.666%; }

  .push--medium-down--three-twelfths {
    left: 25%; }

  .push--medium-down--four-twelfths {
    left: 33.333%; }

  .push--medium-down--five-twelfths {
    left: 41.666%; }

  .push--medium-down--six-twelfths {
    left: 50%; }

  .push--medium-down--seven-twelfths {
    left: 58.333%; }

  .push--medium-down--eight-twelfths {
    left: 66.666%; }

  .push--medium-down--nine-twelfths {
    left: 75%; }

  .push--medium-down--ten-twelfths {
    left: 83.333%; }

  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 1136px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }

  /* Halves */
  .push--large--one-half {
    left: 50%; }

  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }

  .push--large--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--large--one-quarter {
    left: 25%; }

  .push--large--two-quarters {
    left: 50%; }

  .push--large--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--large--one-fifth {
    left: 20%; }

  .push--large--two-fifths {
    left: 40%; }

  .push--large--three-fifths {
    left: 60%; }

  .push--large--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }

  .push--large--two-sixths {
    left: 33.333%; }

  .push--large--three-sixths {
    left: 50%; }

  .push--large--four-sixths {
    left: 66.666%; }

  .push--large--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }

  .push--large--two-eighths {
    left: 25%; }

  .push--large--three-eighths {
    left: 37.5%; }

  .push--large--four-eighths {
    left: 50%; }

  .push--large--five-eighths {
    left: 62.5%; }

  .push--large--six-eighths {
    left: 75%; }

  .push--large--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }

  .push--large--two-tenths {
    left: 20%; }

  .push--large--three-tenths {
    left: 30%; }

  .push--large--four-tenths {
    left: 40%; }

  .push--large--five-tenths {
    left: 50%; }

  .push--large--six-tenths {
    left: 60%; }

  .push--large--seven-tenths {
    left: 70%; }

  .push--large--eight-tenths {
    left: 80%; }

  .push--large--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }

  .push--large--two-twelfths {
    left: 16.666%; }

  .push--large--three-twelfths {
    left: 25%; }

  .push--large--four-twelfths {
    left: 33.333%; }

  .push--large--five-twelfths {
    left: 41.666%; }

  .push--large--six-twelfths {
    left: 50%; }

  .push--large--seven-twelfths {
    left: 58.333%; }

  .push--large--eight-twelfths {
    left: 66.666%; }

  .push--large--nine-twelfths {
    left: 75%; }

  .push--large--ten-twelfths {
    left: 83.333%; }

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
html {
  background-color: #014fa1; }

body {
  background-color: white; }

body#faq {
  background-color: #cdecf8; }

[tabindex='-1']:focus {
  outline: none; }

.wrapper {
  *zoom: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px; }
  .wrapper:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 767px) {
    .wrapper {
      padding: 0 30px; } }

.wrapper.wide {
  max-width: 1600px; }

@media only screen and (max-width: 1440px) {
  .wrapper {
    max-width: 1200px; } }
.main-content {
  display: block;
  margin-top: 0;
  padding-top: 60px; }

@media only screen and (max-width: 1135px) {
  .main-content {
    margin-top: 45px !important; }
    .main-content.fixed {
      margin-top: 45px !important; } }
/*============================================================================
  #Request Form
==============================================================================*/
.request-form-section {
  background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/request-bg.jpg?v=1057204125468199803");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0; }
  .request-form-section .request-form {
    background: #fff;
    padding: 90px;
    box-shadow: 0px 4px 20px 0px rgba(55, 61, 87, 0.05); }
    .request-form-section .request-form h2, .request-form-section .request-form .h2 {
      margin-bottom: 30px; }
    .request-form-section .request-form p {
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 60px; }
    .request-form-section .request-form form {
      max-width: 560px;
      margin: 0 auto;
      font-size: 16px; }
    .request-form-section .request-form .country-list,
    .request-form-section .request-form input[type="email"] {
      margin-bottom: 45px;
      width: 100%;
      border: none;
      border-bottom: 1px solid #0050a0;
      padding: 10px 0;
      font-size: 16px; }
    .request-form-section .request-form span {
      display: block;
      margin-bottom: 15px; }
    .request-form-section .request-form .submit-btn {
      margin: 0 auto;
      display: block; }

.shopify-challenge__container {
  margin-bottom: 60px !important; }

/* TOGGLE STYLING */
.toggle {
  margin: 0 0 30px;
  box-sizing: border-box;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

.toggle input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px; }

.toggle input + label {
  margin: 0;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: solid 1px #0050a0;
  background-color: transparent;
  font-size: 1rem;
  color: #0050a0;
  line-height: 1.25;
  font-weight: 300;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color .15s ease-out,  color .25s ease-out,  background-color .15s ease-out, box-shadow .15s ease-out;
  -webkit-box-flex: 0;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.toggle input + label:first-of-type {
  border-right: none; }

.toggle input + label:last-of-type {
  border-left: none; }

.toggle input:hover + label {
  border-color: #0050a0; }

.toggle input:checked + label {
  background-color: #0050a0;
  color: #FFF;
  border-color: #0050a0;
  z-index: 1; }

.toggle input:focus + label {
  outline: none;
  outline-offset: 0; }

@media only screen and (max-width: 767px) {
  .request-form-section .request-form {
    padding: 60px 30px; }

  .toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

  .toggle input + label:last-of-type {
    border-left: 1px solid #0050a0; }

  .toggle input + label {
    padding: 20px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }
/*============================================================================
  #Helper Classes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

.display-table {
  display: table;
  table-layout: fixed;
  width: 100%; }

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }

@media screen and (min-width: 1136px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.visually-hidden, .supports-fontface .icon-fallback-text .fallback-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 15px;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
  color: #4c4c4c;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }
  body:focus, body:hover, body:active,
  input:focus,
  input:hover,
  input:active,
  textarea:focus,
  textarea:hover,
  textarea:active,
  button:focus,
  button:hover,
  button:active,
  select:focus,
  select:hover,
  select:active {
    outline: none; }

input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  line-height: 1;
  color: #4c4c4c;
  font-size: 16px;
  overflow: visible;
  transition: all 0.3s ease-in-out; }

input:focus::-webkit-input-placeholder {
  color: #4c4c4c;
  transition: all 0.3s ease-in-out; }

input::-moz-placeholder {
  /* Firefox 19+ */
  line-height: 1;
  color: #4c4c4c;
  font-size: 16px;
  overflow: visible;
  transition: all 0.3s ease-in-out; }

input:focus::-moz-placeholder {
  color: #000;
  transition: all 0.3s ease-in-out; }

input:-ms-input-placeholder {
  /* IE 10+ */
  line-height: 1;
  color: #4c4c4c;
  font-size: 16px;
  overflow: visible;
  transition: all 0.3s ease-in-out; }

input:focus:-ms-input-placeholder {
  color: #4c4c4c;
  transition: all 0.3s ease-in-out; }

input:-moz-placeholder {
  /* Firefox 18- */
  line-height: 1;
  color: #4c4c4c;
  font-size: 16px;
  overflow: visible;
  transition: all 0.3s ease-in-out; }

input:focus:-moz-placeholder {
  color: #4c4c4c;
  transition: all 0.3s ease-in-out; }

textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 16px;
  color: #4c4c4c;
  overflow: visible;
  transition: all 0.3s ease-in-out; }

textarea:focus::-webkit-input-placeholder {
  color: #4c4c4c;
  transition: all 0.3s ease-in-out; }

textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 16px;
  color: #4c4c4c;
  overflow: visible;
  transition: all 0.3s ease-in-out; }

textarea:focus::-moz-placeholder {
  color: #4c4c4c;
  transition: all 0.3s ease-in-out; }

textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 16px;
  color: #4c4c4c;
  overflow: visible;
  transition: all 0.3s ease-in-out; }

textarea:focus:-ms-input-placeholder {
  color: #4c4c4c;
  transition: all 0.3s ease-in-out; }

textarea:-moz-placeholder {
  /* Firefox 18- */
  font-size: 16px;
  color: #4c4c4c;
  overflow: visible;
  transition: all 0.3s ease-in-out; }

textarea:focus:-moz-placeholder {
  color: #4c4c4c;
  transition: all 0.3s ease-in-out; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.2; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

.headline {
  margin-bottom: 30px;
  color: #0050a0; }
  .headline.inverted {
    color: #ffffff; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 3.06667em; }

h2, .h2 {
  font-size: 2.4em; }

h3, .h3 {
  font-size: 1.73333em; }

h4, .h4 {
  font-size: 1.33333em; }

h5, .h5 {
  font-size: 1.06667em; }

h6, .h6 {
  font-size: 0.93333em; }

p {
  margin: 0 0 15px 0; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

sup, sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #e5e5e5; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

/*================ Code ================*/
code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid rgba(255, 255, 255, 0.3);
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    margin: 15px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

/*================ Section Headers ================*/
.section-header {
  margin-bottom: 20px; }

@media screen and (min-width: 1136px) {
  .section-header {
    display: table;
    width: 100%; }

  .section-header__title {
    margin-bottom: 12px; }

  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header__left h1, .section-header__left .h1, .section-header__left h2, .section-header__left .h2, .section-header__left h3, .section-header__left .h3, .section-header__left h4, .section-header__left .h4,
    .section-header__left .h1, .section-header__left .h2, .section-header__left .h3, .section-header__left .h4 {
      margin-bottom: 0; }

  .section-header__right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 335px; } }
  @media screen and (min-width: 1136px) and (max-width: 1135px) {
    .section-header__right {
      margin-bottom: 30px; } }

.section-header__right .form-horizontal,
.section-header__right .collection-view {
  display: inline-block;
  vertical-align: middle; }
@media screen and (min-width: 768px) {
  .section-header__right label + select,
  .section-header__right .collection-view {
    margin-left: 15px; } }

.collection-view {
  display: inline-block;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  padding: 0 5px;
  height: 37px;
  overflow: hidden;
  /*================ Only show on larger screens ================*/ }
  @media screen and (min-width: 1136px) {
    .collection-view {
      display: inline-block; } }

.change-view {
  display: block;
  background: none;
  border: 0 none;
  float: left;
  padding: 10px 8px;
  color: #e5e5e5;
  line-height: 1; }
  .change-view:hover, .change-view:focus {
    color: #49baff; }

.change-view--active {
  cursor: default;
  color: #49baff; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px; }
  .rte a {
    text-decoration: underline; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 1em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
    .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 15px; }
  .rte li {
    margin-bottom: 0.4em; }

.rte--header {
  margin-bottom: 0; }

/*============================================================================
  #Links and Buttons
==============================================================================*/
a,
.text-link {
  color: #49baff;
  text-decoration: none;
  background: transparent; }

a:hover,
a:focus {
  color: #49baff; }

button {
  overflow: visible; }

button[disabled],
html input[disabled] {
  cursor: default; }

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary {
  display: inline-block;
  padding: 12px 36px;
  width: auto;
  margin: 0;
  line-height: 1.42;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.46, 0.01, 0.32, 1);
  /*================ Set primary button colors - can override later ================*/
  background-color: #49baff;
  color: white !important;
  text-transform: uppercase; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #49baff;
    color: white;
    transition: all 0.3s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background-color: #49baff;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary {
    cursor: default;
    color: #9d9d9d;
    background-color: #dddddd; }
  .btn.inverted, .inverted.btn--secondary,
  .rte .btn.inverted,
  .rte .inverted.btn--secondary {
    border: 1px solid #2f3854;
    background-color: #2f3854; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #014fa1; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #014fa1;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #014fa1;
    color: white; }

.btn--small {
  padding: 4px 5px;
  font-size: 0.8em; }

.btn--large {
  padding: 12px 15px;
  font-size: 1.06667em; }

.btn--full {
  width: 100%; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

/*============================================================================
  #Lists
==============================================================================*/
ul, ol {
  margin: 0 0 15px 20px;
  padding: 0; }

ol {
  list-style: decimal; }

ul ul, ul ol,
ol ol, ol ul {
  margin: 4px 0 5px 20px; }

li {
  margin-bottom: 0.25em; }

ul.square {
  list-style: square outside; }

ul.disc {
  list-style: disc outside; }

ol.alpha {
  list-style: lower-alpha outside; }

.no-bullets {
  list-style: none outside;
  margin-left: 0; }

.inline-list {
  margin-left: 0; }
  .inline-list li {
    display: inline-block;
    margin-bottom: 0; }

/*============================================================================
  #Tables
==============================================================================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

table.full {
  width: 100%;
  margin-bottom: 1em; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 15px;
  border: 1px solid #e5e5e5; }

/*============================================================================
  Responsive tables, defined with .table--responsive on table element.
  Only defined for IE9+
==============================================================================*/
@media screen and (max-width: 767px) {
  .table--responsive thead {
    display: none; }
  .table--responsive tr {
    display: block; }
  .table--responsive tr,
  .table--responsive td {
    float: left;
    clear: both;
    width: 100%; }
  .table--responsive th,
  .table--responsive td {
    display: block;
    text-align: right;
    padding: 15px; }
  .table--responsive td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }
  .table--responsive.cart-table img {
    margin: 0 auto; }
  .table--responsive.cart-table .js-qty {
    float: right; } }

@media screen and (max-width: 767px) {
  .table--small-hide {
    display: none !important; }

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #e5e5e5; } }
/*============================================================================
  #OOCSS Media Object
    - http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

.media-img {
  float: left;
  margin-right: 30px; }

.media-img-right {
  float: right;
  margin-left: 30px; }

.media-img img,
.media-img-right img {
  display: block; }

/*============================================================================
  #Images and Iframes
==============================================================================*/
img {
  border: 0 none; }

svg:not(:root) {
  overflow: hidden; }

img,
iframe {
  max-width: 100%; }

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

/*============================================================================
  #Forms
==============================================================================*/
form {
  margin-bottom: 0; }

.form-vertical {
  margin-bottom: 30px; }

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 1135px) {
  input,
  textarea {
    font-size: 16px; } }
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

button {
  background: none;
  border: none;
  cursor: pointer; }

button,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

button {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

fieldset {
  border: 1px solid #e5e5e5;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

button,
input[type="submit"] {
  cursor: pointer; }

input,
textarea,
select {
  border: 1px solid #e5e5e5;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 0px; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #dddddd;
    border-color: #9d9d9d; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 46px;
  min-width: 100%; }

/*================ Input element overrides ================*/
input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0 8px 0 0;
  padding: 0;
  width: auto; }

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox; }

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/ico-select.svg?v=14662514044390702916");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

option {
  color: #000;
  background-color: #fff; }

select::-ms-expand {
  display: none; }

/*================ Form labels ================*/
.hidden-label {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .ie9 .hidden-label, .lt-ie9 .hidden-label {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

label[for] {
  cursor: pointer; }

/*================ Horizontal Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }

/*================ Error styles ================*/
input.error,
select.error,
textarea.error {
  border-color: #d02e2e;
  background-color: #fff6f6;
  color: #d02e2e; }

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  -webkit-box-shadow: 0px 8px 5px -8px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 5px -8px rgba(0, 0, 0, 0.15); }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary {
    border-radius: 0px 0 0 0px; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary {
    border-radius: 0 0px 0px 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group .btn--secondary,
.input-group .input-group-field {
  height: 47px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none; }

.footer-newsletter .btn, .footer-newsletter .btn--secondary {
  background-color: #808285 !important;
  color: #fff; }

.input-group .input-group-field {
  width: 100%; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

@media only screen and (max-width: 600px) {
  .footer-newsletter {
    display: block; }
    .footer-newsletter input#Email {
      border-radius: 0px; }
    .footer-newsletter .input-group-btn {
      margin-top: 10px;
      display: block;
      width: 100%; }
      .footer-newsletter .input-group-btn input#subscribe {
        width: 100%;
        border-radius: 0px; } }
/*============================================================================
  #Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon:before {
  display: none; }

.supports-fontface .icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*================ Icon mapping ================*/
.icon-amazon_payments:before {
  content: "\e800"; }

.icon-american_express:before {
  content: "\41"; }

.icon-arrow-down:before {
  content: "\e607"; }

.icon-bitcoin:before {
  content: "\42"; }

.icon-cart:before {
  content: "\e600"; }

.icon-cirrus:before {
  content: "\43"; }

.icon-dankort:before {
  content: "\64"; }

.icon-diners_club:before {
  content: "\63"; }

.icon-discover:before {
  content: "\44"; }

.icon-dogecoin:before {
  content: "\e904"; }

.icon-dwolla:before {
  content: "\e905"; }

.icon-facebook:before {
  content: "\66"; }

.icon-fancy:before {
  content: "\46"; }

.icon-forbrugsforeningen:before {
  content: "\e906"; }

.icon-google-plus:before {
  content: "\e900"; }

.icon-grid-view:before {
  content: "\e603"; }

.icon-hamburger:before {
  content: "\e601"; }

.icon-instagram:before {
  content: "\e901"; }

.icon-interac:before {
  content: "\49"; }

.icon-jcb:before {
  content: "\4a"; }

.icon-list-view:before {
  content: "\e604"; }

.icon-litecoin:before {
  content: "\e908"; }

.icon-maestro:before {
  content: "\6d"; }

.icon-master:before {
  content: "\4d"; }

.icon-minus:before {
  content: "\e602"; }

.icon-paypal:before {
  content: "\50"; }

.icon-pinterest:before {
  content: "\70"; }

.icon-plus:before {
  content: "\e605"; }

.icon-rss:before {
  content: "\72"; }

.icon-search:before {
  content: "\73"; }

.icon-stripe:before {
  content: "\53"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-twitter:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-visa:before {
  content: "\56"; }

.icon-x:before {
  content: "\e606"; }

.icon-youtube:before {
  content: "\79"; }

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  margin-bottom: 0; }
  .payment-icons li {
    margin: 0 7.5px 7.5px;
    color: #ffffff;
    cursor: default; }
  .payment-icons .icon {
    font-size: 20px;
    line-height: 20px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

.social-icons {
  display: inline-block; }

.social-icons li {
  margin: 0 10px;
  vertical-align: middle;
  border-radius: 50%;
  background: #fff;
  height: 40px; }
  .social-icons li:first-child {
    margin-left: 0; }
  .social-icons li:last-child {
    margin-right: 0; }
  @media screen and (min-width: 768px) {
    .social-icons li {
      margin-left: 0; } }
  .social-icons li .icon {
    color: #004ea7;
    padding: 11px 12px;
    width: 40px; }
  .social-icons li a {
    color: white;
    line-height: 0; }
    .social-icons li a:hover {
      color: white; }

@media only screen and (max-width: 767px) {
  .social-icons li {
    margin: 5px; } }
/*============================================================================
  #Pagination
==============================================================================*/
.pagination {
  margin-bottom: 1em;
  text-align: center; }
  .pagination > span {
    display: inline-block;
    line-height: 1; }
  .pagination a {
    display: block; }
  .pagination a,
  .pagination .page.current {
    padding: 8px; }

/*============================================================================
  #Currency switcher
==============================================================================*/
#currencies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  line-height: 1.5;
  cursor: pointer;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 30px auto; }

#currencies span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 5px 10px;
  text-align: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border: 1px solid #00bcff;
  background: none transparent;
  font-size: 13px;
  width: calc(100% / 7); }

#currencies .middle {
  border-left: none; }

#currencies .selected {
  font-weight: normal;
  background: #e2f2ff; }

#currencies .right {
  border-left: none; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  padding: 0;
  -webkit-box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
  background: white;
  z-index: 100; }
  .site-header .wrapper {
    padding: 0 30px !important;
    max-width: 1600px; }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle; }

.upper-nav {
  padding: 0;
  z-index: 9;
  background-color: #008cc9; }

@media only screen and (max-width: 1135px) {
  .header--flex {
    padding: 5px 0; } }
.flex-left {
  -webkit-box-flex: 1;
  -ms-flex: auto 1;
  flex: auto 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flex-right {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 210px;
  flex: 0 0 210px; }

.site-header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0 !important; }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none;
    line-height: 0; }

.site-header__cart-toggle {
  display: inline-block; }

a.search-toggle {
  cursor: pointer;
  color: #cdced0; }

#search-nav {
  background-color: #000;
  line-height: 0;
  padding: 10px 0;
  display: none; }

.site-header__search {
  display: inline-block;
  max-width: 50%;
  margin-top: 0;
  width: 100%; }
  .site-header__search input.input-group-field {
    background: transparent;
    border-bottom: 1px solid #cdced0 !important;
    color: #cdced0; }

.search-bar {
  max-width: 100%; }
  @media screen and (max-width: 1135px) {
    .search-bar {
      margin-left: auto;
      margin-right: auto; } }

.cartHeader {
  position: relative; }

@media only screen and (max-width: 1135px) {
  .cartHeader {
    top: 5px; } }
.cartIcon {
  width: 30px; }
  .cartIcon.mobileCart {
    position: relative;
    top: 5px; }

.cart-icon {
  display: inline-block;
  height: 20px;
  width: 20px;
  position: relative;
  top: 2px; }

.cart-icon svg {
  fill: #cdced0; }

.cart-count {
  display: inline-block;
  position: relative;
  bottom: 2px;
  color: #cdced0;
  font-size: 13px;
  font-family: "Open Sans", sans-serif; }

#CartCount.hidden-count {
  display: none; }

#top-banner {
  width: 100%;
  text-align: center;
  padding: 0 10px;
  font-weight: 700; }

@media only screen and (max-width: 600px) {
  .site-nav__link {
    padding: 0px 5px; }

  #top-banner {
    font-size: 70% !important; } }
/* FIXED MENU */
.fixed-nav-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.fixed-cart {
  position: absolute;
  right: 10px;
  bottom: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out; }

.fixed-search {
  position: absolute;
  left: 10px;
  bottom: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out; }

.fixed-menu {
  box-shadow: 0px 4px 20px 0px rgba(55, 61, 87, 0.05); }

.fixed-menu.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999; }
  .fixed-menu.fixed .fixed-cart,
  .fixed-menu.fixed .fixed-search {
    opacity: 1;
    visibility: visible;
    transition: all 0.1s ease-in-out; }

#search-nav.fixed {
  position: fixed;
  width: 100%;
  top: 56px; }

@media only screen and (max-width: 1135px) {
  .site-header .wrapper {
    padding: 0 !important; }

  .header__trigger {
    float: right;
    z-index: 999; }

  .upper-nav {
    display: none; }

  .logo-nav {
    margin-top: 0 !important;
    padding-top: 0;
    position: absolute;
    width: 100%;
    top: 18px;
    z-index: 99; }

  .site-header__logo img {
    bottom: 0 !important; }

  .site-header__cart-toggle {
    position: relative;
    top: 13px;
    right: 15px;
    z-index: 999; }

  .fixed-menu {
    position: fixed !important;
    top: 0;
    width: 100%;
    background: #fff;
    height: 70px; }
    .fixed-menu.fixed {
      position: fixed !important;
      top: 0;
      width: 100%;
      background: #fff;
      height: 70px; }
    .fixed-menu .nav-bar {
      padding: 10px 0; } }
/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  background-color: transparent; }

.site-nav, .site-nav--mobile {
  font-size: 0.9em;
  cursor: default;
  margin: 0 30px;
  text-align: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block;
    text-align: left; }
  .site-nav > li, .site-nav--mobile > li {
    display: inline-block;
    position: relative;
    padding: 20px 0; }
    .site-nav > li:hover, .site-nav--mobile > li:hover {
      border-bottom: 2px solid #ddd;
      padding-bottom: 18px; }
    .site-nav > li.site-nav--active, .site-nav--mobile > li.site-nav--active {
      border-bottom: 2px solid #008cc8;
      padding-bottom: 18px; }
    .site-nav > li > a.site-nav__link, .site-nav--mobile > li > a.site-nav__link {
      padding: 15px 5px; }

.nav__quick--links {
  list-style: none;
  margin: 0;
  font-size: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1; }
  .nav__quick--links li {
    display: inline-block;
    padding: 10px 10px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-bottom: 0;
    transition: all .3s ease-in-out; }
    .nav__quick--links li:hover {
      background-color: #000;
      transition: all .3s ease-in-out; }
  .nav__quick--links a {
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.5); }
    .nav__quick--links a:last-child {
      border-right: none; }

.register-nav {
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: right;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%; }
  .register-nav li {
    margin-bottom: 0; }
  .register-nav .site-nav__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
    .register-nav .site-nav__link.btn.primary, .register-nav .site-nav__link.primary.btn--secondary {
      padding: 10px 20px; }

/*================ Home to hamburger and cart that toggle drawers ================*/
.site-nav--mobile {
  float: right; }
  .text-right .site-nav--mobile {
    margin: 0 -15px 0 0; }

.site-nav__link {
  display: block;
  text-decoration: none;
  padding: 10px 5px;
  margin: 0 10px;
  white-space: nowrap;
  color: #4c4c4c;
  font-size: 16px; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #4c4c4c; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px;
    padding-left: 7.5px; }
  .site-nav--active > .site-nav__link {
    font-weight: normal; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  opacity: 0;
  position: absolute;
  top: 100%;
  left: -10px;
  margin: -2px 10px;
  z-index: 5;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 20px 0px rgba(55, 61, 87, 0.05);
  visibility: hidden;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 270px;
  transform: translateY(-1em);
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    visibility: visible;
    opacity: 1;
    z-index: 3;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s; }
  .site-nav__dropdown a {
    background-color: transparent; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
      background-color: transparent; }

.site-nav__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

ul.dropdown__menu {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: max-content;
  background-color: transparent;
  padding-right: 30px;
  margin-bottom: 15px; }

.dropdown__banner {
  max-width: 360px; }

.img-container {
  width: 100%;
  height: 100%;
  position: relative; }

/*================ Search bar in header ================*/
.nav-search {
  position: relative;
  padding: 10px 0; }
  @media screen and (max-width: 1135px) {
    .nav-search {
      padding: 0 0 15px;
      margin: 0 auto;
      text-align: center; } }

/*============================================================================
  #Mobile Nav
  - List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
  margin: -15px -15px 0 -15px; }
  .mobile-nav li {
    margin-bottom: 0; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: transparent; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid transparent; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }
  .mobile-nav__item.mobile-nav__search:after {
    display: none; }

.mobile-nav__item a {
  display: block;
  font-size: 19px; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: white;
  padding: 15px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: white; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    background-color: transparent; }

.mobile-nav__item--active {
  font-weight: 300; }
  .mobile-nav__item--active a {
    color: #49baff !important; }

.mobile-nav__has-sublist {
  display: table;
  width: 100%; }
  .mobile-nav__has-sublist .mobile-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.mobile-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.mobile-nav__toggle-open {
  transform: rotate(0deg);
  transition: all 0.4s cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .mobile-nav--expanded .mobile-nav__toggle-open {
    transition: all 0.4s cubic-bezier(0.57, 0.06, 0.05, 0.95); }
    .mobile-nav--expanded .mobile-nav__toggle-open .icon-plus:before {
      content: "\e602"; }

.mobile-nav__toggle-close {
  display: none; }
  .mobile-nav--expanded .mobile-nav__toggle-close {
    display: none; }

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 700px;
    transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    padding-left: 30px;
    font-weight: normal; }

/*============================================================================
  #Drawers
==============================================================================*/
#overlay {
  background-color: transparent;
  opacity: 0;
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }

.js-drawer-open {
  overflow: hidden; }
  .js-drawer-open #overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }

.drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 15px 15px;
  max-width: 95%;
  z-index: 10000;
  color: white;
  background-color: #014fa1;
  background-image: linear-gradient(to right bottom, #014fa1, #005ead, #006eb7, #007dc1, #008cc9);
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .drawer.drawer--right {
    padding: 0 0 15px; }
    .drawer.drawer--right #CartContainer {
      padding: 0 15px; }
  .drawer.drawer--left {
    padding: 0 0 15px; }
    .drawer.drawer--left .mobile-nav {
      padding: 0 15px; }
  .drawer a {
    color: white; }
    .drawer a:hover, .drawer a:focus {
      opacity: 0.7; }
  .drawer input,
  .drawer textarea {
    border-color: transparent; }

.drawer--left {
  width: 400px;
  left: -400px; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(400px);
    -webkit-transform: translateX(400px);
    transform: translateX(400px); }
    .lt-ie9 .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  width: 400px;
  right: -400px;
  border-left: none; }
  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-400px);
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px); }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

#PageContainer {
  overflow: hidden; }

.is-moved-by-drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(400px);
    -webkit-transform: translateX(400px);
    transform: translateX(400px); }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-400px);
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px); }

.drawer__header {
  display: table;
  height: 70px;
  width: 100%;
  margin-bottom: 22px;
  border-bottom: 1px solid transparent;
  padding: 0 15px;
  -webkit-box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.1);
  background: #ffffff; }

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  color: #014fa1; }

.drawer__title {
  width: 100%; }

.drawer__close {
  width: 1%;
  text-align: center;
  font-size: 1.2em; }

.drawer__close button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit;
  font-size: 1.4em; }
  .drawer__close button:active, .drawer__close button:focus {
    background-color: transparent; }

.header__trigger {
  height: 0;
  right: -5px;
  overflow: hidden;
  padding-top: 40px;
  position: relative;
  top: 0px;
  width: 44px;
  margin: 0; }
  .header__trigger i {
    background: #014fa1;
    color: transparent;
    display: block;
    font-size: 0;
    height: 2px;
    left: 50%;
    margin-left: -9px;
    position: absolute;
    top: 50%;
    transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 25px; }
    .header__trigger i:after, .header__trigger i:before {
      background: #014fa1;
      content: "";
      height: 2px;
      left: 0;
      position: absolute;
      transition: all .4s ease-in-out;
      width: 25px; }
    .header__trigger i:before {
      bottom: -7px;
      transition: all .4s ease-in-out; }
    .header__trigger i:after {
      top: -7px;
      transition: all .4s ease-in-out; }

.mobile-logo.h1.site-header__logo.text-left {
  margin: 17px 30px;
  max-width: 150px; }

@media only screen and (max-width: 767px) {
  .header__trigger {
    right: -20px; }

  .mobile-logo.h1.site-header__logo.text-left {
    margin-left: 15px; } }
.js-drawer-open-left .header__trigger i:before {
  bottom: 0px;
  transition: all .4s ease-in-out; }
.js-drawer-open-left .header__trigger i:after {
  top: 0px;
  transition: all .4s ease-in-out; }

@media only screen and (max-width: 767px) {
  .drawer {
    max-width: 100%;
    width: 100%; }

  .drawer--left {
    width: 100%;
    left: -100%; }

  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }
/* ============ LOGIN DRAWER ============== */
#LoginDrawer {
  background: #fff;
  padding: 45px 45px; }
  #LoginDrawer .drawer__title {
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 300;
    margin-top: 60px;
    margin-bottom: 45px; }
  #LoginDrawer p {
    color: #49baff;
    font-size: 16px;
    line-height: 1.25;
    margin-top: 10px; }
  #LoginDrawer .drawer__close {
    text-align: right;
    font-size: 1.2em;
    display: table-cell;
    vertical-align: middle;
    font-weight: 300;
    color: #49baff; }
    #LoginDrawer .drawer__close button {
      border: 1px solid #00bcff;
      border-radius: 50%;
      padding: 5px 12px;
      font-size: 22px;
      right: 0; }
  #LoginDrawer #RecoverPassword {
    color: #49baff;
    text-align: right;
    display: block;
    font-size: 13px; }
  #LoginDrawer #HideRecoverPasswordLink {
    color: #49baff;
    text-align: right;
    font-size: 13px; }
  #LoginDrawer.drawer input {
    border-bottom: 1px solid #666;
    padding: 10px 0; }
  #LoginDrawer.drawer input.btn.btn--full, #LoginDrawer.drawer input.btn--full.btn--secondary {
    border-bottom: 1px solid transparent;
    margin-top: 30px; }
  #LoginDrawer input#CustomerEmail {
    margin-bottom: 30px; }
  #LoginDrawer input {
    border-bottom: 1px solid #0050a0;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 15px; }
  #LoginDrawer a.forgotPass {
    color: #49baff;
    display: block;
    width: 100%;
    text-align: right; }

.drawer--right {
  width: 480px;
  right: -480px; }

.js-drawer-open-right .drawer--right {
  display: block;
  -ms-transform: translateX(-480px);
  -webkit-transform: translateX(-480px);
  transform: translateX(-480px); }

@media only screen and (max-width: 767px) {
  .drawer--right {
    width: 100%;
    right: -100%; }

  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }
/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background-color: #014fa1;
  padding: 0;
  color: white; }
  .site-footer .wrapper {
    max-width: 1600px; }
  .site-footer a {
    color: white;
    font-size: 16px; }

.footer-upper {
  padding: 60px 0 30px; }
  .footer-upper .wrapper > .grid, .footer-upper .wrapper > .grid--rev, .footer-upper .wrapper > .grid--full {
    border-bottom: 1px solid #fff; }

.footer-lower {
  padding: 30px 0;
  background-color: #014fa1; }

.footer-menu {
  list-style: none;
  margin: 0; }
  .footer-menu li {
    line-height: 1.5;
    margin-bottom: 10px; }
    .footer-menu li a:hover {
      text-decoration: underline; }

.footer-contact h4, .footer-contact .h4 {
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 25px; }
.footer-contact .phone {
  font-weight: 700;
  font-size: 22px; }

@media only screen and (min-width: 1136px) {
  .footer-contact {
    text-align: right; } }
.footer-social {
  text-align: right;
  margin-bottom: 10px; }
  .footer-social > span {
    margin-right: 15px; }

.footer-legal {
  font-size: 12px; }

.footer-partners {
  text-align: center;
  font-size: 14px;
  padding-bottom: 30px; }

.footer-info {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px 0;
  text-align: center;
  font-size: 15px; }
  .footer-info span {
    padding: 0px 15px;
    border-right: 1px solid #fff; }
    .footer-info span:last-child {
      border-right: none; }

@media only screen and (min-width: 1136px) {
  .footer-panel {
    display: block !important; }

  .footer-accordion {
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 25px; }

  .footer-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

  .footer-menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    padding-right: 30px; } }
@media only screen and (max-width: 1135px) {
  footer .wrapper {
    max-width: 90%; }

  .footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0 15px;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    background-color: #014fa1; }
    .footer-accordion:after {
      font-family: "icons";
      text-decoration: none;
      speak: none;
      font-style: normal;
      font-weight: 200;
      font-variant: normal;
      text-transform: none;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      content: '\e605';
      color: #fff;
      float: right;
      margin-left: 5px;
      font-size: 15px;
      transform: rotate(0deg);
      transition: all 0.4s ease-in-out; }
    .footer-accordion.active:after {
      content: '\e602';
      transition: all 0.4s ease-in-out; }

  .footer-panel {
    padding: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    text-align: left; }
    .footer-panel li:last-child {
      margin-bottom: 20px; }

  ul.footer-menu li {
    line-height: 2; }

  .footer-social {
    margin-top: 30px;
    text-align: center; }

  .footer-contact {
    text-align: center;
    margin-top: 30px; } }
/*============================================================================
  #Product and Collection Grids
==============================================================================*/
body.template-collection {
  background-color: #f7f7f7; }

.template-collection .main-content {
  margin-bottom: 30px; }

.template-collection .collection-container {
  max-width: 1200px;
  margin: 0 auto; }

.grid__image {
  display: block;
  margin: 0 auto 15px; }
  .grid__image img {
    display: block;
    margin: 0 auto;
    /* -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }

.template-collection .shop--item {
  padding: 30px;
  margin: 30px 15px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #fff;
  border-radius: 6px; }
  .template-collection .shop--item:hover {
    -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); }

.prod--meta {
  text-align: center;
  margin-top: 15px; }
  .prod--meta .h5 {
    min-height: 45px;
    text-align: center; }
    .prod--meta .h5 span.prod-type {
      font-size: 0.9em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 0; }

.grid-price {
  min-height: 20px;
  margin-bottom: 0;
  text-align: center;
  margin-top: 15px;
  font-family: "Open Sans", sans-serif; }
  .grid-price .compare_price {
    color: #cc0000 !important;
    font-size: 0.9rem; }

.blog-grid-item {
  text-align: center;
  margin-bottom: 30px; }

/*============================================================================
  #Collection Page
==============================================================================*/
.filter--active {
  font-weight: bold; }

.template-collection h1.headline, .template-collection .headline.h1 {
  font-size: 2.6em;
  margin: 10px 0 30px;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  border-top: 1px solid #ddd; }

@media only screen and (max-width: 1135px) {
  .template-collection h1.headline, .template-collection .headline.h1 {
    font-size: 1.8em; } }
/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin-bottom: 30px; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    margin-right: 7px; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }

/*============================================================================
  #Homepage banner
==============================================================================*/
.template-index .main-content {
  margin-top: 0;
  padding-top: 0; }

.home-banner {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .home-banner .wrapper {
    position: relative;
    z-index: 2;
    padding-left: 15px;
    width: 100%; }
  .home-banner h2, .home-banner .h2 {
    max-width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 3em;
    color: #fff;
    margin-bottom: 15px; }
  .home-banner p {
    color: #fff;
    font-size: 22px;
    margin-bottom: 45px; }
  .home-banner .btn.secondary, .home-banner .secondary.btn--secondary {
    background-color: transparent;
    border: none; }
    .home-banner .btn.secondary span, .home-banner .secondary.btn--secondary span {
      margin-left: 7px;
      transition: all 0.3s ease-in-out; }
    .home-banner .btn.secondary:hover span, .home-banner .secondary.btn--secondary:hover span {
      margin-left: 13px;
      transition: all 0.3s ease-in-out; }

@media only screen and (max-width: 1135px) {
  .home-banner {
    height: unset;
    text-align: center; }
    .home-banner h2, .home-banner .h2 {
      padding: 15px 0;
      max-width: 100%;
      font-size: 2.5em;
      text-align: center;
      display: block;
      margin-top: 60px; } }
@media only screen and (max-width: 767px) {
  .home-banner {
    min-height: unset;
    padding: 60px 15px;
    text-align: center; }
    .home-banner h2, .home-banner .h2 {
      font-size: 2em; }
    .home-banner p {
      font-size: 18px; } }
@media only screen and (max-width: 400px) {
  .home-banner .btn, .home-banner .btn--secondary {
    margin: 10px auto;
    width: 75%; }
    .home-banner .btn.secondary, .home-banner .secondary.btn--secondary {
      border: 1px solid #fff; }
      .home-banner .btn.secondary span, .home-banner .secondary.btn--secondary span {
        display: none; } }
/*============================================================================
  #Homepage Sections
==============================================================================*/
.index-section {
  /* margin-bottom: 45px; */ }
  .index-section.no-margin {
    margin-bottom: 0; }

/* ====== Text Section ======= */
.homepage--text-section {
  padding: 30px 0 45px; }
  .homepage--text-section h2, .homepage--text-section .h2 {
    font-weight: 300;
    font-size: 36px; }
  .homepage--text-section p {
    font-size: 20px;
    column-count: 2;
    column-gap: 45px; }

@media only screen and (max-width: 1135px) {
  .homepage--text-section {
    padding: 30px 0 45px; }
    .homepage--text-section h2, .homepage--text-section .h2 {
      font-weight: 300;
      font-size: 32px; }
    .homepage--text-section p {
      font-size: 20px;
      column-count: 1;
      column-gap: unset; } }
/* ====== Partners Section ======= */
.homepage--partners {
  background-color: #0050a0;
  padding: 30px 0 15px;
  color: #fff; }
  .homepage--partners .headline {
    margin-bottom: 15px;
    text-align: center; }
  .homepage--partners .logo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .homepage--partners .partner-logo {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: center;
    margin: 15px 0; }
    .homepage--partners .partner-logo img {
      max-width: 90px; }

@media only screen and (max-width: 1135px) {
  .homepage--partners {
    text-align: center; } }
/* ====== About Section ======= */
.homepage--about-section {
  background-color: #f4f5f9;
  background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/bg-top-left.png?v=2943517407991969021");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 75%;
  padding: 90px 0; }
  .homepage--about-section .about-numbers {
    margin-bottom: 90px; }
    .homepage--about-section .about-numbers .grid__item {
      margin-bottom: 30px; }
    .homepage--about-section .about-numbers .numbers-row {
      text-align: center; }
    .homepage--about-section .about-numbers span {
      color: #49b9ff;
      font-size: 18px;
      line-height: 1.25; }
    .homepage--about-section .about-numbers h2, .homepage--about-section .about-numbers .h2 {
      margin-bottom: 90px; }
    .homepage--about-section .about-numbers h3, .homepage--about-section .about-numbers .h3,
    .homepage--about-section .about-numbers span.counter-value {
      color: #0050a0;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 5px; }
  .homepage--about-section .about-window {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px; }
  .homepage--about-section .about-content {
    background-color: #fff;
    box-shadow: 0px 4px 20px 0px rgba(55, 61, 87, 0.05);
    padding: 60px 90px;
    height: auto;
    position: relative;
    margin-top: -200px; }
    .homepage--about-section .about-content h2, .homepage--about-section .about-content .h2 {
      margin-bottom: 60px; }
    .homepage--about-section .about-content p {
      font-size: 18px;
      line-height: 1.75;
      margin-bottom: 60px; }

@media only screen and (max-width: 1135px) {
  .homepage--about-section {
    padding: 60px 0; }
    .homepage--about-section .about-numbers {
      text-align: center;
      margin-bottom: 60px; }
      .homepage--about-section .about-numbers h2, .homepage--about-section .about-numbers .h2 {
        margin-bottom: 60px; }
      .homepage--about-section .about-numbers .numbers-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .homepage--about-section .about-numbers .numbers-row .grid__item {
          -webkit-box-align: stretch;
          -ms-flex-align: stretch;
          align-items: stretch;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          text-align: center; }
    .homepage--about-section .about-content {
      background-color: transparent;
      box-shadow: none;
      padding: 30px 0;
      height: auto;
      position: relative;
      margin-top: 0px; }
      .homepage--about-section .about-content h2, .homepage--about-section .about-content .h2 {
        margin-bottom: 30px; }
      .homepage--about-section .about-content p {
        margin-bottom: 30px; }
      .homepage--about-section .about-content .btn, .homepage--about-section .about-content .btn--secondary {
        margin-bottom: 30px; } }
/* ====== Courses Section ======= */
.homepage--courses-section {
  background-color: #ffffff;
  background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/bg-top-right.png?v=1895493128533685492");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 75%;
  padding: 90px 0; }
  .homepage--courses-section h2, .homepage--courses-section .h2 {
    margin-bottom: 30px; }
  .homepage--courses-section p {
    margin-bottom: 30px;
    width: 50%;
    font-size: 18px;
    line-height: 1.75; }
  .homepage--courses-section .courses-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .homepage--courses-section .courses-row:nth-child(odd) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
    .homepage--courses-section .courses-row:nth-child(even) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; }
  .homepage--courses-section .grid__item:nth-child(odd) > .home-product {
    background-color: #0050a0; }
  .homepage--courses-section .grid__item:nth-child(even) > .home-product {
    background-color: #48c1ee; }
  .homepage--courses-section .home-product {
    box-shadow: 0px 4px 10px 0px rgba(55, 61, 87, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin-bottom: 15px; }
    .homepage--courses-section .home-product .product-image {
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      width: 40%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .homepage--courses-section .home-product .product-meta {
      background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/grid-item-bg.png?v=16751524790675912356");
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
      width: 60%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 60px 45px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .homepage--courses-section .home-product .product-meta h3, .homepage--courses-section .home-product .product-meta .h3 {
        font-size: 20px;
        color: #fff; }
      .homepage--courses-section .home-product .product-meta p {
        font-size: 16px;
        line-height: 1.5;
        color: #fff;
        width: 100%;
        margin-bottom: 0; }

@media only screen and (min-width: 1136px) {
  .courses-row .grid__item {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }
@media only screen and (max-width: 1135px) {
  .homepage--courses-section {
    padding: 60px 0; }
    .homepage--courses-section .courses-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .homepage--courses-section .courses-row:nth-child(odd) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
      .homepage--courses-section .courses-row:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
    .homepage--courses-section p {
      width: 100%; } }
@media only screen and (max-width: 767px) {
  .homepage--courses-section .home-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px; }
    .homepage--courses-section .home-product .product-image {
      height: 150px;
      width: 100%; }
    .homepage--courses-section .home-product .product-meta {
      width: 100%;
      padding: 45px 30px; } }
/* ====== Company Section ======= */
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flex-container-50 {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.homepage--company-section h2, .homepage--company-section .h2, .homepage--company-section h4, .homepage--company-section .h4, .homepage--company-section p {
  color: #fff; }
.homepage--company-section .company-content {
  max-width: 600px;
  padding: 90px 30px 90px 60px; }
.homepage--company-section .trial-row {
  background-color: #0050a0;
  background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/bg-bottom-left.png?v=5241264675065032806");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 10%; }
.homepage--company-section .trial-content {
  padding: 90px 30px 90px 0px; }
  .homepage--company-section .trial-content p {
    font-size: 18px;
    line-height: 1.75; }

@media only screen and (max-width: 1135px) {
  .homepage--company-section .company-content {
    max-width: unset;
    padding: 60px 30px; }

  .homepage--company-section .trial-content {
    padding: 60px 0px; }

  .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }

  .flex-container-50 {
    width: 100%;
    min-height: 300px; } }
@media only screen and (max-width: 767px) {
  .homepage--company-section .company-content {
    padding: 60px 15px; } }
/* ====== Testimonials Section ======= */
.homepage--testimonials-section {
  background: #f4f5f9;
  padding: 90px 0; }
  .homepage--testimonials-section .btn, .homepage--testimonials-section .btn--secondary {
    margin: 15px 0; }

.testimonial {
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(55, 61, 87, 0.05);
  padding: 0 30px 15px;
  font-size: 14px;
  margin-top: 40px;
  margin-bottom: 30px;
  width: 100%; }
  .testimonial .testimonial-image {
    margin-bottom: 15px;
    text-align: center; }
    .testimonial .testimonial-image img {
      position: relative;
      margin-top: -40px;
      width: 80px;
      border-radius: 50%; }
  .testimonial .testimonial-quote {
    margin-bottom: 15px;
    position: relative;
    left: 30px;
    max-width: calc(100% - 30px); }
    .testimonial .testimonial-quote:before {
      content: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/quote.svg?v=12697043630436657947");
      font-weight: 900;
      font-size: 32px;
      color: #004ea7;
      position: absolute;
      top: -20px;
      left: -30px; }
  .testimonial .testimonial-name {
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
    line-height: 1.25; }
  .testimonial .testimonial-place {
    font-weight: 200;
    color: #b9babe;
    display: block;
    line-height: 1.25; }
  .testimonial .testimonial-link {
    font-weight: 700;
    color: #0050a0;
    cursor: pointer; }
    .testimonial .testimonial-link span {
      margin-left: 7px;
      transition: all 0.3s ease-in-out; }
    .testimonial .testimonial-link:hover span {
      margin-left: 13px;
      transition: all 0.3s ease-in-out; }

.testimonials-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-start; }
  .testimonials-row .grid__item {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 15px; }

.read-more {
  display: none; }

/*============================================================================
  #Page Template
==============================================================================*/
.template-customers-login .main-content,
.template-customers-register .main-content,
.template-search .main-content,
.template-404 .main-content {
  margin-bottom: 60px; }

.template-page .main-content {
  padding-top: 0; }

.template-404 img.error-img {
  max-width: 600px;
  width: 100%;
  margin: 0 auto; }
.template-404 p.error-page {
  font-size: 20px; }

.page-banner {
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px 0 45px 0; }
  .page-banner:before {
    content: '';
    background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/banner-texture.png?v=12721399489639768469");
    background-repeat: no-repeat;
    background-size: unset;
    background-position: top right;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .page-banner h1, .page-banner .h1 {
    color: #fff;
    font-size: 3em; }
  .page-banner p {
    max-width: 66%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.75;
    padding-bottom: 30px; }

.section-1 {
  background: #f4f5f9;
  padding: 0 5%; }

.inner-top-section {
  background: #f4f5f9;
  background-image: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(244, 245, 249, 0.66)), url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/bg-top-left.png?v=2943517407991969021");
  background-image: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(244, 245, 249, 0.66)), url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/bg-top-left.png?v=2943517407991969021");
  background-image: -ms-linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(244, 245, 249, 0.66)), url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/bg-top-left.png?v=2943517407991969021");
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(244, 245, 249, 0.66)), url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/bg-top-left.png?v=2943517407991969021");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 50%;
  box-shadow: 0px -20px 20px 0px rgba(55, 61, 87, 0.05);
  top: -30px;
  position: relative;
  border-radius: 5px 5px 0 0;
  padding: 90px 0 30px; }

.section-testimonials {
  background-color: #f4f5f9;
  background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/bg-top-right.png?v=1895493128533685492");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 75%;
  padding: 90px 0; }

@media only screen and (max-width: 1135px) {
  .page-banner .wrapper {
    margin-top: 35px; }
  .page-banner h1, .page-banner .h1 {
    font-size: 2em; }
  .page-banner p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5; }

  .inner-top-section {
    padding: 60px 0 30px; }

  .section-testimonials {
    padding: 60px 0; } }
@media only screen and (max-width: 767px) {
  .page-banner p {
    padding-bottom: 0; }

  .section-1 {
    padding: 0; }

  .inner-top-section {
    box-shadow: none;
    top: 0px;
    border-radius: 0; } }
/*============================================================================
  #Search Page
==============================================================================*/
.template-search h1, .template-search .h1 {
  font-weight: 300;
  font-size: 28px; }
.template-search .search-term {
  font-weight: 700; }
.template-search h2.h3 a, .template-search .h3.h2 a {
  color: #222;
  font-weight: 300; }
.template-search .price {
  font-family: "Open Sans", sans-serif; }
.template-search .description {
  font-size: 18px; }
.template-search .main-price {
  font-size: 22px; }
.template-search .compare-price {
  color: #d73946; }

/*============================================================================
  #Product Page
==============================================================================*/
.product-single {
  margin-bottom: 30px; }

.template-product .main-content {
  padding-top: 0; }
.template-product .inner-top-section {
  background-image: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(244, 245, 249, 0.66));
  background-image: -ms-linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(244, 245, 249, 0.66));
  background-image: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(244, 245, 249, 0.66));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(244, 245, 249, 0.66)); }
.template-product .breadcrumb {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  z-index: 9;
  color: #fdfdfe; }
  .template-product .breadcrumb a {
    color: #fdfdfe; }
.template-product .product-description {
  margin-bottom: 30px;
  padding-right: 60px; }
.template-product .description-card {
  margin-bottom: 30px; }
  .template-product .description-card h3, .template-product .description-card .h3 {
    font-weight: 700;
    color: #00aeef;
    font-size: 18px;
    line-height: 1.25; }
  .template-product .description-card p {
    font-size: 16px;
    line-height: 1.5; }
.template-product #AddToCartForm {
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0px 4px 10px 0px rgba(55, 61, 87, 0.2); }
.template-product #ProductPrice {
  font-size: 2em;
  font-weight: 700;
  width: 100%;
  text-align: center;
  color: #fff;
  background: #0050a0;
  padding: 20px 0;
  margin: 0;
  box-shadow: 0px 4px 10px 0px rgba(55, 61, 87, 0.2);
  position: relative;
  z-index: 1; }
.template-product .product-form-details {
  padding: 30px 45px;
  background: #fff; }
.template-product button#AddToCart {
  width: 100%;
  margin: 15px 0; }
.template-product a.btn.AddToCart, .template-product a.AddToCart.btn--secondary {
  margin: 0 auto;
  display: block;
  width: 100%;
  margin: 15px 0; }
.template-product .guarantee {
  font-size: 14px;
  color: #7f7f7f;
  display: block;
  text-align: center; }

.section-benefits {
  background-color: #fff;
  background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/bg-top-left.png?v=2943517407991969021");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 100%;
  padding: 90px 0 60px; }
  .section-benefits h2, .section-benefits .h2 {
    margin-bottom: 90px; }

.benefit-card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }
  .benefit-card-row .grid__item {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .benefit-card-row .benefit-card {
    position: relative;
    left: 90px;
    max-width: calc(90% - 90px);
    margin-bottom: 60px; }
    .benefit-card-row .benefit-card:before {
      content: attr(data-number);
      font-weight: 400;
      font-size: 60px;
      color: #a3b5d3;
      position: absolute;
      top: -52px;
      left: -90px; }
  .benefit-card-row h3, .benefit-card-row .h3 {
    font-weight: 700;
    color: #00aeef;
    font-size: 18px;
    line-height: 1.25; }
  .benefit-card-row p {
    font-size: 15px;
    line-height: 1.5;
    width: 75%; }

ul.includes {
  margin-top: 10px;
  padding-inline-start: 0px;
  margin-inline-start: 1em;
  list-style: none; }
  ul.includes li:before {
    content: "\25A0";
    color: #0050a0;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em; }

@media only screen and (max-width: 1135px) {
  .template-product .product-description {
    margin-bottom: 30px;
    padding-right: 0; }
  .template-product .section-benefits {
    padding: 60px 0 30px; }
  .template-product .benefit-card-row .benefit-card {
    max-width: calc(100% - 90px); }
  .template-product .benefit-card-row p {
    width: 100%;
    margin-bottom: 30px; } }
/*============================================================================
  #Courses Page
==============================================================================*/
.headline-section {
  padding: 90px 0 30px; }
  .headline-section p {
    max-width: 50%;
    font-size: 18px;
    line-height: 1.75; }

.section-courses {
  padding-bottom: 60px; }
  .section-courses .course-selector {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee; }
    .section-courses .course-selector .tablinks {
      padding: 23px 0;
      cursor: pointer;
      color: #888; }
      .section-courses .course-selector .tablinks:hover {
        border-bottom: 2px solid #ddd; }
      .section-courses .course-selector .tablinks.active {
        border-bottom: 2px solid #008cc8;
        color: #000; }
      .section-courses .course-selector .tablinks:first-child {
        margin-right: 30px; }
    .section-courses .course-selector #currencies {
      float: right;
      margin-bottom: 0; }
  .section-courses .tabcontent {
    display: none; }
  .section-courses .defaultOpen {
    display: block; }
  .section-courses .course-list .grid__item:nth-child(odd) > .course-product {
    background-color: #0050a0; }
  .section-courses .course-list .grid__item:nth-child(even) > .course-product {
    background-color: #48c1ee; }
  .section-courses .course-product {
    box-shadow: 0px 4px 10px 0px rgba(55, 61, 87, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin-bottom: 30px; }
    .section-courses .course-product .course-image {
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      width: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative; }
    .section-courses .course-product .primary-img,
    .section-courses .course-product .secondary-img {
      width: 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      left: 0; }
    .section-courses .course-product .primary-img {
      opacity: 1;
      transition: all 0.2s ease-in-out; }
    .section-courses .course-product .secondary-img {
      opacity: 0;
      transition: all 0.2s ease-in-out; }
    .section-courses .course-product .course-image:hover .secondary-img {
      opacity: 1;
      transition: all 0.3s ease-in-out; }
    .section-courses .course-product .course-meta {
      background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/grid-item-bg.png?v=16751524790675912356");
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
      width: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 60px 45px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      color: #fff; }
      .section-courses .course-product .course-meta h3, .section-courses .course-product .course-meta .h3 {
        font-size: 24px;
        margin-bottom: 5px;
        color: #fff; }
      .section-courses .course-product .course-meta .money {
        color: #fff;
        font-size: 24px;
        weight: 700;
        margin-bottom: 30px; }
      .section-courses .course-product .course-meta p {
        font-size: 16px;
        line-height: 1.5;
        color: #fff;
        width: 100%; }
      .section-courses .course-product .course-meta ul.includes {
        color: #fff; }
        .section-courses .course-product .course-meta ul.includes li:before {
          color: #fff; }
      .section-courses .course-product .course-meta .course-quote {
        padding: 15px 0;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .section-courses .course-product .course-meta .course-quote .quote-image {
          -webkit-box-flex: initial;
          -ms-flex: initial;
          flex: initial;
          line-height: 1; }
          .section-courses .course-product .course-meta .course-quote .quote-image img {
            width: 70px;
            border-radius: 50%;
            margin-right: 15px; }
        .section-courses .course-product .course-meta .course-quote .quote-text {
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1; }
          .section-courses .course-product .course-meta .course-quote .quote-text span {
            display: block; }
      .section-courses .course-product .course-meta .btn, .section-courses .course-product .course-meta .btn--secondary {
        margin-top: 45px;
        width: -moz-fit-content;
        width: fit-content;
        background: transparent;
        border: 1px solid #fff; }

.info-section {
  padding: 60px 0 90px; }
  .info-section .download-document {
    border: 1px solid #dddddd;
    border-radius: 3px;
    padding: 30px 0; }
    .info-section .download-document .document-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row;
      flex-flow: row;
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content;
      margin: 0 auto; }
    .info-section .download-document .file-icon {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 20px; }
    .info-section .download-document .file-meta {
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      margin-right: 20px; }
    .info-section .download-document h3, .info-section .download-document .h3 {
      font-weight: 700;
      font-size: 16px;
      color: #000; }
    .info-section .download-document span {
      color: #888;
      font-size: 14px; }
    .info-section .download-document .download-icon {
      margin-right: 7px;
      position: relative;
      top: 3px; }

@media only screen and (max-width: 1135px) {
  .headline-section {
    padding: 60px 0 30px; }
    .headline-section p {
      max-width: 100%; }

  .section-courses .course-selector .tab-selectors {
    text-align: center;
    margin-bottom: 30px; }
    .section-courses .course-selector .tab-selectors .tablinks {
      padding: 10px 0; }
  .section-courses .course-selector #currencies {
    float: none; }
  .section-courses .course-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; }
    .section-courses .course-product .course-image {
      min-height: 200px;
      width: 100%; }
    .section-courses .course-product .course-meta {
      width: 100%; }

  .info-section {
    padding: 30px 0 60px; }
    .info-section .download-document .document-content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      text-align: center; }
    .info-section .download-document .file-icon {
      text-align: center;
      margin-right: 0;
      margin-bottom: 15px; }
      .info-section .download-document .file-icon img {
        margin: 0 auto; } }
@media only screen and (max-width: 767px) {
  .info-section .download-document {
    margin-bottom: 30px; }
    .info-section .download-document .document-content {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row;
      flex-flow: row;
      text-align: left; }
    .info-section .download-document .file-icon {
      text-align: center;
      margin-right: 30px;
      margin-bottom: 0; }
      .info-section .download-document .file-icon img {
        margin: 0 auto; } }
/*============================================================================
  #Contact Page
==============================================================================*/
.contact-box {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 15px; }
  .contact-box .contact-icon {
    border: 2px solid #0050a0;
    border-radius: 50%;
    padding: 35px;
    margin-bottom: 15px; }
  .contact-box .head {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    color: #0050a0;
    margin-bottom: 15px; }
  .contact-box .content {
    display: block;
    font-weight: 700;
    color: #0050a0;
    line-height: 1.5; }
    .contact-box .content a {
      color: #0050a0; }

.contact-form-section {
  background-color: #f4f5f9;
  padding: 90px 0; }
  .contact-form-section h2, .contact-form-section .h2 {
    margin-bottom: 30px; }
  .contact-form-section p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 60px; }
  .contact-form-section form {
    max-width: 560px;
    margin: 0 auto;
    font-size: 16px; }
    .contact-form-section form input[type="text"],
    .contact-form-section form input[type="email"],
    .contact-form-section form textarea {
      margin-bottom: 45px;
      border: none;
      border-bottom: 1px solid #0050a0;
      padding: 10px 0;
      font-size: 16px;
      background: transparent; }
    .contact-form-section form .submit-btn {
      margin: 0 auto;
      display: block; }

.support-section {
  background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/request-bg.jpg?v=1057204125468199803");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0; }
  .support-section p {
    font-size: 18px;
    line-height: 1.75;
    color: #fff; }
    .support-section p a {
      color: #fff;
      font-weight: 700;
      text-decoration: underline; }
  .support-section .help-section {
    margin-top: 30px; }
    .support-section .help-section .download-btn {
      margin-right: 15px;
      margin-bottom: 15px; }
      .support-section .help-section .download-btn:last-child {
        margin-right: 0; }
    .support-section .help-section img.download-icon {
      position: relative;
      left: 13px;
      top: 1px; }

.map-section {
  background-image: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/map-bg.jpg?v=11200438711926283660");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0; }
  .map-section .map-address {
    background: #fff;
    padding: 90px;
    box-shadow: 0px 4px 20px 0px rgba(55, 61, 87, 0.05); }
    .map-section .map-address h3, .map-section .map-address .h3 {
      margin-bottom: 30px; }
    .map-section .map-address p {
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 60px; }
  .map-section .location-card-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .map-section .location-card-row .grid__item {
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .map-section .location-card-row .location-card {
      position: relative;
      left: 30px;
      max-width: calc(70% - 30px);
      margin: 0 auto 60px auto; }
      .map-section .location-card-row .location-card:before {
        content: url("//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/map-location.png?v=1098995744783827655");
        width: 30px;
        color: #0050a0;
        position: absolute;
        top: 0px;
        left: -30px; }
      .map-section .location-card-row .location-card h3, .map-section .location-card-row .location-card .h3 {
        margin-bottom: 15px;
        color: #0050a0;
        font-size: 16px;
        text-transform: uppercase; }
      .map-section .location-card-row .location-card p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px; }
        .map-section .location-card-row .location-card p a {
          color: #000;
          text-decoration: underline;
          margin-top: 5px; }
      .map-section .location-card-row .location-card .map-link {
        font-weight: 700;
        color: #0050a0; }
        .map-section .location-card-row .location-card .map-link span {
          margin-left: 7px;
          transition: all 0.3s ease-in-out; }
        .map-section .location-card-row .location-card .map-link:hover span {
          margin-left: 13px;
          transition: all 0.3s ease-in-out; }

@media only screen and (max-width: 1135px) {
  .contact-form-section {
    padding: 30px 0 60px; }

  .map-section .location-card-row .location-card {
    max-width: 100%;
    left: 10px; } }
@media only screen and (max-width: 480px) {
  .support-section .help-section .download-btn {
    display: block;
    margin: 0 auto 15px auto; }

  .map-section .map-address {
    padding: 60px 30px; }

  .support-section .help-section .download-btn {
    white-space: normal; }
  .support-section .help-section img.download-icon {
    display: block;
    margin: 5px auto 0 auto;
    left: 0; } }
@media only screen and (max-width: 400px) {
  .map-section .location-card-row .location-card {
    left: 30px; } }
/*============================================================================
 		SUBMIT REQUEST PAGE 
============================================================================ */
.submit-request .form-left {
  background-color: #f4f5f9;
  padding: 90px 0; }
.submit-request .form-right {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content; }
.submit-request .wrapper.form-wrapper {
  padding: 0 30px 0 45px; }
.submit-request .form-header {
  width: 100%;
  max-width: 800px;
  margin: 0 0 0 auto;
  text-align: left;
  margin-bottom: 45px; }
.submit-request .form-header h2, .submit-request .form-header .h2 {
  margin-bottom: 10px; }
.submit-request ul#formStep {
  list-style: none;
  margin-left: 0;
  display: inline-block; }
.submit-request ul#formStep li {
  display: inline-block;
  opacity: 0.5;
  cursor: default; }
.submit-request ul#formStep li.active {
  display: inline-block;
  opacity: 1; }
.submit-request ul#formStep li.active.link {
  cursor: pointer;
  opacity: 0.5; }
.submit-request span.divider {
  width: 60px;
  height: 1px;
  display: block;
  border-top: 1px solid #004fa6;
  margin: 0 15px; }
.submit-request span.num {
  padding: 1px 7px;
  border: 1px solid;
  border-radius: 50%;
  line-height: 1;
  margin-right: 10px; }
.submit-request .request-form {
  width: 100%;
  max-width: 800px;
  margin: 0 0 0 auto;
  padding-right: 90px; }
.submit-request .form-success {
  margin-right: 90px; }
.submit-request .country-list {
  margin-bottom: 45px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #0050a0;
  padding: 10px 0;
  font-size: 16px; }
.submit-request input[type="text"],
.submit-request input[type="email"] {
  margin-bottom: 45px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #0050a0;
  padding: 10px 0;
  font-size: 16px;
  background: transparent; }
.submit-request textarea {
  margin-bottom: 45px;
  border: none;
  border-bottom: 1px solid #0050a0;
  padding: 10px 0;
  font-size: 16px;
  background: transparent; }
.submit-request .toggle input[type="checkbox"] + label {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 30px 15px;
  margin: 0 5px; }
.submit-request .toggle input[type="checkbox"] + label:first-of-type {
  border-right: 1px solid #0050a0;
  margin-left: 0; }
.submit-request .toggle input[type="checkbox"] + label:last-of-type {
  margin-right: 0;
  border-left: 1px solid #0050a0; }
.submit-request #next {
  margin: 0 0 0 auto;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; }
.submit-request #next[data-valid="disabled"] {
  background: #ddd;
  cursor: default; }
.submit-request #next span {
  position: relative;
  left: 7px; }
.submit-request #business {
  display: none; }
.submit-request #personal {
  display: none; }
.submit-request #requestCfaidBusiness,
.submit-request #requestCfaidPersonal {
  display: none; }

/* TOTAL TABLE */
#calculation {
  display: none;
  width: 100%;
  max-width: 480px;
  padding: 90px 40px 90px 60px; }
  #calculation h3, #calculation .h3 {
    color: #0050a0;
    margin-bottom: 60px;
    font-size: 2em; }
  #calculation .submit-btn {
    width: 100%; }

.table {
  display: table;
  width: 100%;
  max-width: 480px; }
  .table.total {
    margin-bottom: 45px; }
  .table.subtotal {
    margin-bottom: 20px; }

.row {
  display: table-row; }

.cell {
  display: table-cell;
  width: 50%; }

.cell:last-child {
  text-align: right; }

#totalPrice {
  font-size: 28px;
  font-weight: 700;
  color: #0050a0; }

.smalltitle {
  font-size: 16px;
  font-weight: 700;
  color: #424242; }

.smallprice {
  font-size: 16px;
  font-weight: 700;
  color: #0050a0; }

.subnote {
  font-size: 13px;
  color: #888;
  line-height: 1.15; }

.total {
  margin-bottom: 45px; }

@media only screen and (max-width: 1135px) {
  #calculation {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 30px; }

  .table {
    max-width: 600px; } }
/* SWITCH */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  bottom: 5px; }

.switch input {
  opacity: 0;
  width: 0;
  height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px; }

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%; }

input:checked + .slider {
  background-color: #49baff; }

input:focus + .slider {
  outline: none; }

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px); }

@media only screen and (max-width: 1135px) {
  .submit-request .request-form {
    padding-right: 0px;
    margin: 0 auto; }
  .submit-request .form-success {
    margin-right: 0px; }
  .submit-request .form-header {
    margin: 0 auto; } }
@media only screen and (max-width: 767px) {
  .submit-request ul#formStep li {
    display: block;
    margin-bottom: 5px; }
  .submit-request span.divider {
    display: none; }
  .submit-request .toggle.courses {
    display: block; }
  .submit-request .toggle.courses input + label {
    display: inline-block;
    width: 47%;
    margin: 1% !important;
    padding: 20px 15px; } }
@media only screen and (max-width: 420px) {
  .submit-request .toggle.courses input + label {
    display: inline-block;
    width: 100%;
    margin: 0 !important;
    margin-bottom: 15px !important;
    padding: 20px 15px !important; }
  .submit-request .left {
    float: none !important;
    display: block; }
  .submit-request .switch.right {
    float: none !important;
    margin-top: 20px; } }
/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 0px;
  padding: 6px 12px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  font-size: 0.9em;
  text-align: left; }
  .note ul,
  .note ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0; }
  .note li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p,
  .errors p {
    margin-bottom: 0; }

.note {
  border-color: #e5e5e5; }

.errors ul {
  list-style: disc outside;
  margin-left: 20px; }

.form-success {
  color: #56ad6a;
  background-color: #ecfef0;
  border-color: #56ad6a; }
  .form-success a {
    color: #56ad6a;
    text-decoration: underline; }
    .form-success a:hover {
      text-decoration: none; }

.form-error,
.errors {
  color: #d02e2e;
  background-color: #fff6f6;
  border-color: #d02e2e; }
  .form-error a,
  .errors a {
    color: #d02e2e;
    text-decoration: underline; }
    .form-error a:hover,
    .errors a:hover {
      text-decoration: none; }

/*============================================================================
  #Cart Page
==============================================================================*/
.template-cart .main-content {
  margin-bottom: 60px; }
.template-cart a.h4 {
  color: #222;
  font-weight: 300; }
.template-cart .price {
  font-family: "Open Sans", sans-serif; }
.template-cart .cart__image {
  max-width: 150px; }

.cart__row {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty {
    margin: 0 auto; }

.cart-table th {
  font-weight: normal; }
.cart-table td,
.cart-table th {
  padding: 30px 15px;
  border: none; }

@media screen and (min-width: 1136px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 100%; }

.cart__subtotal {
  margin: 0 0 0 10px;
  display: inline; }

.cart__mini-labels {
  display: block;
  margin: 10px 0;
  font-size: 0.8em; }
  @media screen and (min-width: 1136px) {
    .cart__mini-labels {
      display: none; } }

.cart__remove {
  display: block; }

.additional-checkout-buttons {
  visibility: hidden !important;
  height: 1px !important; }

/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
body {
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s;
  -ms-animation: fadein 1s;
  -o-animation: fadein 1s;
  animation: fadein 1s; }

@keyframes fadein {
  0% {
    opacity: 0; }

  60% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-moz-keyframes fadein {
  0% {
    opacity: 0; }

  60% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-webkit-keyframes fadein {
  0% {
    opacity: 0; }

  60% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-ms-keyframes fadein {
  0% {
    opacity: 0; }

  60% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-o-keyframes fadein {
  0% {
    opacity: 0; }

  60% {
    opacity: 0; }

  100% {
    opacity: 1; } }

/* --- */
@keyframes fadeout {
  0% {
    opacity: 1; }

  60% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-moz-keyframes fadeout {
  0% {
    opacity: 1; }

  60% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-webkit-keyframes fadeout {
  0% {
    opacity: 1; }

  60% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-ms-keyframes fadeout {
  0% {
    opacity: 1; }

  60% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-o-keyframes fadeout {
  0% {
    opacity: 1; }

  60% {
    opacity: 1; }

  100% {
    opacity: 0; } }

/* X-LARGE SCREEN WRAPPER WIDTH */
@media only screen and (min-width: 1921px) {
  .site-header > .wrapper {
    max-width: 1600px; }

  .site-footer .wrapper {
    max-width: 1600px; }

  .wrapper.wide {
    max-width: 1600px; } }
/*============================================================================
  #About Page
==============================================================================*/
.about-card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  .about-card-row .grid__item {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .about-card-row .about-card {
    margin-bottom: 60px; }
  .about-card-row h3, .about-card-row .h3 {
    font-weight: 700;
    color: #00aeef;
    font-size: 18px;
    line-height: 1.25; }
  .about-card-row p {
    font-size: 15px;
    line-height: 1.5;
    width: 75%; }

.global-partners-section {
  padding: 90px 0; }
  .global-partners-section p {
    margin-bottom: 60px;
    width: 50%;
    font-size: 18px;
    line-height: 1.75; }
  .global-partners-section .partner-logos .grid__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row; }
  .global-partners-section .partner-logos .partner-logo {
    width: 30%; }
  .global-partners-section .partner-logos .partner-name {
    width: 70%;
    padding-left: 30px; }
  .global-partners-section .partner-logos span {
    font-weight: 400;
    color: #000;
    font-size: 15px; }
    .global-partners-section .partner-logos span.bold {
      font-weight: 700;
      color: #00aeef;
      font-size: 18px;
      line-height: 1.25; }

@media only screen and (max-width: 1135px) {
  .about-card-row .about-card {
    margin-bottom: 30px; }
  .about-card-row p {
    width: 100%;
    margin-bottom: 30px; }

  .global-partners-section {
    padding: 60px 0; }
    .global-partners-section .partner-logos .grid__item {
      margin-bottom: 30px; }
    .global-partners-section p {
      width: 100%; } }
@media only screen and (max-width: 767px) {
  .global-partners-section .partner-logos .grid__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column; }
  .global-partners-section .partner-logos .partner-logo,
  .global-partners-section .partner-logos .partner-name {
    width: 100%;
    text-align: center;
    padding-left: 0; } }
/*! lightslider - v1.1.6 - 2016-10-25
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2016 Sachin N; Licensed MIT */
/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/
.lSSlideOuter {
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.lightSlider:before, .lightSlider:after {
  content: " ";
  display: table; }

.lightSlider {
  overflow: hidden;
  margin: 0; }

.lSSlideWrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  height: 100%; }

.lSSlideWrapper > .lightSlider:after {
  clear: both; }

.lSSlideWrapper .lSSlide {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: all 1s;
  -webkit-transition-property: -webkit-transform,height;
  -moz-transition-property: -moz-transform,height;
  transition-property: transform,height;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important; }

.lSSlideWrapper .lSFade {
  position: relative; }

.lSSlideWrapper .lSFade > * {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9;
  margin-right: 0;
  width: 100%; }

.lSSlideWrapper.usingCss .lSFade > * {
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important; }

.lSSlideWrapper .lSFade > *.active {
  z-index: 10; }

.lSSlideWrapper.usingCss .lSFade > *.active {
  opacity: 1; }

/** /!!! End of core css Should not edit !!!/**/
/* Pager */
.lSSlideOuter .lSPager.lSpg {
  margin: 10px 0 0;
  padding: 0;
  text-align: center; }

.lSSlideOuter .lSPager.lSpg > li {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px; }

.lSSlideOuter .lSPager.lSpg > li a {
  background-color: transparent;
  border-radius: 30px;
  display: inline-block;
  height: 8px;
  overflow: hidden;
  text-indent: -999em;
  width: 8px;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  border: 1px solid #fff; }

.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
  background-color: #fff; }

.lSSlideOuter .media {
  opacity: 0.8; }

.lSSlideOuter .media.active {
  opacity: 1; }

/* End of pager */
/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
  list-style: none outside none;
  padding-left: 0;
  margin: 0;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

@media only screen and (min-width: 1136px) {
  .lSSlideOuter .lSPager.lSGallery {
    transform: translateX(0) !important; } }
.lSSlideOuter .lSPager.lSGallery li {
  overflow: hidden;
  -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  transition: border-radius 0.12s linear 0s 0.35s linear 0s; }

.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 0px; }

.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #ddd; }

.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
  content: " ";
  display: table; }

.lSSlideOuter .lSPager.lSGallery:after {
  clear: both; }

/* End of Gallery*/
/* slider actions */
.lSAction > a {
  width: 29px;
  height: 28px;
  display: block;
  top: 0;
  background-image: url("controls.png");
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: 0;
  opacity: 1;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
  background-color: rgba(34, 34, 34, 0.2);
  border-radius: 50%; }

.lSAction > a:hover {
  opacity: 1; }

.lSAction > .lSPrev {
  background-position: 0 -2px;
  left: 10px; }

.lSAction > .lSNext {
  background-position: -35px -2px;
  right: 10px; }

.lSAction > a.disabled {
  pointer-events: none; }

.cS-hidden {
  height: 1px;
  opacity: 0;
  filter: alpha(opacity=0);
  overflow: hidden; }

/* vertical */
.lSSlideOuter.vertical {
  position: relative; }

.lSSlideOuter.vertical.noPager {
  padding-right: 0px !important; }

.lSSlideOuter.vertical .lSGallery {
  position: absolute !important;
  right: 0;
  top: 0; }

.lSSlideOuter.vertical .lightSlider > * {
  width: 100% !important;
  max-width: none !important; }

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
  left: 50%;
  margin-left: -14px;
  margin-top: 0; }

.lSSlideOuter.vertical .lSAction > .lSNext {
  background-position: 31px -31px;
  bottom: 10px;
  top: auto; }

.lSSlideOuter.vertical .lSAction > .lSPrev {
  background-position: 0 -31px;
  bottom: auto;
  top: 10px; }

/* vertical */
/* Rtl */
.lSSlideOuter.lSrtl {
  direction: rtl; }

.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
  padding-left: 0;
  list-style: none outside none; }

.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
  padding-right: 0; }

.lSSlideOuter .lightSlider > *, .lSSlideOuter .lSGallery li {
  float: left; }

.lSSlideOuter.lSrtl .lightSlider > *, .lSSlideOuter.lSrtl .lSGallery li {
  float: right !important; }

/* Rtl */
@-webkit-keyframes rightEnd {
  0% {
    left: 0; }

  50% {
    left: -15px; }

  100% {
    left: 0; } }

@keyframes rightEnd {
  0% {
    left: 0; }

  50% {
    left: -15px; }

  100% {
    left: 0; } }

@-webkit-keyframes topEnd {
  0% {
    top: 0; }

  50% {
    top: -15px; }

  100% {
    top: 0; } }

@keyframes topEnd {
  0% {
    top: 0; }

  50% {
    top: -15px; }

  100% {
    top: 0; } }

@-webkit-keyframes leftEnd {
  0% {
    left: 0; }

  50% {
    left: 15px; }

  100% {
    left: 0; } }

@keyframes leftEnd {
  0% {
    left: 0; }

  50% {
    left: 15px; }

  100% {
    left: 0; } }

@-webkit-keyframes bottomEnd {
  0% {
    bottom: 0; }

  50% {
    bottom: -15px; }

  100% {
    bottom: 0; } }

@keyframes bottomEnd {
  0% {
    bottom: 0; }

  50% {
    bottom: -15px; }

  100% {
    bottom: 0; } }

.lSSlideOuter .rightEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative; }

.lSSlideOuter .leftEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative; }

.lSSlideOuter.vertical .rightEnd {
  -webkit-animation: topEnd 0.3s;
  animation: topEnd 0.3s;
  position: relative; }

.lSSlideOuter.vertical .leftEnd {
  -webkit-animation: bottomEnd 0.3s;
  animation: bottomEnd 0.3s;
  position: relative; }

.lSSlideOuter.lSrtl .rightEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative; }

.lSSlideOuter.lSrtl .leftEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative; }

/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing; }

.lSSlideOuter {
  position: relative;
  height: 100%; }

/* PRI BANNER */
ul#bannerSlider {
  margin: 0;
  height: 100% !important; }

li.home-banner .slideshow-image:before {
  content: '';
  background-image: url(//cdn.shopify.com/s/files/1/0013/2153/3539/t/16/assets/main-banner-texture.png?v=11528604863188700138);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

li.home-banner.lslide {
  height: 100% !important; }

.banner {
  /*     height: calc(100vh - 300px); */
  /*     max-height: calc(100vh - 300px); */
  height: 500px; }

.lSAction {
  position: relative;
  width: 80px;
  margin-bottom: 60px; }

.lSAction > .lSPrev {
  left: 0; }

.lSAction > .lSNext {
  right: 0; }

@media only screen and (max-width: 1135px) {
  li.home-banner {
    padding: 90px 0 60px 0; }

  .home-banner .btn.secondary:hover span, .home-banner .secondary.btn--secondary:hover span,
  .home-banner .secondary.btn--secondary:hover span {
    margin-left: 7px;
    transition: all 0.3s ease-in-out; }

  .lSAction {
    margin: 0 auto 60px auto; } }
@media only screen and (max-width: 767px) {
  .banner {
    max-height: unset;
    height: 100vh; }

  .lSSlideOuter {
    height: 100vh; } }
/* KENBURBS ANIMATION */
.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  top: 0; }

.active .slideshow-image {
  -webkit-animation-name: kenburns-1;
  animation-name: kenburns-1;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2); }

.home-banner.active h2, .home-banner.active .h2,
.home-banner.active p {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; }

.home-banner.active h2, .home-banner.active .h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

.home-banner.active p {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s; }

@-webkit-keyframes kenburns-1 {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1); }

  6.5625% {
    opacity: 1; }

  26.5625% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }

  98.4375% {
    opacity: 1;
    -webkit-transform: scale(1.21176);
    transform: scale(1.21176); }

  100% {
    opacity: 1; } }

@keyframes kenburns-1 {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1); }

  6.5625% {
    opacity: 1; }

  26.5625% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }

  98.4375% {
    opacity: 1;
    -webkit-transform: scale(1.21176);
    transform: scale(1.21176); }

  100% {
    opacity: 1; } }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0); }

  50% {
    opacity: 0; }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0); }

  50% {
    opacity: 0; }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

.about_pad {
  padding-right: 30px;
  padding-left: 30px; }

.card-about p {
  width: 100%; }

/* custom css */
.footer-contact-email a {
  text-decoration: underline; }

/* Media Queries */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .grid--4 .item-size, .grid--5 .item-size {
    width: 33.33% !important; } }
@media screen and (min-width: 768px) {
  .grid--1 .item-size {
    width: 100% !important; }

  .grid--2 .item-size {
    width: 50% !important; }

  .grid--3 .item-size {
    width: 33.33% !important; }

  .grid--4 .item-size {
    width: 25% !important; }

  .grid--5 .item-size {
    width: 20% !important; }

  .item-size {
    margin-top: 15px; }

  .grid--1 .card-about {
    width: 85%;
    margin: 0 auto; }

  .about-card-section {
    width: 98%;
    margin: 0 auto; } }
@media only screen and (max-width: 360px) {
  li.home-banner {
    padding-top: 60px; }

  .lSAction {
    margin: 0 auto 30px auto; }

  .home-banner h2, .home-banner .h2 {
    margin-top: 45px; } }
