@charset "UTF-8";
/* ==========================================================================
   Main.scss
   ========================================================================== */
/**
 * TABLE OF CONTENTS
 *
 * VENDORS
 *
 * normalize.scss.............Normalize reset stylesheet (https://necolas.github.io/normalize.css/).
 * susy.scss..................Susy SASS grid (http://susydocs.oddbird.net/en/latest/).
 *
 * MODULES
 *
 * functions.scss.............Global SCSS functions.
 * variables.scss.............Global variables.
 * grid.scss..........,,,,,...Grid column class generator.
 * extends.scss...............Global extensions.
 * mixins.scss................Global mixins.
 *
 * COMPONENTS
 *
 * buttons.scss...............Button styling.
 *
 * PARTIALS
 *
 * base.scss..................The base styling of the website.
 * navigation.scss............Styling for the website's navigation.
 *
 * VIEWS
 *
 *
 *
 * main.scss..................Main SCSS file, imports all the necessary SCSS files for the project.
 *
 */
/* Vendors
   ========================================================================== */
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face {
  font-family: "Ionicons";
  src: url("../fonts/ionicons.eot?v=2.0.0");
  src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/ionicons.woff?v=2.0.0") format("woff"), url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal; }

.ion, .ionicons,
.ion-alert:before,
.ion-alert-circled:before,
.ion-android-add:before,
.ion-android-add-circle:before,
.ion-android-alarm-clock:before,
.ion-android-alert:before,
.ion-android-apps:before,
.ion-android-archive:before,
.ion-android-arrow-back:before,
.ion-android-arrow-down:before,
.ion-android-arrow-dropdown:before,
.ion-android-arrow-dropdown-circle:before,
.ion-android-arrow-dropleft:before,
.ion-android-arrow-dropleft-circle:before,
.ion-android-arrow-dropright:before,
.ion-android-arrow-dropright-circle:before,
.ion-android-arrow-dropup:before,
.ion-android-arrow-dropup-circle:before,
.ion-android-arrow-forward:before,
.ion-android-arrow-up:before,
.ion-android-attach:before,
.ion-android-bar:before,
.ion-android-bicycle:before,
.ion-android-boat:before,
.ion-android-bookmark:before,
.ion-android-bulb:before,
.ion-android-bus:before,
.ion-android-calendar:before,
.ion-android-call:before,
.ion-android-camera:before,
.ion-android-cancel:before,
.ion-android-car:before,
.ion-android-cart:before,
.ion-android-chat:before,
.ion-android-checkbox:before,
.ion-android-checkbox-blank:before,
.ion-android-checkbox-outline:before,
.ion-android-checkbox-outline-blank:before,
.ion-android-checkmark-circle:before,
.ion-android-clipboard:before,
.ion-android-close:before,
.ion-android-cloud:before,
.ion-android-cloud-circle:before,
.ion-android-cloud-done:before,
.ion-android-cloud-outline:before,
.ion-android-color-palette:before,
.ion-android-compass:before,
.ion-android-contact:before,
.ion-android-contacts:before,
.ion-android-contract:before,
.ion-android-create:before,
.ion-android-delete:before,
.ion-android-desktop:before,
.ion-android-document:before,
.ion-android-done:before,
.ion-android-done-all:before,
.ion-android-download:before,
.ion-android-drafts:before,
.ion-android-exit:before,
.ion-android-expand:before,
.ion-android-favorite:before,
.ion-android-favorite-outline:before,
.ion-android-film:before,
.ion-android-folder:before,
.ion-android-folder-open:before,
.ion-android-funnel:before,
.ion-android-globe:before,
.ion-android-hand:before,
.ion-android-hangout:before,
.ion-android-happy:before,
.ion-android-home:before,
.ion-android-image:before,
.ion-android-laptop:before,
.ion-android-list:before,
.ion-android-locate:before,
.ion-android-lock:before,
.ion-android-mail:before,
.ion-android-map:before,
.ion-android-menu:before,
.ion-android-microphone:before,
.ion-android-microphone-off:before,
.ion-android-more-horizontal:before,
.ion-android-more-vertical:before,
.ion-android-navigate:before,
.ion-android-notifications:before,
.ion-android-notifications-none:before,
.ion-android-notifications-off:before,
.ion-android-open:before,
.ion-android-options:before,
.ion-android-people:before,
.ion-android-person:before,
.ion-android-person-add:before,
.ion-android-phone-landscape:before,
.ion-android-phone-portrait:before,
.ion-android-pin:before,
.ion-android-plane:before,
.ion-android-playstore:before,
.ion-android-print:before,
.ion-android-radio-button-off:before,
.ion-android-radio-button-on:before,
.ion-android-refresh:before,
.ion-android-remove:before,
.ion-android-remove-circle:before,
.ion-android-restaurant:before,
.ion-android-sad:before,
.ion-android-search:before,
.ion-android-send:before,
.ion-android-settings:before,
.ion-android-share:before,
.ion-android-share-alt:before,
.ion-android-star:before,
.ion-android-star-half:before,
.ion-android-star-outline:before,
.ion-android-stopwatch:before,
.ion-android-subway:before,
.ion-android-sunny:before,
.ion-android-sync:before,
.ion-android-textsms:before,
.ion-android-time:before,
.ion-android-train:before,
.ion-android-unlock:before,
.ion-android-upload:before,
.ion-android-volume-down:before,
.ion-android-volume-mute:before,
.ion-android-volume-off:before,
.ion-android-volume-up:before,
.ion-android-walk:before,
.ion-android-warning:before,
.ion-android-watch:before,
.ion-android-wifi:before,
.ion-aperture:before,
.ion-archive:before,
.ion-arrow-down-a:before,
.ion-arrow-down-b:before,
.ion-arrow-down-c:before,
.ion-arrow-expand:before,
.ion-arrow-graph-down-left:before,
.ion-arrow-graph-down-right:before,
.ion-arrow-graph-up-left:before,
.ion-arrow-graph-up-right:before,
.ion-arrow-left-a:before,
.ion-arrow-left-b:before,
.ion-arrow-left-c:before,
.ion-arrow-move:before,
.ion-arrow-resize:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before,
.ion-arrow-right-a:before,
.ion-arrow-right-b:before,
.ion-arrow-right-c:before,
.ion-arrow-shrink:before,
.ion-arrow-swap:before,
.ion-arrow-up-a:before,
.ion-arrow-up-b:before,
.ion-arrow-up-c:before,
.ion-asterisk:before,
.ion-at:before,
.ion-backspace:before,
.ion-backspace-outline:before,
.ion-bag:before,
.ion-battery-charging:before,
.ion-battery-empty:before,
.ion-battery-full:before,
.ion-battery-half:before,
.ion-battery-low:before,
.ion-beaker:before,
.ion-beer:before,
.ion-bluetooth:before,
.ion-bonfire:before,
.ion-bookmark:before,
.ion-bowtie:before,
.ion-briefcase:before,
.ion-bug:before,
.ion-calculator:before,
.ion-calendar:before,
.ion-camera:before,
.ion-card:before,
.ion-cash:before,
.ion-chatbox:before,
.ion-chatbox-working:before,
.ion-chatboxes:before,
.ion-chatbubble:before,
.ion-chatbubble-working:before,
.ion-chatbubbles:before,
.ion-checkmark:before,
.ion-checkmark-circled:before,
.ion-checkmark-round:before,
.ion-chevron-down:before,
.ion-chevron-left:before,
.ion-chevron-right:before,
.ion-chevron-up:before,
.ion-clipboard:before,
.ion-clock:before,
.ion-close:before,
.ion-close-circled:before,
.ion-close-round:before,
.ion-closed-captioning:before,
.ion-cloud:before,
.ion-code:before,
.ion-code-download:before,
.ion-code-working:before,
.ion-coffee:before,
.ion-compass:before,
.ion-compose:before,
.ion-connection-bars:before,
.ion-contrast:before,
.ion-crop:before,
.ion-cube:before,
.ion-disc:before,
.ion-document:before,
.ion-document-text:before,
.ion-drag:before,
.ion-earth:before,
.ion-easel:before,
.ion-edit:before,
.ion-egg:before,
.ion-eject:before,
.ion-email:before,
.ion-email-unread:before,
.ion-erlenmeyer-flask:before,
.ion-erlenmeyer-flask-bubbles:before,
.ion-eye:before,
.ion-eye-disabled:before,
.ion-female:before,
.ion-filing:before,
.ion-film-marker:before,
.ion-fireball:before,
.ion-flag:before,
.ion-flame:before,
.ion-flash:before,
.ion-flash-off:before,
.ion-folder:before,
.ion-fork:before,
.ion-fork-repo:before,
.ion-forward:before,
.ion-funnel:before,
.ion-gear-a:before,
.ion-gear-b:before,
.ion-grid:before,
.ion-hammer:before,
.ion-happy:before,
.ion-happy-outline:before,
.ion-headphone:before,
.ion-heart:before,
.ion-heart-broken:before,
.ion-help:before,
.ion-help-buoy:before,
.ion-help-circled:before,
.ion-home:before,
.ion-icecream:before,
.ion-image:before,
.ion-images:before,
.ion-information:before,
.ion-information-circled:before,
.ion-ionic:before,
.ion-ios-alarm:before,
.ion-ios-alarm-outline:before,
.ion-ios-albums:before,
.ion-ios-albums-outline:before,
.ion-ios-americanfootball:before,
.ion-ios-americanfootball-outline:before,
.ion-ios-analytics:before,
.ion-ios-analytics-outline:before,
.ion-ios-arrow-back:before,
.ion-ios-arrow-down:before,
.ion-ios-arrow-forward:before,
.ion-ios-arrow-left:before,
.ion-ios-arrow-right:before,
.ion-ios-arrow-thin-down:before,
.ion-ios-arrow-thin-left:before,
.ion-ios-arrow-thin-right:before,
.ion-ios-arrow-thin-up:before,
.ion-ios-arrow-up:before,
.ion-ios-at:before,
.ion-ios-at-outline:before,
.ion-ios-barcode:before,
.ion-ios-barcode-outline:before,
.ion-ios-baseball:before,
.ion-ios-baseball-outline:before,
.ion-ios-basketball:before,
.ion-ios-basketball-outline:before,
.ion-ios-bell:before,
.ion-ios-bell-outline:before,
.ion-ios-body:before,
.ion-ios-body-outline:before,
.ion-ios-bolt:before,
.ion-ios-bolt-outline:before,
.ion-ios-book:before,
.ion-ios-book-outline:before,
.ion-ios-bookmarks:before,
.ion-ios-bookmarks-outline:before,
.ion-ios-box:before,
.ion-ios-box-outline:before,
.ion-ios-briefcase:before,
.ion-ios-briefcase-outline:before,
.ion-ios-browsers:before,
.ion-ios-browsers-outline:before,
.ion-ios-calculator:before,
.ion-ios-calculator-outline:before,
.ion-ios-calendar:before,
.ion-ios-calendar-outline:before,
.ion-ios-camera:before,
.ion-ios-camera-outline:before,
.ion-ios-cart:before,
.ion-ios-cart-outline:before,
.ion-ios-chatboxes:before,
.ion-ios-chatboxes-outline:before,
.ion-ios-chatbubble:before,
.ion-ios-chatbubble-outline:before,
.ion-ios-checkmark:before,
.ion-ios-checkmark-empty:before,
.ion-ios-checkmark-outline:before,
.ion-ios-circle-filled:before,
.ion-ios-circle-outline:before,
.ion-ios-clock:before,
.ion-ios-clock-outline:before,
.ion-ios-close:before,
.ion-ios-close-empty:before,
.ion-ios-close-outline:before,
.ion-ios-cloud:before,
.ion-ios-cloud-download:before,
.ion-ios-cloud-download-outline:before,
.ion-ios-cloud-outline:before,
.ion-ios-cloud-upload:before,
.ion-ios-cloud-upload-outline:before,
.ion-ios-cloudy:before,
.ion-ios-cloudy-night:before,
.ion-ios-cloudy-night-outline:before,
.ion-ios-cloudy-outline:before,
.ion-ios-cog:before,
.ion-ios-cog-outline:before,
.ion-ios-color-filter:before,
.ion-ios-color-filter-outline:before,
.ion-ios-color-wand:before,
.ion-ios-color-wand-outline:before,
.ion-ios-compose:before,
.ion-ios-compose-outline:before,
.ion-ios-contact:before,
.ion-ios-contact-outline:before,
.ion-ios-copy:before,
.ion-ios-copy-outline:before,
.ion-ios-crop:before,
.ion-ios-crop-strong:before,
.ion-ios-download:before,
.ion-ios-download-outline:before,
.ion-ios-drag:before,
.ion-ios-email:before,
.ion-ios-email-outline:before,
.ion-ios-eye:before,
.ion-ios-eye-outline:before,
.ion-ios-fastforward:before,
.ion-ios-fastforward-outline:before,
.ion-ios-filing:before,
.ion-ios-filing-outline:before,
.ion-ios-film:before,
.ion-ios-film-outline:before,
.ion-ios-flag:before,
.ion-ios-flag-outline:before,
.ion-ios-flame:before,
.ion-ios-flame-outline:before,
.ion-ios-flask:before,
.ion-ios-flask-outline:before,
.ion-ios-flower:before,
.ion-ios-flower-outline:before,
.ion-ios-folder:before,
.ion-ios-folder-outline:before,
.ion-ios-football:before,
.ion-ios-football-outline:before,
.ion-ios-game-controller-a:before,
.ion-ios-game-controller-a-outline:before,
.ion-ios-game-controller-b:before,
.ion-ios-game-controller-b-outline:before,
.ion-ios-gear:before,
.ion-ios-gear-outline:before,
.ion-ios-glasses:before,
.ion-ios-glasses-outline:before,
.ion-ios-grid-view:before,
.ion-ios-grid-view-outline:before,
.ion-ios-heart:before,
.ion-ios-heart-outline:before,
.ion-ios-help:before,
.ion-ios-help-empty:before,
.ion-ios-help-outline:before,
.ion-ios-home:before,
.ion-ios-home-outline:before,
.ion-ios-infinite:before,
.ion-ios-infinite-outline:before,
.ion-ios-information:before,
.ion-ios-information-empty:before,
.ion-ios-information-outline:before,
.ion-ios-ionic-outline:before,
.ion-ios-keypad:before,
.ion-ios-keypad-outline:before,
.ion-ios-lightbulb:before,
.ion-ios-lightbulb-outline:before,
.ion-ios-list:before,
.ion-ios-list-outline:before,
.ion-ios-location:before,
.ion-ios-location-outline:before,
.ion-ios-locked:before,
.ion-ios-locked-outline:before,
.ion-ios-loop:before,
.ion-ios-loop-strong:before,
.ion-ios-medical:before,
.ion-ios-medical-outline:before,
.ion-ios-medkit:before,
.ion-ios-medkit-outline:before,
.ion-ios-mic:before,
.ion-ios-mic-off:before,
.ion-ios-mic-outline:before,
.ion-ios-minus:before,
.ion-ios-minus-empty:before,
.ion-ios-minus-outline:before,
.ion-ios-monitor:before,
.ion-ios-monitor-outline:before,
.ion-ios-moon:before,
.ion-ios-moon-outline:before,
.ion-ios-more:before,
.ion-ios-more-outline:before,
.ion-ios-musical-note:before,
.ion-ios-musical-notes:before,
.ion-ios-navigate:before,
.ion-ios-navigate-outline:before,
.ion-ios-nutrition:before,
.ion-ios-nutrition-outline:before,
.ion-ios-paper:before,
.ion-ios-paper-outline:before,
.ion-ios-paperplane:before,
.ion-ios-paperplane-outline:before,
.ion-ios-partlysunny:before,
.ion-ios-partlysunny-outline:before,
.ion-ios-pause:before,
.ion-ios-pause-outline:before,
.ion-ios-paw:before,
.ion-ios-paw-outline:before,
.ion-ios-people:before,
.ion-ios-people-outline:before,
.ion-ios-person:before,
.ion-ios-person-outline:before,
.ion-ios-personadd:before,
.ion-ios-personadd-outline:before,
.ion-ios-photos:before,
.ion-ios-photos-outline:before,
.ion-ios-pie:before,
.ion-ios-pie-outline:before,
.ion-ios-pint:before,
.ion-ios-pint-outline:before,
.ion-ios-play:before,
.ion-ios-play-outline:before,
.ion-ios-plus:before,
.ion-ios-plus-empty:before,
.ion-ios-plus-outline:before,
.ion-ios-pricetag:before,
.ion-ios-pricetag-outline:before,
.ion-ios-pricetags:before,
.ion-ios-pricetags-outline:before,
.ion-ios-printer:before,
.ion-ios-printer-outline:before,
.ion-ios-pulse:before,
.ion-ios-pulse-strong:before,
.ion-ios-rainy:before,
.ion-ios-rainy-outline:before,
.ion-ios-recording:before,
.ion-ios-recording-outline:before,
.ion-ios-redo:before,
.ion-ios-redo-outline:before,
.ion-ios-refresh:before,
.ion-ios-refresh-empty:before,
.ion-ios-refresh-outline:before,
.ion-ios-reload:before,
.ion-ios-reverse-camera:before,
.ion-ios-reverse-camera-outline:before,
.ion-ios-rewind:before,
.ion-ios-rewind-outline:before,
.ion-ios-rose:before,
.ion-ios-rose-outline:before,
.ion-ios-search:before,
.ion-ios-search-strong:before,
.ion-ios-settings:before,
.ion-ios-settings-strong:before,
.ion-ios-shuffle:before,
.ion-ios-shuffle-strong:before,
.ion-ios-skipbackward:before,
.ion-ios-skipbackward-outline:before,
.ion-ios-skipforward:before,
.ion-ios-skipforward-outline:before,
.ion-ios-snowy:before,
.ion-ios-speedometer:before,
.ion-ios-speedometer-outline:before,
.ion-ios-star:before,
.ion-ios-star-half:before,
.ion-ios-star-outline:before,
.ion-ios-stopwatch:before,
.ion-ios-stopwatch-outline:before,
.ion-ios-sunny:before,
.ion-ios-sunny-outline:before,
.ion-ios-telephone:before,
.ion-ios-telephone-outline:before,
.ion-ios-tennisball:before,
.ion-ios-tennisball-outline:before,
.ion-ios-thunderstorm:before,
.ion-ios-thunderstorm-outline:before,
.ion-ios-time:before,
.ion-ios-time-outline:before,
.ion-ios-timer:before,
.ion-ios-timer-outline:before,
.ion-ios-toggle:before,
.ion-ios-toggle-outline:before,
.ion-ios-trash:before,
.ion-ios-trash-outline:before,
.ion-ios-undo:before,
.ion-ios-undo-outline:before,
.ion-ios-unlocked:before,
.ion-ios-unlocked-outline:before,
.ion-ios-upload:before,
.ion-ios-upload-outline:before,
.ion-ios-videocam:before,
.ion-ios-videocam-outline:before,
.ion-ios-volume-high:before,
.ion-ios-volume-low:before,
.ion-ios-wineglass:before,
.ion-ios-wineglass-outline:before,
.ion-ios-world:before,
.ion-ios-world-outline:before,
.ion-ipad:before,
.ion-iphone:before,
.ion-ipod:before,
.ion-jet:before,
.ion-key:before,
.ion-knife:before,
.ion-laptop:before,
.ion-leaf:before,
.ion-levels:before,
.ion-lightbulb:before,
.ion-link:before,
.ion-load-a:before,
.ion-load-b:before,
.ion-load-c:before,
.ion-load-d:before,
.ion-location:before,
.ion-lock-combination:before,
.ion-locked:before,
.ion-log-in:before,
.ion-log-out:before,
.ion-loop:before,
.ion-magnet:before,
.ion-male:before,
.ion-man:before,
.ion-map:before,
.ion-medkit:before,
.ion-merge:before,
.ion-mic-a:before,
.ion-mic-b:before,
.ion-mic-c:before,
.ion-minus:before,
.ion-minus-circled:before,
.ion-minus-round:before,
.ion-model-s:before,
.ion-monitor:before,
.ion-more:before,
.ion-mouse:before,
.ion-music-note:before,
.ion-navicon:before,
.ion-navicon-round:before,
.ion-navigate:before,
.ion-network:before,
.ion-no-smoking:before,
.ion-nuclear:before,
.ion-outlet:before,
.ion-paintbrush:before,
.ion-paintbucket:before,
.ion-paper-airplane:before,
.ion-paperclip:before,
.ion-pause:before,
.ion-person:before,
.ion-person-add:before,
.ion-person-stalker:before,
.ion-pie-graph:before,
.ion-pin:before,
.ion-pinpoint:before,
.ion-pizza:before,
.ion-plane:before,
.ion-planet:before,
.ion-play:before,
.ion-playstation:before,
.ion-plus:before,
.ion-plus-circled:before,
.ion-plus-round:before,
.ion-podium:before,
.ion-pound:before,
.ion-power:before,
.ion-pricetag:before,
.ion-pricetags:before,
.ion-printer:before,
.ion-pull-request:before,
.ion-qr-scanner:before,
.ion-quote:before,
.ion-radio-waves:before,
.ion-record:before,
.ion-refresh:before,
.ion-reply:before,
.ion-reply-all:before,
.ion-ribbon-a:before,
.ion-ribbon-b:before,
.ion-sad:before,
.ion-sad-outline:before,
.ion-scissors:before,
.ion-search:before,
.ion-settings:before,
.ion-share:before,
.ion-shuffle:before,
.ion-skip-backward:before,
.ion-skip-forward:before,
.ion-social-android:before,
.ion-social-android-outline:before,
.ion-social-angular:before,
.ion-social-angular-outline:before,
.ion-social-apple:before,
.ion-social-apple-outline:before,
.ion-social-bitcoin:before,
.ion-social-bitcoin-outline:before,
.ion-social-buffer:before,
.ion-social-buffer-outline:before,
.ion-social-chrome:before,
.ion-social-chrome-outline:before,
.ion-social-codepen:before,
.ion-social-codepen-outline:before,
.ion-social-css3:before,
.ion-social-css3-outline:before,
.ion-social-designernews:before,
.ion-social-designernews-outline:before,
.ion-social-dribbble:before,
.ion-social-dribbble-outline:before,
.ion-social-dropbox:before,
.ion-social-dropbox-outline:before,
.ion-social-euro:before,
.ion-social-euro-outline:before,
.ion-social-facebook:before,
.ion-social-facebook-outline:before,
.ion-social-foursquare:before,
.ion-social-foursquare-outline:before,
.ion-social-freebsd-devil:before,
.ion-social-github:before,
.ion-social-github-outline:before,
.ion-social-google:before,
.ion-social-google-outline:before,
.ion-social-googleplus:before,
.ion-social-googleplus-outline:before,
.ion-social-hackernews:before,
.ion-social-hackernews-outline:before,
.ion-social-html5:before,
.ion-social-html5-outline:before,
.ion-social-instagram:before,
.ion-social-instagram-outline:before,
.ion-social-javascript:before,
.ion-social-javascript-outline:before,
.ion-social-linkedin:before,
.ion-social-linkedin-outline:before,
.ion-social-markdown:before,
.ion-social-nodejs:before,
.ion-social-octocat:before,
.ion-social-pinterest:before,
.ion-social-pinterest-outline:before,
.ion-social-python:before,
.ion-social-reddit:before,
.ion-social-reddit-outline:before,
.ion-social-rss:before,
.ion-social-rss-outline:before,
.ion-social-sass:before,
.ion-social-skype:before,
.ion-social-skype-outline:before,
.ion-social-snapchat:before,
.ion-social-snapchat-outline:before,
.ion-social-tumblr:before,
.ion-social-tumblr-outline:before,
.ion-social-tux:before,
.ion-social-twitch:before,
.ion-social-twitch-outline:before,
.ion-social-twitter:before,
.ion-social-twitter-outline:before,
.ion-social-usd:before,
.ion-social-usd-outline:before,
.ion-social-vimeo:before,
.ion-social-vimeo-outline:before,
.ion-social-whatsapp:before,
.ion-social-whatsapp-outline:before,
.ion-social-windows:before,
.ion-social-windows-outline:before,
.ion-social-wordpress:before,
.ion-social-wordpress-outline:before,
.ion-social-yahoo:before,
.ion-social-yahoo-outline:before,
.ion-social-yen:before,
.ion-social-yen-outline:before,
.ion-social-youtube:before,
.ion-social-youtube-outline:before,
.ion-soup-can:before,
.ion-soup-can-outline:before,
.ion-speakerphone:before,
.ion-speedometer:before,
.ion-spoon:before,
.ion-star:before,
.ion-stats-bars:before,
.ion-steam:before,
.ion-stop:before,
.ion-thermometer:before,
.ion-thumbsdown:before,
.ion-thumbsup:before,
.ion-toggle:before,
.ion-toggle-filled:before,
.ion-transgender:before,
.ion-trash-a:before,
.ion-trash-b:before,
.ion-trophy:before,
.ion-tshirt:before,
.ion-tshirt-outline:before,
.ion-umbrella:before,
.ion-university:before,
.ion-unlocked:before,
.ion-upload:before,
.ion-usb:before,
.ion-videocamera:before,
.ion-volume-high:before,
.ion-volume-low:before,
.ion-volume-medium:before,
.ion-volume-mute:before,
.ion-wand:before,
.ion-waterdrop:before,
.ion-wifi:before,
.ion-wineglass:before,
.ion-woman:before,
.ion-wrench:before,
.ion-xbox:before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.ion-alert:before {
  content: ""; }

.ion-alert-circled:before {
  content: ""; }

.ion-android-add:before {
  content: ""; }

.ion-android-add-circle:before {
  content: ""; }

.ion-android-alarm-clock:before {
  content: ""; }

.ion-android-alert:before {
  content: ""; }

.ion-android-apps:before {
  content: ""; }

.ion-android-archive:before {
  content: ""; }

.ion-android-arrow-back:before {
  content: ""; }

.ion-android-arrow-down:before {
  content: ""; }

.ion-android-arrow-dropdown:before {
  content: ""; }

.ion-android-arrow-dropdown-circle:before {
  content: ""; }

.ion-android-arrow-dropleft:before {
  content: ""; }

.ion-android-arrow-dropleft-circle:before {
  content: ""; }

.ion-android-arrow-dropright:before {
  content: ""; }

.ion-android-arrow-dropright-circle:before {
  content: ""; }

.ion-android-arrow-dropup:before {
  content: ""; }

.ion-android-arrow-dropup-circle:before {
  content: ""; }

.ion-android-arrow-forward:before {
  content: ""; }

.ion-android-arrow-up:before {
  content: ""; }

.ion-android-attach:before {
  content: ""; }

.ion-android-bar:before {
  content: ""; }

.ion-android-bicycle:before {
  content: ""; }

.ion-android-boat:before {
  content: ""; }

.ion-android-bookmark:before {
  content: ""; }

.ion-android-bulb:before {
  content: ""; }

.ion-android-bus:before {
  content: ""; }

.ion-android-calendar:before {
  content: ""; }

.ion-android-call:before {
  content: ""; }

.ion-android-camera:before {
  content: ""; }

.ion-android-cancel:before {
  content: ""; }

.ion-android-car:before {
  content: ""; }

.ion-android-cart:before {
  content: ""; }

.ion-android-chat:before {
  content: ""; }

.ion-android-checkbox:before {
  content: ""; }

.ion-android-checkbox-blank:before {
  content: ""; }

.ion-android-checkbox-outline:before {
  content: ""; }

.ion-android-checkbox-outline-blank:before {
  content: ""; }

.ion-android-checkmark-circle:before {
  content: ""; }

.ion-android-clipboard:before {
  content: ""; }

.ion-android-close:before {
  content: ""; }

.ion-android-cloud:before {
  content: ""; }

.ion-android-cloud-circle:before {
  content: ""; }

.ion-android-cloud-done:before {
  content: ""; }

.ion-android-cloud-outline:before {
  content: ""; }

.ion-android-color-palette:before {
  content: ""; }

.ion-android-compass:before {
  content: ""; }

.ion-android-contact:before {
  content: ""; }

.ion-android-contacts:before {
  content: ""; }

.ion-android-contract:before {
  content: ""; }

.ion-android-create:before {
  content: ""; }

.ion-android-delete:before {
  content: ""; }

.ion-android-desktop:before {
  content: ""; }

.ion-android-document:before {
  content: ""; }

.ion-android-done:before {
  content: ""; }

.ion-android-done-all:before {
  content: ""; }

.ion-android-download:before {
  content: ""; }

.ion-android-drafts:before {
  content: ""; }

.ion-android-exit:before {
  content: ""; }

.ion-android-expand:before {
  content: ""; }

.ion-android-favorite:before {
  content: ""; }

.ion-android-favorite-outline:before {
  content: ""; }

.ion-android-film:before {
  content: ""; }

.ion-android-folder:before {
  content: ""; }

.ion-android-folder-open:before {
  content: ""; }

.ion-android-funnel:before {
  content: ""; }

.ion-android-globe:before {
  content: ""; }

.ion-android-hand:before {
  content: ""; }

.ion-android-hangout:before {
  content: ""; }

.ion-android-happy:before {
  content: ""; }

.ion-android-home:before {
  content: ""; }

.ion-android-image:before {
  content: ""; }

.ion-android-laptop:before {
  content: ""; }

.ion-android-list:before {
  content: ""; }

.ion-android-locate:before {
  content: ""; }

.ion-android-lock:before {
  content: ""; }

.ion-android-mail:before {
  content: ""; }

.ion-android-map:before {
  content: ""; }

.ion-android-menu:before {
  content: ""; }

.ion-android-microphone:before {
  content: ""; }

.ion-android-microphone-off:before {
  content: ""; }

.ion-android-more-horizontal:before {
  content: ""; }

.ion-android-more-vertical:before {
  content: ""; }

.ion-android-navigate:before {
  content: ""; }

.ion-android-notifications:before {
  content: ""; }

.ion-android-notifications-none:before {
  content: ""; }

.ion-android-notifications-off:before {
  content: ""; }

.ion-android-open:before {
  content: ""; }

.ion-android-options:before {
  content: ""; }

.ion-android-people:before {
  content: ""; }

.ion-android-person:before {
  content: ""; }

.ion-android-person-add:before {
  content: ""; }

.ion-android-phone-landscape:before {
  content: ""; }

.ion-android-phone-portrait:before {
  content: ""; }

.ion-android-pin:before {
  content: ""; }

.ion-android-plane:before {
  content: ""; }

.ion-android-playstore:before {
  content: ""; }

.ion-android-print:before {
  content: ""; }

.ion-android-radio-button-off:before {
  content: ""; }

.ion-android-radio-button-on:before {
  content: ""; }

.ion-android-refresh:before {
  content: ""; }

.ion-android-remove:before {
  content: ""; }

.ion-android-remove-circle:before {
  content: ""; }

.ion-android-restaurant:before {
  content: ""; }

.ion-android-sad:before {
  content: ""; }

.ion-android-search:before {
  content: ""; }

.ion-android-send:before {
  content: ""; }

.ion-android-settings:before {
  content: ""; }

.ion-android-share:before {
  content: ""; }

.ion-android-share-alt:before {
  content: ""; }

.ion-android-star:before {
  content: ""; }

.ion-android-star-half:before {
  content: ""; }

.ion-android-star-outline:before {
  content: ""; }

.ion-android-stopwatch:before {
  content: ""; }

.ion-android-subway:before {
  content: ""; }

.ion-android-sunny:before {
  content: ""; }

.ion-android-sync:before {
  content: ""; }

.ion-android-textsms:before {
  content: ""; }

.ion-android-time:before {
  content: ""; }

.ion-android-train:before {
  content: ""; }

.ion-android-unlock:before {
  content: ""; }

.ion-android-upload:before {
  content: ""; }

.ion-android-volume-down:before {
  content: ""; }

.ion-android-volume-mute:before {
  content: ""; }

.ion-android-volume-off:before {
  content: ""; }

.ion-android-volume-up:before {
  content: ""; }

.ion-android-walk:before {
  content: ""; }

.ion-android-warning:before {
  content: ""; }

.ion-android-watch:before {
  content: ""; }

.ion-android-wifi:before {
  content: ""; }

.ion-aperture:before {
  content: ""; }

.ion-archive:before {
  content: ""; }

.ion-arrow-down-a:before {
  content: ""; }

.ion-arrow-down-b:before {
  content: ""; }

.ion-arrow-down-c:before {
  content: ""; }

.ion-arrow-expand:before {
  content: ""; }

.ion-arrow-graph-down-left:before {
  content: ""; }

.ion-arrow-graph-down-right:before {
  content: ""; }

.ion-arrow-graph-up-left:before {
  content: ""; }

.ion-arrow-graph-up-right:before {
  content: ""; }

.ion-arrow-left-a:before {
  content: ""; }

.ion-arrow-left-b:before {
  content: ""; }

.ion-arrow-left-c:before {
  content: ""; }

.ion-arrow-move:before {
  content: ""; }

.ion-arrow-resize:before {
  content: ""; }

.ion-arrow-return-left:before {
  content: ""; }

.ion-arrow-return-right:before {
  content: ""; }

.ion-arrow-right-a:before {
  content: ""; }

.ion-arrow-right-b:before {
  content: ""; }

.ion-arrow-right-c:before {
  content: ""; }

.ion-arrow-shrink:before {
  content: ""; }

.ion-arrow-swap:before {
  content: ""; }

.ion-arrow-up-a:before {
  content: ""; }

.ion-arrow-up-b:before {
  content: ""; }

.ion-arrow-up-c:before {
  content: ""; }

.ion-asterisk:before {
  content: ""; }

.ion-at:before {
  content: ""; }

.ion-backspace:before {
  content: ""; }

.ion-backspace-outline:before {
  content: ""; }

.ion-bag:before {
  content: ""; }

.ion-battery-charging:before {
  content: ""; }

.ion-battery-empty:before {
  content: ""; }

.ion-battery-full:before {
  content: ""; }

.ion-battery-half:before {
  content: ""; }

.ion-battery-low:before {
  content: ""; }

.ion-beaker:before {
  content: ""; }

.ion-beer:before {
  content: ""; }

.ion-bluetooth:before {
  content: ""; }

.ion-bonfire:before {
  content: ""; }

.ion-bookmark:before {
  content: ""; }

.ion-bowtie:before {
  content: ""; }

.ion-briefcase:before {
  content: ""; }

.ion-bug:before {
  content: ""; }

.ion-calculator:before {
  content: ""; }

.ion-calendar:before {
  content: ""; }

.ion-camera:before {
  content: ""; }

.ion-card:before {
  content: ""; }

.ion-cash:before {
  content: ""; }

.ion-chatbox:before {
  content: ""; }

.ion-chatbox-working:before {
  content: ""; }

.ion-chatboxes:before {
  content: ""; }

.ion-chatbubble:before {
  content: ""; }

.ion-chatbubble-working:before {
  content: ""; }

.ion-chatbubbles:before {
  content: ""; }

.ion-checkmark:before {
  content: ""; }

.ion-checkmark-circled:before {
  content: ""; }

.ion-checkmark-round:before {
  content: ""; }

.ion-chevron-down:before {
  content: ""; }

.ion-chevron-left:before {
  content: ""; }

.ion-chevron-right:before {
  content: ""; }

.ion-chevron-up:before {
  content: ""; }

.ion-clipboard:before {
  content: ""; }

.ion-clock:before {
  content: ""; }

.ion-close:before {
  content: ""; }

.ion-close-circled:before {
  content: ""; }

.ion-close-round:before {
  content: ""; }

.ion-closed-captioning:before {
  content: ""; }

.ion-cloud:before {
  content: ""; }

.ion-code:before {
  content: ""; }

.ion-code-download:before {
  content: ""; }

.ion-code-working:before {
  content: ""; }

.ion-coffee:before {
  content: ""; }

.ion-compass:before {
  content: ""; }

.ion-compose:before {
  content: ""; }

.ion-connection-bars:before {
  content: ""; }

.ion-contrast:before {
  content: ""; }

.ion-crop:before {
  content: ""; }

.ion-cube:before {
  content: ""; }

.ion-disc:before {
  content: ""; }

.ion-document:before {
  content: ""; }

.ion-document-text:before {
  content: ""; }

.ion-drag:before {
  content: ""; }

.ion-earth:before {
  content: ""; }

.ion-easel:before {
  content: ""; }

.ion-edit:before {
  content: ""; }

.ion-egg:before {
  content: ""; }

.ion-eject:before {
  content: ""; }

.ion-email:before {
  content: ""; }

.ion-email-unread:before {
  content: ""; }

.ion-erlenmeyer-flask:before {
  content: ""; }

.ion-erlenmeyer-flask-bubbles:before {
  content: ""; }

.ion-eye:before {
  content: ""; }

.ion-eye-disabled:before {
  content: ""; }

.ion-female:before {
  content: ""; }

.ion-filing:before {
  content: ""; }

.ion-film-marker:before {
  content: ""; }

.ion-fireball:before {
  content: ""; }

.ion-flag:before {
  content: ""; }

.ion-flame:before {
  content: ""; }

.ion-flash:before {
  content: ""; }

.ion-flash-off:before {
  content: ""; }

.ion-folder:before {
  content: ""; }

.ion-fork:before {
  content: ""; }

.ion-fork-repo:before {
  content: ""; }

.ion-forward:before {
  content: ""; }

.ion-funnel:before {
  content: ""; }

.ion-gear-a:before {
  content: ""; }

.ion-gear-b:before {
  content: ""; }

.ion-grid:before {
  content: ""; }

.ion-hammer:before {
  content: ""; }

.ion-happy:before {
  content: ""; }

.ion-happy-outline:before {
  content: ""; }

.ion-headphone:before {
  content: ""; }

.ion-heart:before {
  content: ""; }

.ion-heart-broken:before {
  content: ""; }

.ion-help:before {
  content: ""; }

.ion-help-buoy:before {
  content: ""; }

.ion-help-circled:before {
  content: ""; }

.ion-home:before {
  content: ""; }

.ion-icecream:before {
  content: ""; }

.ion-image:before {
  content: ""; }

.ion-images:before {
  content: ""; }

.ion-information:before {
  content: ""; }

.ion-information-circled:before {
  content: ""; }

.ion-ionic:before {
  content: ""; }

.ion-ios-alarm:before {
  content: ""; }

.ion-ios-alarm-outline:before {
  content: ""; }

.ion-ios-albums:before {
  content: ""; }

.ion-ios-albums-outline:before {
  content: ""; }

.ion-ios-americanfootball:before {
  content: ""; }

.ion-ios-americanfootball-outline:before {
  content: ""; }

.ion-ios-analytics:before {
  content: ""; }

.ion-ios-analytics-outline:before {
  content: ""; }

.ion-ios-arrow-back:before {
  content: ""; }

.ion-ios-arrow-down:before {
  content: ""; }

.ion-ios-arrow-forward:before {
  content: ""; }

.ion-ios-arrow-left:before {
  content: ""; }

.ion-ios-arrow-right:before {
  content: ""; }

.ion-ios-arrow-thin-down:before {
  content: ""; }

.ion-ios-arrow-thin-left:before {
  content: ""; }

.ion-ios-arrow-thin-right:before {
  content: ""; }

.ion-ios-arrow-thin-up:before {
  content: ""; }

.ion-ios-arrow-up:before {
  content: ""; }

.ion-ios-at:before {
  content: ""; }

.ion-ios-at-outline:before {
  content: ""; }

.ion-ios-barcode:before {
  content: ""; }

.ion-ios-barcode-outline:before {
  content: ""; }

.ion-ios-baseball:before {
  content: ""; }

.ion-ios-baseball-outline:before {
  content: ""; }

.ion-ios-basketball:before {
  content: ""; }

.ion-ios-basketball-outline:before {
  content: ""; }

.ion-ios-bell:before {
  content: ""; }

.ion-ios-bell-outline:before {
  content: ""; }

.ion-ios-body:before {
  content: ""; }

.ion-ios-body-outline:before {
  content: ""; }

.ion-ios-bolt:before {
  content: ""; }

.ion-ios-bolt-outline:before {
  content: ""; }

.ion-ios-book:before {
  content: ""; }

.ion-ios-book-outline:before {
  content: ""; }

.ion-ios-bookmarks:before {
  content: ""; }

.ion-ios-bookmarks-outline:before {
  content: ""; }

.ion-ios-box:before {
  content: ""; }

.ion-ios-box-outline:before {
  content: ""; }

.ion-ios-briefcase:before {
  content: ""; }

.ion-ios-briefcase-outline:before {
  content: ""; }

.ion-ios-browsers:before {
  content: ""; }

.ion-ios-browsers-outline:before {
  content: ""; }

.ion-ios-calculator:before {
  content: ""; }

.ion-ios-calculator-outline:before {
  content: ""; }

.ion-ios-calendar:before {
  content: ""; }

.ion-ios-calendar-outline:before {
  content: ""; }

.ion-ios-camera:before {
  content: ""; }

.ion-ios-camera-outline:before {
  content: ""; }

.ion-ios-cart:before {
  content: ""; }

.ion-ios-cart-outline:before {
  content: ""; }

.ion-ios-chatboxes:before {
  content: ""; }

.ion-ios-chatboxes-outline:before {
  content: ""; }

.ion-ios-chatbubble:before {
  content: ""; }

.ion-ios-chatbubble-outline:before {
  content: ""; }

.ion-ios-checkmark:before {
  content: ""; }

.ion-ios-checkmark-empty:before {
  content: ""; }

.ion-ios-checkmark-outline:before {
  content: ""; }

.ion-ios-circle-filled:before {
  content: ""; }

.ion-ios-circle-outline:before {
  content: ""; }

.ion-ios-clock:before {
  content: ""; }

.ion-ios-clock-outline:before {
  content: ""; }

.ion-ios-close:before {
  content: ""; }

.ion-ios-close-empty:before {
  content: ""; }

.ion-ios-close-outline:before {
  content: ""; }

.ion-ios-cloud:before {
  content: ""; }

.ion-ios-cloud-download:before {
  content: ""; }

.ion-ios-cloud-download-outline:before {
  content: ""; }

.ion-ios-cloud-outline:before {
  content: ""; }

.ion-ios-cloud-upload:before {
  content: ""; }

.ion-ios-cloud-upload-outline:before {
  content: ""; }

.ion-ios-cloudy:before {
  content: ""; }

.ion-ios-cloudy-night:before {
  content: ""; }

.ion-ios-cloudy-night-outline:before {
  content: ""; }

.ion-ios-cloudy-outline:before {
  content: ""; }

.ion-ios-cog:before {
  content: ""; }

.ion-ios-cog-outline:before {
  content: ""; }

.ion-ios-color-filter:before {
  content: ""; }

.ion-ios-color-filter-outline:before {
  content: ""; }

.ion-ios-color-wand:before {
  content: ""; }

.ion-ios-color-wand-outline:before {
  content: ""; }

.ion-ios-compose:before {
  content: ""; }

.ion-ios-compose-outline:before {
  content: ""; }

.ion-ios-contact:before {
  content: ""; }

.ion-ios-contact-outline:before {
  content: ""; }

.ion-ios-copy:before {
  content: ""; }

.ion-ios-copy-outline:before {
  content: ""; }

.ion-ios-crop:before {
  content: ""; }

.ion-ios-crop-strong:before {
  content: ""; }

.ion-ios-download:before {
  content: ""; }

.ion-ios-download-outline:before {
  content: ""; }

.ion-ios-drag:before {
  content: ""; }

.ion-ios-email:before {
  content: ""; }

.ion-ios-email-outline:before {
  content: ""; }

.ion-ios-eye:before {
  content: ""; }

.ion-ios-eye-outline:before {
  content: ""; }

.ion-ios-fastforward:before {
  content: ""; }

.ion-ios-fastforward-outline:before {
  content: ""; }

.ion-ios-filing:before {
  content: ""; }

.ion-ios-filing-outline:before {
  content: ""; }

.ion-ios-film:before {
  content: ""; }

.ion-ios-film-outline:before {
  content: ""; }

.ion-ios-flag:before {
  content: ""; }

.ion-ios-flag-outline:before {
  content: ""; }

.ion-ios-flame:before {
  content: ""; }

.ion-ios-flame-outline:before {
  content: ""; }

.ion-ios-flask:before {
  content: ""; }

.ion-ios-flask-outline:before {
  content: ""; }

.ion-ios-flower:before {
  content: ""; }

.ion-ios-flower-outline:before {
  content: ""; }

.ion-ios-folder:before {
  content: ""; }

.ion-ios-folder-outline:before {
  content: ""; }

.ion-ios-football:before {
  content: ""; }

.ion-ios-football-outline:before {
  content: ""; }

.ion-ios-game-controller-a:before {
  content: ""; }

.ion-ios-game-controller-a-outline:before {
  content: ""; }

.ion-ios-game-controller-b:before {
  content: ""; }

.ion-ios-game-controller-b-outline:before {
  content: ""; }

.ion-ios-gear:before {
  content: ""; }

.ion-ios-gear-outline:before {
  content: ""; }

.ion-ios-glasses:before {
  content: ""; }

.ion-ios-glasses-outline:before {
  content: ""; }

.ion-ios-grid-view:before {
  content: ""; }

.ion-ios-grid-view-outline:before {
  content: ""; }

.ion-ios-heart:before {
  content: ""; }

.ion-ios-heart-outline:before {
  content: ""; }

.ion-ios-help:before {
  content: ""; }

.ion-ios-help-empty:before {
  content: ""; }

.ion-ios-help-outline:before {
  content: ""; }

.ion-ios-home:before {
  content: ""; }

.ion-ios-home-outline:before {
  content: ""; }

.ion-ios-infinite:before {
  content: ""; }

.ion-ios-infinite-outline:before {
  content: ""; }

.ion-ios-information:before {
  content: ""; }

.ion-ios-information-empty:before {
  content: ""; }

.ion-ios-information-outline:before {
  content: ""; }

.ion-ios-ionic-outline:before {
  content: ""; }

.ion-ios-keypad:before {
  content: ""; }

.ion-ios-keypad-outline:before {
  content: ""; }

.ion-ios-lightbulb:before {
  content: ""; }

.ion-ios-lightbulb-outline:before {
  content: ""; }

.ion-ios-list:before {
  content: ""; }

.ion-ios-list-outline:before {
  content: ""; }

.ion-ios-location:before {
  content: ""; }

.ion-ios-location-outline:before {
  content: ""; }

.ion-ios-locked:before {
  content: ""; }

.ion-ios-locked-outline:before {
  content: ""; }

.ion-ios-loop:before {
  content: ""; }

.ion-ios-loop-strong:before {
  content: ""; }

.ion-ios-medical:before {
  content: ""; }

.ion-ios-medical-outline:before {
  content: ""; }

.ion-ios-medkit:before {
  content: ""; }

.ion-ios-medkit-outline:before {
  content: ""; }

.ion-ios-mic:before {
  content: ""; }

.ion-ios-mic-off:before {
  content: ""; }

.ion-ios-mic-outline:before {
  content: ""; }

.ion-ios-minus:before {
  content: ""; }

.ion-ios-minus-empty:before {
  content: ""; }

.ion-ios-minus-outline:before {
  content: ""; }

.ion-ios-monitor:before {
  content: ""; }

.ion-ios-monitor-outline:before {
  content: ""; }

.ion-ios-moon:before {
  content: ""; }

.ion-ios-moon-outline:before {
  content: ""; }

.ion-ios-more:before {
  content: ""; }

.ion-ios-more-outline:before {
  content: ""; }

.ion-ios-musical-note:before {
  content: ""; }

.ion-ios-musical-notes:before {
  content: ""; }

.ion-ios-navigate:before {
  content: ""; }

.ion-ios-navigate-outline:before {
  content: ""; }

.ion-ios-nutrition:before {
  content: ""; }

.ion-ios-nutrition-outline:before {
  content: ""; }

.ion-ios-paper:before {
  content: ""; }

.ion-ios-paper-outline:before {
  content: ""; }

.ion-ios-paperplane:before {
  content: ""; }

.ion-ios-paperplane-outline:before {
  content: ""; }

.ion-ios-partlysunny:before {
  content: ""; }

.ion-ios-partlysunny-outline:before {
  content: ""; }

.ion-ios-pause:before {
  content: ""; }

.ion-ios-pause-outline:before {
  content: ""; }

.ion-ios-paw:before {
  content: ""; }

.ion-ios-paw-outline:before {
  content: ""; }

.ion-ios-people:before {
  content: ""; }

.ion-ios-people-outline:before {
  content: ""; }

.ion-ios-person:before {
  content: ""; }

.ion-ios-person-outline:before {
  content: ""; }

.ion-ios-personadd:before {
  content: ""; }

.ion-ios-personadd-outline:before {
  content: ""; }

.ion-ios-photos:before {
  content: ""; }

.ion-ios-photos-outline:before {
  content: ""; }

.ion-ios-pie:before {
  content: ""; }

.ion-ios-pie-outline:before {
  content: ""; }

.ion-ios-pint:before {
  content: ""; }

.ion-ios-pint-outline:before {
  content: ""; }

.ion-ios-play:before {
  content: ""; }

.ion-ios-play-outline:before {
  content: ""; }

.ion-ios-plus:before {
  content: ""; }

.ion-ios-plus-empty:before {
  content: ""; }

.ion-ios-plus-outline:before {
  content: ""; }

.ion-ios-pricetag:before {
  content: ""; }

.ion-ios-pricetag-outline:before {
  content: ""; }

.ion-ios-pricetags:before {
  content: ""; }

.ion-ios-pricetags-outline:before {
  content: ""; }

.ion-ios-printer:before {
  content: ""; }

.ion-ios-printer-outline:before {
  content: ""; }

.ion-ios-pulse:before {
  content: ""; }

.ion-ios-pulse-strong:before {
  content: ""; }

.ion-ios-rainy:before {
  content: ""; }

.ion-ios-rainy-outline:before {
  content: ""; }

.ion-ios-recording:before {
  content: ""; }

.ion-ios-recording-outline:before {
  content: ""; }

.ion-ios-redo:before {
  content: ""; }

.ion-ios-redo-outline:before {
  content: ""; }

.ion-ios-refresh:before {
  content: ""; }

.ion-ios-refresh-empty:before {
  content: ""; }

.ion-ios-refresh-outline:before {
  content: ""; }

.ion-ios-reload:before {
  content: ""; }

.ion-ios-reverse-camera:before {
  content: ""; }

.ion-ios-reverse-camera-outline:before {
  content: ""; }

.ion-ios-rewind:before {
  content: ""; }

.ion-ios-rewind-outline:before {
  content: ""; }

.ion-ios-rose:before {
  content: ""; }

.ion-ios-rose-outline:before {
  content: ""; }

.ion-ios-search:before {
  content: ""; }

.ion-ios-search-strong:before {
  content: ""; }

.ion-ios-settings:before {
  content: ""; }

.ion-ios-settings-strong:before {
  content: ""; }

.ion-ios-shuffle:before {
  content: ""; }

.ion-ios-shuffle-strong:before {
  content: ""; }

.ion-ios-skipbackward:before {
  content: ""; }

.ion-ios-skipbackward-outline:before {
  content: ""; }

.ion-ios-skipforward:before {
  content: ""; }

.ion-ios-skipforward-outline:before {
  content: ""; }

.ion-ios-snowy:before {
  content: ""; }

.ion-ios-speedometer:before {
  content: ""; }

.ion-ios-speedometer-outline:before {
  content: ""; }

.ion-ios-star:before {
  content: ""; }

.ion-ios-star-half:before {
  content: ""; }

.ion-ios-star-outline:before {
  content: ""; }

.ion-ios-stopwatch:before {
  content: ""; }

.ion-ios-stopwatch-outline:before {
  content: ""; }

.ion-ios-sunny:before {
  content: ""; }

.ion-ios-sunny-outline:before {
  content: ""; }

.ion-ios-telephone:before {
  content: ""; }

.ion-ios-telephone-outline:before {
  content: ""; }

.ion-ios-tennisball:before {
  content: ""; }

.ion-ios-tennisball-outline:before {
  content: ""; }

.ion-ios-thunderstorm:before {
  content: ""; }

.ion-ios-thunderstorm-outline:before {
  content: ""; }

.ion-ios-time:before {
  content: ""; }

.ion-ios-time-outline:before {
  content: ""; }

.ion-ios-timer:before {
  content: ""; }

.ion-ios-timer-outline:before {
  content: ""; }

.ion-ios-toggle:before {
  content: ""; }

.ion-ios-toggle-outline:before {
  content: ""; }

.ion-ios-trash:before {
  content: ""; }

.ion-ios-trash-outline:before {
  content: ""; }

.ion-ios-undo:before {
  content: ""; }

.ion-ios-undo-outline:before {
  content: ""; }

.ion-ios-unlocked:before {
  content: ""; }

.ion-ios-unlocked-outline:before {
  content: ""; }

.ion-ios-upload:before {
  content: ""; }

.ion-ios-upload-outline:before {
  content: ""; }

.ion-ios-videocam:before {
  content: ""; }

.ion-ios-videocam-outline:before {
  content: ""; }

.ion-ios-volume-high:before {
  content: ""; }

.ion-ios-volume-low:before {
  content: ""; }

.ion-ios-wineglass:before {
  content: ""; }

.ion-ios-wineglass-outline:before {
  content: ""; }

.ion-ios-world:before {
  content: ""; }

.ion-ios-world-outline:before {
  content: ""; }

.ion-ipad:before {
  content: ""; }

.ion-iphone:before {
  content: ""; }

.ion-ipod:before {
  content: ""; }

.ion-jet:before {
  content: ""; }

.ion-key:before {
  content: ""; }

.ion-knife:before {
  content: ""; }

.ion-laptop:before {
  content: ""; }

.ion-leaf:before {
  content: ""; }

.ion-levels:before {
  content: ""; }

.ion-lightbulb:before {
  content: ""; }

.ion-link:before {
  content: ""; }

.ion-load-a:before {
  content: ""; }

.ion-load-b:before {
  content: ""; }

.ion-load-c:before {
  content: ""; }

.ion-load-d:before {
  content: ""; }

.ion-location:before {
  content: ""; }

.ion-lock-combination:before {
  content: ""; }

.ion-locked:before {
  content: ""; }

.ion-log-in:before {
  content: ""; }

.ion-log-out:before {
  content: ""; }

.ion-loop:before {
  content: ""; }

.ion-magnet:before {
  content: ""; }

.ion-male:before {
  content: ""; }

.ion-man:before {
  content: ""; }

.ion-map:before {
  content: ""; }

.ion-medkit:before {
  content: ""; }

.ion-merge:before {
  content: ""; }

.ion-mic-a:before {
  content: ""; }

.ion-mic-b:before {
  content: ""; }

.ion-mic-c:before {
  content: ""; }

.ion-minus:before {
  content: ""; }

.ion-minus-circled:before {
  content: ""; }

.ion-minus-round:before {
  content: ""; }

.ion-model-s:before {
  content: ""; }

.ion-monitor:before {
  content: ""; }

.ion-more:before {
  content: ""; }

.ion-mouse:before {
  content: ""; }

.ion-music-note:before {
  content: ""; }

.ion-navicon:before {
  content: ""; }

.ion-navicon-round:before {
  content: ""; }

.ion-navigate:before {
  content: ""; }

.ion-network:before {
  content: ""; }

.ion-no-smoking:before {
  content: ""; }

.ion-nuclear:before {
  content: ""; }

.ion-outlet:before {
  content: ""; }

.ion-paintbrush:before {
  content: ""; }

.ion-paintbucket:before {
  content: ""; }

.ion-paper-airplane:before {
  content: ""; }

.ion-paperclip:before {
  content: ""; }

.ion-pause:before {
  content: ""; }

.ion-person:before {
  content: ""; }

.ion-person-add:before {
  content: ""; }

.ion-person-stalker:before {
  content: ""; }

.ion-pie-graph:before {
  content: ""; }

.ion-pin:before {
  content: ""; }

.ion-pinpoint:before {
  content: ""; }

.ion-pizza:before {
  content: ""; }

.ion-plane:before {
  content: ""; }

.ion-planet:before {
  content: ""; }

.ion-play:before {
  content: ""; }

.ion-playstation:before {
  content: ""; }

.ion-plus:before {
  content: ""; }

.ion-plus-circled:before {
  content: ""; }

.ion-plus-round:before {
  content: ""; }

.ion-podium:before {
  content: ""; }

.ion-pound:before {
  content: ""; }

.ion-power:before {
  content: ""; }

.ion-pricetag:before {
  content: ""; }

.ion-pricetags:before {
  content: ""; }

.ion-printer:before {
  content: ""; }

.ion-pull-request:before {
  content: ""; }

.ion-qr-scanner:before {
  content: ""; }

.ion-quote:before {
  content: ""; }

.ion-radio-waves:before {
  content: ""; }

.ion-record:before {
  content: ""; }

.ion-refresh:before {
  content: ""; }

.ion-reply:before {
  content: ""; }

.ion-reply-all:before {
  content: ""; }

.ion-ribbon-a:before {
  content: ""; }

.ion-ribbon-b:before {
  content: ""; }

.ion-sad:before {
  content: ""; }

.ion-sad-outline:before {
  content: ""; }

.ion-scissors:before {
  content: ""; }

.ion-search:before {
  content: ""; }

.ion-settings:before {
  content: ""; }

.ion-share:before {
  content: ""; }

.ion-shuffle:before {
  content: ""; }

.ion-skip-backward:before {
  content: ""; }

.ion-skip-forward:before {
  content: ""; }

.ion-social-android:before {
  content: ""; }

.ion-social-android-outline:before {
  content: ""; }

.ion-social-angular:before {
  content: ""; }

.ion-social-angular-outline:before {
  content: ""; }

.ion-social-apple:before {
  content: ""; }

.ion-social-apple-outline:before {
  content: ""; }

.ion-social-bitcoin:before {
  content: ""; }

.ion-social-bitcoin-outline:before {
  content: ""; }

.ion-social-buffer:before {
  content: ""; }

.ion-social-buffer-outline:before {
  content: ""; }

.ion-social-chrome:before {
  content: ""; }

.ion-social-chrome-outline:before {
  content: ""; }

.ion-social-codepen:before {
  content: ""; }

.ion-social-codepen-outline:before {
  content: ""; }

.ion-social-css3:before {
  content: ""; }

.ion-social-css3-outline:before {
  content: ""; }

.ion-social-designernews:before {
  content: ""; }

.ion-social-designernews-outline:before {
  content: ""; }

.ion-social-dribbble:before {
  content: ""; }

.ion-social-dribbble-outline:before {
  content: ""; }

.ion-social-dropbox:before {
  content: ""; }

.ion-social-dropbox-outline:before {
  content: ""; }

.ion-social-euro:before {
  content: ""; }

.ion-social-euro-outline:before {
  content: ""; }

.ion-social-facebook:before {
  content: ""; }

.ion-social-facebook-outline:before {
  content: ""; }

.ion-social-foursquare:before {
  content: ""; }

.ion-social-foursquare-outline:before {
  content: ""; }

.ion-social-freebsd-devil:before {
  content: ""; }

.ion-social-github:before {
  content: ""; }

.ion-social-github-outline:before {
  content: ""; }

.ion-social-google:before {
  content: ""; }

.ion-social-google-outline:before {
  content: ""; }

.ion-social-googleplus:before {
  content: ""; }

.ion-social-googleplus-outline:before {
  content: ""; }

.ion-social-hackernews:before {
  content: ""; }

.ion-social-hackernews-outline:before {
  content: ""; }

.ion-social-html5:before {
  content: ""; }

.ion-social-html5-outline:before {
  content: ""; }

.ion-social-instagram:before {
  content: ""; }

.ion-social-instagram-outline:before {
  content: ""; }

.ion-social-javascript:before {
  content: ""; }

.ion-social-javascript-outline:before {
  content: ""; }

.ion-social-linkedin:before {
  content: ""; }

.ion-social-linkedin-outline:before {
  content: ""; }

.ion-social-markdown:before {
  content: ""; }

.ion-social-nodejs:before {
  content: ""; }

.ion-social-octocat:before {
  content: ""; }

.ion-social-pinterest:before {
  content: ""; }

.ion-social-pinterest-outline:before {
  content: ""; }

.ion-social-python:before {
  content: ""; }

.ion-social-reddit:before {
  content: ""; }

.ion-social-reddit-outline:before {
  content: ""; }

.ion-social-rss:before {
  content: ""; }

.ion-social-rss-outline:before {
  content: ""; }

.ion-social-sass:before {
  content: ""; }

.ion-social-skype:before {
  content: ""; }

.ion-social-skype-outline:before {
  content: ""; }

.ion-social-snapchat:before {
  content: ""; }

.ion-social-snapchat-outline:before {
  content: ""; }

.ion-social-tumblr:before {
  content: ""; }

.ion-social-tumblr-outline:before {
  content: ""; }

.ion-social-tux:before {
  content: ""; }

.ion-social-twitch:before {
  content: ""; }

.ion-social-twitch-outline:before {
  content: ""; }

.ion-social-twitter:before {
  content: ""; }

.ion-social-twitter-outline:before {
  content: ""; }

.ion-social-usd:before {
  content: ""; }

.ion-social-usd-outline:before {
  content: ""; }

.ion-social-vimeo:before {
  content: ""; }

.ion-social-vimeo-outline:before {
  content: ""; }

.ion-social-whatsapp:before {
  content: ""; }

.ion-social-whatsapp-outline:before {
  content: ""; }

.ion-social-windows:before {
  content: ""; }

.ion-social-windows-outline:before {
  content: ""; }

.ion-social-wordpress:before {
  content: ""; }

.ion-social-wordpress-outline:before {
  content: ""; }

.ion-social-yahoo:before {
  content: ""; }

.ion-social-yahoo-outline:before {
  content: ""; }

.ion-social-yen:before {
  content: ""; }

.ion-social-yen-outline:before {
  content: ""; }

.ion-social-youtube:before {
  content: ""; }

.ion-social-youtube-outline:before {
  content: ""; }

.ion-soup-can:before {
  content: ""; }

.ion-soup-can-outline:before {
  content: ""; }

.ion-speakerphone:before {
  content: ""; }

.ion-speedometer:before {
  content: ""; }

.ion-spoon:before {
  content: ""; }

.ion-star:before {
  content: ""; }

.ion-stats-bars:before {
  content: ""; }

.ion-steam:before {
  content: ""; }

.ion-stop:before {
  content: ""; }

.ion-thermometer:before {
  content: ""; }

.ion-thumbsdown:before {
  content: ""; }

.ion-thumbsup:before {
  content: ""; }

.ion-toggle:before {
  content: ""; }

.ion-toggle-filled:before {
  content: ""; }

.ion-transgender:before {
  content: ""; }

.ion-trash-a:before {
  content: ""; }

.ion-trash-b:before {
  content: ""; }

.ion-trophy:before {
  content: ""; }

.ion-tshirt:before {
  content: ""; }

.ion-tshirt-outline:before {
  content: ""; }

.ion-umbrella:before {
  content: ""; }

.ion-university:before {
  content: ""; }

.ion-unlocked:before {
  content: ""; }

.ion-upload:before {
  content: ""; }

.ion-usb:before {
  content: ""; }

.ion-videocamera:before {
  content: ""; }

.ion-volume-high:before {
  content: ""; }

.ion-volume-low:before {
  content: ""; }

.ion-volume-medium:before {
  content: ""; }

.ion-volume-mute:before {
  content: ""; }

.ion-wand:before {
  content: ""; }

.ion-waterdrop:before {
  content: ""; }

.ion-wifi:before {
  content: ""; }

.ion-wineglass:before {
  content: ""; }

.ion-woman:before {
  content: ""; }

.ion-wrench:before {
  content: ""; }

.ion-xbox:before {
  content: ""; }

body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in; }

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div {
  padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right); }

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996; }

