@charset "UTF-8";
/* 01-base is the set of core elements. These are anything that is defined by HTML itself including <body> <p> <a> and <img>. Base also includes any non-rendering sass including mixins and functions. It’s important to note that anything contained within this folder directly references the HTML tag and does not include classes. The decision to not include classes is a bit of a line in the sand, but it is a clear heuristic that doesn’t require second guessing.
========================================================================== */
/* Colors
========================================================================== */
/* Breakpoints
Usage max-width: @include screen('lg') { };
Output: @media (max-width: 992px) { };
****
Usage min-width: @include screen('lg', min) { };
Output: @media (max-width: 992px) { };
========================================================================== */
/* Fonts
========================================================================== */
/* Links
========================================================================== */
/* Mixins
========================================================================== */
/* Custom Fonts - Usage
basic: @include font-face("OpenSans", fonts/OpenSans, bold, italic);
WOFF only: @include font-face(OpenSans, fonts/OpenSans, null, null, woff);
500w EOT WOFF2 WOFF: @include font-face(OpenSans, fonts/OpenSans, 500, normal, eot woff2 woff);
========================================================================== */
/* Breakpoints
========================================================================== */
.container:before,
.container:after {
  content: " ";
  display: table; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  scroll-behavior: smooth; }

/**
 * 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 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent 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; }
  a:active, a:hover {
    outline: 0; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
/* 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; }

/**
 * Address 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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
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 {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

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

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
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.
 */
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;
  text-transform: none; }

/**
 * 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.
 */
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.
 */
button, html input[type="button"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

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 {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }
  input::-moz-focus-inner {
    border: 0;
    padding: 0; }
  input[type="checkbox"], input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */ }
  input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto; }
  input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 2 */ }
    input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
      -webkit-appearance: none; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/**
 * 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`.
 */
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
/**
 * 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).
 */
/**
 * 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.
 */
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; }

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

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #000;
  background-color: #fff; }