.fancybox-caption--separate {
  margin-top: -50px; }

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px; } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: .5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Modules
   ========================================================================== */
/* ==========================================================================
   Variables.scss
   ========================================================================== */
/* Breakpoints
   ========================================================================== */
/* Typography
   ========================================================================== */
/* Colors
   ========================================================================== */
/**
 * Always use HEX format with 6 digits and capitals (#000000).
 */
/* Spacing
   ========================================================================== */
/**
 * Spacing is the global space between elements to maintain vertical as well as
 * vertical rythm.
 */
/* Globals
   ========================================================================== */
/* Z-index
   ========================================================================== */
/* ==========================================================================
   Functions.scss
   ========================================================================== */
/**
 * PX to EM function.
 * Allows to set EM units as em(16px) i.e.
 * $browser-context is the default site's font-size variable on base of which all font-sizes
 * are being calculated with the em function.
 */
/* ==========================================================================
   Mixins.scss
   ========================================================================== */
/* ==========================================================================
   Grid.scss
   ========================================================================== */
.grid-container {
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px; }

.row {
  float: left;
  width: 100%; }

.col {
  float: left;
  position: relative;
  margin-left: 0px;
  margin-right: 0px; }
  .col.col-right {
    float: right; }
  .col img {
    max-width: 100%; }