a {
  text-decoration: none;
  color: #20419A; }
  a:hover {
    color: #3FAFF0; }



ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none; }

input {
  margin: 0;
  padding: 0; }

button {
  border: 0; }


/* 02-components, these are stylesheets that include singular modular items. Often, these are common elements like an .alert, .subheader, .button, or .badge. While a component can have a state like warning or super tall, (a b.e.m. example might look like .button--disabled) the one thing that they don’t have is a parent-child relationship. Another line in the sand, but it is easy to determine “Is this an independent object, or is this a collection made of a bunch of parts and pieces?”
========================================================================== */
.page-filter .filter, .page-filter .filter.active, .page-filter .filter:hover, .global-trans, .global-trans:hover, .btn,
button, .btn:hover,
.btn .active,
button:hover,
button .active, .btn-contact a, .btn-contact a:hover, .main-navigation .sub-menu, .main-navigation .sub-menu:hover, input[type="submit"],
input[type="button"], input[type="submit"]:hover,
input[type="button"]:hover, .section-how .item-wrapper, .section-how .item-wrapper:hover, .section-collection .item-wrapper:hover .item,
.section-admin-products .item-wrapper:hover .item, .section-collection .item,
.section-admin-products .item, .section-testimonial.testi-alt .testi-nav.nav-alt span, .section-testimonial.testi-alt .testi-nav.nav-alt span:hover, .section-client .item-wrapper img, .section-client .item-wrapper img:hover {
  -webkit-transition: 150ms;
  -o-transition: 150ms;
  transition: 150ms; }

.text-low {
  text-transform: lowercase; }

.text-up {
  text-transform: uppercase; }

.text-cap {
  text-transform: capitalize; }

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

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

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

.text-light {
  font-weight: 100; }

.text-normal {
  font-weight: normal; }

.text-italic {
  font-style: italic; }

.text-bold {
  font-weight: 700; }

.text-strong {
  font-weight: 800; }

.text-color-primary {
  color: #20419A; }

.text-color-secondary {
  color: #3FAFF0; }

.text-color-tertiary {
  color: #1BBA40; }

.text-color-gray {
  color: #828282; }

.text-primary {
  font-family: "Montserrat", sans-serif; }

.text-secondary {
  font-family: "Roboto Slab", serif; }

.text-tertiary {
  font-family: "Roboto", sans-serif; }

.text-size-xxs {
  font-size: 11px; }

.text-size-xs {
  font-size: 12px; }

.text-size-sm {
  font-size: 14px; }

.text-size-md {
  font-size: 18px;
  line-height: 28px; }

.text-size-lg {
  font-size: 24px; }

.text-size-1-24 {
  font-size: 24px; }

.text-size-1-23 {
  font-size: 23px; }

.text-size-1-22 {
  font-size: 22px; }

.text-size-1-21 {
  font-size: 21px; }

.text-size-1-20 {
  font-size: 20px; }

.text-size-1-19 {
  font-size: 19px; }

.text-size-1-18 {
  font-size: 18px; }

.text-size-1-17 {
  font-size: 17px; }

.text-size-1-16 {
  font-size: 16px; }

.text-size-1-15 {
  font-size: 15px; }

.text-size-1-14 {
  font-size: 14px; }

.text-size-1-13 {
  font-size: 13px; }

.text-size-1-12 {
  font-size: 12px; }

.text-size-1-11 {
  font-size: 11px; }

.text-size-1-10 {
  font-size: 10px; }

.text-space-0-0 {
  letter-spacing: 0px; }

.text-space-0-1 {
  letter-spacing: 0.1px; }

.text-space-0-2 {
  letter-spacing: 0.2px; }

.text-space-0-3 {
  letter-spacing: 0.3px; }

.text-space-0-4 {
  letter-spacing: 0.4px; }

.text-space-0-5 {
  letter-spacing: 0.5px; }

.text-space-0-6 {
  letter-spacing: 0.6px; }

.text-space-0-7 {
  letter-spacing: 0.7px; }

.text-space-0-8 {
  letter-spacing: 0.8px; }

.text-space-0-9 {
  letter-spacing: 0.9px; }

.text-space-0-10 {
  letter-spacing: 1px; }

.text-space-1-0 {
  letter-spacing: 1px; }

.text-space-1-1 {
  letter-spacing: 1.1px; }

.text-space-1-2 {
  letter-spacing: 1.2px; }

.text-space-1-3 {
  letter-spacing: 1.3px; }

.text-space-1-4 {
  letter-spacing: 1.4px; }

.text-space-1-5 {
  letter-spacing: 1.5px; }

.text-space-1-6 {
  letter-spacing: 1.6px; }

.text-space-1-7 {
  letter-spacing: 1.7px; }

.text-space-1-8 {
  letter-spacing: 1.8px; }

.text-space-1-9 {
  letter-spacing: 1.9px; }

.text-space-1-10 {
  letter-spacing: 2px; }

.text-space-2-0 {
  letter-spacing: 2px; }

.text-space-2-1 {
  letter-spacing: 2.1px; }

.text-space-2-2 {
  letter-spacing: 2.2px; }

.text-space-2-3 {
  letter-spacing: 2.3px; }

.text-space-2-4 {
  letter-spacing: 2.4px; }

.text-space-2-5 {
  letter-spacing: 2.5px; }

.text-space-2-6 {
  letter-spacing: 2.6px; }

.text-space-2-7 {
  letter-spacing: 2.7px; }

.text-space-2-8 {
  letter-spacing: 2.8px; }

.text-space-2-9 {
  letter-spacing: 2.9px; }

.text-space-2-10 {
  letter-spacing: 3px; }

.text-space-3-0 {
  letter-spacing: 3px; }

.text-space-3-1 {
  letter-spacing: 3.1px; }

.text-space-3-2 {
  letter-spacing: 3.2px; }

.text-space-3-3 {
  letter-spacing: 3.3px; }

.text-space-3-4 {
  letter-spacing: 3.4px; }

.text-space-3-5 {
  letter-spacing: 3.5px; }

.text-space-3-6 {
  letter-spacing: 3.6px; }

.text-space-3-7 {
  letter-spacing: 3.7px; }

.text-space-3-8 {
  letter-spacing: 3.8px; }

.text-space-3-9 {
  letter-spacing: 3.9px; }

.text-space-3-10 {
  letter-spacing: 4px; }

.text-space-4-0 {
  letter-spacing: 4px; }

.text-space-4-1 {
  letter-spacing: 4.1px; }

.text-space-4-2 {
  letter-spacing: 4.2px; }

.text-space-4-3 {
  letter-spacing: 4.3px; }

.text-space-4-4 {
  letter-spacing: 4.4px; }

.text-space-4-5 {
  letter-spacing: 4.5px; }

.text-space-4-6 {
  letter-spacing: 4.6px; }

.text-space-4-7 {
  letter-spacing: 4.7px; }

.text-space-4-8 {
  letter-spacing: 4.8px; }

.text-space-4-9 {
  letter-spacing: 4.9px; }

.text-space-4-10 {
  letter-spacing: 5px; }

.text-space-5-0 {
  letter-spacing: 5px; }

.text-space-5-1 {
  letter-spacing: 5.1px; }

.text-space-5-2 {
  letter-spacing: 5.2px; }

.text-space-5-3 {
  letter-spacing: 5.3px; }

.text-space-5-4 {
  letter-spacing: 5.4px; }

.text-space-5-5 {
  letter-spacing: 5.5px; }

.text-space-5-6 {
  letter-spacing: 5.6px; }

.text-space-5-7 {
  letter-spacing: 5.7px; }

.text-space-5-8 {
  letter-spacing: 5.8px; }

.text-space-5-9 {
  letter-spacing: 5.9px; }

.text-space-5-10 {
  letter-spacing: 6px; }

.text-space-6-0 {
  letter-spacing: 6px; }

.text-space-6-1 {
  letter-spacing: 6.1px; }

.text-space-6-2 {
  letter-spacing: 6.2px; }

.text-space-6-3 {
  letter-spacing: 6.3px; }

.text-space-6-4 {
  letter-spacing: 6.4px; }

.text-space-6-5 {
  letter-spacing: 6.5px; }

.text-space-6-6 {
  letter-spacing: 6.6px; }

.text-space-6-7 {
  letter-spacing: 6.7px; }

.text-space-6-8 {
  letter-spacing: 6.8px; }

.text-space-6-9 {
  letter-spacing: 6.9px; }

.text-space-6-10 {
  letter-spacing: 7px; }

.text-space-7-0 {
  letter-spacing: 7px; }

.text-space-7-1 {
  letter-spacing: 7.1px; }

.text-space-7-2 {
  letter-spacing: 7.2px; }

.text-space-7-3 {
  letter-spacing: 7.3px; }

.text-space-7-4 {
  letter-spacing: 7.4px; }

.text-space-7-5 {
  letter-spacing: 7.5px; }

.text-space-7-6 {
  letter-spacing: 7.6px; }

.text-space-7-7 {
  letter-spacing: 7.7px; }

.text-space-7-8 {
  letter-spacing: 7.8px; }

.text-space-7-9 {
  letter-spacing: 7.9px; }

.text-space-7-10 {
  letter-spacing: 8px; }

.text-space-8-0 {
  letter-spacing: 8px; }

.text-space-8-1 {
  letter-spacing: 8.1px; }

.text-space-8-2 {
  letter-spacing: 8.2px; }

.text-space-8-3 {
  letter-spacing: 8.3px; }

.text-space-8-4 {
  letter-spacing: 8.4px; }

.text-space-8-5 {
  letter-spacing: 8.5px; }

.text-space-8-6 {
  letter-spacing: 8.6px; }

.text-space-8-7 {
  letter-spacing: 8.7px; }

.text-space-8-8 {
  letter-spacing: 8.8px; }

.text-space-8-9 {
  letter-spacing: 8.9px; }

.text-space-8-10 {
  letter-spacing: 9px; }

.text-space-9-0 {
  letter-spacing: 9px; }

.text-space-9-1 {
  letter-spacing: 9.1px; }

.text-space-9-2 {
  letter-spacing: 9.2px; }

.text-space-9-3 {
  letter-spacing: 9.3px; }

.text-space-9-4 {
  letter-spacing: 9.4px; }

.text-space-9-5 {
  letter-spacing: 9.5px; }

.text-space-9-6 {
  letter-spacing: 9.6px; }

.text-space-9-7 {
  letter-spacing: 9.7px; }

.text-space-9-8 {
  letter-spacing: 9.8px; }

.text-space-9-9 {
  letter-spacing: 9.9px; }

.text-space-9-10 {
  letter-spacing: 10px; }

.text-space-10-0 {
  letter-spacing: 10px; }

.text-space-10-1 {
  letter-spacing: 10.1px; }

.text-space-10-2 {
  letter-spacing: 10.2px; }

.text-space-10-3 {
  letter-spacing: 10.3px; }

.text-space-10-4 {
  letter-spacing: 10.4px; }

.text-space-10-5 {
  letter-spacing: 10.5px; }

.text-space-10-6 {
  letter-spacing: 10.6px; }

.text-space-10-7 {
  letter-spacing: 10.7px; }

.text-space-10-8 {
  letter-spacing: 10.8px; }

.text-space-10-9 {
  letter-spacing: 10.9px; }

.text-space-10-10 {
  letter-spacing: 11px; }

.text-line-height-0 {
  line-height: 0px; }

.text-line-height-1 {
  line-height: 1px; }

.text-line-height-2 {
  line-height: 2px; }

.text-line-height-3 {
  line-height: 3px; }

.text-line-height-4 {
  line-height: 4px; }

.text-line-height-5 {
  line-height: 5px; }

.text-line-height-6 {
  line-height: 6px; }

.text-line-height-7 {
  line-height: 7px; }

.text-line-height-8 {
  line-height: 8px; }

.text-line-height-9 {
  line-height: 9px; }

.text-line-height-10 {
  line-height: 10px; }

.text-line-height-11 {
  line-height: 11px; }

.text-line-height-12 {
  line-height: 12px; }

.text-line-height-13 {
  line-height: 13px; }

.text-line-height-14 {
  line-height: 14px; }

.text-line-height-15 {
  line-height: 15px; }

.text-line-height-16 {
  line-height: 16px; }

.text-line-height-17 {
  line-height: 17px; }

.text-line-height-18 {
  line-height: 18px; }

.text-line-height-19 {
  line-height: 19px; }

.text-line-height-20 {
  line-height: 20px; }

.text-line-height-21 {
  line-height: 21px; }

.text-line-height-22 {
  line-height: 22px; }

.text-line-height-23 {
  line-height: 23px; }

.text-line-height-24 {
  line-height: 24px; }

.text-line-height-25 {
  line-height: 25px; }

.text-line-height-26 {
  line-height: 26px; }

.text-line-height-27 {
  line-height: 27px; }

.text-line-height-28 {
  line-height: 28px; }

.text-line-height-29 {
  line-height: 29px; }

.text-line-height-30 {
  line-height: 30px; }

.text-line-height-31 {
  line-height: 31px; }

.text-line-height-32 {
  line-height: 32px; }

.text-line-height-33 {
  line-height: 33px; }

.text-line-height-34 {
  line-height: 34px; }

.text-line-height-35 {
  line-height: 35px; }

.text-line-height-36 {
  line-height: 36px; }

.text-line-height-37 {
  line-height: 37px; }

.text-line-height-38 {
  line-height: 38px; }

.text-line-height-39 {
  line-height: 39px; }

.text-line-height-40 {
  line-height: 40px; }

.m-all-0 {
  margin: 0px; }

.m-all-1 {
  margin: 1px; }

.m-all-2 {
  margin: 2px; }

.m-all-3 {
  margin: 3px; }

.m-all-4 {
  margin: 4px; }

.m-all-5 {
  margin: 5px; }

.m-all-6 {
  margin: 6px; }

.m-all-7 {
  margin: 7px; }

.m-all-8 {
  margin: 8px; }

.m-all-9 {
  margin: 9px; }

.m-all-10 {
  margin: 10px; }

.m-all-11 {
  margin: 11px; }

.m-all-12 {
  margin: 12px; }

.m-all-13 {
  margin: 13px; }

.m-all-14 {
  margin: 14px; }

.m-all-15 {
  margin: 15px; }

.m-all-16 {
  margin: 16px; }

.m-all-17 {
  margin: 17px; }

.m-all-18 {
  margin: 18px; }

.m-all-19 {
  margin: 19px; }

.m-all-20 {
  margin: 20px; }

.m-all-21 {
  margin: 21px; }

.m-all-22 {
  margin: 22px; }

.m-all-23 {
  margin: 23px; }

.m-all-24 {
  margin: 24px; }

.m-all-25 {
  margin: 25px; }

.m-all-26 {
  margin: 26px; }

.m-all-27 {
  margin: 27px; }

.m-all-28 {
  margin: 28px; }

.m-all-29 {
  margin: 29px; }

.m-all-30 {
  margin: 30px; }

.m-all-31 {
  margin: 31px; }

.m-all-32 {
  margin: 32px; }

.m-all-33 {
  margin: 33px; }

.m-all-34 {
  margin: 34px; }

.m-all-35 {
  margin: 35px; }

.m-all-36 {
  margin: 36px; }

.m-all-37 {
  margin: 37px; }

.m-all-38 {
  margin: 38px; }

.m-all-39 {
  margin: 39px; }

.m-all-40 {
  margin: 40px; }

.m-all-41 {
  margin: 41px; }

.m-all-42 {
  margin: 42px; }

.m-all-43 {
  margin: 43px; }

.m-all-44 {
  margin: 44px; }

.m-all-45 {
  margin: 45px; }

.m-all-46 {
  margin: 46px; }

.m-all-47 {
  margin: 47px; }

.m-all-48 {
  margin: 48px; }

.m-all-49 {
  margin: 49px; }

.m-all-50 {
  margin: 50px; }

.m-all-51 {
  margin: 51px; }

.m-all-52 {
  margin: 52px; }

.m-all-53 {
  margin: 53px; }

.m-all-54 {
  margin: 54px; }

.m-all-55 {
  margin: 55px; }

.m-all-56 {
  margin: 56px; }

.m-all-57 {
  margin: 57px; }

.m-all-58 {
  margin: 58px; }

.m-all-59 {
  margin: 59px; }

.m-all-60 {
  margin: 60px; }

.m-all-61 {
  margin: 61px; }

.m-all-62 {
  margin: 62px; }

.m-all-63 {
  margin: 63px; }

.m-all-64 {
  margin: 64px; }

.m-all-65 {
  margin: 65px; }

.m-all-66 {
  margin: 66px; }

.m-all-67 {
  margin: 67px; }

.m-all-68 {
  margin: 68px; }

.m-all-69 {
  margin: 69px; }

.m-all-70 {
  margin: 70px; }

.m-all-71 {
  margin: 71px; }

.m-all-72 {
  margin: 72px; }

.m-all-73 {
  margin: 73px; }

.m-all-74 {
  margin: 74px; }

.m-all-75 {
  margin: 75px; }

.m-all-76 {
  margin: 76px; }

.m-all-77 {
  margin: 77px; }

.m-all-78 {
  margin: 78px; }

.m-all-79 {
  margin: 79px; }

.m-all-80 {
  margin: 80px; }

.m-all-81 {
  margin: 81px; }

.m-all-82 {
  margin: 82px; }

.m-all-83 {
  margin: 83px; }

.m-all-84 {
  margin: 84px; }

.m-all-85 {
  margin: 85px; }

.m-all-86 {
  margin: 86px; }

.m-all-87 {
  margin: 87px; }

.m-all-88 {
  margin: 88px; }

.m-all-89 {
  margin: 89px; }

.m-all-90 {
  margin: 90px; }

.m-all-91 {
  margin: 91px; }

.m-all-92 {
  margin: 92px; }

.m-all-93 {
  margin: 93px; }

.m-all-94 {
  margin: 94px; }

.m-all-95 {
  margin: 95px; }

.m-all-96 {
  margin: 96px; }

.m-all-97 {
  margin: 97px; }

.m-all-98 {
  margin: 98px; }

.m-all-99 {
  margin: 99px; }

.m-all-100 {
  margin: 100px; }

.mt-10 {
  margin-top: 10px; }

.mt-11 {
  margin-top: 11px; }

.mt-12 {
  margin-top: 12px; }

.mt-13 {
  margin-top: 13px; }

.mt-14 {
  margin-top: 14px; }

.mt-15 {
  margin-top: 15px; }

.mt-16 {
  margin-top: 16px; }

.mt-17 {
  margin-top: 17px; }

.mt-18 {
  margin-top: 18px; }

.mt-19 {
  margin-top: 19px; }

.mt-20 {
  margin-top: 20px; }

.mt-21 {
  margin-top: 21px; }

.mt-22 {
  margin-top: 22px; }

.mt-23 {
  margin-top: 23px; }

.mt-24 {
  margin-top: 24px; }

.mt-25 {
  margin-top: 25px; }

.mt-26 {
  margin-top: 26px; }

.mt-27 {
  margin-top: 27px; }

.mt-28 {
  margin-top: 28px; }

.mt-29 {
  margin-top: 29px; }

.mt-30 {
  margin-top: 30px; }

.mt-31 {
  margin-top: 31px; }

.mt-32 {
  margin-top: 32px; }

.mt-33 {
  margin-top: 33px; }

.mt-34 {
  margin-top: 34px; }

.mt-35 {
  margin-top: 35px; }

.mt-36 {
  margin-top: 36px; }

.mt-37 {
  margin-top: 37px; }

.mt-38 {
  margin-top: 38px; }

.mt-39 {
  margin-top: 39px; }

.mt-40 {
  margin-top: 40px; }

.mt-41 {
  margin-top: 41px; }

.mt-42 {
  margin-top: 42px; }

.mt-43 {
  margin-top: 43px; }

.mt-44 {
  margin-top: 44px; }

.mt-45 {
  margin-top: 45px; }

.mt-46 {
  margin-top: 46px; }

.mt-47 {
  margin-top: 47px; }

.mt-48 {
  margin-top: 48px; }

.mt-49 {
  margin-top: 49px; }

.mt-50 {
  margin-top: 50px; }

.mt-51 {
  margin-top: 51px; }

.mt-52 {
  margin-top: 52px; }

.mt-53 {
  margin-top: 53px; }

.mt-54 {
  margin-top: 54px; }

.mt-55 {
  margin-top: 55px; }

.mt-56 {
  margin-top: 56px; }

.mt-57 {
  margin-top: 57px; }

.mt-58 {
  margin-top: 58px; }

.mt-59 {
  margin-top: 59px; }

.mt-60 {
  margin-top: 60px; }

.mt-61 {
  margin-top: 61px; }

.mt-62 {
  margin-top: 62px; }

.mt-63 {
  margin-top: 63px; }

.mt-64 {
  margin-top: 64px; }

.mt-65 {
  margin-top: 65px; }

.mt-66 {
  margin-top: 66px; }

.mt-67 {
  margin-top: 67px; }

.mt-68 {
  margin-top: 68px; }

.mt-69 {
  margin-top: 69px; }

.mt-70 {
  margin-top: 70px; }

.mt-71 {
  margin-top: 71px; }

.mt-72 {
  margin-top: 72px; }

.mt-73 {
  margin-top: 73px; }

.mt-74 {
  margin-top: 74px; }

.mt-75 {
  margin-top: 75px; }

.mt-76 {
  margin-top: 76px; }

.mt-77 {
  margin-top: 77px; }

.mt-78 {
  margin-top: 78px; }

.mt-79 {
  margin-top: 79px; }

.mt-80 {
  margin-top: 80px; }

.mt-81 {
  margin-top: 81px; }

.mt-82 {
  margin-top: 82px; }

.mt-83 {
  margin-top: 83px; }

.mt-84 {
  margin-top: 84px; }

.mt-85 {
  margin-top: 85px; }

.mt-86 {
  margin-top: 86px; }

.mt-87 {
  margin-top: 87px; }

.mt-88 {
  margin-top: 88px; }

.mt-89 {
  margin-top: 89px; }

.mt-90 {
  margin-top: 90px; }

.mt-91 {
  margin-top: 91px; }

.mt-92 {
  margin-top: 92px; }

.mt-93 {
  margin-top: 93px; }

.mt-94 {
  margin-top: 94px; }

.mt-95 {
  margin-top: 95px; }

.mt-96 {
  margin-top: 96px; }

.mt-97 {
  margin-top: 97px; }

.mt-98 {
  margin-top: 98px; }

.mt-99 {
  margin-top: 99px; }

.mt-100 {
  margin-top: 100px; }

.mb-0 {
  margin-bottom: 0px; }

.mb-1 {
  margin-bottom: 1px; }

.mb-2 {
  margin-bottom: 2px; }

.mb-3 {
  margin-bottom: 3px; }

.mb-4 {
  margin-bottom: 4px; }

.mb-5 {
  margin-bottom: 5px; }

.mb-6 {
  margin-bottom: 6px; }

.mb-7 {
  margin-bottom: 7px; }

.mb-8 {
  margin-bottom: 8px; }

.mb-9 {
  margin-bottom: 9px; }

.mb-10 {
  margin-bottom: 10px; }

.mb-11 {
  margin-bottom: 11px; }

.mb-12 {
  margin-bottom: 12px; }

.mb-13 {
  margin-bottom: 13px; }

.mb-14 {
  margin-bottom: 14px; }

.mb-15 {
  margin-bottom: 15px; }

.mb-16 {
  margin-bottom: 16px; }

.mb-17 {
  margin-bottom: 17px; }

.mb-18 {
  margin-bottom: 18px; }

.mb-19 {
  margin-bottom: 19px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-21 {
  margin-bottom: 21px; }

.mb-22 {
  margin-bottom: 22px; }

.mb-23 {
  margin-bottom: 23px; }

.mb-24 {
  margin-bottom: 24px; }

.mb-25 {
  margin-bottom: 25px; }

.mb-26 {
  margin-bottom: 26px; }

.mb-27 {
  margin-bottom: 27px; }

.mb-28 {
  margin-bottom: 28px; }

.mb-29 {
  margin-bottom: 29px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-31 {
  margin-bottom: 31px; }

.mb-32 {
  margin-bottom: 32px; }

.mb-33 {
  margin-bottom: 33px; }

.mb-34 {
  margin-bottom: 34px; }

.mb-35 {
  margin-bottom: 35px; }

.mb-36 {
  margin-bottom: 36px; }

.mb-37 {
  margin-bottom: 37px; }

.mb-38 {
  margin-bottom: 38px; }

.mb-39 {
  margin-bottom: 39px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-41 {
  margin-bottom: 41px; }

.mb-42 {
  margin-bottom: 42px; }

.mb-43 {
  margin-bottom: 43px; }

.mb-44 {
  margin-bottom: 44px; }

.mb-45 {
  margin-bottom: 45px; }

.mb-46 {
  margin-bottom: 46px; }

.mb-47 {
  margin-bottom: 47px; }

.mb-48 {
  margin-bottom: 48px; }

.mb-49 {
  margin-bottom: 49px; }

.mb-50 {
  margin-bottom: 50px; }

.mb-51 {
  margin-bottom: 51px; }

.mb-52 {
  margin-bottom: 52px; }

.mb-53 {
  margin-bottom: 53px; }

.mb-54 {
  margin-bottom: 54px; }

.mb-55 {
  margin-bottom: 55px; }

.mb-56 {
  margin-bottom: 56px; }

.mb-57 {
  margin-bottom: 57px; }

.mb-58 {
  margin-bottom: 58px; }

.mb-59 {
  margin-bottom: 59px; }

.mb-60 {
  margin-bottom: 60px; }

.mb-61 {
  margin-bottom: 61px; }

.mb-62 {
  margin-bottom: 62px; }

.mb-63 {
  margin-bottom: 63px; }

.mb-64 {
  margin-bottom: 64px; }

.mb-65 {
  margin-bottom: 65px; }

.mb-66 {
  margin-bottom: 66px; }

.mb-67 {
  margin-bottom: 67px; }

.mb-68 {
  margin-bottom: 68px; }

.mb-69 {
  margin-bottom: 69px; }

.mb-70 {
  margin-bottom: 70px; }

.mb-71 {
  margin-bottom: 71px; }

.mb-72 {
  margin-bottom: 72px; }

.mb-73 {
  margin-bottom: 73px; }

.mb-74 {
  margin-bottom: 74px; }

.mb-75 {
  margin-bottom: 75px; }

.mb-76 {
  margin-bottom: 76px; }

.mb-77 {
  margin-bottom: 77px; }

.mb-78 {
  margin-bottom: 78px; }

.mb-79 {
  margin-bottom: 79px; }

.mb-80 {
  margin-bottom: 80px; }

.mb-81 {
  margin-bottom: 81px; }

.mb-82 {
  margin-bottom: 82px; }

.mb-83 {
  margin-bottom: 83px; }

.mb-84 {
  margin-bottom: 84px; }

.mb-85 {
  margin-bottom: 85px; }

.mb-86 {
  margin-bottom: 86px; }

.mb-87 {
  margin-bottom: 87px; }

.mb-88 {
  margin-bottom: 88px; }

.mb-89 {
  margin-bottom: 89px; }

.mb-90 {
  margin-bottom: 90px; }

.mb-91 {
  margin-bottom: 91px; }

.mb-92 {
  margin-bottom: 92px; }

.mb-93 {
  margin-bottom: 93px; }

.mb-94 {
  margin-bottom: 94px; }

.mb-95 {
  margin-bottom: 95px; }

.mb-96 {
  margin-bottom: 96px; }

.mb-97 {
  margin-bottom: 97px; }

.mb-98 {
  margin-bottom: 98px; }

.mb-99 {
  margin-bottom: 99px; }

.mb-100 {
  margin-bottom: 100px; }

.ml-0 {
  margin-left: 0px; }

.ml-1 {
  margin-left: 1px; }

.ml-2 {
  margin-left: 2px; }

.ml-3 {
  margin-left: 3px; }

.ml-4 {
  margin-left: 4px; }

.ml-5 {
  margin-left: 5px; }

.ml-6 {
  margin-left: 6px; }

.ml-7 {
  margin-left: 7px; }

.ml-8 {
  margin-left: 8px; }

.ml-9 {
  margin-left: 9px; }

.ml-10 {
  margin-left: 10px; }

.ml-11 {
  margin-left: 11px; }

.ml-12 {
  margin-left: 12px; }

.ml-13 {
  margin-left: 13px; }

.ml-14 {
  margin-left: 14px; }

.ml-15 {
  margin-left: 15px; }

.ml-16 {
  margin-left: 16px; }

.ml-17 {
  margin-left: 17px; }

.ml-18 {
  margin-left: 18px; }

.ml-19 {
  margin-left: 19px; }

.ml-20 {
  margin-left: 20px; }

.ml-21 {
  margin-left: 21px; }

.ml-22 {
  margin-left: 22px; }

.ml-23 {
  margin-left: 23px; }

.ml-24 {
  margin-left: 24px; }

.ml-25 {
  margin-left: 25px; }

.ml-26 {
  margin-left: 26px; }

.ml-27 {
  margin-left: 27px; }

.ml-28 {
  margin-left: 28px; }

.ml-29 {
  margin-left: 29px; }

.ml-30 {
  margin-left: 30px; }

.ml-31 {
  margin-left: 31px; }

.ml-32 {
  margin-left: 32px; }

.ml-33 {
  margin-left: 33px; }

.ml-34 {
  margin-left: 34px; }

.ml-35 {
  margin-left: 35px; }

.ml-36 {
  margin-left: 36px; }

.ml-37 {
  margin-left: 37px; }

.ml-38 {
  margin-left: 38px; }

.ml-39 {
  margin-left: 39px; }

.ml-40 {
  margin-left: 40px; }

.ml-41 {
  margin-left: 41px; }

.ml-42 {
  margin-left: 42px; }

.ml-43 {
  margin-left: 43px; }

.ml-44 {
  margin-left: 44px; }

.ml-45 {
  margin-left: 45px; }

.ml-46 {
  margin-left: 46px; }

.ml-47 {
  margin-left: 47px; }

.ml-48 {
  margin-left: 48px; }

.ml-49 {
  margin-left: 49px; }

.ml-50 {
  margin-left: 50px; }

.ml-51 {
  margin-left: 51px; }

.ml-52 {
  margin-left: 52px; }

.ml-53 {
  margin-left: 53px; }

.ml-54 {
  margin-left: 54px; }

.ml-55 {
  margin-left: 55px; }

.ml-56 {
  margin-left: 56px; }

.ml-57 {
  margin-left: 57px; }

.ml-58 {
  margin-left: 58px; }

.ml-59 {
  margin-left: 59px; }

.ml-60 {
  margin-left: 60px; }

.ml-61 {
  margin-left: 61px; }

.ml-62 {
  margin-left: 62px; }

.ml-63 {
  margin-left: 63px; }

.ml-64 {
  margin-left: 64px; }

.ml-65 {
  margin-left: 65px; }

.ml-66 {
  margin-left: 66px; }

.ml-67 {
  margin-left: 67px; }

.ml-68 {
  margin-left: 68px; }

.ml-69 {
  margin-left: 69px; }

.ml-70 {
  margin-left: 70px; }

.ml-71 {
  margin-left: 71px; }

.ml-72 {
  margin-left: 72px; }

.ml-73 {
  margin-left: 73px; }

.ml-74 {
  margin-left: 74px; }

.ml-75 {
  margin-left: 75px; }

.ml-76 {
  margin-left: 76px; }

.ml-77 {
  margin-left: 77px; }

.ml-78 {
  margin-left: 78px; }

.ml-79 {
  margin-left: 79px; }

.ml-80 {
  margin-left: 80px; }

.ml-81 {
  margin-left: 81px; }

.ml-82 {
  margin-left: 82px; }

.ml-83 {
  margin-left: 83px; }

.ml-84 {
  margin-left: 84px; }

.ml-85 {
  margin-left: 85px; }

.ml-86 {
  margin-left: 86px; }

.ml-87 {
  margin-left: 87px; }

.ml-88 {
  margin-left: 88px; }

.ml-89 {
  margin-left: 89px; }

.ml-90 {
  margin-left: 90px; }

.ml-91 {
  margin-left: 91px; }

.ml-92 {
  margin-left: 92px; }

.ml-93 {
  margin-left: 93px; }

.ml-94 {
  margin-left: 94px; }

.ml-95 {
  margin-left: 95px; }

.ml-96 {
  margin-left: 96px; }

.ml-97 {
  margin-left: 97px; }

.ml-98 {
  margin-left: 98px; }

.ml-99 {
  margin-left: 99px; }

.ml-100 {
  margin-left: 100px; }

.mr-0 {
  margin-right: 0px; }

.mr-1 {
  margin-right: 1px; }

.mr-2 {
  margin-right: 2px; }

.mr-3 {
  margin-right: 3px; }

.mr-4 {
  margin-right: 4px; }

.mr-5 {
  margin-right: 5px; }

.mr-6 {
  margin-right: 6px; }

.mr-7 {
  margin-right: 7px; }

.mr-8 {
  margin-right: 8px; }

.mr-9 {
  margin-right: 9px; }

.mr-10 {
  margin-right: 10px; }

.mr-11 {
  margin-right: 11px; }

.mr-12 {
  margin-right: 12px; }

.mr-13 {
  margin-right: 13px; }

.mr-14 {
  margin-right: 14px; }

.mr-15 {
  margin-right: 15px; }

.mr-16 {
  margin-right: 16px; }

.mr-17 {
  margin-right: 17px; }

.mr-18 {
  margin-right: 18px; }

.mr-19 {
  margin-right: 19px; }

.mr-20 {
  margin-right: 20px; }

.mr-21 {
  margin-right: 21px; }

.mr-22 {
  margin-right: 22px; }

.mr-23 {
  margin-right: 23px; }

.mr-24 {
  margin-right: 24px; }

.mr-25 {
  margin-right: 25px; }

.mr-26 {
  margin-right: 26px; }

.mr-27 {
  margin-right: 27px; }

.mr-28 {
  margin-right: 28px; }

.mr-29 {
  margin-right: 29px; }

.mr-30 {
  margin-right: 30px; }

.mr-31 {
  margin-right: 31px; }

.mr-32 {
  margin-right: 32px; }

.mr-33 {
  margin-right: 33px; }

.mr-34 {
  margin-right: 34px; }

.mr-35 {
  margin-right: 35px; }

.mr-36 {
  margin-right: 36px; }

.mr-37 {
  margin-right: 37px; }

.mr-38 {
  margin-right: 38px; }

.mr-39 {
  margin-right: 39px; }

.mr-40 {
  margin-right: 40px; }

.mr-41 {
  margin-right: 41px; }

.mr-42 {
  margin-right: 42px; }

.mr-43 {
  margin-right: 43px; }

.mr-44 {
  margin-right: 44px; }

.mr-45 {
  margin-right: 45px; }

.mr-46 {
  margin-right: 46px; }

.mr-47 {
  margin-right: 47px; }

.mr-48 {
  margin-right: 48px; }

.mr-49 {
  margin-right: 49px; }

.mr-50 {
  margin-right: 50px; }

.mr-51 {
  margin-right: 51px; }

.mr-52 {
  margin-right: 52px; }

.mr-53 {
  margin-right: 53px; }

.mr-54 {
  margin-right: 54px; }

.mr-55 {
  margin-right: 55px; }

.mr-56 {
  margin-right: 56px; }

.mr-57 {
  margin-right: 57px; }

.mr-58 {
  margin-right: 58px; }

.mr-59 {
  margin-right: 59px; }

.mr-60 {
  margin-right: 60px; }

.mr-61 {
  margin-right: 61px; }

.mr-62 {
  margin-right: 62px; }

.mr-63 {
  margin-right: 63px; }

.mr-64 {
  margin-right: 64px; }

.mr-65 {
  margin-right: 65px; }

.mr-66 {
  margin-right: 66px; }

.mr-67 {
  margin-right: 67px; }

.mr-68 {
  margin-right: 68px; }

.mr-69 {
  margin-right: 69px; }

.mr-70 {
  margin-right: 70px; }

.mr-71 {
  margin-right: 71px; }

.mr-72 {
  margin-right: 72px; }

.mr-73 {
  margin-right: 73px; }

.mr-74 {
  margin-right: 74px; }

.mr-75 {
  margin-right: 75px; }

.mr-76 {
  margin-right: 76px; }

.mr-77 {
  margin-right: 77px; }

.mr-78 {
  margin-right: 78px; }

.mr-79 {
  margin-right: 79px; }

.mr-80 {
  margin-right: 80px; }

.mr-81 {
  margin-right: 81px; }

.mr-82 {
  margin-right: 82px; }

.mr-83 {
  margin-right: 83px; }

.mr-84 {
  margin-right: 84px; }

.mr-85 {
  margin-right: 85px; }

.mr-86 {
  margin-right: 86px; }

.mr-87 {
  margin-right: 87px; }

.mr-88 {
  margin-right: 88px; }

.mr-89 {
  margin-right: 89px; }

.mr-90 {
  margin-right: 90px; }

.mr-91 {
  margin-right: 91px; }

.mr-92 {
  margin-right: 92px; }

.mr-93 {
  margin-right: 93px; }

.mr-94 {
  margin-right: 94px; }

.mr-95 {
  margin-right: 95px; }

.mr-96 {
  margin-right: 96px; }

.mr-97 {
  margin-right: 97px; }

.mr-98 {
  margin-right: 98px; }

.mr-99 {
  margin-right: 99px; }

.mr-100 {
  margin-right: 100px; }

.p-all-0 {
  padding: 0px; }

.p-all-1 {
  padding: 1px; }

.p-all-2 {
  padding: 2px; }

.p-all-3 {
  padding: 3px; }

.p-all-4 {
  padding: 4px; }

.p-all-5 {
  padding: 5px; }

.p-all-6 {
  padding: 6px; }

.p-all-7 {
  padding: 7px; }

.p-all-8 {
  padding: 8px; }

.p-all-9 {
  padding: 9px; }

.p-all-10 {
  padding: 10px; }

.p-all-11 {
  padding: 11px; }

.p-all-12 {
  padding: 12px; }

.p-all-13 {
  padding: 13px; }

.p-all-14 {
  padding: 14px; }

.p-all-15 {
  padding: 15px; }

.p-all-16 {
  padding: 16px; }

.p-all-17 {
  padding: 17px; }

.p-all-18 {
  padding: 18px; }

.p-all-19 {
  padding: 19px; }

.p-all-20 {
  padding: 20px; }

.p-all-21 {
  padding: 21px; }

.p-all-22 {
  padding: 22px; }

.p-all-23 {
  padding: 23px; }

.p-all-24 {
  padding: 24px; }

.p-all-25 {
  padding: 25px; }

.p-all-26 {
  padding: 26px; }

.p-all-27 {
  padding: 27px; }

.p-all-28 {
  padding: 28px; }

.p-all-29 {
  padding: 29px; }

.p-all-30 {
  padding: 30px; }

.p-all-31 {
  padding: 31px; }

.p-all-32 {
  padding: 32px; }

.p-all-33 {
  padding: 33px; }

.p-all-34 {
  padding: 34px; }

.p-all-35 {
  padding: 35px; }

.p-all-36 {
  padding: 36px; }

.p-all-37 {
  padding: 37px; }

.p-all-38 {
  padding: 38px; }

.p-all-39 {
  padding: 39px; }

.p-all-40 {
  padding: 40px; }

.p-all-41 {
  padding: 41px; }

.p-all-42 {
  padding: 42px; }

.p-all-43 {
  padding: 43px; }

.p-all-44 {
  padding: 44px; }

.p-all-45 {
  padding: 45px; }

.p-all-46 {
  padding: 46px; }

.p-all-47 {
  padding: 47px; }

.p-all-48 {
  padding: 48px; }

.p-all-49 {
  padding: 49px; }

.p-all-50 {
  padding: 50px; }

.p-all-51 {
  padding: 51px; }

.p-all-52 {
  padding: 52px; }

.p-all-53 {
  padding: 53px; }

.p-all-54 {
  padding: 54px; }

.p-all-55 {
  padding: 55px; }

.p-all-56 {
  padding: 56px; }

.p-all-57 {
  padding: 57px; }

.p-all-58 {
  padding: 58px; }

.p-all-59 {
  padding: 59px; }

.p-all-60 {
  padding: 60px; }

.p-all-61 {
  padding: 61px; }

.p-all-62 {
  padding: 62px; }

.p-all-63 {
  padding: 63px; }

.p-all-64 {
  padding: 64px; }

.p-all-65 {
  padding: 65px; }

.p-all-66 {
  padding: 66px; }

.p-all-67 {
  padding: 67px; }

.p-all-68 {
  padding: 68px; }

.p-all-69 {
  padding: 69px; }

.p-all-70 {
  padding: 70px; }

.p-all-71 {
  padding: 71px; }

.p-all-72 {
  padding: 72px; }

.p-all-73 {
  padding: 73px; }

.p-all-74 {
  padding: 74px; }

.p-all-75 {
  padding: 75px; }

.p-all-76 {
  padding: 76px; }

.p-all-77 {
  padding: 77px; }

.p-all-78 {
  padding: 78px; }

.p-all-79 {
  padding: 79px; }

.p-all-80 {
  padding: 80px; }

.p-all-81 {
  padding: 81px; }

.p-all-82 {
  padding: 82px; }

.p-all-83 {
  padding: 83px; }

.p-all-84 {
  padding: 84px; }

.p-all-85 {
  padding: 85px; }

.p-all-86 {
  padding: 86px; }

.p-all-87 {
  padding: 87px; }

.p-all-88 {
  padding: 88px; }

.p-all-89 {
  padding: 89px; }

.p-all-90 {
  padding: 90px; }

.p-all-91 {
  padding: 91px; }

.p-all-92 {
  padding: 92px; }

.p-all-93 {
  padding: 93px; }

.p-all-94 {
  padding: 94px; }

.p-all-95 {
  padding: 95px; }

.p-all-96 {
  padding: 96px; }

.p-all-97 {
  padding: 97px; }

.p-all-98 {
  padding: 98px; }

.p-all-99 {
  padding: 99px; }

.p-all-100 {
  padding: 100px; }

.pt-0 {
  padding-top: 0px; }

.pt-1 {
  padding-top: 1px; }

.pt-2 {
  padding-top: 2px; }

.pt-3 {
  padding-top: 3px; }

.pt-4 {
  padding-top: 4px; }

.pt-5 {
  padding-top: 5px; }

.pt-6 {
  padding-top: 6px; }

.pt-7 {
  padding-top: 7px; }

.pt-8 {
  padding-top: 8px; }

.pt-9 {
  padding-top: 9px; }

.pt-10 {
  padding-top: 10px; }

.pt-11 {
  padding-top: 11px; }

.pt-12 {
  padding-top: 12px; }

.pt-13 {
  padding-top: 13px; }

.pt-14 {
  padding-top: 14px; }

.pt-15 {
  padding-top: 15px; }

.pt-16 {
  padding-top: 16px; }

.pt-17 {
  padding-top: 17px; }

.pt-18 {
  padding-top: 18px; }

.pt-19 {
  padding-top: 19px; }

.pt-20 {
  padding-top: 20px; }

.pt-21 {
  padding-top: 21px; }

.pt-22 {
  padding-top: 22px; }

.pt-23 {
  padding-top: 23px; }

.pt-24 {
  padding-top: 24px; }

.pt-25 {
  padding-top: 25px; }

.pt-26 {
  padding-top: 26px; }

.pt-27 {
  padding-top: 27px; }

.pt-28 {
  padding-top: 28px; }

.pt-29 {
  padding-top: 29px; }

.pt-30 {
  padding-top: 30px; }

.pt-31 {
  padding-top: 31px; }

.pt-32 {
  padding-top: 32px; }

.pt-33 {
  padding-top: 33px; }

.pt-34 {
  padding-top: 34px; }

.pt-35 {
  padding-top: 35px; }

.pt-36 {
  padding-top: 36px; }

.pt-37 {
  padding-top: 37px; }

.pt-38 {
  padding-top: 38px; }

.pt-39 {
  padding-top: 39px; }

.pt-40 {
  padding-top: 40px; }

.pt-41 {
  padding-top: 41px; }

.pt-42 {
  padding-top: 42px; }

.pt-43 {
  padding-top: 43px; }

.pt-44 {
  padding-top: 44px; }

.pt-45 {
  padding-top: 45px; }

.pt-46 {
  padding-top: 46px; }

.pt-47 {
  padding-top: 47px; }

.pt-48 {
  padding-top: 48px; }

.pt-49 {
  padding-top: 49px; }

.pt-50 {
  padding-top: 50px; }

.pt-51 {
  padding-top: 51px; }

.pt-52 {
  padding-top: 52px; }

.pt-53 {
  padding-top: 53px; }

.pt-54 {
  padding-top: 54px; }

.pt-55 {
  padding-top: 55px; }

.pt-56 {
  padding-top: 56px; }

.pt-57 {
  padding-top: 57px; }

.pt-58 {
  padding-top: 58px; }

.pt-59 {
  padding-top: 59px; }

.pt-60 {
  padding-top: 60px; }

.pt-61 {
  padding-top: 61px; }

.pt-62 {
  padding-top: 62px; }

.pt-63 {
  padding-top: 63px; }

.pt-64 {
  padding-top: 64px; }

.pt-65 {
  padding-top: 65px; }

.pt-66 {
  padding-top: 66px; }

.pt-67 {
  padding-top: 67px; }

.pt-68 {
  padding-top: 68px; }

.pt-69 {
  padding-top: 69px; }

.pt-70 {
  padding-top: 70px; }

.pt-71 {
  padding-top: 71px; }

.pt-72 {
  padding-top: 72px; }

.pt-73 {
  padding-top: 73px; }

.pt-74 {
  padding-top: 74px; }

.pt-75 {
  padding-top: 75px; }

.pt-76 {
  padding-top: 76px; }

.pt-77 {
  padding-top: 77px; }

.pt-78 {
  padding-top: 78px; }

.pt-79 {
  padding-top: 79px; }

.pt-80 {
  padding-top: 80px; }

.pt-81 {
  padding-top: 81px; }

.pt-82 {
  padding-top: 82px; }

.pt-83 {
  padding-top: 83px; }

.pt-84 {
  padding-top: 84px; }

.pt-85 {
  padding-top: 85px; }

.pt-86 {
  padding-top: 86px; }

.pt-87 {
  padding-top: 87px; }

.pt-88 {
  padding-top: 88px; }

.pt-89 {
  padding-top: 89px; }

.pt-90 {
  padding-top: 90px; }

.pt-91 {
  padding-top: 91px; }

.pt-92 {
  padding-top: 92px; }

.pt-93 {
  padding-top: 93px; }

.pt-94 {
  padding-top: 94px; }

.pt-95 {
  padding-top: 95px; }

.pt-96 {
  padding-top: 96px; }

.pt-97 {
  padding-top: 97px; }

.pt-98 {
  padding-top: 98px; }

.pt-99 {
  padding-top: 99px; }

.pt-100 {
  padding-top: 100px; }

.pb-0 {
  padding-bottom: 0px; }

.pb-1 {
  padding-bottom: 1px; }

.pb-2 {
  padding-bottom: 2px; }

.pb-3 {
  padding-bottom: 3px; }

.pb-4 {
  padding-bottom: 4px; }

.pb-5 {
  padding-bottom: 5px; }

.pb-6 {
  padding-bottom: 6px; }

.pb-7 {
  padding-bottom: 7px; }

.pb-8 {
  padding-bottom: 8px; }

.pb-9 {
  padding-bottom: 9px; }

.pb-10 {
  padding-bottom: 10px; }

.pb-11 {
  padding-bottom: 11px; }

.pb-12 {
  padding-bottom: 12px; }

.pb-13 {
  padding-bottom: 13px; }

.pb-14 {
  padding-bottom: 14px; }

.pb-15 {
  padding-bottom: 15px; }

.pb-16 {
  padding-bottom: 16px; }

.pb-17 {
  padding-bottom: 17px; }

.pb-18 {
  padding-bottom: 18px; }

.pb-19 {
  padding-bottom: 19px; }

.pb-20 {
  padding-bottom: 20px; }

.pb-21 {
  padding-bottom: 21px; }

.pb-22 {
  padding-bottom: 22px; }

.pb-23 {
  padding-bottom: 23px; }

.pb-24 {
  padding-bottom: 24px; }

.pb-25 {
  padding-bottom: 25px; }

.pb-26 {
  padding-bottom: 26px; }

.pb-27 {
  padding-bottom: 27px; }

.pb-28 {
  padding-bottom: 28px; }

.pb-29 {
  padding-bottom: 29px; }

.pb-30 {
  padding-bottom: 30px; }

.pb-31 {
  padding-bottom: 31px; }

.pb-32 {
  padding-bottom: 32px; }

.pb-33 {
  padding-bottom: 33px; }

.pb-34 {
  padding-bottom: 34px; }

.pb-35 {
  padding-bottom: 35px; }

.pb-36 {
  padding-bottom: 36px; }

.pb-37 {
  padding-bottom: 37px; }

.pb-38 {
  padding-bottom: 38px; }

.pb-39 {
  padding-bottom: 39px; }

.pb-40 {
  padding-bottom: 40px; }

.pb-41 {
  padding-bottom: 41px; }

.pb-42 {
  padding-bottom: 42px; }

.pb-43 {
  padding-bottom: 43px; }

.pb-44 {
  padding-bottom: 44px; }

.pb-45 {
  padding-bottom: 45px; }

.pb-46 {
  padding-bottom: 46px; }

.pb-47 {
  padding-bottom: 47px; }

.pb-48 {
  padding-bottom: 48px; }

.pb-49 {
  padding-bottom: 49px; }

.pb-50 {
  padding-bottom: 50px; }

.pb-51 {
  padding-bottom: 51px; }

.pb-52 {
  padding-bottom: 52px; }

.pb-53 {
  padding-bottom: 53px; }

.pb-54 {
  padding-bottom: 54px; }

.pb-55 {
  padding-bottom: 55px; }

.pb-56 {
  padding-bottom: 56px; }

.pb-57 {
  padding-bottom: 57px; }

.pb-58 {
  padding-bottom: 58px; }

.pb-59 {
  padding-bottom: 59px; }

.pb-60 {
  padding-bottom: 60px; }

.pb-61 {
  padding-bottom: 61px; }

.pb-62 {
  padding-bottom: 62px; }

.pb-63 {
  padding-bottom: 63px; }

.pb-64 {
  padding-bottom: 64px; }

.pb-65 {
  padding-bottom: 65px; }

.pb-66 {
  padding-bottom: 66px; }

.pb-67 {
  padding-bottom: 67px; }

.pb-68 {
  padding-bottom: 68px; }

.pb-69 {
  padding-bottom: 69px; }

.pb-70 {
  padding-bottom: 70px; }

.pb-71 {
  padding-bottom: 71px; }

.pb-72 {
  padding-bottom: 72px; }

.pb-73 {
  padding-bottom: 73px; }

.pb-74 {
  padding-bottom: 74px; }

.pb-75 {
  padding-bottom: 75px; }

.pb-76 {
  padding-bottom: 76px; }

.pb-77 {
  padding-bottom: 77px; }

.pb-78 {
  padding-bottom: 78px; }

.pb-79 {
  padding-bottom: 79px; }

.pb-80 {
  padding-bottom: 80px; }

.pb-81 {
  padding-bottom: 81px; }

.pb-82 {
  padding-bottom: 82px; }

.pb-83 {
  padding-bottom: 83px; }

.pb-84 {
  padding-bottom: 84px; }

.pb-85 {
  padding-bottom: 85px; }

.pb-86 {
  padding-bottom: 86px; }

.pb-87 {
  padding-bottom: 87px; }

.pb-88 {
  padding-bottom: 88px; }

.pb-89 {
  padding-bottom: 89px; }

.pb-90 {
  padding-bottom: 90px; }

.pb-91 {
  padding-bottom: 91px; }

.pb-92 {
  padding-bottom: 92px; }

.pb-93 {
  padding-bottom: 93px; }

.pb-94 {
  padding-bottom: 94px; }

.pb-95 {
  padding-bottom: 95px; }

.pb-96 {
  padding-bottom: 96px; }

.pb-97 {
  padding-bottom: 97px; }

.pb-98 {
  padding-bottom: 98px; }

.pb-99 {
  padding-bottom: 99px; }

.pb-100 {
  padding-bottom: 100px; }

.pl-0 {
  padding-left: 0px; }

.pl-1 {
  padding-left: 1px; }

.pl-2 {
  padding-left: 2px; }

.pl-3 {
  padding-left: 3px; }

.pl-4 {
  padding-left: 4px; }

.pl-5 {
  padding-left: 5px; }

.pl-6 {
  padding-left: 6px; }

.pl-7 {
  padding-left: 7px; }

.pl-8 {
  padding-left: 8px; }

.pl-9 {
  padding-left: 9px; }

.pl-10 {
  padding-left: 10px; }

.pl-11 {
  padding-left: 11px; }

.pl-12 {
  padding-left: 12px; }

.pl-13 {
  padding-left: 13px; }

.pl-14 {
  padding-left: 14px; }

.pl-15 {
  padding-left: 15px; }

.pl-16 {
  padding-left: 16px; }

.pl-17 {
  padding-left: 17px; }

.pl-18 {
  padding-left: 18px; }

.pl-19 {
  padding-left: 19px; }

.pl-20 {
  padding-left: 20px; }

.pl-21 {
  padding-left: 21px; }

.pl-22 {
  padding-left: 22px; }

.pl-23 {
  padding-left: 23px; }

.pl-24 {
  padding-left: 24px; }

.pl-25 {
  padding-left: 25px; }

.pl-26 {
  padding-left: 26px; }

.pl-27 {
  padding-left: 27px; }

.pl-28 {
  padding-left: 28px; }

.pl-29 {
  padding-left: 29px; }

.pl-30 {
  padding-left: 30px; }

.pl-31 {
  padding-left: 31px; }

.pl-32 {
  padding-left: 32px; }

.pl-33 {
  padding-left: 33px; }

.pl-34 {
  padding-left: 34px; }

.pl-35 {
  padding-left: 35px; }

.pl-36 {
  padding-left: 36px; }

.pl-37 {
  padding-left: 37px; }

.pl-38 {
  padding-left: 38px; }

.pl-39 {
  padding-left: 39px; }

.pl-40 {
  padding-left: 40px; }

.pl-41 {
  padding-left: 41px; }

.pl-42 {
  padding-left: 42px; }

.pl-43 {
  padding-left: 43px; }

.pl-44 {
  padding-left: 44px; }

.pl-45 {
  padding-left: 45px; }

.pl-46 {
  padding-left: 46px; }

.pl-47 {
  padding-left: 47px; }

.pl-48 {
  padding-left: 48px; }

.pl-49 {
  padding-left: 49px; }

.pl-50 {
  padding-left: 50px; }

.pl-51 {
  padding-left: 51px; }

.pl-52 {
  padding-left: 52px; }

.pl-53 {
  padding-left: 53px; }

.pl-54 {
  padding-left: 54px; }

.pl-55 {
  padding-left: 55px; }

.pl-56 {
  padding-left: 56px; }

.pl-57 {
  padding-left: 57px; }

.pl-58 {
  padding-left: 58px; }

.pl-59 {
  padding-left: 59px; }

.pl-60 {
  padding-left: 60px; }

.pl-61 {
  padding-left: 61px; }

.pl-62 {
  padding-left: 62px; }

.pl-63 {
  padding-left: 63px; }

.pl-64 {
  padding-left: 64px; }

.pl-65 {
  padding-left: 65px; }

.pl-66 {
  padding-left: 66px; }

.pl-67 {
  padding-left: 67px; }

.pl-68 {
  padding-left: 68px; }

.pl-69 {
  padding-left: 69px; }

.pl-70 {
  padding-left: 70px; }

.pl-71 {
  padding-left: 71px; }

.pl-72 {
  padding-left: 72px; }

.pl-73 {
  padding-left: 73px; }

.pl-74 {
  padding-left: 74px; }

.pl-75 {
  padding-left: 75px; }

.pl-76 {
  padding-left: 76px; }

.pl-77 {
  padding-left: 77px; }

.pl-78 {
  padding-left: 78px; }

.pl-79 {
  padding-left: 79px; }

.pl-80 {
  padding-left: 80px; }

.pl-81 {
  padding-left: 81px; }

.pl-82 {
  padding-left: 82px; }

.pl-83 {
  padding-left: 83px; }

.pl-84 {
  padding-left: 84px; }

.pl-85 {
  padding-left: 85px; }

.pl-86 {
  padding-left: 86px; }

.pl-87 {
  padding-left: 87px; }

.pl-88 {
  padding-left: 88px; }

.pl-89 {
  padding-left: 89px; }

.pl-90 {
  padding-left: 90px; }

.pl-91 {
  padding-left: 91px; }

.pl-92 {
  padding-left: 92px; }

.pl-93 {
  padding-left: 93px; }

.pl-94 {
  padding-left: 94px; }

.pl-95 {
  padding-left: 95px; }

.pl-96 {
  padding-left: 96px; }

.pl-97 {
  padding-left: 97px; }

.pl-98 {
  padding-left: 98px; }

.pl-99 {
  padding-left: 99px; }

.pl-100 {
  padding-left: 100px; }

.pr-0 {
  padding-right: 0px; }

.pr-1 {
  padding-right: 1px; }

.pr-2 {
  padding-right: 2px; }

.pr-3 {
  padding-right: 3px; }

.pr-4 {
  padding-right: 4px; }

.pr-5 {
  padding-right: 5px; }

.pr-6 {
  padding-right: 6px; }

.pr-7 {
  padding-right: 7px; }

.pr-8 {
  padding-right: 8px; }

.pr-9 {
  padding-right: 9px; }

.pr-10 {
  padding-right: 10px; }

.pr-11 {
  padding-right: 11px; }

.pr-12 {
  padding-right: 12px; }

.pr-13 {
  padding-right: 13px; }

.pr-14 {
  padding-right: 14px; }

.pr-15 {
  padding-right: 15px; }

.pr-16 {
  padding-right: 16px; }

.pr-17 {
  padding-right: 17px; }

.pr-18 {
  padding-right: 18px; }

.pr-19 {
  padding-right: 19px; }

.pr-20 {
  padding-right: 20px; }

.pr-21 {
  padding-right: 21px; }

.pr-22 {
  padding-right: 22px; }

.pr-23 {
  padding-right: 23px; }

.pr-24 {
  padding-right: 24px; }

.pr-25 {
  padding-right: 25px; }

.pr-26 {
  padding-right: 26px; }

.pr-27 {
  padding-right: 27px; }

.pr-28 {
  padding-right: 28px; }

.pr-29 {
  padding-right: 29px; }

.pr-30 {
  padding-right: 30px; }

.pr-31 {
  padding-right: 31px; }

.pr-32 {
  padding-right: 32px; }

.pr-33 {
  padding-right: 33px; }

.pr-34 {
  padding-right: 34px; }

.pr-35 {
  padding-right: 35px; }

.pr-36 {
  padding-right: 36px; }

.pr-37 {
  padding-right: 37px; }

.pr-38 {
  padding-right: 38px; }

.pr-39 {
  padding-right: 39px; }

.pr-40 {
  padding-right: 40px; }

.pr-41 {
  padding-right: 41px; }

.pr-42 {
  padding-right: 42px; }

.pr-43 {
  padding-right: 43px; }

.pr-44 {
  padding-right: 44px; }

.pr-45 {
  padding-right: 45px; }

.pr-46 {
  padding-right: 46px; }

.pr-47 {
  padding-right: 47px; }

.pr-48 {
  padding-right: 48px; }

.pr-49 {
  padding-right: 49px; }

.pr-50 {
  padding-right: 50px; }

.pr-51 {
  padding-right: 51px; }

.pr-52 {
  padding-right: 52px; }

.pr-53 {
  padding-right: 53px; }

.pr-54 {
  padding-right: 54px; }

.pr-55 {
  padding-right: 55px; }

.pr-56 {
  padding-right: 56px; }

.pr-57 {
  padding-right: 57px; }

.pr-58 {
  padding-right: 58px; }

.pr-59 {
  padding-right: 59px; }

.pr-60 {
  padding-right: 60px; }

.pr-61 {
  padding-right: 61px; }

.pr-62 {
  padding-right: 62px; }

.pr-63 {
  padding-right: 63px; }

.pr-64 {
  padding-right: 64px; }

.pr-65 {
  padding-right: 65px; }

.pr-66 {
  padding-right: 66px; }

.pr-67 {
  padding-right: 67px; }

.pr-68 {
  padding-right: 68px; }

.pr-69 {
  padding-right: 69px; }

.pr-70 {
  padding-right: 70px; }

.pr-71 {
  padding-right: 71px; }

.pr-72 {
  padding-right: 72px; }

.pr-73 {
  padding-right: 73px; }

.pr-74 {
  padding-right: 74px; }

.pr-75 {
  padding-right: 75px; }

.pr-76 {
  padding-right: 76px; }

.pr-77 {
  padding-right: 77px; }

.pr-78 {
  padding-right: 78px; }

.pr-79 {
  padding-right: 79px; }

.pr-80 {
  padding-right: 80px; }

.pr-81 {
  padding-right: 81px; }

.pr-82 {
  padding-right: 82px; }

.pr-83 {
  padding-right: 83px; }

.pr-84 {
  padding-right: 84px; }

.pr-85 {
  padding-right: 85px; }

.pr-86 {
  padding-right: 86px; }

.pr-87 {
  padding-right: 87px; }

.pr-88 {
  padding-right: 88px; }

.pr-89 {
  padding-right: 89px; }

.pr-90 {
  padding-right: 90px; }

.pr-91 {
  padding-right: 91px; }

.pr-92 {
  padding-right: 92px; }

.pr-93 {
  padding-right: 93px; }

.pr-94 {
  padding-right: 94px; }

.pr-95 {
  padding-right: 95px; }

.pr-96 {
  padding-right: 96px; }

.pr-97 {
  padding-right: 97px; }

.pr-98 {
  padding-right: 98px; }

.pr-99 {
  padding-right: 99px; }

.pr-100 {
  padding-right: 100px; }

.bd-all-0 {
  border: 0px solid #ECECEC; }

.bd-all-1 {
  border: 1px solid #ECECEC; }

.bd-all-2 {
  border: 2px solid #ECECEC; }

.bd-all-3 {
  border: 3px solid #ECECEC; }

.bd-all-4 {
  border: 4px solid #ECECEC; }

.bd-all-5 {
  border: 5px solid #ECECEC; }

.bd-all-6 {
  border: 6px solid #ECECEC; }

.bd-all-7 {
  border: 7px solid #ECECEC; }

.bd-all-8 {
  border: 8px solid #ECECEC; }

.bd-all-9 {
  border: 9px solid #ECECEC; }

.bd-all-10 {
  border: 10px solid #ECECEC; }

.bdt-0 {
  border-top: 0px solid #ECECEC; }

.bdt-1 {
  border-top: 1px solid #ECECEC; }

.bdt-2 {
  border-top: 2px solid #ECECEC; }

.bdt-3 {
  border-top: 3px solid #ECECEC; }

.bdt-4 {
  border-top: 4px solid #ECECEC; }

.bdt-5 {
  border-top: 5px solid #ECECEC; }

.bdt-6 {
  border-top: 6px solid #ECECEC; }

.bdt-7 {
  border-top: 7px solid #ECECEC; }

.bdt-8 {
  border-top: 8px solid #ECECEC; }

.bdt-9 {
  border-top: 9px solid #ECECEC; }

.bdt-10 {
  border-top: 10px solid #ECECEC; }

.bdb-0 {
  border-bottom: 0px solid #ECECEC; }

.bdb-1 {
  border-bottom: 1px solid #ECECEC; }

.bdb-2 {
  border-bottom: 2px solid #ECECEC; }

.bdb-3 {
  border-bottom: 3px solid #ECECEC; }

.bdb-4 {
  border-bottom: 4px solid #ECECEC; }

.bdb-5 {
  border-bottom: 5px solid #ECECEC; }

.bdb-6 {
  border-bottom: 6px solid #ECECEC; }

.bdb-7 {
  border-bottom: 7px solid #ECECEC; }

.bdb-8 {
  border-bottom: 8px solid #ECECEC; }

.bdb-9 {
  border-bottom: 9px solid #ECECEC; }

.bdb-10 {
  border-bottom: 10px solid #ECECEC; }

.bdl-0 {
  border-left: 0px solid #ECECEC; }

.bdl-1 {
  border-left: 1px solid #ECECEC; }

.bdl-2 {
  border-left: 2px solid #ECECEC; }

.bdl-3 {
  border-left: 3px solid #ECECEC; }

.bdl-4 {
  border-left: 4px solid #ECECEC; }

.bdl-5 {
  border-left: 5px solid #ECECEC; }

.bdl-6 {
  border-left: 6px solid #ECECEC; }

.bdl-7 {
  border-left: 7px solid #ECECEC; }

.bdl-8 {
  border-left: 8px solid #ECECEC; }

.bdl-9 {
  border-left: 9px solid #ECECEC; }

.bdl-10 {
  border-left: 10px solid #ECECEC; }

.bdr-1 {
  border-right: 1px solid #ECECEC; }

.bdr-2 {
  border-right: 2px solid #ECECEC; }

.bdr-3 {
  border-right: 3px solid #ECECEC; }

.bdr-4 {
  border-right: 4px solid #ECECEC; }

.bdr-5 {
  border-right: 5px solid #ECECEC; }

.bdr-6 {
  border-right: 6px solid #ECECEC; }

.bdr-7 {
  border-right: 7px solid #ECECEC; }

.bdr-8 {
  border-right: 8px solid #ECECEC; }

.bdr-9 {
  border-right: 9px solid #ECECEC; }

.bdr-10 {
  border-right: 10px solid #ECECEC; }

.h-100 {
  height: 100%; }

.w-100 {
  width: 100%; }

.bg-black {
  background-color: #000;
  color: #fff; }

.bg-white {
  background-color: #fff; }

.bg-navy {
  background-color: #20419A;
  color: #fff; }

.bg-lightblue {
  background-color: #3FAFF0; }

.bg-lighter {
  background-color: #3FAFF0; }

.bg-light-gray {
  background-color: #F2F2F2; }

.bg-lighter2 {
  background-color: #f2f2f2;
  color: #1E1E1E; }

.bg-palenavy {
  background-color: #6e89bb; }

.bg-dark {
  background-color: #333333;
  color: #fff; }

.bg-darker {
  background-color: #131313;
  color: #fff; }

.skip-link {
  display: none; }

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .flex.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .flex.justify-space {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .flex.align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .flex.row-inverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }

.pos-rel {
  position: relative; }

.pos-abs {
  position: absolute; }

.quote.lg {
  font-size: 18px; }

.quote.separtor {
  position: relative;
  padding-bottom: 20px; }
  .quote.separtor:after {
    position: absolute;
    width: 25px;
    height: 1px;
    background-color: #fff;
    content: "";
    left: 0;
    bottom: 0; }

hr {
  margin: 30px 0; }
  hr.m-0 {
    margin: 0; }
  hr.gray {
    border-color: #828282; }
  hr.darkgray {
    border-color: #414141; }

.sep {
  color: #414141;
  width: 50px;
  height: 2px; }
  .sep.sep-white {
    background-color: #fff; }
  .sep.sep-secondary {
    background-color: #3FAFF0; }
  .sep.sep-adv {
    width: 90px;
    height: 1px;
    background-color: #F2F2F2;
    margin: auto;
    margin-bottom: 40px;
    position: relative; }
    .sep.sep-adv:after, .sep.sep-adv:before {
      position: absolute;
      content: "";
      -webkit-border-radius: 50%;
      border-radius: 50%;
      width: 18px;
      height: 8px;
      background-color: #414141;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      -webkit-transform: rotate(70deg);
      -ms-transform: rotate(70deg);
      transform: rotate(70deg);
      border: 2px solid #fff; }
    .sep.sep-adv:after {
      background-color: #20419A;
      left: -28px; }
    .sep.sep-adv:before {
      background-color: #3FAFF0;
      right: -28px; }

.bordered-adv {
  position: relative;
  -webkit-box-shadow: 0 0 0 4px #f2f2f2;
  box-shadow: 0 0 0 4px #f2f2f2; }
  .bordered-adv:after, .bordered-adv:before {
    height: 4px;
    max-width: 500px;
    width: 100%;
    background-color: #20419A;
    content: "";
    position: absolute; }
  .bordered-adv:before {
    top: -4px;
    right: 0; }
  .bordered-adv:after {
    bottom: -4px;
    left: 0; }

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both; }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111e2f9e;
  z-index: 5;
  opacity: 0;
  pointer-events: none; }
  .mobile-menu-active .overlay {
    opacity: 1;
    pointer-events: auto; }
  .popup-active .overlay {
    opacity: 1;
    pointer-events: auto; }

.nf-form-fields-required {
  display: none; }

blockquote {
  display: block;
  width: 100%;
  clear: both;
  background: #e9edef;
  border-left: 3px solid #0d1d2d;
  padding: 10px 10px 10px 30px;
  font-style: italic;
  margin-left: 0; }

.notice {
  padding: 10px;
  text-align: center;
  position: relative; }
  .notice.warning {
    background-color: #ffba1e;
    color: #000; }
  .notice .close {
    position: absolute;
    right: 15px;
    top: 10px;
    padding: 5px;
    background: black;
    line-height: 1;
    width: 25px;
    text-align: center;
    cursor: pointer;
    color: #fff; }
  .notice.hidden {
    display: none; }

.page-filter {
  margin-top: 100px;
  text-align: center;
  cursor: pointer; }
  .page-filter .filter {
    background: #dcdcdc;
    width: 100%;
    padding: 20px;
    display: inline-block;
    color: #000;
    min-height: 176px; }
    .page-filter .filter.active, .page-filter .filter:hover {
      background: #20419A;
      color: #000; }

.primary-link {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3FAFF0; }
  .primary-link:hover {
    border-bottom: 1px solid #3FAFF0; }

.nf-error-msg,
.ninja-forms-req-symbol {
  padding: 6px 0;
  font-family: "Roboto Slab", serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.1em;
  border: none;
  background: transparent; }

.global-trans:hover {
  -webkit-transform: translatey(-5px);
  -ms-transform: translatey(-5px);
  transform: translatey(-5px); }

.counter {
  position: relative;
  margin-top: 28px; }
  .counter:after {
    font-family: "Montserrat", sans-serif;
    content: "00";
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 96px;
    line-height: 117px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F5F5F5;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: -1; }
  .counter.counter-1:after {
    content: "01"; }
  .counter.counter-2:after {
    content: "02"; }
  .counter.counter-3:after {
    content: "03"; }
  .counter.counter-4:after {
    content: "04"; }
  .counter.counter-5:after {
    content: "05"; }

.text-custom-wrapper {
  position: relative;
  margin-bottom: 30px; }
  .text-custom-wrapper:hover .clear {
    opacity: 1;
    -webkit-transition: 150ms;
    -o-transition: 150ms;
    transition: 150ms;
    pointer-events: auto; }
  .text-custom-wrapper .clear {
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px;
    color: #d4d4d4;
    opacity: 0;
    -webkit-transition: 150ms;
    -o-transition: 150ms;
    transition: 150ms;
    pointer-events: none;
    cursor: pointer; }
    .text-custom-wrapper .clear.active {
      opacity: 1;
      -webkit-transition: 150ms;
      -o-transition: 150ms;
      transition: 150ms;
      pointer-events: auto; }
    .text-custom-wrapper .clear:hover {
      color: #ff6666;
      -webkit-transition: 150ms;
      -o-transition: 150ms;
      transition: 150ms; }
  .text-custom-wrapper label {
    font-family: "Roboto Slab", serif;
    margin-bottom: 10px;
    display: block;
    color: #d4d4d4; }

.featherlight .featherlight-content {
  padding: 0 !important;
  border-bottom: none !important; }

.featherlight .featherlight-close-icon {
  min-width: unset !important; }

.popup-parent {
  position: relative; }
  .popup-parent .popup-trigger {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9; }
  .popup-parent .popupbox {
    position: absolute;
    top: 0;
    right: -15px;
    border: 1px solid #F2F2F2;
    background: #fff;
    width: 400px;
    z-index: 999;
    margin-top: 35px;
    -webkit-transition: 150ms;
    -o-transition: 150ms;
    transition: 150ms;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none; }
    .popup-parent .popupbox.active {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      -webkit-transition: 150ms;
      -o-transition: 150ms;
      transition: 150ms;
      opacity: 1;
      pointer-events: auto; }
    @media (max-width: 400px) {
      .popup-parent .popupbox {
        width: 365px;
        -webkit-transition: 150ms;
        -o-transition: 150ms;
        transition: 150ms; } }
    .popup-parent .popupbox .title {
      font-family: "Roboto Slab", serif;
      font-style: normal;
      font-weight: normal;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #828282;
      padding: 28px 40px;
      border-bottom: 1px solid #F2F2F2;
      margin-bottom: 0; }
    .popup-parent .popupbox .content {
      padding: 28px 40px; }

.btn,
button {
  padding: 13px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  display: inline-block;
  text-transform: uppercase;
  -webkit-appearance: none;
  border: none;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.3em;
  text-align: center; }
  .btn:hover,
  .btn .active,
  button:hover,
  button .active {
    -webkit-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    transform: translatey(-5px); }
  .btn.btn-small,
  button.btn-small {
    min-width: unset;
    padding: 9px; }
  .btn.btn-rounded,
  button.btn-rounded {
    -webkit-border-radius: 4px;
    border-radius: 4px; }
  .btn.btn-alt,
  button.btn-alt {
    padding: 12px 23px;
    min-width: unset; }

.btn-contact a {
  border: 2px solid white;
  color: #fff !important;
  text-transform: uppercase !important;
  font-size: 12px; }
  .btn-contact a:after {
    display: none !important; }
  .btn-contact a:hover {
    color: #20419A !important;
    background-color: #fff; }

.btn-icon {
  padding-left: 53px; }

.btn-icon:before {
  font-family: Fontawesome; }

.btn-icon-arrow:before {
  content: "\f105";
  margin-left: -20px;
  margin-right: 13px; }

.btn-primary {
  background: #20419A;
  color: #fff; }
  .btn-primary:hover {
    color: #fff; }
  .btn-primary.btn-glass {
    background: transparent;
    -webkit-box-shadow: inset 0 0 0 2px #20419A;
    box-shadow: inset 0 0 0 2px #20419A;
    color: #20419A; }
    .btn-primary.btn-glass:hover, .btn-primary.btn-glass:focus {
      background: #20419A;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #fff; }

.btn-white {
  background: #fff;
  color: #20419A; }
  .btn-white:hover {
    color: #000; }
  .btn-white.btn-glass {
    background: transparent;
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
    color: #fff; }
    .btn-white.btn-glass:hover, .btn-white.btn-glass:focus {
      background: #fff;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #20419A; }

.btn-dark {
  background: #fff;
  color: #1E1E1E; }
  .btn-dark:hover {
    color: #000; }
  .btn-dark.btn-glass {
    background: transparent;
    -webkit-box-shadow: inset 0 0 0 2px #1E1E1E;
    box-shadow: inset 0 0 0 2px #1E1E1E;
    color: #1E1E1E; }
    .btn-dark.btn-glass:hover, .btn-dark.btn-glass:focus {
      background: #1E1E1E;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #fff; }

button[name="woocommerce_checkout_place_order"] {
  background: transparent;
  -webkit-box-shadow: 0 0 0 2px #000;
  box-shadow: 0 0 0 2px #000;
  color: #000; }
  button[name="woocommerce_checkout_place_order"]:hover, button[name="woocommerce_checkout_place_order"]:focus {
    background: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff; }

.btn-secondary,
input[type="button"] {
  background: #3FAFF0;
  color: #fff; }
  .btn-secondary:hover,
  input[type="button"]:hover {
    color: #fff; }
  .btn-secondary.btn-glass,
  input[type="button"].btn-glass {
    background: transparent;
    -webkit-box-shadow: inset 0 0 0 2px #3FAFF0;
    box-shadow: inset 0 0 0 2px #3FAFF0;
    color: #3FAFF0; }
    .btn-secondary.btn-glass:hover, .btn-secondary.btn-glass:focus,
    input[type="button"].btn-glass:hover,
    input[type="button"].btn-glass:focus {
      background: #3FAFF0;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #fff; }

.btn-tertiary,
input[type="button"] {
  background: #1BBA40;
  color: #fff; }
  .btn-tertiary:hover,
  input[type="button"]:hover {
    color: #fff; }
  .btn-tertiary.btn-glass,
  input[type="button"].btn-glass {
    background: transparent;
    -webkit-box-shadow: inset 0 0 0 2px #1BBA40;
    box-shadow: inset 0 0 0 2px #1BBA40;
    color: #1BBA40; }
    .btn-tertiary.btn-glass:hover, .btn-tertiary.btn-glass:focus,
    input[type="button"].btn-glass:hover,
    input[type="button"].btn-glass:focus {
      background: #1BBA40;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #fff; }

.btn-block {
  width: 100%; }

.main-navigation {
  font-family: Roboto;
  -webkit-transition: 150ms;
  -o-transition: 150ms;
  transition: 150ms;
  z-index: 9; }
  .main-navigation li.menu-item {
    display: inline-block;
    position: relative;
    margin-bottom: 0; }
    .main-navigation li.menu-item.current-menu-item a,
    .main-navigation li.menu-item:hover a {
      color: #20419A; }
    .main-navigation li.menu-item:last-of-type a {
      padding-right: 0; }
  .main-navigation a {
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1E1E1E;
    padding: 10px 25px;
    width: 100%;
    display: block; }
  .main-navigation .sub-menu {
    background: #fff; }
    .main-navigation .sub-menu:hover {
      -webkit-transform: translatey(-5px);
      -ms-transform: translatey(-5px);
      transform: translatey(-5px); }
    .main-navigation .sub-menu .menu-item {
      display: block; }
    .main-navigation .sub-menu a {
      font-size: 13px; }

.menu-toggle {
  position: relative;
  height: 23px;
  width: 32px;
  cursor: pointer; }
  .menu-toggle span {
    width: 100%;
    height: 4px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    background-color: #000;
    position: absolute;
    top: -webkit-calc(50% - 3px);
    top: calc(50% - 3px); }
    .dark .menu-toggle span {
      background-color: #fff; }
  .menu-toggle:after, .menu-toggle:before {
    position: absolute;
    content: "";
    width: 17px;
    height: 4px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    background-color: #000;
    -webkit-transition: 150ms;
    -o-transition: 150ms;
    transition: 150ms; }
    .dark .menu-toggle:after, .dark .menu-toggle:before {
      background-color: #fff; }
  .menu-toggle:after {
    bottom: 0;
    left: 0; }
  .menu-toggle:before {
    top: 0;
    right: 0; }
  .menu-toggle:hover {
    cursor: pointer; }
    .menu-toggle:hover:after, .menu-toggle:hover:before {
      -webkit-transition: 150ms;
      -o-transition: 150ms;
      transition: 150ms;
      width: 100%; }
  .mobile-menu-active .menu-toggle {
    position: absolute;
    right: 40px;
    top: 40px; }

.toggle-desktop {
  position: relative;
  top: 0;
  right: 0; }
  .mobile-menu-active .toggle-desktop {
    display: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 24px; }

h3 {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 32px; }

h4 {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 25px;
  letter-spacing: 0.1em; }

h5 {
  font-size: 14px; }


input[type="email"],
input[type="search"],
input[type="date"],
input[type="tel"],
input[type="text"],
input[type="number"],
input[type="submit"],
input[type="password"],
input[type="button"],
textarea,
select {
  padding: 6px 15px;
  font-family: "Roboto Slab", serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.1em;
  border: none;
  -webkit-box-shadow: 0 0 0 1px #BDBDBD;
  box-shadow: 0 0 0 1px #BDBDBD;
  color: #828282;
  background: transparent;
  width: 100%; }
  input[type="email"]::-webkit-input-placeholder,
  input[type="search"]::-webkit-input-placeholder,
  input[type="date"]::-webkit-input-placeholder,
  input[type="tel"]::-webkit-input-placeholder,
  input[type="text"]::-webkit-input-placeholder,
  input[type="number"]::-webkit-input-placeholder,
  input[type="submit"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder,
  input[type="button"]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    color: #828282; }
  input[type="email"]:-ms-input-placeholder,
  input[type="search"]:-ms-input-placeholder,
  input[type="date"]:-ms-input-placeholder,
  input[type="tel"]:-ms-input-placeholder,
  input[type="text"]:-ms-input-placeholder,
  input[type="number"]:-ms-input-placeholder,
  input[type="submit"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  input[type="button"]:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    color: #828282; }
  input[type="email"]::-ms-input-placeholder,
  input[type="search"]::-ms-input-placeholder,
  input[type="date"]::-ms-input-placeholder,
  input[type="tel"]::-ms-input-placeholder,
  input[type="text"]::-ms-input-placeholder,
  input[type="number"]::-ms-input-placeholder,
  input[type="submit"]::-ms-input-placeholder,
  input[type="password"]::-ms-input-placeholder,
  input[type="button"]::-ms-input-placeholder,
  textarea::-ms-input-placeholder,
  select::-ms-input-placeholder {
    color: #828282; }
  input[type="email"]::placeholder,
  input[type="search"]::placeholder,
  input[type="date"]::placeholder,
  input[type="tel"]::placeholder,
  input[type="text"]::placeholder,
  input[type="number"]::placeholder,
  input[type="submit"]::placeholder,
  input[type="password"]::placeholder,
  input[type="button"]::placeholder,
  textarea::placeholder,
  select::placeholder {
    color: #828282; }
  .darkinputs input[type="email"], .darkinputs
  input[type="search"], .darkinputs
  input[type="date"], .darkinputs
  input[type="tel"], .darkinputs
  input[type="text"], .darkinputs
  input[type="number"], .darkinputs
  input[type="submit"], .darkinputs
  input[type="password"], .darkinputs
  input[type="button"], .darkinputs
  textarea, .darkinputs
  select {
    -webkit-box-shadow: 0 0 0 1px #F2F2F2;
    box-shadow: 0 0 0 1px #F2F2F2;
    color: #F2F2F2; }
    .darkinputs input[type="email"]::-webkit-input-placeholder, .darkinputs
    input[type="search"]::-webkit-input-placeholder, .darkinputs
    input[type="date"]::-webkit-input-placeholder, .darkinputs
    input[type="tel"]::-webkit-input-placeholder, .darkinputs
    input[type="text"]::-webkit-input-placeholder, .darkinputs
    input[type="number"]::-webkit-input-placeholder, .darkinputs
    input[type="submit"]::-webkit-input-placeholder, .darkinputs
    input[type="password"]::-webkit-input-placeholder, .darkinputs
    input[type="button"]::-webkit-input-placeholder, .darkinputs
    textarea::-webkit-input-placeholder, .darkinputs
    select::-webkit-input-placeholder {
      color: #F2F2F2; }
    .darkinputs input[type="email"]:-ms-input-placeholder, .darkinputs
    input[type="search"]:-ms-input-placeholder, .darkinputs
    input[type="date"]:-ms-input-placeholder, .darkinputs
    input[type="tel"]:-ms-input-placeholder, .darkinputs
    input[type="text"]:-ms-input-placeholder, .darkinputs
    input[type="number"]:-ms-input-placeholder, .darkinputs
    input[type="submit"]:-ms-input-placeholder, .darkinputs
    input[type="password"]:-ms-input-placeholder, .darkinputs
    input[type="button"]:-ms-input-placeholder, .darkinputs
    textarea:-ms-input-placeholder, .darkinputs
    select:-ms-input-placeholder {
      color: #F2F2F2; }
    .darkinputs input[type="email"]::-ms-input-placeholder, .darkinputs
    input[type="search"]::-ms-input-placeholder, .darkinputs
    input[type="date"]::-ms-input-placeholder, .darkinputs
    input[type="tel"]::-ms-input-placeholder, .darkinputs
    input[type="text"]::-ms-input-placeholder, .darkinputs
    input[type="number"]::-ms-input-placeholder, .darkinputs
    input[type="submit"]::-ms-input-placeholder, .darkinputs
    input[type="password"]::-ms-input-placeholder, .darkinputs
    input[type="button"]::-ms-input-placeholder, .darkinputs
    textarea::-ms-input-placeholder, .darkinputs
    select::-ms-input-placeholder {
      color: #F2F2F2; }
    .darkinputs input[type="email"]::placeholder, .darkinputs
    input[type="search"]::placeholder, .darkinputs
    input[type="date"]::placeholder, .darkinputs
    input[type="tel"]::placeholder, .darkinputs
    input[type="text"]::placeholder, .darkinputs
    input[type="number"]::placeholder, .darkinputs
    input[type="submit"]::placeholder, .darkinputs
    input[type="password"]::placeholder, .darkinputs
    input[type="button"]::placeholder, .darkinputs
    textarea::placeholder, .darkinputs
    select::placeholder {
      color: #F2F2F2; }

input[type="email"],
input[type="search"],
input[type="tel"],
input[type="date"],
input[type="text"],
input[type="number"],
input[type="password"],
select,
textarea {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 0 1px #B2B2B2;
  box-shadow: 0 0 0 1px #B2B2B2;
  width: 100%;
  border: none; }
  input[type="email"]:focus, input[type="email"]:hover,
  input[type="search"]:focus,
  input[type="search"]:hover,
  input[type="tel"]:focus,
  input[type="tel"]:hover,
  input[type="date"]:focus,
  input[type="date"]:hover,
  input[type="text"]:focus,
  input[type="text"]:hover,
  input[type="number"]:focus,
  input[type="number"]:hover,
  input[type="password"]:focus,
  input[type="password"]:hover,
  select:focus,
  select:hover,
  textarea:focus,
  textarea:hover {
    outline: none;
    -webkit-box-shadow: 0 0 0 1px #1E1E1E;
    box-shadow: 0 0 0 1px #1E1E1E; }
  input[type="email"].text-custom,
  input[type="search"].text-custom,
  input[type="tel"].text-custom,
  input[type="date"].text-custom,
  input[type="text"].text-custom,
  input[type="number"].text-custom,
  input[type="password"].text-custom,
  select.text-custom,
  textarea.text-custom {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 0 1px #B2B2B2;
    box-shadow: 0 0 0 1px #B2B2B2;
    width: 100%;
    border: none; }
    input[type="email"].text-custom:focus, input[type="email"].text-custom:hover,
    input[type="search"].text-custom:focus,
    input[type="search"].text-custom:hover,
    input[type="tel"].text-custom:focus,
    input[type="tel"].text-custom:hover,
    input[type="date"].text-custom:focus,
    input[type="date"].text-custom:hover,
    input[type="text"].text-custom:focus,
    input[type="text"].text-custom:hover,
    input[type="number"].text-custom:focus,
    input[type="number"].text-custom:hover,
    input[type="password"].text-custom:focus,
    input[type="password"].text-custom:hover,
    select.text-custom:focus,
    select.text-custom:hover,
    textarea.text-custom:focus,
    textarea.text-custom:hover {
      outline: none;
      -webkit-box-shadow: 0 0 0 1px #1E1E1E;
      box-shadow: 0 0 0 1px #1E1E1E; }

input[type="submit"][disabled="disabled"] {
  opacity: .4; }
  input[type="submit"][disabled="disabled"]:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: inherit;
    color: inherit;
    -webkit-box-shadow: 0 0 0 2px #1E1E1E;
    box-shadow: 0 0 0 2px #1E1E1E; }

select {
  padding: 12px 15px; }
  select option {
    line-height: 30px;
    padding: 20px 0; }

input[type="submit"],
input[type="button"] {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1E1E1E;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  -webkit-box-shadow: 0 0 0 2px #1E1E1E;
  box-shadow: 0 0 0 2px #1E1E1E;
  min-width: 140px;
  margin-top: 10px;
  width: unset; }
  input[type="submit"]:hover,
  input[type="button"]:hover {
    -webkit-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    transform: translatey(-5px);
    background-color: #1E1E1E;
    color: #fff; }
  input[type="submit"].btn-primary,
  input[type="button"].btn-primary {
    color: #fff;
    background-color: #20419A;
    -webkit-box-shadow: 0 0 0 2px #20419A;
    box-shadow: 0 0 0 2px #20419A; }


    

    .block.block-contact.col li 
    {
      line-height: 20px;
      /* margin-bottom: 24px; */
    }
  li.iconed {
    margin-left: 38px;
    margin-bottom: 24px;
    }
  li span.icon {
    width: 24px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -40px; }

input[type=checkbox] {
  display: none;
  }


  

.file-custom {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0.1em;
  border: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #fff;
  padding: 9px 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-shadow: 0 0 0 1px #BDBDBD;
  box-shadow: 0 0 0 1px #BDBDBD;
  color: #828282; }
  .file-custom:before {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 6;
    display: block;
    content: "Browse";
    padding: 6px 15px;
    line-height: 29px;
    color: #555;
    -webkit-border-radius: 0 2px 2px 0;
    border-radius: 0 2px 2px 0;
    background-color: #f3f3f3;
    font-family: "Roboto Slab", serif;
    -webkit-box-shadow: 0 0 0 1px #B2B2B2;
    box-shadow: 0 0 0 1px #B2B2B2; }
  .file-custom:after {
    content: attr(data-upload-value);
    font-family: "Roboto Slab", serif; }

.file-custom-input {
  width: 100%;
  padding: 10px;
  position: relative;
  z-index: 6;
  opacity: 0;
  cursor: pointer; }

/* Modules*/
.site-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 15px;
  max-width: 1650px;
  margin: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  .site-header.site-header-alt {
    -webkit-flex-wrap: unset;
    -ms-flex-wrap: unset;
    flex-wrap: unset; }
  .site-header.absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 5; }
    .site-header.absolute a {
      color: #fff; }
    .admin-bar .site-header.absolute {
      top: 32px; }

.site-logo {
  max-width: 100%;
  height: auto;
  width: 100%; }

.site-footer {
  font-family: "Roboto Slab", serif;
  font-style: normal;
  font-size: 12px;
  margin: 70px 0 0 0; }
  .site-footer .widget-title {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    line-height: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1E1E1E;
    margin-bottom: 35px;
    font-size: 12px; }
  .site-footer .sub-menu {
    display: none; }
  .site-footer a {
    font-weight: normal;
    font-size: 11px;
    line-height: 30px;
    letter-spacing: 0.1em;
    color: #828282;
    text-align: left;
    -webkit-transition: 150ms;
    -o-transition: 150ms;
    transition: 150ms; }
    .site-footer a:hover {
      text-decoration: underline;
      -webkit-transition: 150ms;
      -o-transition: 150ms;
      transition: 150ms; }
  .site-footer .social {
    display: inline-block;
    margin-right: 50px; }
  .site-footer .social img {
    height: 15px;
    margin-right: 15px; }
  .site-footer .copyright {
    display: inline-block; }
  .site-footer .site-info {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 30px;
    letter-spacing: 0.1em;
    color: #828282;
    padding: 30px 0;
    border-top: 1px solid #F6F6F6; }
  .site-footer .enquiries img {
    width: 13px;
    display: inline-block;
    vertical-align: middle; }

section.section-padding {
  padding: 45px 8px; }

section.section-padding-big {
  padding: 75px 0; }

section.section-padding-medium {
  padding: 50px 0; }

section.section-newsletter.section-padding {
  padding: 60px 0; }

section footer {
  font-family: "Roboto Slab", serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #828282; }
  section footer p {
    max-width: 580px;
    margin: auto;
    line-height: 30px; }
  section footer .cta {
    margin-top: 36px; }
  section footer .btn {
    margin: 0 16px; }

.section-header {
  text-align: center;
  margin-bottom: 50px; }
  .section-header.text-left,
  .section-header .desc.text-left {
    text-align: left; }
  .section-header h2.title {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 37px;
    color: #3FAFF0;
    letter-spacing: 0.2em;
    text-transform: uppercase; }
  .section-header h3.title {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1E1E1E; }
  .section-header.bar {
    position: relative;
    padding-top: 35px; }
  .section-header.bar:before {
    content: "";
    width: 98px;
    height: 3px;
    background-color: #3FAFF0;
    margin-bottom: 35px;
    display: inline-block;
    top: 0px; }
  .section-header.bar-left:before {
    left: 0; }
  .section-header.bar-center:before {
    left: 0;
    right: 0;
    margin: auto auto 35px auto; }
  .section-header.bar-logo img {
    background: #20419A;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 5px; }
  .section-header.bar-logo:before {
    display: none; }
  .section-header .desc {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.1em;
    color: #828282;
    max-width: 630px;
    margin: 50px auto; }

.section-hero .owl-controls .owl-nav {
  position: absolute;
  bottom: 0;
  right: 300px; }

.section-hero .owl-controls .owl-next:before {
  content: "";
  height: 50%;
  width: 1px;
  background-color: #dde5ee;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute; }

.section-hero .owl-controls .owl-prev,
.section-hero .owl-controls .owl-next {
  position: relative;
  -webkit-border-radius: unset;
  border-radius: unset;
  display: inline-block;
  margin: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-box-shadow: unset;
  box-shadow: unset; }
  .section-hero .owl-controls .owl-prev .fa,
  .section-hero .owl-controls .owl-next .fa {
    opacity: .5; }
  .section-hero .owl-controls .owl-prev:hover .fa,
  .section-hero .owl-controls .owl-next:hover .fa {
    opacity: 1; }

.section-hero header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .section-hero header h2.title {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 70px;
    line-height: 85px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    max-width: 720px;
    text-align: center;
    text-shadow: 0 1px 2px #6E6E6E; }

.section-hero img {
  width: 100%; }

.section-how .item {
  font-family: "Roboto Slab", serif;
  display: block;
  text-align: center;
  padding: 20px; }
  .section-how .item .icon {
    min-height: 55px;
    display: block; }
  .section-how .item img {
    margin-bottom: 35px;
    display: block;
    margin: auto auto 35px auto; }
  .section-how .item h3 {
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1E1E1E;
    max-width: 193px;
    margin: 25px auto auto auto; }

.section-how .item-wrapper {
  border-right: 1px solid #F2F2F2; }
  .section-how .item-wrapper:hover {
    -webkit-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    transform: translatey(-5px); }
  .section-how .item-wrapper:last-of-type {
    border-right: none; }

.section-how .section-content {
  margin-bottom: 55px; }

.section-collection .item-wrapper,
.section-admin-products .item-wrapper {
  position: relative; }
  .section-collection .item-wrapper:hover a.btn,
  .section-admin-products .item-wrapper:hover a.btn {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: 400ms;
    -o-transition: 400ms;
    transition: 400ms; }
  .section-collection .item-wrapper:hover .item,
  .section-admin-products .item-wrapper:hover .item {
    cursor: pointer;
    -webkit-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    transform: translatey(-5px); }
  .section-collection .item-wrapper:hover .item:before,
  .section-admin-products .item-wrapper:hover .item:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute; }
  .section-collection .item-wrapper .item-btns,
  .section-admin-products .item-wrapper .item-btns {
    position: absolute;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%; }

.section-collection .item,
.section-admin-products .item {
  text-align: center;
  margin-bottom: 24px;
  position: relative; }
  .section-collection .item img,
  .section-admin-products .item img {
    width: 100%;
    padding: 10px; }

.section-collection h4.title,
.section-admin-products h4.title {
  font-family: "Roboto Slab", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 36px; }

.section-collection a.btn,
.section-admin-products a.btn {
  width: 100%;
  margin: 3px;
  letter-spacing: 1px;
  opacity: 0;
  pointer-events: none; }

.section-inspiration img {
  width: 100%;
  margin-bottom: 30px;
  display: block; }

.section-inspiration .section-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.section-inspiration .item-thumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px; }
  .section-inspiration .item-thumbs img {
    width: 20%;
    padding: 15px;
    display: block; }

.section-inspiration h3 {
  margin-bottom: 0; }

.section-testimonial {
  position: relative; }
  .section-testimonial .item-wrapper {
    position: relative;
    padding: 80px 0 0 80px; }
    .section-testimonial .item-wrapper:after {
      content: "";
      background-color: #f2f2f2;
      height: 100%;
      width: 82%;
      position: absolute;
      left: 0;
      top: 0; }
  .section-testimonial .item {
    position: relative; }
  .section-testimonial .quote {
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.1em;
    color: #828282;
    position: relative;
    background-image: url("../images/icon-quotes.svg");
    background-repeat: no-repeat;
    -webkit-background-size: 44px 44px;
    background-size: 44px 44px;
    padding-left: 65px;
    padding-top: 10px;
    margin-bottom: 60px;
    z-index: 3; }
  .section-testimonial .quote-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .section-testimonial .quote-logo,
  .section-testimonial .quoter {
    display: inline-block;
    vertical-align: middle; }
  .section-testimonial .quote-logo {
    margin-right: 24px;
    position: relative;
    z-index: 3; }
  .section-testimonial .quoter {
    border-left: 1px solid #E0E0E0;
    padding-left: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 3; }
    .section-testimonial .quoter .name {
      font-family: "Roboto", sans-serif;
      font-size: 14px;
      color: #1E1E1E; }
    .section-testimonial .quoter .occupancy {
      font-family: "Roboto", sans-serif;
      font-size: 11px;
      color: #828282; }
  .section-testimonial header {
    position: relative;
    z-index: 3;
    padding: 55px 0 55px 60px;
    background: #fff; }
  .section-testimonial .section-header {
    margin-bottom: 0; }
    .section-testimonial .section-header .desc {
      font-family: "Roboto Slab", serif;
      font-size: 15px;
      color: #828282;
      margin-top: 35px; }
    .section-testimonial .section-header .btn {
      margin-top: 6px; }
  .section-testimonial .testi-nav {
    position: relative;
    z-index: 3;
    text-align: right;
    padding-right: 300px;
    padding-right: 20%;
    margin: 20px 0 25px 0;
    display: inline-block;
    width: 100%; }
    .section-testimonial .testi-nav .fa {
      font-size: 26px; }
    .section-testimonial .testi-nav span {
      display: inline-block;
      padding: 0 20px;
      opacity: .5;
      -webkit-transition: 150ms;
      -o-transition: 150ms;
      transition: 150ms; }
      .section-testimonial .testi-nav span:hover {
        opacity: 1;
        -webkit-transition: 150ms;
        -o-transition: 150ms;
        transition: 150ms;
        cursor: pointer; }
    .section-testimonial .testi-nav .testi-next {
      border-left: 1px solid #E5E5E5; }
  .section-testimonial.testi-alt {
    position: relative; }
    .section-testimonial.testi-alt:before {
      background-color: #F2F2F2;
      position: absolute;
      width: 100%;
      height: 80%;
      top: 0;
      left: 0;
      right: 0;
      content: "";
      z-index: -1; }
    .section-testimonial.testi-alt .owl-wrapper {
      background-color: #fff;
      padding: 50px;
      -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
      box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2); }
    .section-testimonial.testi-alt .quote {
      background-image: url("../images/icon-quotes2.svg");
      padding: 20px;
      margin-bottom: 10px; }
    .section-testimonial.testi-alt .quote-footer {
      display: block; }
    .section-testimonial.testi-alt .quote-header img {
      display: inline-block; }
    .section-testimonial.testi-alt .quoter {
      padding-left: 0;
      border-left: none; }
    .section-testimonial.testi-alt .item-wrapper {
      padding: 10px; }
    .section-testimonial.testi-alt .item-wrapper:after {
      display: none; }
    .section-testimonial.testi-alt .testi-nav.nav-alt {
      width: 100%;
      padding-right: 0;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 30%; }
      .section-testimonial.testi-alt .testi-nav.nav-alt span {
        background: #20419A;
        padding: 15px 25px;
        color: #fff;
        opacity: 1; }
        .section-testimonial.testi-alt .testi-nav.nav-alt span:hover {
          -webkit-transform: translatey(-5px);
          -ms-transform: translatey(-5px);
          transform: translatey(-5px); }
        .section-testimonial.testi-alt .testi-nav.nav-alt span.testi-prev {
          float: left;
          margin-left: -30px; }
        .section-testimonial.testi-alt .testi-nav.nav-alt span.testi-next {
          float: right;
          margin-right: -30px; }
    .section-testimonial.testi-alt .owl-wrapper {
      max-width: 950px;
      margin: auto; }
    .section-testimonial.testi-alt .owl-testi {
      background-color: #fff; }

.section-client .item-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  text-align: center; }
  .section-client .item-wrapper .item {
    text-align: center; }
  .section-client .item-wrapper img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .7;
    max-height: 100px; }
    .section-client .item-wrapper img:hover {
      opacity: 1;
      -webkit-filter: unset;
      filter: unset;
      -webkit-transform: translatey(-5px);
      -ms-transform: translatey(-5px);
      transform: translatey(-5px); }

.section-client footer {
  margin-top: 100px; }

.section-newsletter {
  margin-top: 45px;
  padding: 60px 0; }
  .section-newsletter header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .section-newsletter header img {
      margin-right: 18px; }
  .section-newsletter h4.title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0; }
  .section-newsletter .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .section-newsletter input[type="email"] {
    margin-right: 14px; }
  .section-newsletter form,
  .section-newsletter .newsletterform nf-fields-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .section-newsletter form nf-field:first-of-type,
    .section-newsletter .newsletterform nf-fields-wrap nf-field:first-of-type {
      margin-right: 20px; }
    .section-newsletter form input[type="submit"],
    .section-newsletter .newsletterform nf-fields-wrap input[type="submit"] {
      margin-top: 0; }

.section-pageheader {
  font-style: normal;
  padding: 63px 0; }
  .section-pageheader .section-header {
    margin-bottom: 0; }
  .section-pageheader h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3FAFF0; }
  .section-pageheader p.desc {
    text-transform: uppercase;
    color: #F2F2F2;
    margin-top: 5px;
    margin-bottom: 0; }

.section-breadcrumbs {
  color: #3FAFF0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center; }
  .section-breadcrumbs .item {
    max-width: 1650px;
    margin: auto;
    width: 100%;
    display: inline-block;
    padding: 0 15px;
    text-align: left; }
  .section-breadcrumbs span {
    margin: 0 15px; }
  .section-breadcrumbs a {
    color: #fff; }

.section-steps {
  counter-reset: steps; }
  .section-steps .item-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right; }
    .section-steps .item-wrapper .horline {
      height: 1px;
      width: 130px;
      background: #BDBDBD;
      position: absolute;
      right: 0;
      top: 59px; }
    .section-steps .item-wrapper .item {
      width: 50%;
      position: relative; }
      .section-steps .item-wrapper .item:first-child {
        padding-right: 161px; }
        .section-steps .item-wrapper .item:first-child .thumb {
          position: relative;
          padding: 40px 20px; }
        .section-steps .item-wrapper .item:first-child .thumb:before {
          counter-increment: steps;
          content: counter(steps, decimal-leading-zero);
          font-family: "Montserrat", sans-serif;
          font-style: normal;
          font-weight: bold;
          font-size: 96px;
          line-height: 117px;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          color: #F5F5F5;
          position: absolute;
          right: -14px;
          top: 0;
          bottom: 0;
          z-index: -1; }
        .section-steps .item-wrapper .item:first-child:after, .section-steps .item-wrapper .item:first-child:before,
        .section-steps .item-wrapper .item:first-child .horline {
          -webkit-transition: 150ms;
          -o-transition: 150ms;
          transition: 150ms; }
        .section-steps .item-wrapper .item:first-child:hover:after, .section-steps .item-wrapper .item:first-child:hover:before,
        .section-steps .item-wrapper .item:first-child:hover .horline {
          background-color: #3FAFF0;
          -webkit-transition: 150ms;
          -o-transition: 150ms;
          transition: 150ms; }
      .section-steps .item-wrapper .item:first-child:after {
        content: "";
        height: 100%;
        width: 1px;
        background-color: #BDBDBD;
        position: absolute;
        bottom: -50px;
        right: -0.5px; }
      .section-steps .item-wrapper .item:first-child:before {
        content: "";
        height: 19px;
        width: 19px;
        background-color: #BDBDBD;
        position: absolute;
        top: 50px;
        right: -9.5px;
        -webkit-border-radius: 50%;
        border-radius: 50%; }
    .section-steps .item-wrapper:nth-child(even) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
      text-align: left; }
      .section-steps .item-wrapper:nth-child(even) .item:first-child {
        padding-left: 160px;
        padding-right: 0; }
      .section-steps .item-wrapper:nth-child(even) .item:first-child:after {
        right: unset;
        left: -0.5px; }
      .section-steps .item-wrapper:nth-child(even) .item:first-child:before {
        right: unset;
        left: -9.5px; }
      .section-steps .item-wrapper:nth-child(even) .horline {
        right: unset;
        left: 0; }
      .section-steps .item-wrapper:nth-child(even) .thumb:before {
        right: 0;
        left: -14px; }
    .section-steps .item-wrapper:last-child .item:first-child:after {
      display: none; }

.section-gallery .col-3 {
  width: 400px; }

.section-gallery .row .item {
  margin-bottom: 30px; }

.section-gallery .row img {
  display: block; }

.section-gallery img {
  width: 100%;
  height: auto; }

.section-gallery .masonry {
  margin: 0 -15px; }

.section-gallery .size-col-4-wrapper .size-col-4 {
  width: 25%;
  padding: 15px; }

.section-gallery .size-col-4-wrapper .item-sizer {
  width: 25%; }

.section-gallery .size-col-3-wrapper .size-col-3 {
  width: 33.3333333333%;
  padding: 15px; }

.section-gallery .size-col-3-wrapper .item-sizer {
  width: 33.3333333333%; }

.section-gallery-alt .section-wrapper {
  position: relative; }

.section-gallery-alt .gallery-item {
  width: -webkit-calc(33.33333333%);
  width: calc(33.33333333%); }

.section-gallery-alt .masonry {
  margin: -9px -5px 0; }

.section-gallery-alt .galleryitem {
  padding: 9px;
  display: block; }

.section-gallery-alt img {
  width: 100%; }

.section-gallery-alt .bg-primary-half {
  position: absolute;
  background-color: #20419A;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%; }

.section-gallery-alt .section-footer {
  padding: 16px 7px; }

.section-gallery-alt .gallery-navs {
  color: #fff;
  font-size: 24px; }
  .section-gallery-alt .gallery-navs span {
    font-size: 14px; }

.section-gallery-alt .gal-alt-nav {
  padding: 10px;
  background-color: transparent;
  font-size: 22px; }

.section_wyswyg_2x img {
  max-width: 100%;
  width: 100%;
  height: auto; }

.section_wyswyg_2x ul {
  list-style-type: disc;
  padding-left: 17px; }

.section-inspiration-alt .img-item {
  margin-bottom: 30px; }

.section-inspiration-alt img {
  width: 100%;
  display: block; }

.section-inspiration-alt .details {
  bottom: 0;
  left: 0; }

.section-inspiration-alt .title {
  color: #fff;
  font-style: normal;
  font-weight: 800;
  font-size: 35px;
  line-height: 43px;
  letter-spacing: 0.2em;
  text-transform: uppercase; }

.section-inspiration-alt sub {
  color: #fff;
  text-transform: uppercase;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
  display: inline-block; }

.section-inspiration-alt .btn {
  margin-top: 45px; }

.section-inspiration-alt .medium .title {
  font-size: 25px;
  line-height: normal; }

.section-inspiration-alt .medium .btn {
  margin-top: 20px; }

.block-contact {
  color: #828282;
  letter-spacing: 0.1em;
  font-size: 11px; }
  .block-contact h4 {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: bold;
    line-height: 30px;
    color: #828282;
    font-size: 12px;
    margin-bottom: 23px; }
  .block-contact:last-of-type {
    margin-right: 0; }

.block-map .map {
  height: 457px; }

.widget_nav_menu li {
  margin-bottom: 0; }

.popup-wrapper {
  max-width: 585px;
  width: 100%;
  background: whitesmoke;
  padding: 25px 50px 45px;
  font-size: 12px;
  position: fixed;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.5);
  margin: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -44%);
  -ms-transform: translate(-50%, -44%);
  transform: translate(-50%, -44%);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 150ms;
  -o-transition: 150ms;
  transition: 150ms; }
  .popup-wrapper input[type=pass] {
    text-align: center; }
  .popup-active .popup-wrapper {
    opacity: 1;
    -webkit-transition: 100ms;
    -o-transition: 100ms;
    transition: 100ms;
    pointer-events: auto;
    -webkit-transform: scale(1) translate(-50%, -50%);
    -ms-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%); }
  .popup-wrapper header {
    text-align: center;
    margin-bottom: 40px; }
    .popup-wrapper header h3 {
      margin-bottom: 0;
      margin-top: 30px; }
  .popup-wrapper .popup-content p {
    font-size: 12px;
    margin-bottom: 5px; }
  .popup-wrapper .close {
    padding: 20px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    opacity: .5;
    -webkit-transition: 150ms;
    -o-transition: 150ms;
    transition: 150ms; }
    .popup-wrapper .close:hover {
      opacity: 1;
      -webkit-transition: 150ms;
      -o-transition: 150ms;
      transition: 150ms; }

.modal-content {
  width: 100% !important;
  max-width: 600px !important; }

.modal-header {
  background: transparent !important; }
  .modal-header span.close {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500 !important;
    font-size: 12px;

    
    text-align: center;
    letter-spacing: 0.1em;
    color: #4F4F4F !important;
    text-transform: uppercase;
    padding: 15px;
    position: absolute;
    right: 0; }

.modal-body {
  padding: 125px 35px 35px 35px !important; }
  .modal-body #mo_message {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.1em;
    color: #4F4F4F; }
  .modal-body #mo_validate_field {
    margin: 30px 0 5px !important;
    text-align: right; }
    .modal-body #mo_validate_field input[name="order_verify"] {
      margin-bottom: 30px;
      padding: 6px 20px !important; }
    .modal-body #mo_validate_field input[type="button"] {
      width: unset !important;
      font-style: normal;
      font-weight: 500;
      font-size: 12px;
      line-height: 25px;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #1E1E1E; }

.woocommerce-checkout .modal-header:before {
  content: "VALIDATE OTP (ONE TIME PASSCODE)";
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  width: 100%;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #4F4F4F;
  padding: 50px 30px 30px 30px;
  border-bottom: 1px solid #ECECEC;
  position: absolute; }

/* Pages  */
/* Vendors*/
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }

.fa-ul > li {
  position: relative; }

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  -webkit-border-radius: .1em;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper-pp:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

.fa-universal-access:before {
  content: ""; }

.fa-wheelchair-alt:before {
  content: ""; }

.fa-question-circle-o:before {
  content: ""; }

.fa-blind:before {
  content: ""; }

.fa-audio-description:before {
  content: ""; }

.fa-volume-control-phone:before {
  content: ""; }

.fa-braille:before {
  content: ""; }

.fa-assistive-listening-systems:before {
  content: ""; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

.fa-glide-g:before {
  content: ""; }

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

.fa-low-vision:before {
  content: ""; }

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-first-order:before {
  content: ""; }

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
  content: ""; }

.fa-handshake-o:before {
  content: ""; }

.fa-envelope-open:before {
  content: ""; }

.fa-envelope-open-o:before {
  content: ""; }

.fa-linode:before {
  content: ""; }

.fa-address-book:before {
  content: ""; }

.fa-address-book-o:before {
  content: ""; }

.fa-vcard:before,
.fa-address-card:before {
  content: ""; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: ""; }

.fa-user-circle:before {
  content: ""; }

.fa-user-circle-o:before {
  content: ""; }

.fa-user-o:before {
  content: ""; }

.fa-id-badge:before {
  content: ""; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: ""; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: ""; }

.fa-quora:before {
  content: ""; }

.fa-free-code-camp:before {
  content: ""; }

.fa-telegram:before {
  content: ""; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: ""; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: ""; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: ""; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: ""; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: ""; }

.fa-shower:before {
  content: ""; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: ""; }

.fa-podcast:before {
  content: ""; }

.fa-window-maximize:before {
  content: ""; }

.fa-window-minimize:before {
  content: ""; }

.fa-window-restore:before {
  content: ""; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: ""; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: ""; }

.fa-bandcamp:before {
  content: ""; }

.fa-grav:before {
  content: ""; }

.fa-etsy:before {
  content: ""; }

.fa-imdb:before {
  content: ""; }

.fa-ravelry:before {
  content: ""; }

.fa-eercast:before {
  content: ""; }

.fa-microchip:before {
  content: ""; }

.fa-snowflake-o:before {
  content: ""; }

.fa-superpowers:before {
  content: ""; }

.fa-wpexplorer:before {
  content: ""; }

.fa-meetup:before {
  content: ""; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container {
    max-width: 1140px; } }

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  -ms-flex-preferred-size: 0;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  -ms-flex: 0 0 8.333333%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%; }

.col-2 {
  -ms-flex: 0 0 16.666667%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%; }

.col-3 {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%; }

.col-5 {
  -ms-flex: 0 0 41.666667%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%; }

.col-6 {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -ms-flex: 0 0 58.333333%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%; }

.col-8 {
  -ms-flex: 0 0 66.666667%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%; }

.col-9 {
  -ms-flex: 0 0 75%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -ms-flex: 0 0 83.333333%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%; }

.col-11 {
  -ms-flex: 0 0 91.666667%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%; }

.col-12 {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  order: -1; }

.order-last {
  -ms-flex-order: 13;
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
  order: 13; }

.order-0 {
  -ms-flex-order: 0;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  order: 0; }

.order-1 {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  order: 1; }

.order-2 {
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  order: 2; }

.order-3 {
  -ms-flex-order: 3;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  order: 3; }

.order-4 {
  -ms-flex-order: 4;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  order: 4; }

.order-5 {
  -ms-flex-order: 5;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  order: 5; }

.order-6 {
  -ms-flex-order: 6;
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  order: 6; }

.order-7 {
  -ms-flex-order: 7;
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  order: 7; }

.order-8 {
  -ms-flex-order: 8;
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
  order: 8; }

.order-9 {
  -ms-flex-order: 9;
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
  order: 9; }

.order-10 {
  -ms-flex-order: 10;
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  order: 10; }

.order-11 {
  -ms-flex-order: 11;
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
  order: 11; }

.order-12 {
  -ms-flex-order: 12;
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
  order: 12; }

.offset-1 {
  margin-left: 8.333333%; }

.offset-2 {
  margin-left: 16.666667%; }

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

.offset-4 {
  margin-left: 33.333333%; }

.offset-5 {
  margin-left: 41.666667%; }

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

.offset-7 {
  margin-left: 58.333333%; }

.offset-8 {
  margin-left: 66.666667%; }

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

.offset-10 {
  margin-left: 83.333333%; }

.offset-11 {
  margin-left: 91.666667%; }

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    order: -1; }
  .order-sm-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    order: 13; }
  .order-sm-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    order: 0; }
  .order-sm-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    order: 1; }
  .order-sm-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    order: 2; }
  .order-sm-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    order: 3; }
  .order-sm-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    order: 4; }
  .order-sm-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    order: 5; }
  .order-sm-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    order: 6; }
  .order-sm-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    order: 7; }
  .order-sm-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    order: 8; }
  .order-sm-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    order: 9; }
  .order-sm-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    order: 10; }
  .order-sm-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    order: 11; }
  .order-sm-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.333333%; }
  .offset-sm-2 {
    margin-left: 16.666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.333333%; }
  .offset-sm-5 {
    margin-left: 41.666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.333333%; }
  .offset-sm-8 {
    margin-left: 66.666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.333333%; }
  .offset-sm-11 {
    margin-left: 91.666667%; } }

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    order: -1; }
  .order-md-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    order: 13; }
  .order-md-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    order: 0; }
  .order-md-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    order: 1; }
  .order-md-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    order: 2; }
  .order-md-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    order: 3; }
  .order-md-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    order: 4; }
  .order-md-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    order: 5; }
  .order-md-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    order: 6; }
  .order-md-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    order: 7; }
  .order-md-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    order: 8; }
  .order-md-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    order: 9; }
  .order-md-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    order: 10; }
  .order-md-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    order: 11; }
  .order-md-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.333333%; }
  .offset-md-2 {
    margin-left: 16.666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.333333%; }
  .offset-md-5 {
    margin-left: 41.666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.333333%; }
  .offset-md-8 {
    margin-left: 66.666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.333333%; }
  .offset-md-11 {
    margin-left: 91.666667%; } }

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    order: -1; }
  .order-lg-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    order: 13; }
  .order-lg-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    order: 0; }
  .order-lg-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    order: 1; }
  .order-lg-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    order: 2; }
  .order-lg-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    order: 3; }
  .order-lg-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    order: 4; }
  .order-lg-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    order: 5; }
  .order-lg-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    order: 6; }
  .order-lg-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    order: 7; }
  .order-lg-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    order: 8; }
  .order-lg-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    order: 9; }
  .order-lg-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    order: 10; }
  .order-lg-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    order: 11; }
  .order-lg-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.333333%; }
  .offset-lg-2 {
    margin-left: 16.666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.333333%; }
  .offset-lg-5 {
    margin-left: 41.666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.333333%; }
  .offset-lg-8 {
    margin-left: 66.666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.333333%; }
  .offset-lg-11 {
    margin-left: 91.666667%; } }

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    order: -1; }
  .order-xl-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    order: 13; }
  .order-xl-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    order: 0; }
  .order-xl-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    order: 1; }
  .order-xl-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    order: 2; }
  .order-xl-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    order: 3; }
  .order-xl-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    order: 4; }
  .order-xl-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    order: 5; }
  .order-xl-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    order: 6; }
  .order-xl-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    order: 7; }
  .order-xl-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    order: 8; }
  .order-xl-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    order: 9; }
  .order-xl-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    order: 10; }
  .order-xl-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    order: 11; }
  .order-xl-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.333333%; }
  .offset-xl-2 {
    margin-left: 16.666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.333333%; }
  .offset-xl-5 {
    margin-left: 41.666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.333333%; }
  .offset-xl-8 {
    margin-left: 66.666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.333333%; }
  .offset-xl-11 {
    margin-left: 91.666667%; } }

.flex-row {
  -ms-flex-direction: row !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
  flex-direction: row !important; }

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

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important; }

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  -webkit-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  -webkit-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  -ms-flex: 1 1 auto !important;
  -webkit-box-flex: 1 !important;
  -webkit-flex: 1 1 auto !important;
  flex: 1 1 auto !important; }

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  -webkit-box-flex: 0 !important;
  -webkit-flex-grow: 0 !important;
  flex-grow: 0 !important; }

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  -webkit-box-flex: 1 !important;
  -webkit-flex-grow: 1 !important;
  flex-grow: 1 !important; }

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  -webkit-flex-shrink: 0 !important;
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  -webkit-flex-shrink: 1 !important;
  flex-shrink: 1 !important; }

.justify-content-start {
  -ms-flex-pack: start !important;
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  justify-content: flex-start !important; }

.justify-content-end {
  -ms-flex-pack: end !important;
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
  justify-content: flex-end !important; }

.justify-content-center {
  -ms-flex-pack: center !important;
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  justify-content: center !important; }

.justify-content-between {
  -ms-flex-pack: justify !important;
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
  justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
  -webkit-justify-content: space-around !important;
  justify-content: space-around !important; }

.align-items-start {
  -ms-flex-align: start !important;
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
  align-items: flex-start !important; }

.align-items-end {
  -ms-flex-align: end !important;
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
  align-items: flex-end !important; }

.align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  align-items: center !important; }

.align-items-baseline {
  -ms-flex-align: baseline !important;
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
  align-items: baseline !important; }

.align-items-stretch {
  -ms-flex-align: stretch !important;
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
  align-items: stretch !important; }

.align-content-start {
  -ms-flex-line-pack: start !important;
  -webkit-align-content: flex-start !important;
  align-content: flex-start !important; }

.align-content-end {
  -ms-flex-line-pack: end !important;
  -webkit-align-content: flex-end !important;
  align-content: flex-end !important; }

.align-content-center {
  -ms-flex-line-pack: center !important;
  -webkit-align-content: center !important;
  align-content: center !important; }

.align-content-between {
  -ms-flex-line-pack: justify !important;
  -webkit-align-content: space-between !important;
  align-content: space-between !important; }

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  -webkit-align-content: space-around !important;
  align-content: space-around !important; }

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  -webkit-align-content: stretch !important;
  align-content: stretch !important; }

.align-self-auto {
  -ms-flex-item-align: auto !important;
  -webkit-align-self: auto !important;
  align-self: auto !important; }

.align-self-start {
  -ms-flex-item-align: start !important;
  -webkit-align-self: flex-start !important;
  align-self: flex-start !important; }

.align-self-end {
  -ms-flex-item-align: end !important;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important; }

.align-self-center {
  -ms-flex-item-align: center !important;
  -webkit-align-self: center !important;
  align-self: center !important; }

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  -webkit-align-self: baseline !important;
  align-self: baseline !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -webkit-align-self: stretch !important;
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    -webkit-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    -webkit-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important; }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important; }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important; }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important; }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important; }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important; }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important; }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important; }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important; }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important; }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important; }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important; }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important; }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important; }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important; }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important; }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important; }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important; }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important; }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-md-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    -webkit-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    -webkit-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important; }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important; }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important; }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important; }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important; }
  .align-items-md-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important; }
  .align-items-md-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important; }
  .align-items-md-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important; }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important; }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important; }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important; }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important; }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important; }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important; }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important; }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important; }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important; }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important; }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important; }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important; }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important; }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    -webkit-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    -webkit-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important; }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important; }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important; }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important; }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important; }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important; }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important; }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important; }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important; }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important; }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important; }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important; }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important; }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important; }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important; }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important; }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important; }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important; }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important; }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    -webkit-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    -webkit-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important; }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important; }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important; }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important; }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important; }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important; }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important; }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important; }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important; }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important; }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important; }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important; }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important; }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important; }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important; }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important; }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important; }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important; }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important; }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important; } }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

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

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  vertical-align: middle;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  max-width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }

.owl-controls {
  font-size: 24px; }
  .owl-controls .owl-prev,
  .owl-controls .owl-next {
    position: absolute;
    top: 30%;
    padding: 14px 22px;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    line-height: 1;
    -webkit-box-shadow: 0 0 0 1px #F2F2F2;
    box-shadow: 0 0 0 1px #F2F2F2;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6); }
    .owl-controls .owl-prev:hover,
    .owl-controls .owl-next:hover {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      -webkit-transition: 100ms;
      -o-transition: 100ms;
      transition: 100ms; }
  .owl-controls .owl-prev {
    left: 0;
    margin-left: 0; }
  .owl-controls .owl-next {
    right: 0;
    margin-right: 0; }
  .owl-controls .hide {
    display: none; }
  .dot-style-2 .owl-controls .owl-dots {
    position: absolute;
    top: 50%;
    margin: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px; }
  .owl-controls .owl-dot {
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #c2daec;
    -webkit-transition: 100ms;
    -o-transition: 100ms;
    transition: 100ms;
    margin: 5px;
    display: inline-block; }
    .dot-style-2 .owl-controls .owl-dot {
      background-color: #fff;
      width: 8px;
      height: 8px;
      display: block;
      -webkit-border-radius: 100px;
      border-radius: 100px; }
    .owl-controls .owl-dot.active, .owl-controls .owl-dot:hover {
      background-color: #56ccf2;
      -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
      transform: scale(1.3);
      -webkit-transition: 100ms;
      -o-transition: 100ms;
      transition: 100ms; }
      .dot-style-2 .owl-controls .owl-dot.active, .dot-style-2 .owl-controls .owl-dot:hover {
        background-color: #20419A;
        height: 31px;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        margin: 5px; }

.owl-center .owl-item {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 100ms;
  -o-transition: 100ms;
  transition: 100ms;
  position: relative; }
  .owl-center .owl-item img {
    display: block; }
  .owl-center .owl-item.center {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 100ms;
    -o-transition: 100ms;
    transition: 100ms;
    opacity: 1; }

.owl-hero .owl-nav {
  background-color: #fff;
  color: #020202; }
  .owl-hero .owl-nav .owl-prev,
  .owl-hero .owl-nav .owl-next {
    color: #020202; }

@media (min-width: 1650px) {
  .dot-style-2 .owl-controls .owl-dots {
    right: 120px; } }

div.nf-field-container {
  margin-bottom: 15px; }

.nf-form-cont {
  width: 100%; }

div.nf-field-element textarea {
  height: 104px; }

.acf-map {
  width: 100%;
  height: 457px; }
  .acf-map img {
    max-width: inherit !important; }

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  overflow: hidden; }

.featherlight {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background: #333;
  background: rgba(0, 0, 0, 0); }

.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8); }