.col-12 {
  width: 12.5%; }

.col-15 {
  width: 15%; }

.col-20 {
  width: 20%; }

.col-25 {
  width: 25%; }

.col-30 {
  width: 30%; }

.col-33 {
  width: 33.333333333333333333%; }

.col-40 {
  width: 40%; }

.col-50 {
  width: 50%; }

.col-60 {
  width: 60%; }

.col-70 {
  width: 70%; }

.col-75 {
  width: 75%; }

.col-80 {
  width: 80%; }

.col-100 {
  width: 100%; }

@media only screen and (max-width: 480px) {
  .grid-container {
    padding-left: 10px;
    padding-right: 10px; } }

/* ==========================================================================
   Extends.scss
   ========================================================================== */
/**
 * Clearfix extension for clearing floats.
 */
/*
 * Inline block extension, vertically aligns text elements.
 */
/* ==========================================================================
   Jquery.fullpage.scss
   ========================================================================== */
.section {
  background-color: #FFFFFF; }
  .section .fp-tableCell {
    vertical-align: top; }

/* ==========================================================================
   Owl.carousel.scss
   ========================================================================== */
.owl-carousel .owl-nav {
  text-align: center; }
  .owl-carousel .owl-nav div {
    border: 1px solid #ccc;
    display: inline-block;
    padding-top: 9px;
    margin: 0px;
    width: 55px;
    height: 46px;
    border-radius: 55px;
    font-size: 35px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.4s ease-in-out; }
  .owl-carousel .owl-nav .owl-next {
    float: right; }
    .owl-carousel .owl-nav .owl-next:hover {
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }
  .owl-carousel .owl-nav .owl-prev {
    float: left; }
    .owl-carousel .owl-nav .owl-prev:hover {
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }

.slick-arrow {
  border: 1px solid #ccc;
  display: inline-block;
  padding-top: 9px;
  width: 55px;
  height: 46px;
  border-radius: 55px;
  font-size: 35px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  z-index: 666;
  bottom: 0px;
  margin: 0 20px;
  transition: all 0.4s ease-in-out; }
  .slick-arrow:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  .slick-arrow.slick-disabled {
    display: none !important; }
  .slick-arrow.slick-next {
    right: 30%; }
    @media only screen and (max-width: 480px) {
      .slick-arrow.slick-next {
        right: 10%; } }
  .slick-arrow.slick-prev {
    left: 30%; }
    @media only screen and (max-width: 480px) {
      .slick-arrow.slick-prev {
        left: 10%; } }

/* ==========================================================================
   Form.scss
   ========================================================================== */
.form-input, .form-range, .form-switch {
  position: relative;
  margin: 0px 0px 20px 0px; }
  .form-input input[type="text"],
  .form-input input[type="email"],
  .form-input select, .form-input .form-input-inner, .form-range input[type="text"],
  .form-range input[type="email"],
  .form-range select, .form-range .form-input-inner, .form-switch input[type="text"],
  .form-switch input[type="email"],
  .form-switch select, .form-switch .form-input-inner {
    padding: 10px 40px;
    width: 100%;
    box-sizing: border-box;
    background: #000000;
    color: #FFFFFF;
    border: none;
    font-size: 16px;
    font-family: "Montserrat", Arial, Verdana, sans-serif;
    font-weight: bold;
    line-height: 32px;
    margin: 0px;
    display: inline-block;
    border-radius: 50px; }
  .form-input .form-input-inner, .form-range .form-input-inner, .form-switch .form-input-inner {
    padding-right: 10px; }
  .form-input label, .form-range label, .form-switch label {
    font-size: 16px;
    font-family: "Montserrat", Arial, Verdana, sans-serif;
    font-weight: bold;
    line-height: 32px; }

.form-textarea {
  margin: 0px 0px 20px 0px; }
  .form-textarea textarea {
    padding: 10px 40px;
    width: 100%;
    box-sizing: border-box;
    background: #000000;
    color: #FFFFFF;
    border: none;
    font-size: 16px;
    font-family: "Montserrat", Arial, Verdana, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 32px;
    margin: 0px;
    display: inline-block;
    border-radius: 30px; }

.form select {
  color: #5a5a52;
  background: transparent;
  border-color: #f3f3f3;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

.form-light .form-input input, .form-light .form-input select, .form-light .form-input textarea, .form-light .form-input .form-input-inner {
  color: #5a5a52;
  background: #FFFFFF;
  border: 1px solid #f3f3f3; }

.form-light .form-textarea textarea {
  color: #5a5a52;
  background: #FFFFFF;
  border: 1px solid #f3f3f3; }

.form-light label {
  color: #5a5a52; }

.form-opace .form-input input, .form-opace .form-input select, .form-opace .form-input textarea {
  color: #FFFFFF;
  background: #f3f3f3;
  border: 0px; }

.form-icon {
  position: absolute;
  top: 18px; }
  .form-icon-left {
    left: 16px; }
  .form-icon-right {
    right: 20px; }

.select-wrapper {
  position: relative; }
  .select-wrapper:before {
    font-size: 20px;
    font-family: "Ionicons", sans-serif;
    content: '\f123';
    color: #5a5a52;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 15px;
    pointer-events: none; }

.switch {
  float: right; }
  .switch .cmn-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden; }
    .switch .cmn-toggle + label {
      display: block;
      position: relative;
      cursor: pointer;
      outline: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
  .switch input.cmn-toggle-round + label {
    width: 50px;
    height: 30px;
    background-color: #dddddd;
    border-radius: 30px; }
  .switch input.cmn-toggle-round + label:before,
  .switch input.cmn-toggle-round + label:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: ""; }
  .switch input.cmn-toggle-round + label:before {
    right: 1px;
    background-color: #f1f1f1;
    border-radius: 30px;
    transition: background 0.4s; }
  .switch input.cmn-toggle-round + label:after {
    width: 29px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: margin 0.4s; }
  .switch input.cmn-toggle-round:checked + label:before {
    background-color: #2d86c3; }
  .switch input.cmn-toggle-round:checked + label:after {
    margin-left: 20px; }

.geolocation-on {
  display: none; }

.geolocation-label {
  width: 20%; }

.geolocation-slider {
  width: 100%;
  margin-top: 13px; }

.geolocation-range-display {
  float: right; }

.input-range {
  min-height: 30px; }

/**
 * Default styling
 */
.range-bar {
  background-color: #f3f3f3;
  border-radius: 15px;
  display: block;
  height: 4px;
  position: relative;
  width: 100%; }

.range-quantity {
  background-color: #2d86c3;
  border-radius: 15px;
  display: block;
  height: 100%;
  width: 0; }

.range-handle {
  background-color: #fff;
  border-radius: 100%;
  cursor: move;
  height: 30px;
  left: 0;
  top: -13px;
  position: absolute;
  width: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }

.range-min, .range-max {
  color: #181819;
  font-size: 12px;
  height: 20px;
  padding-top: 4px;
  position: absolute;
  text-align: center;
  top: -9px;
  width: 24px; }

.range-min {
  left: -30px; }

.range-max {
  right: -30px; }

.infusion-option {
  margin-right: 20px; }

/**
 * Placeholder styling
 */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  text-transform: uppercase;
  color: #5a5a52; }

::-moz-placeholder {
  /* Firefox 19+ */
  text-transform: uppercase;
  color: #5a5a52; }

:-ms-input-placeholder {
  /* IE 10+ */
  text-transform: uppercase;
  color: #5a5a52; }

:-moz-placeholder {
  /* Firefox 18- */
  text-transform: uppercase;
  color: #5a5a52; }

.placeholder-white::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #FFFFFF; }

.placeholder-white::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFFFFF; }

.placeholder-white:-ms-input-placeholder {
  /* IE 10+ */
  color: #FFFFFF; }

.placeholder-white:-moz-placeholder {
  /* Firefox 18- */
  color: #FFFFFF; }

/* ==========================================================================
   Bar.scss
   ========================================================================== */
.bar {
  width: 150px;
  height: 10px;
  border-radius: 10px;
  background: #000000;
  display: block; }
  .bar-green {
    background-color: #8b9558; }
  .bar-blue {
    background-color: #2d86c3; }

/* ==========================================================================
   Functions.scss
   ========================================================================== */
.radius-top-left {
  border-top-left-radius: 30px; }

.radius-top-right {
  border-top-right-radius: 30px; }

.radius-bottom-left {
  border-bottom-left-radius: 30px; }

.radius-bottom-right {
  border-bottom-right-radius: 30px; }

/* ==========================================================================
   Button.scss
   ========================================================================== */
.btn {
  padding: 8px 38px;
  background: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  font-size: 16px;
  font-family: "Montserrat", Arial, Verdana, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 32px;
  margin: 0px;
  display: inline-block;
  border-radius: 50px; }
  .btn-border {
    background: #FFFFFF;
    color: #000000; }
  .btn h1, .btn .h1, .btn h2, .btn .h2, .btn h3, .btn .h3 {
    color: #FFFFFF; }
  .btn-icon-left i {
    margin-right: 10px; }
  .btn-icon-right i {
    margin-left: 10px; }
  .btn-small {
    padding: 5px 20px; }
  .btn-medium {
    padding: 20px 40px; }
  .btn-large {
    padding: 70px 40px 50px 40px; }
  .btn-hidden {
    display: none; }
  .btn-transparent {
    background: none;
    border-color: transparent;
    color: #7b7c7e;
    padding-left: 0px;
    padding-right: 0px; }
  .btn-green {
    background: #8b9558;
    border-color: #8b9558;
    color: #FFFFFF; }
  .btn-blue {
    background: #2d86c3;
    border-color: #2d86c3; }
    .btn-blue-border {
      border: 2px solid #FFFFFF; }
  .btn-white {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #5a5a52; }
  .btn-facebook {
    background: #4267B2;
    border-color: #4267B2;
    color: #FFFFFF;
    opacity: 0; }
    .btn-facebook-like {
      display: none; }
  .btn-twitter {
    background: #00adf2;
    border-color: #00adf2;
    color: #FFFFFF; }
  .btn-facebook, .btn-twitter {
    font-size: 18px;
    padding: 0px;
    width: 30px;
    border-radius: 5px;
    cursor: pointer;
    height: 24px; }
    .btn-facebook i, .btn-twitter i {
      display: block;
      margin: -3px 0 0 0; }
  .btn-full {
    border-radius: 0px;
    display: block;
    text-align: center; }

@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .btn-large {
    padding: 50px 40px 30px 40px; } }

/* ==========================================================================
   Cookies.scss
   ========================================================================== */
.cookies {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999999;
  width: 100%;
  text-align: center;
  background-color: #ebebeb; }
  .cookies p {
    margin: 0px 60px;
    padding: 15px 0px; }
  .cookies-close {
    font-size: 14px;
    cursor: pointer;
    background-color: #8ec760;
    color: #FFFFFF;
    font-weight: bold;
    padding: 5px 15px; }

@media only screen and (max-width: 480px) {
  .cookies-close {
    font-size: 12px; } }

/* Components
   ========================================================================== */
/* Partials
   ========================================================================== */
/* ==========================================================================
   Base.scss
   ========================================================================== */
/**
 * Box-sizing reset (https://css-tricks.com/box-sizing/).
 * You can use content-box or padding-box (where supported) at will,
 * without worrying about a universal selector overriding your CSS.
 */
/**
 * Box-sizing preserves the actual visible/rendered width and height of an element
 * despite it having a padding or border.
 */
html {
  font-family: "Open Sans", Arial, Verdana, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  html.open {
    overflow: hidden; }

/**
 * The body has position relative by default for modals, tooltips and fixed navigation.
 */
body {
  font-family: "Open Sans", Arial, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7b7c7e;
  background-color: #f2f2f2; }
  body.open {
    overflow: hidden;
    position: relative; }
    body.open .top,
    body.open .container {
      display: none;
      background: #f3f3f3; }

a {
  color: #2d86c3;
  text-decoration: none; }

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

/* Typography
   ========================================================================== */
/**
 * The ideal line-length is between 65 and 75 characters,
 * AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz0123456789.
 * 1) The H1 font size is ideally 200% of the root font-size.
 * 2) The line-height of a heading is ideally between 120% and 160% of font size.
 * 3) The bottom spacing matches the spacing of the <p> element.
 */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
fieldset,
figure,
blockquote,
p {
  margin-bottom: 20px; }

/* Media
  ========================================================================== */
/**
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/* Default classes
========================================================================== */
.list {
  margin: 0;
  padding: 0;
  list-style: none; }

h1, .h1 {
  font-family: "Montserrat", Arial, Verdana, sans-serif;
  font-weight: normal;
  font-size: 48px;
  line-height: 48px;
  color: #7b7c7e;
  display: block; }
  h1 strong, .h1 strong {
    font-weight: bold; }

h2, .h2 {
  font-family: "Montserrat", Arial, Verdana, sans-serif;
  font-weight: normal;
  font-size: 30px;
  line-height: 30px;
  color: #7b7c7e;
  display: block; }
  h2 strong, .h2 strong {
    font-weight: bold; }

h3, .h3 {
  font-family: "Montserrat", Arial, Verdana, sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 20px;
  color: #7b7c7e;
  display: block; }
  h3 strong, .h3 strong {
    font-weight: bold; }

h4, .h4 {
  font-family: "Montserrat", Arial, Verdana, sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #7b7c7e;
  display: block; }

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

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .hide-small {
    display: none !important; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .hide-medium {
    display: none !important; } }

@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .hide-large {
    display: none !important; } }

@media only screen and (min-width: 1200px) {
  .hide-x-large {
    display: none !important; } }

/* Helper classes
========================================================================== */
.is-hidden {
  display: none !important; }

.is-invisible {
  visibility: none; }

.block {
  display: block; }

.inline {
  display: inline; }

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

.left {
  float: left; }

.right {
  float: right; }

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

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

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

.spacing-top {
  margin-top: 30px; }

.spacing-top-2 {
  margin-top: 60px; }

.spacing-top-3 {
  margin-top: 90px; }

.container {
  padding: 0px;
  margin: 0px auto;
  width: 100%;
  max-width: 1920px;
  position: relative; }
  .container-inner {
    padding: 0px 30px;
    box-sizing: border-box;
    width: 100%;
    margin: 0px auto; }

/* responsive iframe */
.intrinsic-container {
  position: relative;
  height: 0;
  overflow: hidden; }

/* 16x9 Aspect Ratio */
.intrinsic-container-16x9 {
  padding-bottom: 56.25%; }

/* 4x3 Aspect Ratio */
.intrinsic-container-4x3 {
  padding-bottom: 75%; }

.intrinsic-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* Global classes
========================================================================== */
.top {
  position: fixed;
  z-index: 999;
  width: 100%; }
  .top .container-inner {
    float: left;
    padding: 45px 30px 15px 30px;
    background: #FFFFFF; }
  .top .logo {
    display: block;
    float: left;
    margin-top: -5px; }
    .top .logo img {
      width: 400px; }
  .top .drip {
    width: 680px;
    height: 76px;
    background: url(../images/drip.png) no-repeat top left;
    position: absolute;
    bottom: -187px;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    z-index: -1;
    transition: all 0.4s ease-in-out; }

.language-switch {
  position: relative;
  width: 50px;
  height: 50px; }

.language-switch-list {
  position: absolute;
  top: -13px;
  left: 0px;
  z-index: 999;
  width: 50px;
  max-height: 50px;
  background: #FFFFFF;
  overflow: hidden;
  border-radius: 0px 0px 20px 20px;
  transition: all 0.5s; }
  .language-switch-list:hover, .language-switch-list.open {
    max-height: 250px; }
  .language-switch-list li {
    width: 100%; }
    .language-switch-list li a {
      padding: 10px;
      display: block;
      cursor: pointer; }

.navigation {
  float: right;
  position: relative; }
  @media only screen and (min-width: 1200px) {
    .navigation {
      min-width: 480px; } }
  .navigation ul {
    float: right;
    list-style: none;
    padding: 0px;
    margin: 0px; }
    .navigation ul li {
      float: left; }
      .navigation ul li a {
        display: block; }
      .navigation ul li:last-child a {
        padding-right: 0px; }

.navigation-main li {
  position: relative; }
  .navigation-main li a {
    color: #5a5a52;
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase; }
  .navigation-main li ul {
    position: absolute;
    top: 54px;
    left: 0px;
    width: 200%;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.4s; }
    .navigation-main li ul li {
      background: #FFFFFF;
      width: 100%;
      border-bottom: 1px solid #ebebeb; }
      .navigation-main li ul li:last-child {
        border-bottom: none; }
      .navigation-main li ul li a {
        display: block; }
  .navigation-main li:hover ul {
    max-height: 300px; }

.navigation-top {
  position: absolute;
  top: -30px;
  right: 0px; }
  .navigation-top > li > a {
    font-size: 12px;
    padding-left: 15px;
    padding-right: 15px; }

.navigation-mobile {
  position: fixed;
  top: 0px;
  left: 100%;
  z-index: 999;
  background: #f3f3f3;
  display: table;
  height: 100%;
  width: 100%;
  padding: 30px 30px 30px 90px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out; }
  .navigation-mobile.open {
    left: 0%; }
    .navigation-mobile.open .navigation-mobile-toggle {
      left: -91px; }

.navigation-mobile-container {
  display: table;
  height: 100%;
  width: 100%;
  background: #FFFFFF;
  position: relative; }

.navigation-mobile-toggle {
  cursor: pointer;
  padding: 10px;
  background: #f3f3f3;
  position: absolute;
  left: -181px;
  top: -30px; }
  .navigation-mobile-toggle-container {
    width: 23px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer; }
    .navigation-mobile-toggle-container span {
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: #5a5a52;
      border-radius: 9px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      transition: .25s ease-in-out; }
      .navigation-mobile-toggle-container span:nth-child(1) {
        top: 0px; }
      .navigation-mobile-toggle-container span:nth-child(2), .navigation-mobile-toggle-container span:nth-child(3) {
        top: 9px; }
      .navigation-mobile-toggle-container span:nth-child(4) {
        top: 18px; }
    .navigation-mobile-toggle-container.open span:nth-child(1) {
      top: 9px;
      width: 0%;
      left: 50%; }
    .navigation-mobile-toggle-container.open span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .navigation-mobile-toggle-container.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .navigation-mobile-toggle-container.open span:nth-child(4) {
      top: 9px;
      width: 0%;
      left: 50%; }

.navigation-mobile-main {
  overflow: scroll; }
  .navigation-mobile-main > ul {
    padding: 15px 0px;
    margin: 0px;
    list-style: none; }
    .navigation-mobile-main > ul li a {
      color: #5a5a52;
      padding: 10px 30px;
      font-weight: bold;
      text-transform: uppercase;
      display: block; }
    .navigation-mobile-main > ul li.has-dropdown > a {
      opacity: 0.5; }
    .navigation-mobile-main > ul ul {
      list-style: none; }
      .navigation-mobile-main > ul ul li a {
        font-size: 12px;
        padding: 5px 30px; }

.navigation-mobile-finder {
  display: table;
  height: 100%;
  position: relative; }

.navigation-mobile-finder-map-container {
  display: table;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-position: left center;
  background-size: cover;
  background-image: url("../images/map.png"); }

#navigation-mobile-finder-map {
  display: table;
  height: 110%;
  width: 100%; }

.navigation-mobile-finder-content {
  position: absolute;
  top: 30%;
  left: 0px;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  padding: 0px 30px;
  box-sizing: border-box; }
  .navigation-mobile-finder-content h2, .navigation-mobile-finder-content .h2 {
    color: #FFFFFF; }

.navigation-finder-overlay {
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  display: table;
  height: 100%;
  width: 100%; }
  .navigation-finder-overlay .content {
    display: table-cell;
    vertical-align: middle;
    color: #FFFFFF;
    padding: 0px 10%; }
    .navigation-finder-overlay .content h1, .navigation-finder-overlay .content .h1, .navigation-finder-overlay .content h2, .navigation-finder-overlay .content .h2, .navigation-finder-overlay .content h3, .navigation-finder-overlay .content .h3, .navigation-finder-overlay .content h4, .navigation-finder-overlay .content .h4 {
      color: #FFFFFF; }

.ocean {
  height: 198px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 888; }
  .ocean .wave {
    background: url(../images/wave.svg) repeat-x bottom left;
    position: absolute;
    top: 0px;
    width: 6400px;
    height: 198px;
    -webkit-animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
            animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    z-index: 888; }
  @media only screen and (max-width: 1200px) {
    .ocean {
      display: none; } }

@-webkit-keyframes wave {
  0% {
    margin-left: 0; }
  100% {
    margin-left: -1600px; } }

@keyframes wave {
  0% {
    margin-left: 0; }
  100% {
    margin-left: -1600px; } }

header,
.header {
  overflow: hidden;
  padding-top: 0px;
  height: auto !important; }
  header-video,
  .header-video {
    position: relative;
    height: 0;
    padding-bottom: 56.25%; }
    header-video-layer,
    .header-video-layer {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      z-index: 222; }
    header-video iframe,
    .header-video iframe {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      z-index: 111; }
  header-image img,
  .header-image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%; }
  header.has-video .header-image,
  .header.has-video .header-image {
    position: absolute;
    bottom: 32px; }
    @media only screen and (max-width: 768px) {
      header.has-video .header-image,
      .header.has-video .header-image {
        position: relative; } }
  header-intro,
  .header-intro {
    position: absolute;
    top: 30%;
    text-align: center;
    width: 50%;
    padding: 0px 25%;
    z-index: 333;
    color: #FFFFFF;
    font-size: 20px; }
    @media only screen and (max-width: 768px) {
      header-intro,
      .header-intro {
        top: 140px; } }
    header-intro-btn,
    .header-intro-btn {
      margin-top: 10px; }
    header-intro h1,
    .header-intro h1 {
      color: #FFFFFF;
      margin-bottom: 20px; }
  header-location a,
  .header-location a {
    color: #FFFFFF; }
  header-form,
  .header-form {
    padding: 20px; }

.section {
  float: left;
  width: 100%;
  position: relative;
  padding-top: 114px; }
  .section .content {
    text-align: center;
    padding: 0px 30%;
    width: 40%; }
    .section .content-large {
      padding: 0px 20%;
      width: 60%;
      text-align: left; }
  .section-page {
    padding-top: 50px; }
  .section-main {
    padding-top: 114px; }
  .section-middle {
    display: block;
    position: relative;
    padding-top: 0; }
    @media only screen and (max-width: 1200px) {
      .section-middle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .section-middle .content {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      z-index: 1; }
      @media only screen and (max-width: 1200px) {
        .section-middle .content {
          position: relative;
          -webkit-transform: none;
                  transform: none;
          top: auto;
          left: auto; } }
  .section-intro {
    position: absolute;
    top: 30%;
    text-align: center;
    width: 30%;
    padding: 0px 35%;
    z-index: 222;
    color: #FFFFFF; }
    .section-intro h2, .section-intro .h2 {
      color: #FFFFFF;
      margin-bottom: 20px; }
  .section-fullscreen {
    max-height: 640px; }

.has-background {
  color: #FFFFFF;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }
  .has-background h1, .has-background .h1, .has-background h2, .has-background .h2, .has-background h3, .has-background .h3, .has-background h4, .has-background .h4 {
    color: #FFFFFF; }

.tabs {
  float: left;
  width: 100%; }

.tabs-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  width: 100%;
  text-align: center; }

.tabs-menu-link, .tabs-menu-link-contact {
  margin: 0px;
  float: left;
  display: inline;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  text-align: center;
  min-width: 150px; }
  .tabs-menu-link a, .tabs-menu-link-contact a {
    display: block;
    padding: 25px 10px 20px 10px;
    color: #7b7c7e;
    font-size: 14px;
    box-sizing: border-box;
    height: 100%;
    border-bottom: 5px solid #FFFFFF; }
    .tabs-menu-link a .icon, .tabs-menu-link-contact a .icon {
      display: block;
      text-align: center;
      margin-bottom: 5px; }
  .tabs-menu-link:first-child, .tabs-menu-link-contact:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px; }
    .tabs-menu-link:first-child a, .tabs-menu-link-contact:first-child a {
      border-bottom-left-radius: 20px; }
  .tabs-menu-link:last-child, .tabs-menu-link-contact:last-child {
    border-right: 1px solid #ebebeb;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px; }
    .tabs-menu-link:last-child a, .tabs-menu-link-contact:last-child a {
      border-bottom-right-radius: 20px; }
  .tabs-menu-link--active a, .tabs-menu-link-contact--active a {
    color: #2d86c3;
    font-weight: bold;
    border-color: #2d86c3; }

.tabs-menu-block {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb; }
  .tabs-menu-block .tabs-menu-link, .tabs-menu-block .tabs-menu-link-contact {
    border-bottom: none;
    border-top: none;
    border-radius: 0px; }
    .tabs-menu-block .tabs-menu-link a, .tabs-menu-block .tabs-menu-link-contact a {
      border-radius: 0px; }

.tabs-content {
  display: none; }
  .tabs-content .col {
    box-sizing: border-box;
    padding: 0 30px !important; }
  .tabs-content .col-50 {
    box-sizing: border-box; }
    .tabs-content .col-50 img {
      border-radius: 20px; }
    .tabs-content .col-50:first-child {
      padding-right: 15px; }
    .tabs-content .col-50:last-child {
      padding-left: 15px; }
  .tabs-content--active {
    display: block; }
  .tabs-content table, .tabs-content td, .tabs-content th {
    border: 1px solid #e2e2e2;
    padding: 20px; }
  .tabs-content tr {
    border-bottom: 1px solid #e2e2e2; }
  .tabs-content tr:first-child {
    background: #2d86c3;
    color: #FFFFFF; }
  .tabs-content td:empty {
    display: none; }

footer,
.footer {
  float: left;
  width: 100%;
  padding: 60px 0px;
  background: #262626;
  color: #FFFFFF; }
  footer-logo,
  .footer-logo {
    margin-bottom: 60px; }
  footer a,
  .footer a {
    color: #FFFFFF; }
  footer ul,
  .footer ul {
    list-style: none;
    padding: 0px;
    margin: 0px; }
  footer h4, footer .h4,
  .footer h4,
  .footer .h4 {
    color: #FFFFFF; }
  footer-social li,
  .footer-social li {
    display: inline;
    margin: 10px;
    font-size: 20px; }
  footer-social-100,
  .footer-social-100 {
    margin-top: 30px !important; }

.gradient {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2d86c3+0,143c57+100 */
  background: #2d86c3;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2d86c3 0%, #143c57 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d86c3', endColorstr='#143c57',GradientType=0 );
  /* IE6-9 */ }

.col-content {
  box-sizing: border-box;
  padding: 0px 90px; }
  .col-content-content {
    display: table;
    min-height: 450px; }
    .col-content-content-inner {
      display: table-cell;
      vertical-align: middle;
      text-align: center;
      box-sizing: border-box; }

.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%; }

.icon-scroll {
  position: absolute;
  z-index: 888;
  bottom: 100px;
  width: 28px;
  height: 50px;
  margin-left: -14px;
  margin-top: -25px;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px; }

.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll; }

@-webkit-keyframes scroll {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(32px);
    transform: translateY(32px); } }

@keyframes scroll {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(4632);
    transform: translateY(32px); } }

@media only screen and (max-width: 480px) {
  h1, .h1 {
    font-size: 32px;
    line-height: 40px; }
  h2, .h2 {
    font-size: 26px;
    line-height: 30px; }
  h3, .h3 {
    font-size: 20px; }
  .top .container-inner {
    padding: 30px; }
  .top .logo img {
    height: 20px;
    width: auto; }
  .top .drip {
    display: none !important; }
  .navigation-main {
    display: none; }
  .navigation-top {
    position: absolute;
    right: 69px;
    top: -2px; }
    .navigation-top > li {
      display: none; }
      .navigation-top > li:last-child {
        display: block; }
  .navigation-mobile-toggle {
    padding: 28px;
    left: -169px; }
  .navigation-mobile-container {
    height: auto; }
  .navigation-mobile-main {
    width: 100%; }
  .navigation-mobile-finder {
    display: none; }
  /* Section */
  .section {
    padding-top: 0px; }
    .section-intro {
      width: 100%;
      padding: 0px; }
    .section .content {
      width: 100%;
      padding: 0px 30px;
      box-sizing: border-box; }
      .section .content-large {
        padding: 0px;
        width: 100%; }
    .section-main {
      padding-top: 80px; }
  .section-fullscreen {
    height: auto;
    padding: 80px 0px; }
  header,
  .header {
    padding-top: 100px;
    padding-bottom: 0px; }
    header-video,
    .header-video {
      display: none; }
    header-image img,
    .header-image img {
      -o-object-fit: cover;
         object-fit: cover; }
    header-image .smallImage,
    .header-image .smallImage {
      display: block; }
    header-image .largeImage,
    .header-image .largeImage {
      display: none; }
    header-intro,
    .header-intro {
      font-size: 16px;
      padding: 20px 5% 30px 5%;
      width: 90%; }
      header-intro h1,
      .header-intro h1 {
        margin-top: 0px; }
  .ocean {
    height: 99px; }
    .ocean .wave {
      height: 99px; }
  .tabs-menu {
    display: block; }
  .tabs-menu-link, .tabs-menu-link-contact {
    width: 100%;
    display: block;
    border: 1px solid #ebebeb;
    border-radius: 0px !important; }
    .tabs-menu-link a, .tabs-menu-link-contact a {
      border-radius: 0px !important; }
      .tabs-menu-link a .icon, .tabs-menu-link-contact a .icon {
        display: inline-block;
        margin-bottom: 0px;
        margin-right: 30px; }
  .tabs-menu-block {
    padding-left: 30px;
    padding-right: 30px;
    border: none; }
    .tabs-menu-block .tabs-menu-link, .tabs-menu-block .tabs-menu-link-contact {
      float: inherit;
      border-top: 1px solid #f3f3f3;
      border-right: 1px solid #f3f3f3;
      border-left: 1px solid #f3f3f3; }
      .tabs-menu-block .tabs-menu-link:last-child, .tabs-menu-block .tabs-menu-link-contact:last-child {
        border-bottom: 1px solid #f3f3f3; }
  .tabs-content {
    margin-top: 30px; }
    .tabs-content .col {
      width: 100%; }
      .tabs-content .col:first-child, .tabs-content .col:last-child {
        padding: 0px; }
  .icon-scroll {
    display: none; }
  footer,
  .footer {
    padding: 40px 0px; }
    footer .col-20,
    .footer .col-20 {
      display: none; }
    footer-logo,
    .footer-logo {
      margin-bottom: 0px; }
  .col-content {
    padding: 0px; } }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  h1, .h1 {
    font-size: 32px;
    line-height: 40px; }
  h2, .h2 {
    font-size: 26px;
    line-height: 30px; }
  h3, .h3 {
    font-size: 20px; }
  .top .container-inner {
    padding: 30px; }
  .top .logo img {
    height: 23px;
    width: auto; }
  .top .drip {
    display: none !important; }
  .navigation-main {
    display: none; }
  .navigation-top {
    position: absolute;
    right: 69px;
    top: -2px; }
    .navigation-top > li {
      display: none; }
      .navigation-top > li:last-child {
        display: block; }
  .navigation-mobile-toggle {
    padding: 28px;
    left: -169px; }
  .navigation-mobile-container {
    height: auto; }
  .navigation-mobile-main {
    width: 100%; }
  .navigation-mobile-finder {
    display: none; }
  /* Section */
  .section {
    padding-top: 0px; }
    .section-intro {
      width: 80%;
      padding: 0px 10%; }
    .section .content {
      padding: 0px 10%;
      width: 80%; }
      .section .content-large {
        padding: 0px 10%;
        width: 80%; }
    .section-main {
      padding-top: 80px; }
  .section-fullscreen {
    height: auto;
    padding: 80px 0px; }
  header,
  .header {
    padding-bottom: 0px; }
    header-video,
    .header-video {
      display: none; }
    header-image img,
    .header-image img {
      -o-object-fit: cover;
         object-fit: cover; }
    header-image .smallImage,
    .header-image .smallImage {
      display: block; }
    header-image .largeImage,
    .header-image .largeImage {
      display: none; }
    header-intro,
    .header-intro {
      padding: 20px 10% 150px 10%;
      width: 80%;
      font-size: 16px; }
      header-intro h1,
      .header-intro h1 {
        margin-top: 0px; }
  .ocean {
    height: 99px; }
    .ocean .wave {
      height: 99px;
      display: none !important; }
  .tabs-menu {
    display: block; }
  .tabs-menu-link, .tabs-menu-link-contact {
    width: 100%;
    display: block;
    border: 1px solid #ebebeb;
    border-radius: 0px !important; }
    .tabs-menu-link a, .tabs-menu-link-contact a {
      border-radius: 0px !important; }
      .tabs-menu-link a .icon, .tabs-menu-link-contact a .icon {
        display: inline-block;
        margin-bottom: 0px;
        margin-right: 30px; }
  .tabs-menu-block {
    padding-left: 30px;
    padding-right: 30px;
    border: none; }
    .tabs-menu-block .tabs-menu-link, .tabs-menu-block .tabs-menu-link-contact {
      float: inherit;
      border-top: 1px solid #f3f3f3;
      border-right: 1px solid #f3f3f3;
      border-left: 1px solid #f3f3f3; }
      .tabs-menu-block .tabs-menu-link:last-child, .tabs-menu-block .tabs-menu-link-contact:last-child {
        border-bottom: 1px solid #f3f3f3; }
  .tabs-content {
    margin-top: 30px; }
    .tabs-content .col {
      width: 100%; }
      .tabs-content .col:first-child, .tabs-content .col:last-child {
        padding: 0px; }
  .icon-scroll {
    display: none; }
  footer,
  .footer {
    padding: 40px 0px; }
    footer .col-20,
    .footer .col-20 {
      display: none; }
    footer-logo,
    .footer-logo {
      margin-bottom: 0px; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  h1, .h1 {
    font-size: 32px;
    line-height: 40px; }
  h2, .h2 {
    font-size: 26px;
    line-height: 30px; }
  h3, .h3 {
    font-size: 20px; }
  .top .container-inner {
    padding: 30px; }
  .top .drip {
    display: none !important; }
  .navigation-main {
    display: none; }
  .navigation-top {
    position: absolute;
    right: 81px;
    top: 2px; }
    .navigation-top > li {
      display: none; }
      .navigation-top > li:last-child {
        display: block; }
  .navigation-mobile-toggle {
    padding: 34px; }
  /* Section */
  .section {
    padding-top: 0px; }
    .section-intro {
      width: 80%;
      padding: 0px 10%; }
    .section .content {
      padding: 0px 10%;
      width: 80%; }
      .section .content-large {
        padding: 0px 10%;
        width: 80%; }
    .section-main {
      padding-top: 91px; }
  .section-fullscreen {
    height: auto !important;
    padding: 91px 0px; }
  header,
  .header {
    padding-bottom: 0px; }
    header-intro,
    .header-intro {
      padding: 0px 10%;
      width: 80%; }
      header-intro h1,
      .header-intro h1 {
        margin-top: 0px; }
    header-image img,
    .header-image img {
      -o-object-fit: cover;
         object-fit: cover; }
    header-image .smallImage,
    .header-image .smallImage {
      display: none; }
    header-image .largeImage,
    .header-image .largeImage {
      display: block; }
    header.no-video .header-intro,
    .header.no-video .header-intro {
      padding: 0px 10% 200px 10%; }
  .icon-scroll {
    display: none; }
  footer,
  .footer {
    padding-top: 91px; }
    footer .col-right.col-20,
    .footer .col-right.col-20 {
      width: 40%; } }

@media only screen and (min-width: 900px) {
  header.has-video,
  .header.has-video {
    background: none !important; }
  header-image .smallImage,
  .header-image .smallImage {
    display: none; }
  header-image .largeImage,
  .header-image .largeImage {
    display: block; } }

@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .top .container-inner {
    padding: 30px; }
  .top .drip {
    display: none !important; }
  .navigation-main {
    display: none; }
  .navigation-top {
    position: absolute;
    right: 81px;
    top: 2px; }
    .navigation-top > li {
      display: none; }
      .navigation-top > li:last-child {
        display: block; }
  .navigation-mobile-toggle {
    padding: 34px; }
  /* Section */
  .section {
    padding-top: 0px; }
    .section .content {
      padding: 0px 10%;
      width: 80%; }
    .section-main {
      padding-top: 100px; }
  .section-fullscreen {
    height: auto !important;
    padding: 91px 0px; }
  header,
  .header {
    padding-bottom: 0px; }
    header-intro,
    .header-intro {
      padding: 0px 10%;
      width: 80%; }
    header.no-video .header-intro,
    .header.no-video .header-intro {
      padding: 0px 10% 200px 10%; }
  .icon-scroll {
    display: none; }
  footer,
  .footer {
    padding-top: 91px; }
    footer .col-right.col-20,
    .footer .col-right.col-20 {
      width: 40%; } }

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .top .logo img {
    width: 250px; } }

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .top .logo img {
    width: 250px; }
  .top .logo.hide-x-large {
    display: block !important; }
  .top .logo.hide-small {
    display: none !important; } }

/* ==========================================================================
   Category.scss
   ========================================================================== */
/* Overview */
/* ==========================================================================
   Article.scss
   ========================================================================== */
.article-category-title {
  background: #FFFFFF;
  color: #000000;
  padding: 5px 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px; }

.article-category .article-block {
  min-height: 600px;
  position: relative;
  box-sizing: border-box;
  background: #f3f3f3;
  border-right: 1px solid #ebebeb; }
  .article-category .article-block h2 {
    font-size: 16px;
    line-height: 24px; }
  .article-category .article-block:nth-child(4n+4) {
    border-right: none; }
  .article-category .article-block-content {
    padding: 30px; }
    .article-category .article-block-content-footer {
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover; }
    .article-category .article-block-content-inner {
      padding-bottom: 62px; }
    .article-category .article-block-content-button {
      position: absolute;
      bottom: 30px;
      left: 0px;
      right: 0px;
      width: 100%; }

.article-category .article-block-quote {
  background: #2d86c3;
  padding: 30px;
  box-sizing: border-box;
  color: #FFFFFF;
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  display: table; }
  .article-category .article-block-quote span {
    display: table-cell;
    vertical-align: middle; }
  .article-category .article-block-quote--blue {
    background: #2d86c3; }
  .article-category .article-block-quote--red {
    background: #e3262f; }
  .article-category .article-block-quote--purple {
    background: #733082; }
  .article-category .article-block-quote--green {
    background: #8b9558; }

.article .sticky-wrapper {
  position: absolute;
  right: 30px;
  width: 200px; }

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

.article .article-sharebutton {
  margin: 0 5px 0;
  float: right;
  display: inline; }
  .article .article-sharebutton .btn {
    text-align: center; }

.article-embed {
  width: 50%;
  text-align: center;
  padding: 20px 0;
  margin: 0 auto; }
  .article-embed--hidden {
    display: none; }
  @media screen and (max-width: 1200px) {
    .article-embed {
      width: 75%; } }
  @media screen and (max-width: 768px) {
    .article-embed {
      width: 100%; } }
  .article-embed .resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; }
    .article-embed .resp-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; }

.article-sharebuttons {
  text-align: center; }

.article-sharebutton {
  margin: 30px 10px 0;
  display: inline-block; }

.article-content blockquote {
  padding: 30px 0px;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  font-size: 30px;
  line-height: 34px; }

.article-content--hidden {
  display: none; }

.article-image {
  margin: 30px 0px;
  text-align: center; }
  .article-image img {
    max-width: 100%; }
  .article-image--hidden {
    display: none; }

.article-readmore {
  margin-top: 30px;
  text-align: center; }

.article-related {
  margin: 90px 0px 0px 0px;
  box-shadow: 0px -10px 30px #f3f3f3;
  padding: 90px 30%;
  box-sizing: border-box;
  text-align: center; }
  .article-related h1, .article-related .h1 {
    color: #FFFFFF; }

.article-date,
.article-author {
  margin: 0px 15px; }

@media only screen and (max-width: 480px) {
  .article-category-title {
    margin-bottom: 30px;
    display: inline-block; }
  .article-category .article-block {
    width: 100%;
    min-height: 0px;
    margin-bottom: 30px; }
    .article-category .article-block img {
      width: 100%; }
  .article-category .article-block-quote {
    display: none; }
  .article-content-footer {
    display: none; }
  .pagination {
    margin-top: 30px;
    margin-bottom: 30px; }
  .article-related {
    padding: 90px 30px; }
  .article-comments {
    margin-top: 60px;
    margin-bottom: 30px; } }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .article-category-title {
    margin-bottom: 30px;
    display: inline-block; }
  .article-category .article-block {
    width: 100%;
    min-height: 0px;
    margin-bottom: 30px; }
    .article-category .article-block img {
      width: 100%; }
  .article-category .article-block-quote {
    display: none; }
  .article-content-footer {
    display: none; }
  .pagination {
    margin-top: 30px;
    margin-bottom: 30px; }
  .article-related {
    padding: 90px 30px; }
  .article-comments {
    margin-top: 60px;
    margin-bottom: 30px; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .article-category-title {
    margin-bottom: 30px;
    display: inline-block; }
  .article-category .article-block {
    width: 50%; }
  .article-content-footer {
    display: none; }
  .pagination {
    margin-bottom: 30px; }
  .article-related {
    padding: 90px 30px; }
  .article-comments {
    margin-top: 60px;
    margin-bottom: 30px; } }

@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .article-category .article-block {
    width: 33.333333333333333333%; } }

@media only screen and (max-width: 768px) {
  .article-image {
    margin: 0 -30px; } }

@media only screen and (max-width: 1200px) {
  .article .sticky-wrapper {
    display: none; } }

/* ==========================================================================
   Reason.scss
   ========================================================================== */
.reason {
  float: left;
  width: 100%; }
  .reason .btn {
    float: left;
    width: 100%;
    position: relative;
    z-index: 111;
    padding-left: 0px;
    padding-right: 0px;
    border: none; }
    .reason .btn h2, .reason .btn .h2 {
      color: #FFFFFF; }

.reason-item {
  height: 250px;
  width: 25%;
  float: left;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out; }
  .reason-item:nth-child(1) {
    border-top-left-radius: 20px; }
  .reason-item:nth-child(4) {
    border-top-right-radius: 20px; }

.reason-icon {
  display: block;
  margin: 0 auto 20px; }

.reason-item-content {
  display: table;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1; }
  .reason-item-content span {
    display: table-cell;
    vertical-align: middle; }
  .reason-item-content h3, .reason-item-content .h3 {
    font-weight: bold;
    color: #FFFFFF; }

.reason-item-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0; }
  .reason-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
  .reason-item-image:after {
    display: block;
    content: '';
    position: absolute;
    background: linear-gradient(rgba(20, 60, 0, 0.3), rgba(20, 60, 0, 0.3));
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }

@media only screen and (max-width: 480px) {
  .reason .btn {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box; }
  .reason-item {
    display: none; } }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .reason .btn {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box; }
  .reason-item {
    display: none; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .reason-item {
    width: 50%;
    height: 150px; }
    .reason-item:nth-child(2) {
      border-top-right-radius: 20px; }
    .reason-item:nth-child(4) {
      border-top-right-radius: 0px; }
    .reason-item:nth-child(5), .reason-item:nth-child(6), .reason-item:nth-child(7), .reason-item:nth-child(8) {
      display: none; } }

@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .reason-item {
    height: 150px; } }

/* ==========================================================================
   Process.scss
   ========================================================================== */
.process {
  float: left;
  width: 100%;
  background: #f3f3f3;
  padding: 90px 0px; }
  .process-item {
    text-align: center; }
    .process-item h3, .process-item .h3 {
      font-weight: bold; }
    .process-item img {
      border-radius: 500px;
      margin-bottom: 30px; }

@media only screen and (max-width: 480px) {
  .process {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box; }
    .process-item {
      width: 100%; }
      .process-item img {
        display: none; } }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .process {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box; }
    .process-item {
      width: 100%; }
      .process-item img {
        max-width: 65%; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .process-item img {
    max-width: 65%; } }

@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .process-item img {
    max-width: 65%; } }

@media only screen and (max-width: 900px) {
  .process .slick-arrow.slick-next {
    right: 0; }
  .process .slick-arrow.slick-prev {
    left: 0; } }

/* ==========================================================================
   Process.scss
   ========================================================================== */
.materials {
  float: left;
  padding: 90px 0px; }
  .materials-inner {
    width: 70%;
    margin-left: 15%; }
    .materials-inner img {
      max-width: 100%; }
    @media only screen and (max-width: 1200px) {
      .materials-inner {
        width: 75%;
        margin-left: 12.5%; } }
    @media only screen and (max-width: 900px) {
      .materials-inner {
        width: 100%;
        margin-left: 0; } }
    .materials-inner > p {
      margin-bottom: 40px; }
  .materials-item .h4 {
    font-weight: bold;
    margin-bottom: 0px; }
  .materials-item p {
    margin: 0 0 20px 0; }

@media only screen and (max-width: 480px) {
  .materials-item .col-50 {
    width: 100%; }
    .materials-item .col-50 img {
      width: 100%;
      margin: 0 auto 20px; } }

/* ==========================================================================
   Process.scss
   ========================================================================== */
.shapes {
  width: 100%;
  float: left; }
  .shapes-header-image {
    width: 100%;
    margin-bottom: 90px; }
  .shapes-inner {
    width: 50%;
    margin-left: 25%; }
    @media only screen and (max-width: 1200px) {
      .shapes-inner {
        width: 75%;
        margin-left: 12.5%; } }
    @media only screen and (max-width: 900px) {
      .shapes-inner {
        width: 100%;
        margin-left: 0; } }
    .shapes-inner > p {
      margin-bottom: 40px; }
  .shapes-slider {
    padding-bottom: 60px; }
  .shapes-slider-item {
    text-align: center; }
    .shapes-slider-item img {
      display: inline-block;
      margin-bottom: 30px; }

/* ==========================================================================
   persons.scss
   ========================================================================== */
.persons {
  float: left;
  width: 100%;
  background: #f3f3f3;
  padding: 90px 0px; }
  .persons-inner {
    width: 50%;
    margin-left: 25%; }
    @media only screen and (max-width: 1200px) {
      .persons-inner {
        width: 75%;
        margin-left: 12.5%; } }
    @media only screen and (max-width: 900px) {
      .persons-inner {
        width: 100%;
        margin-left: 0; } }
    .persons-inner > p {
      margin-bottom: 40px; }
    .persons-inner .col-inner {
      margin: 20px; }
      .persons-inner .col-inner img {
        width: 80%;
        border: 3px solid #FFFFFF; }
  .persons-item {
    text-align: center; }
    .persons-item span {
      font-weight: bold; }
    .persons-item img {
      border-radius: 500px;
      margin-bottom: 30px; }

@media only screen and (max-width: 480px) {
  .persons .col-33 {
    width: 100%; } }

/* ==========================================================================
   support.scss
   ========================================================================== */
.support {
  float: left;
  width: 100%;
  background: #FFFFFF;
  padding: 90px 0px; }
  .support-inner {
    width: 50%;
    margin-left: 25%; }
    @media only screen and (max-width: 1200px) {
      .support-inner {
        width: 75%;
        margin-left: 12.5%; } }
    @media only screen and (max-width: 900px) {
      .support-inner {
        width: 100%;
        margin-left: 0; } }
    .support-inner .col-inner {
      margin: 20px; }
  .support-slider {
    padding-bottom: 80px; }
  .support .slick-arrow {
    bottom: 20px; }
  .support .slick-arrow.slick-next {
    right: 0; }
  .support .slick-arrow.slick-prev {
    left: 0; }
  .support-item {
    text-align: center; }
    .support-item span {
      font-weight: bold; }
    .support-item img {
      margin-bottom: 30px; }

@media only screen and (max-width: 480px) {
  .support-item .col-50 {
    width: 100%; }
    .support-item .col-50 img {
      display: none; } }

/* ==========================================================================
   Process.scss
   ========================================================================== */
.twocolumns {
  float: left;
  padding: 90px 0px; }
  .twocolumns-inner {
    width: 50%;
    margin-left: 25%; }
    @media only screen and (max-width: 1200px) {
      .twocolumns-inner {
        width: 75%;
        margin-left: 12.5%; } }
    @media only screen and (max-width: 900px) {
      .twocolumns-inner {
        width: 100%;
        margin-left: 0; } }
    .twocolumns-inner > p {
      margin-bottom: 40px; }
    .twocolumns-inner .col-inner {
      padding-right: 30px; }
      .twocolumns-inner .col-inner img {
        width: 100%; }

@media only screen and (max-width: 768px) {
  .twocolumns-inner .col-50 {
    width: 100%; }
    .twocolumns-inner .col-50 img {
      display: none; } }

/* ==========================================================================
   Finder.scss
   ========================================================================== */
.finder {
  position: relative;
  float: left;
  width: 100%; }
  .finder .map-container {
    height: 700px;
    width: 100%;
    overflow: hidden;
    position: relative; }
  .finder #map,
  .finder #contact-map {
    height: 750px;
    width: 100%; }

@media only screen and (max-width: 480px) {
  .finder .map-container {
    height: 400px; }
  .finder #map,
  .finder #contact-map {
    height: 450px; }
  .finder .section-intro {
    top: 20%; } }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .finder .map-container {
    height: 400px; }
  .finder #map,
  .finder #contact-map {
    height: 450px; }
  .finder .section-intro {
    top: 20%; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .finder .map-container {
    height: 400px; }
  .finder #map,
  .finder #contact-map {
    height: 450px; }
  .finder .section-intro {
    top: 20%; } }

@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .finder .map-container {
    height: 500px; }
  .finder #map,
  .finder #contact-map {
    height: 550px; } }

.storefinder .storefinder-retailers .storedata-list {
  padding: 20px;
  box-sizing: border-box;
  width: 50%;
  float: left; }
  @media only screen and (max-width: 992px) {
    .storefinder .storefinder-retailers .storedata-list {
      width: 100%; } }

.storefinder .storedata {
  min-height: 230px;
  border-bottom: 1px solid #f3f3f3; }
  @media only screen and (max-width: 992px) {
    .storefinder .storedata {
      min-height: auto;
      padding-bottom: 30px; } }

.storefinder .notfound {
  display: none; }

.storefinder .geo-feedback {
  display: block;
  font-size: 12px;
  color: #808680;
  width: 100%;
  line-height: 18px;
  margin-bottom: 10px;
  text-align: center;
  display: none; }

.storefinder form {
  padding: 0 30px; }

.storefinder .nearby-button .btn {
  width: 100%;
  box-sizing: border-box; }

@media only screen and (max-width: 1200px) {
  .storefinder .nearby-button-mobile {
    margin-bottom: 30px; } }

@media only screen and (min-width: 1200px) {
  .storefinder .nearby-button-mobile {
    display: none; } }

@media only screen and (max-width: 1200px) {
  .storefinder .nearby-button-desktop {
    display: none; } }

.storefinder-options {
  width: 25%; }
  .storefinder-options-header {
    padding: 0 0 45px 0; }
    .storefinder-options-header h1 {
      font-weight: bold;
      color: #2d86c3;
      font-size: 30px;
      line-height: 30px; }

.storefinder-results, .storefinder-map {
  width: 75%;
  min-height: 500px;
  text-align: center; }
  @media only screen and (max-width: 1200px) {
    .storefinder-results, .storefinder-map {
      width: 100%; } }

.storefinder-retailer {
  width: 50%;
  box-sizing: border-box; }
  .storefinder-retailer:nth-child(odd) {
    border-right: 1px solid #f3f3f3; }
  .storefinder-retailer:nth-child(1), .storefinder-retailer:nth-child(2) {
    display: block; }

.storefinder-retailers {
  float: left;
  width: 100%;
  background: #FFFFFF;
  padding: 0 0 100px 0; }
  .storefinder-retailers .nearby-button-result {
    padding: 40px 0; }
  .storefinder-retailers-header {
    background: #FFFFFF;
    padding: 0;
    width: 100%;
    float: left; }
    .storefinder-retailers-header h2 {
      font-weight: bold;
      color: #2d86c3; }

.storefinder-retailer-item h2 {
  font-weight: bold;
  color: #5a5a52; }

.storefinder-retailer-item .h2_distance {
  color: #b7b7b7;
  font-size: 14px;
  padding-left: 20px;
  display: block; }
  .storefinder-retailer-item .h2_distance:empty {
    display: none; }

@media only screen and (max-width: 1200px) {
  .storefinder {
    padding-top: 110px; }
    .storefinder-options {
      width: 100%; }
    .storefinder-map {
      width: 100%; } }

@media only screen and (max-width: 900px) {
  .storefinder-retailer {
    width: 100%; } }

@media only screen and (max-width: 1200px) {
  .countryColumns-back {
    margin-bottom: 20px; } }

@media only screen and (max-width: 1200px) {
  .countryColumns {
    margin-top: 100px; } }

.countryColumns .countryColumnsCountry {
  border: 1px solid #2d86c3;
  max-width: 300px;
  background: #f9f9f9;
  margin: 0 auto 20px;
  padding: 0; }
  .countryColumns .countryColumnsCountry h3 {
    font-weight: bold;
    color: #2d86c3; }

.countryColumns .countryColumnsCity {
  padding: 20px 40px 20px; }
  .countryColumns .countryColumnsCity div {
    font-size: 14px; }

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  background-color: white; }
  .callout.warning {
    background-color: #fff3d9;
    color: #0a0a0a; }

@media only screen and (max-width: 767px) {
  .store-product-content {
    display: none; } }

.store-product-tabs-content {
  width: 60%;
  margin-left: 20%; }
  @media only screen and (max-width: 1550px) {
    .store-product-tabs-content {
      width: 90%;
      margin-left: 5%; } }

.store-product-slider {
  padding-bottom: 80px !important;
  padding-top: 20px !important;
  width: 100%; }

.store-product-content-header {
  margin-bottom: 80px;
  width: 70%;
  margin-left: 15%; }

.store-product-layer-image {
  padding: 0 40px 0 0; }
  .store-product-layer-image img {
    position: relative;
    min-width: 464px;
    min-height: 110px;
    width: 464px;
    height: 110px; }
    @media only screen and (max-width: 940px) {
      .store-product-layer-image img {
        min-width: 295px;
        min-height: 70px;
        width: 295px;
        height: 70px; } }
    .store-product-layer-image img:nth-child(1) {
      z-index: 5; }
    .store-product-layer-image img:nth-child(2) {
      z-index: 4;
      margin-top: -40px; }
    .store-product-layer-image img:nth-child(3) {
      z-index: 3;
      margin-top: -60px; }
    .store-product-layer-image img:nth-child(4) {
      z-index: 2;
      margin-top: -60px; }
    .store-product-layer-image img:nth-child(5) {
      z-index: 1;
      margin-top: -60px; }
  .store-product-layer-image-block {
    position: relative;
    width: 100%;
    height: 110px; }
    @media only screen and (max-width: 940px) {
      .store-product-layer-image-block {
        height: 70px; } }
    .store-product-layer-image-block:nth-child(2) {
      margin-top: -50px; }
    .store-product-layer-image-block:nth-child(3) {
      margin-top: -50px; }
    .store-product-layer-image-block:nth-child(4) {
      margin-top: -50px; }
    .store-product-layer-image-block:nth-child(5) {
      margin-top: -50px; }
    .store-product-layer-image-block .product-feature-pin {
      top: 18px; }
      .store-product-layer-image-block .product-feature-pin--active {
        width: 58%;
        overflow: hidden; }
        .store-product-layer-image-block .product-feature-pin--active::after {
          width: 400px; }

.store-product-layer-pins {
  position: absolute;
  width: 50%; }

.store-product-layer-info {
  height: 60px;
  overflow: hidden;
  position: relative; }
  .store-product-layer-info-title {
    cursor: pointer; }
    .store-product-layer-info-title div {
      float: left;
      font-family: "Montserrat",Arial,Verdana,sans-serif;
      font-weight: normal; }
    .store-product-layer-info-title-icon {
      font-size: 36px;
      margin-right: 20px; }
    .store-product-layer-info-title-content {
      font-size: 20px;
      margin-top: -15px;
      color: #2d86c3; }
  .store-product-layer-info:nth-child(1) {
    margin-top: 20px; }
  .store-product-layer-info-subtitle {
    position: absolute;
    opacity: 0;
    left: 50px;
    top: 30px; }

.btn-store-social {
  width: 40px !important;
  height: 40px !important;
  font-size: 24px;
  overflow: hidden;
  border-radius: 50%;
  padding: 0 !important; }
  .btn-store-social i {
    margin-top: 5px;
    display: inline-block; }

.retailer-header-buttons .btn {
  margin: 10px; }

.retailer-left-content {
  margin: 0 auto;
  max-width: 60%; }
  .retailer-left-content-item {
    float: left;
    width: 100%; }
    .retailer-left-content-item img {
      margin-bottom: 30px; }
    .retailer-left-content-item h2 {
      font-size: 20px; }
    .retailer-left-content-item-product {
      font-size: 14px; }
      .retailer-left-content-item-product img {
        margin-bottom: 5px; }

.retailer-main {
  max-width: 700px;
  padding-top: 70px; }
  .retailer-main-content {
    line-height: 30px; }
    .retailer-main-content-video {
      margin: 0 0 40px 0; }

.retailer-map {
  width: 100%;
  height: 400px; }
  .retailer-map-directions {
    padding-top: 50px !important; }
  .retailer-map-container {
    width: 100%;
    position: relative;
    overflow: hidden; }
  .retailer-map-block {
    margin-right: -1px;
    position: absolute;
    background: #2d86c3;
    display: table;
    bottom: 0;
    right: 0; }
    .retailer-map-block-content {
      display: table-cell;
      vertical-align: bottom;
      padding: 0px 60px 60px 60px;
      box-sizing: border-box;
      color: #FFFFFF;
      height: 300px; }
      .retailer-map-block-content-feedback {
        position: absolute;
        top: 5px;
        left: 0;
        padding: 0 20px 0 60px;
        font-style: italic;
        color: #FFFFFF;
        font-size: 14px;
        padding-top: 10px; }
        .retailer-map-block-content-feedback:empty {
          display: none; }
      .retailer-map-block-content .h2 {
        color: #FFFFFF;
        font-weight: bold; }
      .retailer-map-block-content-button .btn {
        margin: 0px; }
      .retailer-map-block-content-currentlink {
        position: absolute;
        top: 0;
        right: 0;
        margin: 10px;
        display: block;
        color: #FFFFFF;
        font-size: 16px; }
        .retailer-map-block-content-currentlink i {
          margin-right: 5px; }
        .retailer-map-block-content-currentlink:hover {
          opacity: 0.7; }

.retailer-directions {
  margin-top: 50px; }
  .retailer-directions .adp-placemark {
    border: 0;
    background: #FFFFFF; }
    .retailer-directions .adp-placemark img {
      max-width: 100%; }
    .retailer-directions .adp-placemark .adp-text {
      font-weight: bold; }
  .retailer-directions .adp-step, .retailer-directions .adp-substep {
    padding: 10px 15px; }

.retailer-slider {
  padding-bottom: 80px;
  padding-top: 20px !important;
  width: 100%; }
  .retailer-slider div {
    margin: 0 30px;
    text-align: center; }
    .retailer-slider div img {
      max-height: 500px;
      max-width: 100%;
      margin: 0 auto; }

@media only screen and (max-width: 1200px) {
  .retailer-left-content {
    margin: 0 auto;
    max-width: 90%; } }

@media only screen and (max-width: 900px) {
  .retailer .col-70 {
    width: 100%; }
  .retailer-left {
    width: 100%; }
    .retailer-left-content {
      max-width: 100%; }
  .retailer-slider div img {
    max-height: 240px; } }

@media only screen and (max-width: 768px) {
  .retailer-directions {
    font-size: 14px; }
  .retailer-left {
    width: 100%; }
    .retailer-left-content {
      max-width: 100%; }
  .retailer-slider div img {
    max-height: 200px; } }

@media only screen and (max-width: 1200px) {
  .retailer-directions {
    width: 100% !important; }
  .retailer .radius-top-left {
    border-top-left-radius: 0; }
  .retailer-map-block {
    margin-right: -1px;
    position: relative;
    background: #2d86c3;
    display: table;
    bottom: 0;
    width: 100%;
    right: 0; }
    .retailer-map-block-content {
      padding: 0px 20px 60px 20px; }
      .retailer-map-block-content-feedback {
        padding-left: 20px; }
  .retailer-left-content .form-input input[type="text"] {
    padding: 10px 0 10px 40px; }
  .retailer-left-content-item-product p {
    margin-top: 0; } }

/* ==========================================================================
   Product.scss
   ========================================================================== */
/* Overview */
.product {
  float: left;
  width: 100%; }
  .product .col-50 {
    box-sizing: border-box;
    text-align: center; }
    .product .col-50:first-child {
      padding-right: 15px; }
    .product .col-50:last-child {
      padding-left: 15px; }
  .product-content-detailed-content {
    display: none; }

.product-item {
  text-align: center;
  width: 1000px; }
  .product-item img {
    width: auto !important;
    display: inherit !important;
    max-width: 90%; }
  .product-item-content {
    text-align: center;
    padding: 0px 30%; }

.product-image {
  padding-right: 30px;
  box-sizing: border-box;
  text-align: center; }
  .product-image--large {
    overflow: hidden; }

.product-slider, .process-slider {
  width: 100%;
  margin-bottom: 30px; }
  .product-slider-item, .process-slider-item {
    text-align: center; }
    .product-slider-item img, .process-slider-item img {
      max-width: 100%;
      margin: 0 auto; }
    .product-slider-item h2, .process-slider-item h2 {
      padding: 0 20px; }
  .product-slider .slick-arrow, .process-slider .slick-arrow {
    bottom: -80px; }

.process-slider {
  width: 80%;
  margin-left: 10%; }
  .process-slider .slick-slide img {
    display: inline-block; }

/* Detail */
.product-feature h2, .product-feature .h2 {
  color: #2d86c3; }

.product-feature-pin {
  height: 36px;
  width: 36px;
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: 444;
  color: #8b9558; }
  .product-feature-pin i {
    cursor: pointer;
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 40px; }
    .product-feature-pin i:hover {
      visibility: visible;
      opacity: 1; }
  .product-feature-pin .ion-ios-circle-filled {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s; }
  .product-feature-pin-icon:hover .ion-ios-circle-filled {
    visibility: visible;
    opacity: 1; }
  .product-feature-pin::after {
    transition: width 0.5s;
    width: 0px;
    content: "";
    background: #8b9558;
    height: 2px;
    position: absolute;
    top: 19px;
    left: 32px; }
  .product-feature-pin--active {
    width: 100%;
    color: #2d86c3;
    z-index: 333; }
    .product-feature-pin--active::after {
      width: 1200px;
      background: #2d86c3; }
    .product-feature-pin--active .ion-ios-circle-filled {
      visibility: visible;
      opacity: 1; }

.product-feature-option {
  display: none; }
  .product-feature-option img, .product-feature-option video, .product-feature-option iframe {
    margin-top: 30px;
    width: 100%; }
  .product-feature-option--active {
    display: block; }

@media only screen and (max-width: 480px) {
  .product .col-50 {
    width: 100%;
    margin-bottom: 60px; }
    .product .col-50:first-child, .product .col-50:last-child {
      padding: 0px; }
  .product-item {
    width: 400px; }
    .product-item-content {
      padding: 0px; }
  .product-image {
    width: 100%; }
  /* Detail */
  .product-feature {
    width: 100%;
    margin-top: 30px; }
  .product-feature-pin::after {
    width: 0px;
    height: 0px;
    display: none; } }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .product .col-50 {
    width: 100%;
    margin-bottom: 60px; }
    .product .col-50:first-child, .product .col-50:last-child {
      padding: 0px; }
  .product-item {
    width: 400px; }
    .product-item-content {
      padding: 0px 10%; }
  .product-image {
    width: 100%; }
  /* Detail */
  .product-feature {
    width: 100%;
    margin-top: 30px; }
  .product-feature-pin::after {
    width: 0px;
    height: 0px;
    display: none; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .product-item {
    width: 450px; }
    .product-item-content {
      padding: 0px 10%; }
  .product-image {
    width: 100%; }
  /* Detail */
  .product-feature {
    width: 100%;
    margin-top: 30px; }
  .product-feature-pin::after {
    width: 0px;
    height: 0px;
    display: none; } }

@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .product-item {
    width: 600px; } }

/* ==========================================================================
   Quote.scss
   ========================================================================== */
.quote {
  float: left;
  width: 100%;
  box-sizing: border-box;
  text-align: center; }
  .quote-featured {
    float: left;
    width: 100%;
    border-bottom: 1px solid #f3f3f3;
    position: relative; }
    .quote-featured .quote-item {
      box-sizing: border-box;
      padding: 60px;
      font-size: 26px;
      line-height: 32px; }
    .quote-featured .quote-logo--large {
      border-left: 1px solid #f3f3f3;
      box-sizing: border-box;
      padding: 60px;
      height: 360px;
      display: table; }
      .quote-featured .quote-logo--large-inner {
        display: table-cell;
        vertical-align: middle; }
  .quote-logo {
    height: 160px;
    padding: 30px;
    box-sizing: border-box;
    display: table;
    text-align: center;
    width: 100%; }
    .quote-logo-slider {
      width: 80%; }
    .quote-logo-vita {
      width: 20%; }
      .quote-logo-vita .quote-logo {
        padding: 0px; }
    .quote-logo-container {
      box-sizing: border-box; }
    .quote-logo .quote-logo-inner {
      height: 100px;
      display: table-cell;
      vertical-align: middle;
      width: 100%; }
      .quote-logo .quote-logo-inner img {
        display: unset; }
    .quote-logo:last-child {
      border-right: none; }

@media only screen and (max-width: 480px) {
  .quote-logo-slider {
    width: 50%; }
  .quote-logo-vita {
    width: 50%; }
  .quote-featured {
    display: none; } }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .quote-logo-slider {
    width: 70%; }
  .quote-logo-vita {
    width: 30%; }
  .quote-featured {
    display: none; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .quote-featured {
    display: none; } }

@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .quote-logo-slider {
    width: 75%; }
  .quote-logo-vita {
    width: 25%; }
  .quote-featured .quote-item {
    padding: 30px;
    font-size: 22px;
    line-height: 28px; }
  .quote-featured .quote-logo--large {
    height: 260px; } }

/* ==========================================================================
   About.scss
   ========================================================================== */
.about-introduction-small {
  box-sizing: border-box;
  padding-right: 30px;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 30px; }
  .about-introduction-small:last-child {
    border-bottom: none; }

.about-introduction .col-60 {
  border-left: 1px solid #f3f3f3;
  box-sizing: border-box;
  padding-left: 30px;
  padding-bottom: 30px; }

.about-history {
  background: #f3f3f3;
  padding: 30px;
  box-sizing: border-box; }
  .about-history .col-50 {
    box-sizing: border-box; }
    .about-history .col-50:first-child {
      padding-right: 30px; }
    .about-history .col-50:last-child {
      padding-left: 30px; }
  .about-history .dots {
    margin-top: 30px;
    padding-top: 40px;
    position: relative;
    bottom: auto; }
    .about-history .dots .timeline {
      height: 1px;
      background: #5a5a52; }
    .about-history .dots ul {
      padding: 0px;
      margin: -35px 0px 0px 0px;
      list-style: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .about-history .dots ul li {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: block;
        width: auto;
        text-align: center; }
      .about-history .dots ul .slick-active a.pager {
        border-color: #5a5a52;
        background: #f3f3f3; }
        .about-history .dots ul .slick-active a.pager .border {
          border-color: #5a5a52;
          background: #f3f3f3; }
          .about-history .dots ul .slick-active a.pager .border .bull {
            background: #2d86c3; }
    .about-history .dots a.pager {
      display: inline-block;
      border-radius: 50%;
      border: 1px solid transparent;
      cursor: pointer; }
      .about-history .dots a.pager .border {
        border: 1px solid transparent;
        border-radius: 50%;
        display: block;
        margin: 5px; }
        .about-history .dots a.pager .border .bull {
          width: 15px;
          height: 15px;
          display: block;
          background: #5a5a52;
          border-radius: 50%;
          margin: 20px; }

.about-certification {
  padding-bottom: 30px; }
  .about-certification .col-20 {
    box-sizing: border-box;
    padding: 15px;
    text-align: center; }
  .about-certification .col-video {
    display: table;
    min-height: 500px; }
    .about-certification .col-video-content {
      display: table-cell;
      vertical-align: middle;
      text-align: center; }

.about-certification-slider {
  padding-bottom: 70px; }
  .about-certification-slider .slick-slide img {
    display: unset; }

@media only screen and (max-width: 480px) {
  .about-introduction-small {
    padding-right: 0px; }
  .about-introduction .col-40,
  .about-introduction .col-60 {
    width: 100%; }
  .about-introduction .col-60 {
    border-left: none;
    border-top: 1px solid #f3f3f3;
    padding-left: 0px; }
  .about-history .col-50 {
    box-sizing: border-box;
    width: 100%; }
    .about-history .col-50:first-child, .about-history .col-50:last-child {
      padding: 0px; }
  .about-history .dots {
    display: none; }
  .about-certification .col-50 {
    width: 100%; }
  .about-certification .col-video {
    min-height: 200px; }
  .about-certification .col-content-content {
    min-height: 0px;
    margin-top: 60px; }
  .about-history-slider {
    padding-bottom: 87px; } }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .about-introduction-small {
    padding-right: 0px; }
  .about-introduction .col-40,
  .about-introduction .col-60 {
    width: 100%; }
  .about-introduction .col-60 {
    border-left: none;
    border-top: 1px solid #f3f3f3;
    padding-left: 0px; }
  .about-history .col-50 {
    box-sizing: border-box;
    width: 100%; }
    .about-history .col-50:first-child, .about-history .col-50:last-child {
      padding: 0px; }
  .about-history .dots {
    display: none; }
  .about-certification .col-50 {
    width: 100%; }
  .about-certification .col-video {
    min-height: 200px; }
  .about-certification .col-content-content {
    min-height: 0px;
    margin-top: 60px; }
  .about-history-slider {
    padding-bottom: 87px; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .about-history .col-50 {
    box-sizing: border-box;
    width: 100%; }
    .about-history .col-50:first-child, .about-history .col-50:last-child {
      padding: 0px; }
  .about-history .dots {
    display: none; }
  .about-history-slider {
    padding-bottom: 87px; } }

/* ==========================================================================
   Related.scss
   ========================================================================== */
.related {
  height: 400px;
  padding: 0px 60px 60px 60px;
  box-sizing: border-box;
  display: table; }
  .related .h2 {
    color: #FFFFFF; }
  .related-content {
    display: table-cell;
    vertical-align: bottom; }

/* ==========================================================================
   Poll.scss
   ========================================================================== */
.poll {
  background: #2d86c3;
  display: table; }
  .poll-content {
    display: table-cell;
    vertical-align: bottom;
    padding: 0px 60px 60px 60px;
    box-sizing: border-box;
    text-align: center;
    color: #FFFFFF;
    height: 400px; }
    .poll-content .h2 {
      color: #FFFFFF; }
    .poll-content-button .btn {
      margin: 0px 15px; }
    .poll-content-answer {
      display: none; }

/* ==========================================================================
   Faq.scss
   ========================================================================== */
.faq-questions {
  margin: 0px;
  padding: 0px; }

.faq-line {
  list-style: none;
  margin-bottom: 30px;
  border-bottom: 1px solid #ebebeb; }

.faq-question {
  cursor: pointer;
  padding: 15px 0px;
  font-weight: bold; }
  .faq-question i {
    float: right; }

.faq-answer {
  display: none; }

/* ==========================================================================
   Contact.scss
   ========================================================================== */
.contact-faq {
  display: none; }
  .contact-faq--active {
    display: block; }

.contact-storefinder {
  margin: 90px 0px 0px 0px;
  box-shadow: 0px -10px 30px #f3f3f3;
  padding: 90px 30%;
  box-sizing: border-box;
  text-align: center; }
  .contact-storefinder h1, .contact-storefinder .h1 {
    color: #FFFFFF; }

@media only screen and (max-width: 480px) {
  .contact-storefinder {
    padding: 90px 30px; }
  .contact .related {
    width: 100%;
    height: 330px; } }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .contact-storefinder {
    padding: 90px 30px; }
  .contact .related {
    width: 100%;
    height: 330px; } }

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .contact-storefinder {
    padding: 90px 30px; }
  .contact .related {
    width: 100%;
    height: 330px; } }

.geo {
  background-color: rgba(71, 133, 190, 0.7);
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  height: 100vh;
  width: 100vw;
  text-align: center;
  z-index: 999999; }
  .geo-popup {
    overflow: hidden;
    display: none;
    margin: 0 auto;
    width: 970px;
    max-width: 95%;
    height: 500px;
    background: #2d86c3;
    border-top-left-radius: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    position: relative; }
    .geo-popup-close {
      z-index: 999;
      opacity: 0.2;
      background: #2d86c3;
      color: #FFFFFF;
      font-size: 60px;
      position: absolute;
      top: 0;
      right: 0;
      padding: 5px 20px;
      cursor: pointer; }
    .geo-popup-content {
      width: 47%;
      height: 100%;
      background: #2d86c3;
      position: absolute; }
      .geo-popup-content-inner {
        margin: 200px 40px 0;
        text-align: left; }
        .geo-popup-content-inner .h2 {
          color: #FFFFFF;
          text-align: left; }
        .geo-popup-content-inner .btn {
          width: 79%;
          text-align: center;
          margin-bottom: 20px; }

@media only screen and (max-width: 992px) {
  .geo-popup {
    height: 320px; }
    .geo-popup-content {
      width: 50%; }
      .geo-popup-content-inner {
        margin: 30px 40px 0; } }

@media only screen and (max-width: 768px) {
  .geo-popup {
    height: 90vh;
    background-position: center 300px;
    background-size: contain; }
    .geo-popup-content {
      width: 100%;
      height: auto; }
      .geo-popup-content-inner {
        margin: 30px 40px 0; } }

@media only screen and (max-width: 500px) {
  .geo-popup {
    background-position: bottom center; } }

.youtubeIframe {
  background-color: #fff;
  background-size: 90% auto;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
  margin-top: 20px;
  border: 1px solid #2d86c3; }

.youtubeIframe img {
  width: 100%;
  top: -16.84%;
  left: 0;
  opacity: 0.7; }

.youtubeIframe .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px; }

.youtubeIframe .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26.0px;
  border-color: transparent transparent transparent #fff; }

.youtubeIframe img,
.youtubeIframe .play-button {
  cursor: pointer; }

.youtubeIframe img,
.youtubeIframe iframe,
.youtubeIframe .play-button,
.youtubeIframe .play-button:before {
  position: absolute;
  margin-top: 0 !important; }

.youtubeIframe .play-button,
.youtubeIframe .play-button:before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0); }

.youtubeIframe iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0; }

.sf_storefinder .storefinder-retailers, .sf_storefinder .storefinder-retailers-header {
  background: none; }

.sf_storefinder .storefinder-retailers {
  margin-top: 15px;
  padding-bottom: 30px; }

.sf_storefinder h1, .sf_storefinder h2 {
  font-weight: bold;
  color: #fff;
  font-size: 48px; }

.sf_storefinder .storedata {
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 20px;
  min-height: 300px; }
  .sf_storefinder .storedata h2 {
    color: #2d86c3;
    font-size: 26px; }

.sf_storefinder .fetchLink {
  text-decoration: underline;
  cursor: pointer; }

.sf_storefinder .sf_bar {
  display: none;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  background: #e2e2e2;
  color: #000;
  font-size: 12px;
  padding: 10px;
  font-family: arial; }

.sf_storefinder .sf_bar2 {
  background-color: #cecece;
  padding-top: 20px; }
  .sf_storefinder .sf_bar2 form {
    width: 350px;
    margin: 0 auto; }
    .sf_storefinder .sf_bar2 form .btn {
      width: 100%;
      box-sizing: border-box;
      cursor: pointer; }

.sf_storefinder .sf_bar-msg {
  display: none; }

.sf_storefinder .nearby-button {
  margin-bottom: 40px; }
  .sf_storefinder .nearby-button a {
    width: auto !important; }

.sf_storefinder .sf_rangeinfo {
  color: #fff;
  display: block;
  margin: -15px 0 5px 0; }

@media only screen and (max-width: 600px) {
  .sf_storefinder h1, .sf_storefinder h2 {
    font-size: 28px; }
  .storefinder form {
    padding: 0; }
  .sf_storefinder .sf_bar2 form {
    width: 100%; }
  .storefinder-options-header {
    padding-bottom: 20px; } }

.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px; }

.spinner > div {
  background-color: #333;
  height: 100%;
  margin-right: 5px;
  width: 3px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out; }

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }

.page-section {
  height: 864px;
  overflow: hidden; }
  .page-section .page-header {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1; }

/* Views
   ========================================================================== */
/* ==========================================================================
   fullPage.scss
   ========================================================================== */
.fp-fixed-height {
  position: relative; }

/* Views
   ========================================================================== */

/*# sourceMappingURL=../maps/main.css.map */