.featherlight:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.featherlight .featherlight-content {
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  background: #fff;
  cursor: auto;
  white-space: normal; }

.featherlight .featherlight-inner {
  display: block; }

.featherlight link.featherlight-inner, .featherlight script.featherlight-inner, .featherlight style.featherlight-inner {
  display: none; }

.featherlight .featherlight-close-icon {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  line-height: 25px;
  width: 25px;
  cursor: pointer;
  text-align: center;
  font-family: Arial,sans-serif;
  background: #fff;
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: 0;
  padding: 0; }

.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0; }

.featherlight .featherlight-image {
  width: 100%; }

.featherlight-iframe .featherlight-content {
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch; }

.featherlight iframe {
  border: 0; }

.featherlight * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; } }

@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none; } }

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
.featherlight-next, .featherlight-previous {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  bottom: 0;
  left: 80%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: rgba(0, 0, 0, 0); }

.featherlight-previous {
  left: 25px;
  right: 80%; }

.featherlight-next:hover, .featherlight-previous:hover {
  background: rgba(255, 255, 255, 0.25); }

.featherlight-next span, .featherlight-previous span {
  display: none;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 82%;
  text-align: center;
  font-size: 80px;
  line-height: 80px;
  margin-top: -40px;
  text-shadow: 0 0 5px #fff;
  color: #fff;
  font-style: normal;
  font-weight: 400; }

.featherlight-next span {
  right: 5%;
  left: auto; }

.featherlight-next:hover span, .featherlight-previous:hover span {
  display: inline-block; }

.featherlight-first-slide.featherlight-last-slide .featherlight-next, .featherlight-first-slide.featherlight-last-slide .featherlight-previous, .featherlight-loading .featherlight-next, .featherlight-loading .featherlight-previous, .featherlight-swipe-aware .featherlight-next, .featherlight-swipe-aware .featherlight-previous {
  display: none; }

@media only screen and (max-device-width: 1024px) {
  .featherlight-next:hover, .featherlight-previous:hover {
    background: 0 0; }
  .featherlight-next span, .featherlight-previous span {
    display: block; } }

@media only screen and (max-width: 1024px) {
  .featherlight-next, .featherlight-previous {
    top: 10px;
    right: 10px;
    left: 85%; }
  .featherlight-previous {
    left: 10px;
    right: 85%; }
  .featherlight-next span, .featherlight-previous span {
    margin-top: -30px;
    font-size: 40px; } }

.cartbox .widget_shopping_cart_content {
  padding: 28px 40px; }

.cartbox .woocommerce-mini-cart .variation {
  display: none; }

.cartbox .cart-item,
.cartbox .woocommerce-mini-cart-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative; }

.cartbox .thumb {
  background: #ECECEC;
  margin-right: 20px;
  display: inline-block;
  padding: 5px;
  width: 80px;
  height: 100%; }
  .cartbox .thumb img {
    width: 70px;
    height: auto; }

.cartbox .remove {
  position: absolute;
  right: 0;
  top: 40%;
  cursor: pointer;
  font-size: 30px;
  opacity: .3; }
  .cartbox .remove:hover {
    opacity: 1; }

.cartbox .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px 0 10px; }
  .cartbox .btns a {
    width: 100%;
    margin-right: 20px; }
    .cartbox .btns a:last-of-type {
      margin-right: 0; }

.cartbox .summary {
  padding-right: 10px; }
  .cartbox .summary h3 {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 15px;
    line-height: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1E1E1E;
    margin-bottom: 13px; }
  .cartbox .summary .price,
  .cartbox .summary .quantity,
  .cartbox .summary span {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.1em;
    color: #3FAFF0; }

/* Media Screens */
@media (max-width: 1200px) {
  .main-navigation {
    position: fixed;
    width: 300px;
    left: 0;
    top: 0;
    background-color: #fff;
    height: 100%;
    overflow-y: auto;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
    position: fixed;
    left: -300px;
    padding-bottom: 50px; }
    .main-navigation .menu-item {
      width: 100%; }
      .main-navigation .menu-item a {
        padding: 20px; }
    .admin-bar .main-navigation {
      top: 32px; }
    .mobile-menu-active .main-navigation {
      left: 0; }
  .absolute .main-navigation {
    background-color: #000; }
  .sub-menu .menu-item {
    margin-left: 10px;
    width: -webkit-calc(100% - 10px);
    width: calc(100% - 10px); }
    .sub-menu .menu-item a {
      padding: 10px 20px; }
  .site-header {
    padding: 15px; }
  section.section-inspiration .section-header {
    margin-bottom: 38px; }
  .section-steps .item-wrapper .item:first-child {
    padding-right: 85px; }
  .section-steps .item-wrapper:nth-child(even) .item:first-child {
    padding-left: 85px; }
  .section-steps .item-wrapper .horline {
    width: 60px; } }

@media (min-width: 1200px) {
  .menu-toggle {
    display: none; }
    .menu-toggle.menu-toggle-alt {
      display: block; }
  .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto; }
    .menu-item-has-children:hover > .sub-menu li:hover .sub-menu {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      pointer-events: auto; }
  > .sub-menu {
    margin-left: 25px; }
  .sub-menu {
    background: #fff;
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
    min-width: 260px;
    position: absolute;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    pointer-events: none; }
    .sub-menu .menu-item {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .sub-menu a {
      padding: 15px 20px; }
  .main-navigation ul.menu .menu-item-has-children:nth-last-of-type(-n+2) .sub-menu {
    right: 0; } }

@media (max-width: 1200px) {
  .main-navigation {
    position: fixed;
    width: 300px;
    left: 0;
    top: 0;
    background-color: #fff;
    height: 100%;
    overflow-y: auto;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
    position: fixed;
    left: -300px;
    padding-bottom: 50px; }
    .main-navigation .menu-item {
      width: 100%; }
      .main-navigation .menu-item a {
        padding: 20px; }
    .admin-bar .main-navigation {
      top: 32px; }
    .mobile-menu-active .main-navigation {
      left: 0; }
  .absolute .main-navigation {
    background-color: #000; }
  .sub-menu .menu-item {
    margin-left: 10px;
    width: -webkit-calc(100% - 10px);
    width: calc(100% - 10px); }
    .sub-menu .menu-item a {
      padding: 10px 20px; }
  .site-header {
    padding: 15px; }
  section.section-inspiration .section-header {
    margin-bottom: 38px; }
  .section-steps .item-wrapper .item:first-child {
    padding-right: 85px; }
  .section-steps .item-wrapper:nth-child(even) .item:first-child {
    padding-left: 85px; }
  .section-steps .item-wrapper .horline {
    width: 60px; } }

@media (min-width: 1200px) {
  .menu-toggle {
    display: none; }
    .menu-toggle.menu-toggle-alt {
      display: block; }
  .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto; }
    .menu-item-has-children:hover > .sub-menu li:hover .sub-menu {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      pointer-events: auto; }
  > .sub-menu {
    margin-left: 25px; }
  .sub-menu {
    background: #fff;
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
    min-width: 260px;
    position: absolute;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    pointer-events: none; }
    .sub-menu .menu-item {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .sub-menu a {
      padding: 15px 20px; }
  .main-navigation ul.menu .menu-item-has-children:nth-last-of-type(-n+2) .sub-menu {
    right: 0; } }

@media (max-width: 992px) {
  .section-how .item-wrapper {
    border-bottom: 1px solid #F2F2F2; }
    .section-how .item-wrapper .item {
      padding: 50px 20px; }
    .section-how .item-wrapper:nth-child(2) {
      border-right: none; }
    .section-how .item-wrapper:nth-child(3), .section-how .item-wrapper:nth-child(4) {
      border-bottom: none; }
  .section-collection .item-wrapper {
    margin-bottom: 50px; }
  section.section-inspiration .section-header {
    margin-bottom: 23px; }
  .section-newsletter .item {
    display: block;
    text-align: center; }
    .section-newsletter .item header {
      margin-bottom: 30px; }
  .block-contact {
    margin-bottom: 50px; }
  section.section-inspiration-alt .details {
    margin-left: 30px;
    margin-bottom: 45px; }
  section.section-inspiration-alt .title {
    font-size: 24px; }
  section.section-inspiration-alt .btn {
    margin-top: 20px; } }

@media (max-width: 768px) {
  .section-how .item-wrapper {
    border-bottom: 1px solid #F2F2F2;
    border-right: none;
    border-left: none; }
    .section-how .item-wrapper .item {
      padding: 50px 20px; }
    .section-how .item-wrapper:nth-child(3) {
      border-bottom: 1px solid #F2F2F2; }
  section.section-inspiration .section-header {
    margin-bottom: 9px; }
    section.section-inspiration .section-header h3.title {
      font-size: 14px; }
  .section-testimonial .item-wrapper {
    padding: 40px; }
    .section-testimonial .item-wrapper:after {
      width: 100%; }
  .section-testimonial header {
    margin: 40px 0 0 0; }
  .section-testimonial .testi-nav {
    text-align: center;
    padding-right: 0; }
  .section-client .item {
    -webkit-box-flex: 33.33333%;
    -webkit-flex: 33.33333%;
    -ms-flex: 33.33333%;
    flex: 33.33333%;
    margin-bottom: 15px; }
  .section-steps .item-wrapper {
    text-align: center; }
    .section-steps .item-wrapper .item {
      width: 100%;
      position: relative; }
      .section-steps .item-wrapper .item:first-child:after, .section-steps .item-wrapper .item:first-child:before {
        display: none; }
    .section-steps .item-wrapper .item:first-child .thumb:before {
      margin: auto;
      left: 0;
      right: 0; }
    .section-steps .item-wrapper .item:first-child {
      padding-right: 0;
      padding-bottom: 100px; }
    .section-steps .item-wrapper:nth-child(even) {
      text-align: center; }
      .section-steps .item-wrapper:nth-child(even) .item:first-child {
        padding-left: 0; }
    .section-steps .item-wrapper:nth-child(even) .horline,
    .section-steps .item-wrapper .horline {
      width: 1px;
      height: 100px;
      left: 0;
      right: 0;
      bottom: 0;
      margin-left: auto;
      margin-right: auto;
      top: unset; }
    .section-steps .item-wrapper:last-child .item {
      padding-bottom: 0; }
      .section-steps .item-wrapper:last-child .item .horline {
        display: none; }
  .section-hero header h2.title {
    font-size: 42px;
    line-height: normal; }
  .block-map {
    margin-bottom: 20px; } }

@media (max-width: 520px) {
  section .section-header h2.title {
    font-size: 24px; }
  .section-how .cta a {
    margin: 15px;
    display: block; }
  .row.col-12-block {
    display: block; }
  .section-client .item {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    margin-bottom: 15px; }
  .section-newsletter .item form input {
    width: 100%;
    text-align: center; }
  .section-newsletter .item form input[type="email"] {
    margin-bottom: 10px;
    margin-right: 0;
    display: inline-block; }
  .section-newsletter header {
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end; }
  .section-newsletter h4.title {
    text-align: left;
    line-height: 24px; }
  .section-hero header h2.title {
    font-size: 22px; }
  div.nf-field-container {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block; }
  div.field-wrap.submit-wrap {
    text-align: center; }
  .section-testimonial {
    padding: 20px; }
    .section-testimonial.testi-alt .owl-wrapper {
      padding: 30px; }
    .section-testimonial.testi-alt .testi-nav.nav-alt span.testi-next {
      margin-right: -20px; }
    .section-testimonial.testi-alt .testi-nav.nav-alt span.testi-prev {
      margin-left: -20px; }
    .section-testimonial .item-wrapper {
      padding: 20px; }
    .section-testimonial header {
      padding: 30px;
      margin: 0 -20px; }
    .section-testimonial .item.pr-40 {
      padding-right: 0; }
    .section-testimonial .quote {
      padding-left: 0;
      background-image: none; }
    .section-testimonial .section-header.bar {
      text-align: center; }
    .section-testimonial .quote-footer {
      display: block;
      margin-bottom: 30px; }
      .section-testimonial .quote-footer .quoter {
        padding-left: 0;
        border-left: none;
        margin-top: 20px; }
  .p-all-50 {
    padding: 20px; } }

@media (max-width: 420px) {
  section.section-inspiration-alt .medium .title,
  section.section-inspiration-alt .title {
    font-size: 18px; } }
.block h6 
{
  margin: 0px;
}
.block h6 {
  font-size: 12px;
  line-height: 30px;
  margin-bottom: 23px;
  letter-spacing: 0.2em; }
