*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased; }

html, body {
  height: 100%; }

.green {
  background: #6AC25C;
  color: #FFFFFF; }
  .green .btn {
    border: 2px solid #FFFFFF !important;
    color: #FFFFFF !important; }
    .green .btn:hover {
      background: #619457; }

.gray-light {
  background: #e2e2e2; }

/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *  user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

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

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

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0; }

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

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

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

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

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  -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.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td, th {
  padding: 0; }

@font-face {
  font-family: DINWebPro;
  src: url('../fonts/DINWebPro.eot');
  src: url('../fonts/DINWebPro.eot?#iefix') format('embedded-opentype'), url('../fonts/DINWebPro.woff') format('woff'), url('../fonts/DINWebPro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: DINWebPro-Medium;
  src: url('../fonts/DINWebPro-Medium.eot');
  src: url('../fonts/DINWebPro-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/DINWebPro-Medium.woff') format('woff'), url('../fonts/DINWebPro-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: DINWebPro-Bold;
  src: url('../fonts/DINWebPro-Bold.eot');
  src: url('../fonts/DINWebPro-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/DINWebPro-Bold.woff') format('woff'), url('../fonts/DINWebPro-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal; }

html {
  font-size: 62.5%; }

body {
  background: #FFFFFF;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #666666;
  font-family: DINWebPro, 'Helvetica', Arial, sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: DINWebPro, 'Helvetica', Arial, sans-serif;
  line-height: 1.3;
  margin: 0 0 10px 0;
  font-weight: 400; }

h1 {
  font-size: 36px;
  font-size: 3.6rem; }

h2 {
  font-size: 30px;
  font-size: 3rem; }

h3 {
  font-size: 24px;
  font-size: 2.4rem; }

h4 {
  font-size: 22px;
  font-size: 2.2rem; }

h5 {
  font-size: 18px;
  font-size: 1.8rem; }

h6 {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif; }

a {
  color: #FFFFFF;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }
  a:visited {
    color: #FFFFFF; }

.title {
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  color: #B1B4B1;
  position: relative; }
  .title:after {
    position: absolute;
    font-size: 24px;
    font-size: 2.4rem;
    font-family: FontAwesome;
    content: "\f107";
    right: 0;
    bottom: -30px;
    left: 0;
    text-align: center;
    width: 100%;
    color: #4190d8; }

.title + h1 {
  text-align: center;
  color: #5B6770;
  margin: 30px auto 20px; }

/*!
 *  Font Awesome 4.0.3 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.0.3');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -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: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: 0.3em; }
.fa.pull-right {
  margin-left: 0.3em; }

.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(359deg); } }

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(359deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

.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: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

.fa-envelope-o:before {
  content: "\f003"; }

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

.fa-user:before {
  content: "\f007"; }

.fa-film:before {
  content: "\f008"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-check:before {
  content: "\f00c"; }

.fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before, .fa-cog:before {
  content: "\f013"; }

.fa-trash-o:before {
  content: "\f014"; }

.fa-home:before {
  content: "\f015"; }

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-road:before {
  content: "\f018"; }

.fa-download:before {
  content: "\f019"; }

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e"; }

.fa-refresh:before {
  content: "\f021"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-list:before {
  content: "\f03a"; }

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-picture-o:before {
  content: "\f03e"; }

.fa-pencil:before {
  content: "\f040"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

.fa-check-square-o:before {
  content: "\f046"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before, .fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before, .fa-cogs:before {
  content: "\f085"; }

.fa-comments:before {
  content: "\f086"; }

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-github:before {
  content: "\f09b"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-hand-o-right:before {
  content: "\f0a4"; }

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-group:before, .fa-users:before {
  content: "\f0c0"; }

.fa-chain:before, .fa-link:before {
  content: "\f0c1"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4"; }

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc"; }

.fa-sort-down:before, .fa-sort-asc:before {
  content: "\f0dd"; }

.fa-sort-up:before, .fa-sort-desc:before {
  content: "\f0de"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2"; }

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3"; }

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

.fa-comments-o:before {
  content: "\f0e6"; }

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea"; }

.fa-lightbulb-o:before {
  content: "\f0eb"; }

.fa-exchange:before {
  content: "\f0ec"; }

.fa-cloud-download:before {
  content: "\f0ed"; }

.fa-cloud-upload:before {
  content: "\f0ee"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-bell-o:before {
  content: "\f0a2"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

.fa-file-text-o:before {
  content: "\f0f6"; }

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b"; }

.fa-circle-o:before {
  content: "\f10c"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-circle:before {
  content: "\f111"; }

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-keyboard-o:before {
  content: "\f11c"; }

.fa-flag-o:before {
  content: "\f11d"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-code:before {
  content: "\f121"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-mail-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-crop:before {
  content: "\f125"; }

.fa-code-fork:before {
  content: "\f126"; }

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-shield:before {
  content: "\f132"; }

.fa-calendar-o:before {
  content: "\f133"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-ticket:before {
  content: "\f145"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-minus-square-o:before {
  content: "\f147"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-pencil-square:before {
  content: "\f14b"; }

.fa-external-link-square:before {
  content: "\f14c"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150"; }

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151"; }

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152"; }

.fa-euro:before, .fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before, .fa-usd:before {
  content: "\f155"; }

.fa-rupee:before, .fa-inr:before {
  content: "\f156"; }

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158"; }

.fa-won:before, .fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

.fa-sort-alpha-desc:before {
  content: "\f15e"; }

.fa-sort-amount-asc:before {
  content: "\f160"; }

.fa-sort-amount-desc:before {
  content: "\f161"; }

.fa-sort-numeric-asc:before {
  content: "\f162"; }

.fa-sort-numeric-desc:before {
  content: "\f163"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

.fa-gittip:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

@media only screen and (min-width: 320px) and (max-width: 400px) {
  h1 {
    font-size: 24px;
    font-size: 2.4rem; }
  h2 {
    font-size: 22px;
    font-size: 2.2rem; }
  h3 {
    font-size: 20px;
    font-size: 2rem; }
  h4 {
    font-size: 18px;
    font-size: 1.8rem; }
  h5 {
    font-size: 16px;
    font-size: 1.6rem; }
  h6 {
    font-size: 14px;
    font-size: 1.4rem; } }

/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
.header .perc-navbar, .select-container, .half, .result, .article, .sidebar, .half, .result, .result .percentage, .result p, .article, .sidebar, .result, .result .percentage, .result p, .article, .sidebar, .touts h6, .touts .tout, .touts .tout .image, .touts .tout section, .touts .service-tout, .touts-without-copy .row .perc-widget, .touts-three .tout, .touts .tout, .touts .tout h6, .touts .tout .image, .touts .tout section, .touts .service-tout, .touts .service-tout h6, .touts-without-copy .row .perc-widget, .touts-three .tout, .touts-without-copy .row .perc-widget, .touts-three .tout, .touts-without-copy .row .perc-widget, .touts-three .tout, .touts-without-copy .row .perc-widget, .touts-three .tout, .footer p, .footer address, .footer-solutions, .footer-regions, .footer-contact, .footer-contact, .subfooter, .subfooter p, .subfooter address, .nav-mobile-footer, .box.executives .person, .box.rep .image, .box.rep .details, .box.services-services .third, .box.services-services .half .image, .box.services-services .half .details, .box.services-omni-channel section, .box.gifting .image, .box.gifting .details, .box.benefits section, .box.executives .person, .box.rep .image, .box.rep .details, .box.services-services .third, .box.services-services .half .image, .box.services-services .half .details, .box.gifting .image, .box.gifting .details, .box.statistic .stat .percentage, .box.statistic .stat .details, .box.benefits section, .box.services-omni-channel section, .box.rep .image, .box.rep .details, .box.services-services .third, .box.services-services .half, .box.services-services .third .image, .box.services-services .half .image, .box.services-services .third .details, .box.services-services .half .details, .box.executives .person, .box.statistic .stat .percentage, .box.statistic .stat .details, .box.executives .person, fieldset, fieldset, #slider .slide .slide-content, #slider .slide .slide-content, .tabs .perc-widget, .tab-content .description, .tab-content .rec-solutions, .tab-content .rec-services, .tabs .perc-widget, .tab-content .description, .tab-content .rec-solutions, .tab-content .rec-services, .container {
  *zoom: 1; }
  .header .perc-navbar:before, .select-container:before, .half:before, .result:before, .article:before, .sidebar:before, .half:before, .result:before, .result .percentage:before, .result p:before, .article:before, .sidebar:before, .result:before, .result .percentage:before, .result p:before, .article:before, .sidebar:before, .touts h6:before, .touts .tout:before, .touts .tout .image:before, .touts .tout section:before, .touts .service-tout:before, .touts-without-copy .row .perc-widget:before, .touts-three .tout:before, .touts .tout:before, .touts .tout h6:before, .touts .tout .image:before, .touts .tout section:before, .touts .service-tout:before, .touts .service-tout h6:before, .touts-without-copy .row .perc-widget:before, .touts-three .tout:before, .touts-without-copy .row .perc-widget:before, .touts-three .tout:before, .touts-without-copy .row .perc-widget:before, .touts-three .tout:before, .touts-without-copy .row .perc-widget:before, .touts-three .tout:before, .footer p:before, .footer address:before, .footer-solutions:before, .footer-regions:before, .footer-contact:before, .footer-contact:before, .subfooter:before, .subfooter p:before, .subfooter address:before, .nav-mobile-footer:before, .box.executives .person:before, .box.rep .image:before, .box.rep .details:before, .box.services-services .third:before, .box.services-services .half .image:before, .box.services-services .half .details:before, .box.services-omni-channel section:before, .box.gifting .image:before, .box.gifting .details:before, .box.benefits section:before, .box.executives .person:before, .box.rep .image:before, .box.rep .details:before, .box.services-services .third:before, .box.services-services .half .image:before, .box.services-services .half .details:before, .box.gifting .image:before, .box.gifting .details:before, .box.statistic .stat .percentage:before, .box.statistic .stat .details:before, .box.benefits section:before, .box.services-omni-channel section:before, .box.rep .image:before, .box.rep .details:before, .box.services-services .third:before, .box.services-services .half:before, .box.services-services .third .image:before, .box.services-services .half .image:before, .box.services-services .third .details:before, .box.services-services .half .details:before, .box.executives .person:before, .box.statistic .stat .percentage:before, .box.statistic .stat .details:before, .box.executives .person:before, fieldset:before, fieldset:before, #slider .slide .slide-content:before, #slider .slide .slide-content:before, .tabs .perc-widget:before, .tab-content .description:before, .tab-content .rec-solutions:before, .tab-content .rec-services:before, .tabs .perc-widget:before, .tab-content .description:before, .tab-content .rec-solutions:before, .tab-content .rec-services:before, .container:before, .header .perc-navbar:after, .select-container:after, .half:after, .result:after, .article:after, .sidebar:after, .half:after, .result:after, .result .percentage:after, .result p:after, .article:after, .sidebar:after, .result:after, .result .percentage:after, .result p:after, .article:after, .sidebar:after, .touts h6:after, .touts .tout:after, .touts .tout .image:after, .touts .tout section:after, .touts .service-tout:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .touts .tout:after, .touts .tout h6:after, .touts .tout .image:after, .touts .tout section:after, .touts .service-tout:after, .touts .service-tout h6:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .footer p:after, .footer address:after, .footer-solutions:after, .footer-regions:after, .footer-contact:after, .footer-contact:after, .subfooter:after, .subfooter p:after, .subfooter address:after, .nav-mobile-footer:after, .box.executives .person:after, .box.rep .image:after, .box.rep .details:after, .box.services-services .third:after, .box.services-services .half .image:after, .box.services-services .half .details:after, .box.services-omni-channel section:after, .box.gifting .image:after, .box.gifting .details:after, .box.benefits section:after, .box.executives .person:after, .box.rep .image:after, .box.rep .details:after, .box.services-services .third:after, .box.services-services .half .image:after, .box.services-services .half .details:after, .box.gifting .image:after, .box.gifting .details:after, .box.statistic .stat .percentage:after, .box.statistic .stat .details:after, .box.benefits section:after, .box.services-omni-channel section:after, .box.rep .image:after, .box.rep .details:after, .box.services-services .third:after, .box.services-services .half:after, .box.services-services .third .image:after, .box.services-services .half .image:after, .box.services-services .third .details:after, .box.services-services .half .details:after, .box.executives .person:after, .box.statistic .stat .percentage:after, .box.statistic .stat .details:after, .box.executives .person:after, fieldset:after, fieldset:after, #slider .slide .slide-content:after, #slider .slide .slide-content:after, .tabs .perc-widget:after, .tab-content .description:after, .tab-content .rec-solutions:after, .tab-content .rec-services:after, .tabs .perc-widget:after, .tab-content .description:after, .tab-content .rec-solutions:after, .tab-content .rec-services:after, .container:after {
    content: '';
    display: table; }
  .header .perc-navbar:after, .select-container:after, .half:after, .result:after, .article:after, .sidebar:after, .half:after, .result:after, .result .percentage:after, .result p:after, .article:after, .sidebar:after, .result:after, .result .percentage:after, .result p:after, .article:after, .sidebar:after, .touts h6:after, .touts .tout:after, .touts .tout .image:after, .touts .tout section:after, .touts .service-tout:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .touts .tout:after, .touts .tout h6:after, .touts .tout .image:after, .touts .tout section:after, .touts .service-tout:after, .touts .service-tout h6:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .touts-without-copy .row .perc-widget:after, .touts-three .tout:after, .footer p:after, .footer address:after, .footer-solutions:after, .footer-regions:after, .footer-contact:after, .footer-contact:after, .subfooter:after, .subfooter p:after, .subfooter address:after, .nav-mobile-footer:after, .box.executives .person:after, .box.rep .image:after, .box.rep .details:after, .box.services-services .third:after, .box.services-services .half .image:after, .box.services-services .half .details:after, .box.services-omni-channel section:after, .box.gifting .image:after, .box.gifting .details:after, .box.benefits section:after, .box.executives .person:after, .box.rep .image:after, .box.rep .details:after, .box.services-services .third:after, .box.services-services .half .image:after, .box.services-services .half .details:after, .box.gifting .image:after, .box.gifting .details:after, .box.statistic .stat .percentage:after, .box.statistic .stat .details:after, .box.benefits section:after, .box.services-omni-channel section:after, .box.rep .image:after, .box.rep .details:after, .box.services-services .third:after, .box.services-services .half:after, .box.services-services .third .image:after, .box.services-services .half .image:after, .box.services-services .third .details:after, .box.services-services .half .details:after, .box.executives .person:after, .box.statistic .stat .percentage:after, .box.statistic .stat .details:after, .box.executives .person:after, fieldset:after, fieldset:after, #slider .slide .slide-content:after, #slider .slide .slide-content:after, .tabs .perc-widget:after, .tab-content .description:after, .tab-content .rec-solutions:after, .tab-content .rec-services:after, .tabs .perc-widget:after, .tab-content .description:after, .tab-content .rec-solutions:after, .tab-content .rec-services:after, .container:after {
    clear: both; }

.header {
  background: #4190d8;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000; }
  .header .logo {
    float: left; }
    .header .logo img {
      float: left;
      display: block;
      padding: 16px 0;
      width: auto;
      height: auto; }

@media only screen and (min-width: 320px) and (max-width: 799px) {
  .header .logo img {
    width: 70px;
    height: auto; } }

.header .perc-navbar {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 58.8%;
  margin-left: 0%;
  margin-right: 3%;
  width: 55.8%;
  margin-right: 3% !important;
  float: right; }
  .header .perc-navbar:last-child {
    margin-right: 0%; }
  .header .perc-navbar ul.sf-menu {
    float: right;
    list-style: none; }
    .header .perc-navbar ul.sf-menu li {
      display: inline-block;
      float: left;
      padding: 0; }
      .header .perc-navbar ul.sf-menu li.sfHover, .header .perc-navbar ul.sf-menu li:hover {
        background: #2e74b5; }
        .header .perc-navbar ul.sf-menu li.sfHover > a, .header .perc-navbar ul.sf-menu li:hover > a {
          position: relative; }
          .header .perc-navbar ul.sf-menu li.sfHover > a:after, .header .perc-navbar ul.sf-menu li:hover > a:after {
            content: "";
            position: absolute;
            bottom: 20px;
            left: 50%;
            width: 70%;
            margin-left: -35%;
            border-bottom: 2px solid #FFFFFF; }
      .header .perc-navbar ul.sf-menu li.current {
        background: #2969a1; }
      .header .perc-navbar ul.sf-menu li.ghosted {
        margin: 13px auto 15px;
        padding: 0;
        margin-left: 15px; }
        .header .perc-navbar ul.sf-menu li.ghosted > a {
          border: 2px solid #FFFFFF;
          padding: 17px 19px 11px; }
          .header .perc-navbar ul.sf-menu li.ghosted > a:after {
            content: "";
            position: absolute;
            bottom: -13px;
            left: 50%;
            width: 70%;
            margin-left: -35%;
            border-bottom: 0px solid #FFFFFF; }
          .header .perc-navbar ul.sf-menu li.ghosted > a:hover {
            background: #3e78a8;
            text-decoration: none; }
      .header .perc-navbar ul.sf-menu li a {
        font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
        color: #FFFFFF;
        text-decoration: none;
        padding: 30px 21px;
        display: block;
        float: left;
        margin: 0; }
      .header .perc-navbar ul.sf-menu li ul {
        background: #2e74b5;
        position: absolute;
        top: 100%;
        padding: 0;
        margin: 0; }
        .header .perc-navbar ul.sf-menu li ul li {
          padding: 0;
          margin: 0;
          display: block;
          float: none; }
          .header .perc-navbar ul.sf-menu li ul li a {
            font-family: DINWebPro, 'Helvetica', Arial, sans-serif;
            padding: 10px;
            display: block;
            width: 100%; }
            .header .perc-navbar ul.sf-menu li ul li a:hover {
              background: #2969a1; }
              .header .perc-navbar ul.sf-menu li ul li a:hover:after {
                content: "";
                position: absolute;
                bottom: -13px;
                left: 50%;
                width: 70%;
                margin-left: -35%;
                border-bottom: 0px solid #FFFFFF; }
  .header .perc-navbar .subMenu {
    display: none;
    position: absolute;
    background: #2e74b5;
    top: 100%;
    left: 0;
    right: 0; }
    .header .perc-navbar .subMenu ul {
      float: left;
      text-align: center;
      padding: 0;
      margin: 0; }
      .header .perc-navbar .subMenu ul li {
        padding: 15px 0;
        margin: 0 25px 0 0; }
        .header .perc-navbar .subMenu ul li a {
          font-family: DINWebPro, 'Helvetica', Arial, sans-serif;
          padding: 0;
          font-size: 15px;
          font-size: 1.5rem; }

.select-container {
  float: left;
  display: inline;
  clear: none;
  padding-left: 0;
  padding-right: 0;
  text-align: inherit;
  width: 13.33333%;
  margin-left: 0%;
  margin-right: 0%;
  float: right;
  width: 174px;
  margin: 13px auto; }
  .select-container .select {
    padding-bottom: 13px; }

.nav-mobile {
  display: none;
  position: relative; }

.nav-mobile .perc-navbar {
  display: block !important;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  -webkit-transform: translate(400px, 0px);
  -ms-transform: translate(400px, 0px);
  transform: translate(400px, 0px);
  position: absolute;
  background: #FFFFFF;
  margin: 0 -20px;
  width: 320px;
  top: 55px;
  right: -35px;
  z-index: 20; }
  .nav-mobile .perc-navbar ul li {
    margin: 0;
    padding: 0; }
    .nav-mobile .perc-navbar ul li a {
      color: #666666;
      padding: 10px 0 10px 10px;
      display: block; }
      .nav-mobile .perc-navbar ul li a:after {
        content: "\f105";
        font-family: FontAwesome;
        font-weight: 600;
        position: relative;
        float: right;
        padding: 0 20px; }
      .nav-mobile .perc-navbar ul li a:hover {
        text-decoration: none;
        background: #f9f9f9; }
    .nav-mobile .perc-navbar ul li ul {
      display: none; }
    .nav-mobile .perc-navbar ul li ul li a {
      padding: 10px 0 10px 30px; }
  .nav-mobile .perc-navbar ul li + li {
    border-top: 1px solid #f2f2f2; }
  .nav-mobile .perc-navbar.open {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px); }

@media only screen and (min-width: 320px) and (max-width: 799px) {
  body {
    overflow-x: hidden; }
  .header .perc-navbar {
    display: none; }
  .header .select-container {
    display: none; }
  .nav-mobile {
    display: block; }
    .nav-mobile .select {
      padding: 17px 10px;
      float: right; }
      .nav-mobile .select i {
        padding: 0; }
      .nav-mobile .select:after {
        content: "";
        position: absolute;
        top: 0px;
        right: 0;
        width: 1px;
        height: 45px;
        margin: 7px 0 5px;
        background: #3e78a8; }
      .nav-mobile .select .select-options {
        width: 100%;
        left: 0;
        right: 0;
        border: 0;
        margin-right: 0;
        margin-left: 0; }
    .nav-mobile .hamburger {
      font-size: 16px;
      font-size: 1.6rem;
      text-transform: uppercase;
      padding: 10px 13px 8px;
      float: right;
      margin-top: 9px;
      margin-left: 8px; } }

.main {
  min-height: 600px; }

.anchor {
  padding-top: 80px;
  margin-top: -80px; }

.half {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%; }
  .half:last-child {
    margin-right: 0%; }

.result {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%; }
  .result:last-child {
    margin-right: 0%; }
  .result .percentage {
    position: relative;
    font-size: 55px;
    font-size: 5.5rem;
    font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
    border-bottom: 2px solid #4190d8;
    line-height: 1; }
    .result .percentage span {
      font-size: 20px;
      font-size: 2rem; }
      .result .percentage span.per {
        position: absolute;
        top: 5px; }

.article {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 74.25%;
  margin-left: 0%;
  margin-right: 3%;
  margin-top: 110px; }
  .article:last-child {
    margin-right: 0%; }
  .article a {
    color: #4190d8; }
    .article a:hover {
      color: #666666; }

.sidebar {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 22.75%;
  margin-left: 0%;
  margin-right: 3%;
  margin-top: 110px;
  margin-bottom: 30px;
  background: #4190d8;
  padding: 10px;
  margin-right: 0; }
  .sidebar:last-child {
    margin-right: 0%; }

@media only screen and (min-width: 320px) and (max-width: 799px) {
  .main {
    min-height: 0; } }

@media only screen and (min-width: 320px) and (max-width: 500px) {
  .half {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    .half:last-child {
      margin-right: 0%; }
  .result {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    border-bottom: 2px solid #4190d8;
    margin-bottom: 20px;
    padding-bottom: 15px; }
    .result:last-child {
      margin-right: 0%; }
    .result .percentage {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%;
      font-size: 45px;
      font-size: 4.5rem;
      border-bottom: 0; }
      .result .percentage:last-child {
        margin-right: 0%; }
      .result .percentage span {
        font-size: 17px;
        font-size: 1.7rem; }
        .result .percentage span.per {
          top: 0px; }
    .result p {
      margin: 0;
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 65.66667%;
      margin-left: 0%;
      margin-right: 3%; }
      .result p:last-child {
        margin-right: 0%; }
  .article {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    margin-top: 50px; }
    .article:last-child {
      margin-right: 0%; }
  .sidebar {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    margin-top: 30px; }
    .sidebar:last-child {
      margin-right: 0%; } }

@media only screen and (min-width: 501px) and (max-width: 700px) {
  .result {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    border-bottom: 2px solid #4190d8;
    margin-bottom: 20px;
    padding-bottom: 15px; }
    .result:last-child {
      margin-right: 0%; }
    .result .percentage {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%;
      font-size: 45px;
      font-size: 4.5rem;
      border-bottom: 0; }
      .result .percentage:last-child {
        margin-right: 0%; }
      .result .percentage span {
        font-size: 17px;
        font-size: 1.7rem; }
        .result .percentage span.per {
          top: 0px; }
    .result p {
      margin: 0;
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 65.66667%;
      margin-left: 0%;
      margin-right: 3%; }
      .result p:last-child {
        margin-right: 0%; }
  .article {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    margin-top: 60px; }
    .article:last-child {
      margin-right: 0%; }
  .sidebar {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    margin-top: 30px; }
    .sidebar:last-child {
      margin-right: 0%; } }

.touts h6 {
  padding-bottom: 10px;
  border-bottom: 2px solid #666666;
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 57.08333%;
  margin-left: 42.91667%;
  margin-right: 3%; }
  .touts h6:last-child {
    margin-right: 0%; }
.touts .tout {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  margin-top: 35px; }
  .touts .tout:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .touts .tout .image {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 35.625%;
    margin-left: 0%;
    margin-right: 3%;
    margin-top: -30px;
    padding-left: 40px; }
    .touts .tout .image:last-child {
      margin-right: 0%; }
    .touts .tout .image img {
      float: right; }
  .touts .tout section {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 57.08333%;
    margin-left: 4.29167%;
    margin-right: 3%; }
    .touts .tout section:last-child {
      margin-right: 0%; }
  .touts .tout p {
    margin: 0;
    padding: 0; }
  .touts .tout .callout {
    margin-top: 20px; }
.touts .service-tout {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
  margin-top: 35px; }
  .touts .service-tout:nth-child(3n) {
    margin-right: 0%;
    float: right; }
  .touts .service-tout img {
    margin: 0 auto;
    display: block; }
  .touts .service-tout h6 {
    width: 100%;
    margin: 0;
    border-top: 2px solid #666666;
    border-bottom: 0;
    text-align: center;
    padding-top: 10px;
    margin-top: 10px; }

.touts-without-copy {
  position: relative;
  padding-top: 20px; }
  .touts-without-copy .row .perc-widget {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%; }
    .touts-without-copy .row .perc-widget:last-child {
      margin-right: 0%; }
  .touts-without-copy .tout {
    text-align: center;
    position: relative; }
    .touts-without-copy .tout.first {
      margin-top: 46px; }
    .touts-without-copy .tout.third {
      margin-top: 80px; }
    .touts-without-copy .tout.fourth {
      margin-top: 47px; }
    .touts-without-copy .tout .image {
      margin-bottom: 15px; }
    .touts-without-copy .tout h6 {
      border-top: 2px solid #666666;
      padding-top: 10px; }

.touts-three {
  position: relative;
  padding-top: 20px; }
  .touts-three .tout {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center;
    position: relative; }
    .touts-three .tout:last-child {
      margin-right: 0%; }
    .touts-three .tout.second {
      margin-top: 80px; }
    .touts-three .tout.third {
      margin-top: 47px; }
    .touts-three .tout .image {
      margin-bottom: 15px; }
    .touts-three .tout h6 {
      border-top: 2px solid #666666;
      padding-top: 10px; }

@media only screen and (min-width: 320px) and (max-width: 600px) {
  .touts .tout {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    .touts .tout:last-child {
      margin-right: 0%; }
    .touts .tout h6 {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      .touts .tout h6:last-child {
        margin-right: 0%; }
    .touts .tout .image {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 35.625%;
      margin-left: 0%;
      margin-right: 3%;
      margin-top: 0; }
      .touts .tout .image:last-child {
        margin-right: 0%; }
      .touts .tout .image img {
        float: none; }
    .touts .tout section {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 61.375%;
      margin-left: 0%;
      margin-right: 3%; }
      .touts .tout section:last-child {
        margin-right: 0%; }
  .touts .service-tout {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    border-bottom: 2px solid #666666; }
    .touts .service-tout:last-child {
      margin-right: 0%; }
    .touts .service-tout img {
      float: left; }
    .touts .service-tout h6 {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 65.66667%;
      margin-left: 0%;
      margin-right: 3%;
      text-align: left;
      border-top: 0;
      padding-left: 20px; }
      .touts .service-tout h6:last-child {
        margin-right: 0%; } }

@media only screen and (min-width: 320px) and (max-width: 399px) {
  .touts-without-copy .row .perc-widget {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .touts-without-copy .row .perc-widget:nth-child(2n) {
      margin-right: 0%;
      float: right; }
  .touts-without-copy .tout {
    text-align: center; }
    .touts-without-copy .tout.first {
      margin-top: 55px; }
    .touts-without-copy .tout.third {
      margin-top: 80px; }
    .touts-without-copy .tout.fourth {
      margin-top: 32px; }
  .touts-three {
    position: relative;
    padding-top: 20px; }
    .touts-three .tout {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%;
      text-align: center;
      position: relative; }
      .touts-three .tout:last-child {
        margin-right: 0%; }
      .touts-three .tout.second {
        margin-top: 80px; }
      .touts-three .tout.third {
        margin-top: 47px; }
      .touts-three .tout .image {
        margin-bottom: 15px; }
      .touts-three .tout h6 {
        border-top: 2px solid #666666;
        padding-top: 10px; } }

@media only screen and (min-width: 400px) and (max-width: 500px) {
  .touts-without-copy .row .perc-widget {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .touts-without-copy .row .perc-widget:nth-child(2n) {
      margin-right: 0%;
      float: right; }
  .touts-without-copy .tout {
    text-align: center; }
    .touts-without-copy .tout.first {
      margin-top: 55px; }
    .touts-without-copy .tout.third {
      margin-top: 99px; }
    .touts-without-copy .tout.fourth {
      margin-top: 32px; }
  .touts-three {
    position: relative;
    padding-top: 20px; }
    .touts-three .tout {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%;
      text-align: center;
      position: relative; }
      .touts-three .tout:last-child {
        margin-right: 0%; }
      .touts-three .tout.second {
        margin-top: 77px; }
      .touts-three .tout.third {
        margin-top: 29px; }
      .touts-three .tout .image {
        margin-bottom: 15px; }
      .touts-three .tout h6 {
        border-top: 2px solid #666666;
        padding-top: 10px; } }

@media only screen and (min-width: 500px) and (max-width: 600px) {
  .touts-without-copy .row .perc-widget {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .touts-without-copy .row .perc-widget:nth-child(2n) {
      margin-right: 0%;
      float: right; }
  .touts-without-copy .tout {
    text-align: center; }
    .touts-without-copy .tout.first {
      margin-top: 55px; }
    .touts-without-copy .tout.third {
      margin-top: 80px; }
    .touts-without-copy .tout.fourth {
      margin-top: 32px; }
  .touts-three {
    position: relative;
    padding-top: 20px; }
    .touts-three .tout {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%;
      text-align: center;
      position: relative; }
      .touts-three .tout:last-child {
        margin-right: 0%; }
      .touts-three .tout.second {
        margin-top: 77px; }
      .touts-three .tout.third {
        margin-top: 29px; }
      .touts-three .tout .image {
        margin-bottom: 15px; }
      .touts-three .tout h6 {
        border-top: 2px solid #666666;
        padding-top: 10px; } }

@media only screen and (min-width: 601px) and (max-width: 849px) {
  .touts-without-copy .row .perc-widget {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%; }
    .touts-without-copy .row .perc-widget:last-child {
      margin-right: 0%; }
  .touts-without-copy .tout {
    text-align: center; }
    .touts-without-copy .tout.first {
      margin-top: 55px; }
    .touts-without-copy .tout.third {
      margin-top: 77px; }
    .touts-without-copy .tout.fourth {
      margin-top: 29px; }
  .touts-three {
    position: relative;
    padding-top: 20px; }
    .touts-three .tout {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%;
      text-align: center;
      position: relative; }
      .touts-three .tout:last-child {
        margin-right: 0%; }
      .touts-three .tout.second {
        margin-top: 77px; }
      .touts-three .tout.third {
        margin-top: 29px; }
      .touts-three .tout .image {
        margin-bottom: 15px; }
      .touts-three .tout h6 {
        border-top: 2px solid #666666;
        padding-top: 10px; } }

@media only screen and (min-width: 850px) and (max-width: 959px) {
  .touts .tout {
    padding-left: 60px; } }

@media only screen and (min-width: 960px) and (max-width: 1080px) {
  .touts .tout {
    padding-left: 20px; } }

#backToTop {
  display: none; }

.footer {
  background: #4190d8;
  color: #FFFFFF;
  padding: 35px 0;
  z-index: 3;
  position: relative; }
  .footer p, .footer address {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    float: right;
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 0;
    margin-right: 0;
    font-style: normal;
    color: #C4D8EB;
    line-height: 1.5; }
    .footer p:last-child, .footer address:last-child {
      margin-right: 0%; }
  .footer address {
    float: right; }
    .footer address span {
      display: none; }
  .footer a {
    font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif; }
  .footer .copyright {
    float: left; }

.subfooter {
  clear: both;
  *zoom: 1;
  padding: 40px 0 0;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif; }
  .subfooter:before, .subfooter:after {
    content: '';
    display: table; }
  .subfooter:after {
    clear: both; }

.triple-footer {
  clear: both;
  *zoom: 1;
  padding: 15px 0 0; }
  .triple-footer:before, .triple-footer:after {
    content: '';
    display: table; }
  .triple-footer:after {
    clear: both; }
  .triple-footer a {
    font-size: 12px;
    font-size: 1.2rem;
    float: left;
    margin-right: 10px;
    color: #C4D8EB; }

.footer-solutions h5, .footer-regions h5, .footer-contact h5 {
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  color: #C4D8EB;
  margin: 0 0 8px 0; }
.footer-solutions ul + h5, .footer-regions ul + h5, .footer-contact ul + h5 {
  margin: 20px 0 8px 0; }

.footer-solutions, .footer-regions {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 22.75%;
  margin-left: 0%;
  margin-right: 3%; }
  .footer-solutions:last-child, .footer-regions:last-child {
    margin-right: 0%; }

.footer-contact {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  margin-right: 0; }
  .footer-contact:last-child {
    margin-right: 0%; }
  .footer-contact input[type=text] {
    margin-bottom: 10px; }
  .footer-contact input[type=submit] {
    float: right;
    margin-top: 15px; }
  .footer-contact textarea {
    height: 184px !important; }

.footer-solutions .perc-widget + .perc-widget {
  margin-top: 80px; }

.nav-mobile-footer {
  display: none; }

@media only screen and (min-width: 320px) and (max-width: 600px) {
  #backToTop {
    display: block; }
  .footer-contact {
    text-align: left;
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    .footer-contact:last-child {
      margin-right: 0%; }
    .footer-contact .btn {
      width: 100%; }
  .footer-solutions, .footer-regions {
    display: none; }
  .subfooter {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 61.375%;
    margin-left: 0%;
    margin-right: 3%; }
    .subfooter:last-child {
      margin-right: 0%; }
    .subfooter p, .subfooter address {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      .subfooter p:last-child, .subfooter address:last-child {
        margin-right: 0%; }
      .subfooter p span, .subfooter address span {
        display: inline; }
      .subfooter p.phone, .subfooter address.phone {
        display: none; }
    .subfooter .copyright {
      padding: 20px 0 0; }
  .nav-mobile-footer {
    padding: 40px 0 0;
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 35.625%;
    margin-left: 0%;
    margin-right: 3%; }
    .nav-mobile-footer:last-child {
      margin-right: 0%; }
    .nav-mobile-footer .social {
      padding-top: 20px; }
      .nav-mobile-footer .social li {
        margin: 0; } }

.hero {
  height: 400px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center top;
  text-align: center;
  text-shadow: -1px 1px 1px #666666;
  color: #FFFFFF;
  margin-top: 79px; }
  .hero h1 {
    font-family: DINWebPro-Medium, 'Helvetica', Arial, sans-serif;
    font-size: 46px;
    font-size: 4.6rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 80px; }
  .hero p {
    font-size: 24px;
    font-size: 2.4rem;
    margin: 0;
    padding: 0;
    max-width: 800px;
    margin: 0 auto; }

@media only screen and (min-width: 320px) and (max-width: 400px) {
  .hero {
    height: auto;
    padding: 30px 10px; }
    .hero h1 {
      font-size: 24px;
      font-size: 2.4rem;
      padding-top: 0px; }
    .hero p {
      font-size: 16px;
      font-size: 1.6rem; } }

@media only screen and (min-width: 401px) and (max-width: 819px) {
  .hero {
    height: 300px;
    padding: 30px 10px; }
    .hero h1 {
      font-size: 36px;
      font-size: 3.6rem;
      padding-top: 0px; }
    .hero p {
      font-size: 20px;
      font-size: 2rem; } }

@media only screen and (min-width: 820px) and (max-width: 960px) {
  .hero {
    padding: 30px 10px; } }

@media only screen and (min-width: 320px) and (max-width: 799px) {
  .hero {
    margin-top: 60px; } }

.box {
  padding: 35px 0; }
  .box h1 {
    max-width: 900px; }
  .box.homepage-services {
    text-align: center; }
    .box.homepage-services .btn {
      margin-top: 30px;
      background: #4190d8; }
      .box.homepage-services .btn:hover {
        background: #3e78a8; }
  .box.who-we-serve {
    position: relative;
    padding-bottom: 0;
    *zoom: 1; }
    .box.who-we-serve:before, .box.who-we-serve:after {
      content: '';
      display: table; }
    .box.who-we-serve:after {
      clear: both; }
    .box.who-we-serve .title, .box.who-we-serve h1, .box.who-we-serve h6, .box.who-we-serve i {
      color: #FFFFFF; }
  .box.executives .person {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
	min-height: 300px;
    margin-top: 35px;
    text-align: center; }
.spacer_left {
    float: left;
    display: inline;
    clear: none;
    padding-left: 0;
    padding-right: 0;
    width: 11.375%;
    margin-left: 0%;
    margin-right: 3%;
    margin-top: 35px; }
.box.executives .person:not(.person_row_2):nth-child(4n) {
      margin-right: 0%;
      float: right; }
.box.executives .person img {
      background: #e2e2e2;
      border-radius: 50%;
      width: 100%;
      max-width: 75%; }
  .box.executives .person h3 {
      color: #4190d8;
      font-size: 20px;
      font-size: 2rem; }
  .box.where-we-serve #map {
    width: 100% !important; }
  .box.where-we-serve table {
    display: none; }
  .box.rep .title {
    margin-bottom: 40px; }
  .box.rep .image {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 25%;
    margin-left: 25%;
    margin-right: 0%;
    border-right: 2px solid #666666; }
    .box.rep .image:last-child {
      margin-right: 0%; }
    .box.rep .image img {
      float: right;
      margin-right: 20px; }
  .box.rep .details {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    padding-left: 20px; }
    .box.rep .details:last-child {
      margin-right: 0%; }
    .box.rep .details h4, .box.rep .details h6 {
      font-family: DINWebPro, 'Helvetica', Arial, sans-serif;
      margin: 0;
      padding: 0; }
    .box.rep .details h6 {
      color: #4190d8;
      margin-bottom: 10px;
      text-transform: uppercase; }
    .box.rep .details a {
      color: #666666; }
      .box.rep .details a:hover {
        color: #666666; }
  .box.services-services {
    text-align: center; }
    .box.services-services img {
      margin-bottom: 20px; }
    .box.services-services h6 {
      border-bottom: 2px solid #666666;
      padding-bottom: 5px;
      text-align: left; }
    .box.services-services p {
      text-align: left; }
    .box.services-services .third {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%; }
      .box.services-services .third:last-child {
        margin-right: 0%; }
    .box.services-services .half .image {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%; }
      .box.services-services .half .image:last-child {
        margin-right: 0%; }
    .box.services-services .half .details {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 65.66667%;
      margin-left: 0%;
      margin-right: 3%; }
      .box.services-services .half .details:last-child {
        margin-right: 0%; }
  .box.services-omni-channel {
    border-bottom: 1px solid #4190d8; }
    .box.services-omni-channel h1 {
      max-width: 800px; }
    .box.services-omni-channel .subhead {
      text-align: center; }
    .box.services-omni-channel section {
      margin-top: 20px;
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%;
      text-align: center; }
      .box.services-omni-channel section:last-child {
        margin-right: 0%; }
      .box.services-omni-channel section .image {
        padding-bottom: 10px;
        border-bottom: 2px solid #666666; }
      .box.services-omni-channel section .percentage {
        margin-top: 20px;
        padding-bottom: 5px;
        position: relative;
        font-size: 55px;
        font-size: 5.5rem;
        font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
        border-bottom: 2px solid #666666;
        line-height: 1; }
        .box.services-omni-channel section .percentage span {
          font-size: 20px;
          font-size: 2rem; }
          .box.services-omni-channel section .percentage span.per {
            position: absolute;
            top: 5px; }
      .box.services-omni-channel section p {
        text-align: left; }
  .box.contact-svs {
    text-align: center; }
    .box.contact-svs ul, .box.contact-svs h6 {
      text-align: left; }
  .box.gifting .image {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
    .box.gifting .image:last-child {
      margin-right: 0%; }
    .box.gifting .image img {
      float: right; }
  .box.gifting .details {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%; }
    .box.gifting .details:last-child {
      margin-right: 0%; }
  .box.statistic {
    padding: 15px 0; }
    .box.statistic .stat {
      border-left: 0;
      border-right: 0;
      padding: 15px 0 10px;
      margin: 0 auto;
      overflow: hidden;
      max-width: 650px; }
    .box.statistic .percentage {
      position: relative;
      font-size: 55px;
      font-size: 5.5rem;
      color: #4190d8;
      line-height: 1;
      float: left;
      width: 90px; }
      .box.statistic .percentage span {
        font-size: 20px;
        font-size: 2rem; }
        .box.statistic .percentage span.per {
          position: absolute;
          top: 5px; }
    .box.statistic hr {
      border: 0;
      height: 1px;
      background: #4190d8; }
    .box.statistic .details {
      float: left;
      text-transform: uppercase;
      color: #4190d8;
      max-width: 560px; }
  .box.benefits .title {
    color: #FFFFFF; }
  .box.benefits h1 {
    color: #FFFFFF;
    text-align: center; }
  .box.benefits section {
    margin-top: 20px;
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center; }
    .box.benefits section:last-child {
      margin-right: 0%; }
    .box.benefits section .image {
      padding-bottom: 10px;
      border-bottom: 2px solid #FFFFFF; }
    .box.benefits section .percentage {
      margin-top: 20px;
      padding-bottom: 5px;
      position: relative;
      font-size: 55px;
      font-size: 5.5rem;
      font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
      color: #FFFFFF;
      border-bottom: 2px solid #FFFFFF;
      line-height: 1; }
      .box.benefits section .percentage span {
        font-size: 20px;
        font-size: 2rem; }
        .box.benefits section .percentage span.per {
          position: absolute;
          top: 5px; }
    .box.benefits section p {
      text-align: left; }

.call-to-action {
  padding: 15px 30px;
  text-align: center; }
  .call-to-action h4 {
    display: inline;
    font-family: DINWebPro-Medium, 'Helvetica', Arial, sans-serif;
    padding: 12px 0 0;
    margin: 0 50px 0 0; }
  .call-to-action .btn.ghost {
    border: 2px solid #6AC25C;
    color: #6AC25C; }
    .call-to-action .btn.ghost:hover {
      background: #619457;
      color: #FFFFFF; }

@media only screen and (min-width: 320px) and (max-width: 400px) {
  .box.executives .person {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 48.5%;
    margin-left: 25.75%;
    margin-right: 3%;
    text-align: center; }
	.spacer_left {
    display: none;}
    .box.executives .person:not(.person_row_2):nth-child(2n) {
      margin-right: 3%;
      float: left; }
    .box.executives .person:last-child {
      margin-right: 0%; }
    .box.executives .person img {
      max-width: 100%; }
  .box.where-we-serve #map {
    display: none; }
  .box.where-we-serve table {
    display: table; }
  .box.rep .image {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center;
    border-right: 0; }
    .box.rep .image:last-child {
      margin-right: 0%; }
  .box.rep .details {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center;
    padding-left: 20px; }
    .box.rep .details:last-child {
      margin-right: 0%; }
  .box.services-services .third {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    .box.services-services .third:last-child {
      margin-right: 0%; }
  .box.services-services .half .image, .box.services-services .half .details {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    .box.services-services .half .image:last-child, .box.services-services .half .details:last-child {
      margin-right: 0%; }
  .box.gifting .image {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center; }
    .box.gifting .image:last-child {
      margin-right: 0%; }
    .box.gifting .image img {
      float: none; }
  .box.gifting .details {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    .box.gifting .details:last-child {
      margin-right: 0%; }
  .box.statistic .stat .percentage {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center; }
    .box.statistic .stat .percentage:last-child {
      margin-right: 0%; }
  .box.statistic .stat .details {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center; }
    .box.statistic .stat .details:last-child {
      margin-right: 0%; }
  .box.benefits section {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center; }
    .box.benefits section:last-child {
      margin-right: 0%; }
  .call-to-action h4 {
    display: none; } }

@media only screen and (min-width: 320px) and (max-width: 650px) {
  .box.services-omni-channel section {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center; }
    .box.services-omni-channel section:last-child {
      margin-right: 0%; } }

@media only screen and (min-width: 401px) and (max-width: 550px) {
  .box.rep .image {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    border-right: 0;
    text-align: center; }
    .box.rep .image:last-child {
      margin-right: 0%; }
    .box.rep .image img {
      float: none;
      margin-right: 0; }
  .box.rep .details {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center;
    padding-left: 20px; }
    .box.rep .details:last-child {
      margin-right: 0%; }
  .box.services-services .third, .box.services-services .half {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    .box.services-services .third:last-child, .box.services-services .half:last-child {
      margin-right: 0%; }
    .box.services-services .third .image, .box.services-services .half .image {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 42.0625%;
      margin-left: 0%;
      margin-right: 3%; }
      .box.services-services .third .image:last-child, .box.services-services .half .image:last-child {
        margin-right: 0%; }
    .box.services-services .third .details, .box.services-services .half .details {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 54.9375%;
      margin-left: 0%;
      margin-right: 3%; }
      .box.services-services .third .details:last-child, .box.services-services .half .details:last-child {
        margin-right: 0%; }
  .call-to-action h4 {
    display: inline-block;
    margin: 0;
    padding: 0 0 10px; } }

@media only screen and (min-width: 401px) and (max-width: 700px) {
  .box.executives .person {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center; }
	.spacer_left{display:none;}
    .box.executives .person:nth-child(4n) {
      margin-right: 3%;
      float: left; }
    .box.executives .person:nth-child(2n) {
      margin-right: 0%;
      float: right; }
	.box.executives .person:last-child {
     margin-right: 24.25%
	}
    .box.executives .person img {
      max-width: 80%; }
    .box.executives .person h3 {
      font-size: 16px;
      font-size: 1.6rem; }
  .box.where-we-serve #map {
    display: none; }
  .box.where-we-serve table {
    display: table; }
  .box.statistic .stat .percentage {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center; }
    .box.statistic .stat .percentage:last-child {
      margin-right: 0%; }
  .box.statistic .stat .details {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    max-width: none; }
    .box.statistic .stat .details:last-child {
      margin-right: 0%; }
  .call-to-action h4 {
    display: inline-block;
    padding: 0 0 10px; } }

@media only screen and (min-width: 701px) and (max-width: 960px) {
  .box.executives .person {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center; }
	.spacer_left{
	display:none;}
    .box.executives .person:nth-child(4n) {
      margin-right: 3%;
      float: left; }
    .box.executives .person:nth-child(2n) {
      margin-right: 0%;
      float: right; }
    .box.executives .person:last-child {
      margin-right: 24.25%;}
    .box.executives .person img {
      max-width: 60%; } }

@media only screen and (min-width: 701px) and (max-width: 960px) {
  .box.where-we-serve #map {
    display: block; }
  .box.where-we-serve table {
    display: none; } }

.btn {
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  background: transparent;
  text-transform: uppercase;
  line-height: 1;
  padding: 17px 19px 13px;
  outline: 0 !important;
  border: 0;
  display: inline-block;
  position: relative;
  background: #4190d8; }
  .btn.with-arrow {
    padding: 17px 39px 13px 19px; }
    .btn.with-arrow:after {
      position: absolute;
      content: "➜";
      padding: 0 10px; }
  .btn[disabled=disabled] {
    color: #FFFFFF; }
  .btn.with-plus {
    padding: 17px 39px 13px 19px; }
    .btn.with-plus:after {
      position: absolute;
      content: "\f067";
      font-family: FontAwesome;
      padding: 0 10px; }
  .btn:hover {
    background: #3e78a8;
    text-decoration: none; }

.ghost {
  border: 2px solid #FFFFFF;
  text-transform: none;
  cursor: pointer;
  background: transparent; }
  .ghost:hover {
    background: #3e78a8;
    text-decoration: none; }

.callout {
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-decoration: none;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  color: #4190d8;
  position: relative;
  padding-right: 20px;
  display: inline-block; }
  .callout:after {
    position: absolute;
    content: "➜";
    top: 0;
    right: 0;
    color: #4190d8; }
  .callout:hover {
    color: #3e78a8 !important;
    text-decoration: none; }
    .callout:hover:after {
      color: #3e78a8 !important; }
  .callout:visited {
    color: #4190d8; }

form {
  width: 100%;
  overflow: hidden; }

fieldset {
  border: 0;
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%; }
  fieldset:last-child {
    margin-right: 0%; }
  fieldset input[type=text], fieldset input[type=email], fieldset input[type=tel], fieldset input[type=password], fieldset textarea {
    padding: 14px 12px;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
    outline: 0;
    border: 2px solid #4190d8;
    color: #666666;
    border-radius: 0;
    margin-bottom: 25px; }
    fieldset input[type=text].error, fieldset input[type=email].error, fieldset input[type=tel].error, fieldset input[type=password].error, fieldset textarea.error {
      border: 2px solid red; }
    fieldset input[type=text]::-webkit-input-placeholder, fieldset input[type=text].placeholder, fieldset input[type=email]::-webkit-input-placeholder, fieldset input[type=email].placeholder, fieldset input[type=tel]::-webkit-input-placeholder, fieldset input[type=tel].placeholder, fieldset input[type=password]::-webkit-input-placeholder, fieldset input[type=password].placeholder, fieldset textarea::-webkit-input-placeholder, fieldset textarea.placeholder {
      color: #e2e2e2; }
    fieldset input[type=text]::-moz-placeholder, fieldset input[type=text].placeholder, fieldset input[type=email]::-moz-placeholder, fieldset input[type=email].placeholder, fieldset input[type=tel]::-moz-placeholder, fieldset input[type=tel].placeholder, fieldset input[type=password]::-moz-placeholder, fieldset input[type=password].placeholder, fieldset textarea::-moz-placeholder, fieldset textarea.placeholder {
      color: #e2e2e2; }
    fieldset input[type=text]:-ms-input-placeholder, fieldset input[type=text].placeholder, fieldset input[type=email]:-ms-input-placeholder, fieldset input[type=email].placeholder, fieldset input[type=tel]:-ms-input-placeholder, fieldset input[type=tel].placeholder, fieldset input[type=password]:-ms-input-placeholder, fieldset input[type=password].placeholder, fieldset textarea:-ms-input-placeholder, fieldset textarea.placeholder {
      color: #e2e2e2; }
    fieldset input[type=text]::placeholder, fieldset input[type=text].placeholder, fieldset input[type=email]::placeholder, fieldset input[type=email].placeholder, fieldset input[type=tel]::placeholder, fieldset input[type=tel].placeholder, fieldset input[type=password]::placeholder, fieldset input[type=password].placeholder, fieldset textarea::placeholder, fieldset textarea.placeholder {
      color: #e2e2e2; }
  fieldset label.error {
    display: none !important; }
  fieldset h6 {
    margin: 20px 0 10px;
    clear: left; }
    fieldset h6 + ul li {
      padding-left: 5px; }
  fieldset input.city, fieldset input.fname {
    float: left;
    width: 48%;
    margin-right: 4%; }
  fieldset input[name=state], fieldset input.lname {
    float: left;
    width: 48%; }

.footer input[type=text], .footer input[type=email], .footer input[type=password], .footer textarea {
  padding: 17px 12px;
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  outline: 0;
  border: 0;
  color: #666666;
  border-radius: 0; }

.select {
  position: relative;
  padding: 12px 0 11px;
  color: #FFFFFF;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  cursor: pointer; }
  .select i {
    font-weight: bold;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 2px 20px 0 10px; }
  .select .flag {
    margin-left: 20px; }
  .select.open {
    background: #3e78a8; }

.select-options {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: #3e78a8;
  margin-top: 45px;
  padding: 0px;
  border: 2px solid #FFFFFF;
  border-top: 0;
  margin-right: -2px;
  margin-left: -2px; }
  .select-options .flag {
    margin: 3px 5px 0 0; }
  .select-options ul {
    float: none; }
    .select-options ul li {
      padding: 0;
      display: block;
      width: 100%; }
      .select-options ul li a {
        padding: 5px 10px;
        margin: 0;
        display: block;
        width: 100%; }
        .select-options ul li a.disabled {
          color: #B2B2B2; }
        .select-options ul li a:hover {
          background: #4584ba;
          text-decoration: none; }

@media only screen and (min-width: 320px) and (max-width: 500px) {
  fieldset {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    fieldset:last-child {
      margin-right: 0%; } }

ul {
  padding: 0;
  margin: 0;
  list-style: none; }
  ul li {
    padding-bottom: 5px; }

ul.bulletted {
  padding: 0;
  margin: 10px 0 0 50px;
  list-style: disc; }
  ul.bulletted li {
    padding-bottom: 2px; }

ul.social li {
  display: inline-block;
  margin-right: 10px; }
  ul.social li a i {
    margin-right: 5px;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 5px 7px; }
    ul.social li a i.fa-facebook {
      padding: 5px 10px; }
  ul.social li a:hover i {
    background: #3e78a8; }

.menu-mobile ul li {
  margin: 0;
  padding: 0; }
  .menu-mobile ul li a {
    color: #666666;
    padding: 10px 0 10px 10px;
    display: block; }
    .menu-mobile ul li a:after {
      content: "\f105";
      font-family: FontAwesome;
      font-weight: 600;
      position: relative;
      float: right;
      padding: 0 20px; }
    .menu-mobile ul li a:hover {
      text-decoration: none;
      background: #f9f9f9; }
.menu-mobile ul li + li {
  border-top: 1px solid #f2f2f2; }

table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #e2e2e2; }
  table tr {
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2; }
    table tr:nth-child(odd) {
      background: #f5f5f5; }
    table tr:nth-child(even) {
      background: #FFFFFF; }
  table thead tr {
    border: 1px solid #4190d8;
    border-bottom: 0;
    color: #FFFFFF; }
    table thead tr th {
      background: #4190d8;
      padding: 10px; }
  table td {
    padding: 10px; }

#slider .owl-pagination, #stat-slider .owl-pagination {
  display: none; }
#slider .owl-controls, #stat-slider .owl-controls {
  margin: 0 auto;
  max-width: 1170px;
  padding: 0 20px;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 100%;
  *zoom: 1; }
  #slider .owl-controls:before, #slider .owl-controls:after, #stat-slider .owl-controls:before, #stat-slider .owl-controls:after {
    content: '';
    display: table; }
  #slider .owl-controls:after, #stat-slider .owl-controls:after {
    clear: both; }
#slider .owl-buttons, #stat-slider .owl-buttons {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: -18px; }
  #slider .owl-buttons i, #stat-slider .owl-buttons i {
    font-size: 30px;
    font-size: 3rem; }
  #slider .owl-buttons div, #stat-slider .owl-buttons div {
    padding: 3px 14px 3px 11px;
    float: left;
    margin: 0px; }
  #slider .owl-buttons div + div, #stat-slider .owl-buttons div + div {
    padding: 3px 11px 3px 14px;
    float: right;
    margin: 0px; }

#slider {
  padding-top: 79px; }
  #slider .owl-controls {
    top: 55%; }
  #slider .slide {
    position: relative; }
    #slider .slide .slide-image {
      min-height: 400px;
      width: 100%;
      -webkit-background-size: cover !important;
      background-size: cover !important;
      background-repeat: no-repeat;
      background-position: center top !important; }
    #slider .slide .slide-content {
      position: absolute;
      top: 40px;
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 65.66667%;
      margin-left: 4.82812%;
      margin-right: 3%;
      margin-top: 20px;
      color: #FFFFFF;
      text-shadow: -1px 1px 1px #666666; }
      #slider .slide .slide-content:last-child {
        margin-right: 0%; }
      #slider .slide .slide-content h1 {
        font-size: 40px;
        font-size: 4rem;
        max-width: 700px;
        line-height: 1; }
      #slider .slide .slide-content p {
        margin: 20px 0;
        padding-right: 40%;
        font-size: 22px;
        font-size: 2.2rem; }
      #slider .slide .slide-content .btn {
        float: left;
        text-shadow: none;
        background: #4190d8; }
        #slider .slide .slide-content .btn:hover {
          background: #3e78a8; }

#stat-slider {
  padding: 35px 10px; }
  #stat-slider .stat {
    height: 485px;
    margin: 0 10px 0 10px;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    position: relative; }
    #stat-slider .stat .slide-content {
      text-transform: uppercase;
      color: #FFFFFF;
      width: 84%;
      padding: 15px 30px 0 10px;
      overflow: hidden; }
      #stat-slider .stat .slide-content .percentage {
        font-size: 109px;
        font-size: 10.9rem;
        padding: 0 20px;
        line-height: 1;
        float: left;
        position: relative;
        width: 47%; }
        #stat-slider .stat .slide-content .percentage span {
          font-size: 40px;
          font-size: 4rem;
          position: absolute;
          top: 0; }
      #stat-slider .stat .slide-content p {
        float: left;
        width: 53%;
        margin: 0 0 10px 0; }
      #stat-slider .stat .slide-content.top {
        position: absolute;
        background: #FCB040;
        top: 40px; }
      #stat-slider .stat .slide-content.bottom {
        position: absolute;
        background: #FF671F;
        bottom: 40px; }
  #stat-slider .owl-buttons div {
    margin-left: 0px;
    background: #4190d8;
    opacity: 1; }
    #stat-slider .owl-buttons div:hover {
      background: #3e78a8; }
  #stat-slider .owl-buttons div + div {
    margin-right: 0px; }

@media only screen and (min-width: 320px) and (max-width: 400px) {
  #slider .owl-controls {
    top: 13%; }
    #slider .owl-controls .owl-buttons div {
      margin-left: 5px; }
    #slider .owl-controls .owl-buttons div + div {
      margin-right: 5px; }
  #slider .slide {
    height: 420px; }
    #slider .slide .slide-image {
      min-height: 0;
      -webkit-background-size: auto;
      background-size: auto;
      background-position: center -50px !important;
      height: 180px;
      width: auto; }
    #slider .slide .slide-content {
      background: #6AC25C;
      position: absolute;
      top: 130px;
      right: 0;
      left: 0;
      margin: 0;
      width: 100%;
      padding: 10px;
      text-shadow: none;
      text-align: center; }
      #slider .slide .slide-content h1 {
        font-size: 24px;
        font-size: 2.4rem;
        font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
        text-align: left; }
      #slider .slide .slide-content p {
        text-align: left;
        padding-right: 0;
        font-size: 16px;
        font-size: 1.6rem; }
      #slider .slide .slide-content .btn {
        float: none; }
  #stat-slider {
    padding: 0; }
    #stat-slider .owl-controls {
      top: 33%; }
      #stat-slider .owl-controls .owl-buttons div {
        margin-left: 5px; }
      #stat-slider .owl-controls .owl-buttons div + div {
        margin-right: 5px; }
    #stat-slider .stat {
      margin: 0; }
      #stat-slider .stat .slide-content {
        width: 100%;
        padding: 15px 10px 10px 10px; }
        #stat-slider .stat .slide-content .percentage {
          font-size: 89px;
          font-size: 8.9rem;
          padding: 0 40px 0 20px; }
          #stat-slider .stat .slide-content .percentage span {
            font-size: 30px;
            font-size: 3rem; }
        #stat-slider .stat .slide-content.top {
          top: auto;
          bottom: 0; }
        #stat-slider .stat .slide-content.bottom {
          bottom: 0; } }

@media only screen and (min-width: 401px) and (max-width: 960px) {
  #slider .slide .slide-content {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 82.83333%;
    margin-left: 4.82812%;
    margin-right: 3%;
    margin-top: 40px; }
    #slider .slide .slide-content:last-child {
      margin-right: 0%; }
    #slider .slide .slide-content h1 {
      font-size: 30px;
      font-size: 3rem; }
    #slider .slide .slide-content p {
      padding-right: 0;
      font-size: 16px;
      font-size: 1.6rem; }
  #stat-slider {
    padding: 0; }
    #stat-slider .owl-controls .owl-buttons div {
      margin: 5px; }
    #stat-slider .owl-controls .owl-buttons div + div {
      margin: 5px; }
    #stat-slider .stat .slide-content {
      padding: 15px 10px 0 10px; }
      #stat-slider .stat .slide-content .percentage {
        font-size: 89px;
        font-size: 8.9rem;
        padding: 0 40px 0 20px; }
        #stat-slider .stat .slide-content .percentage span {
          font-size: 30px;
          font-size: 3rem; } }

@media only screen and (min-width: 320px) and (max-width: 799px) {
  #slider {
    padding-top: 60px; } }

.tabs .perc-widget {
  float: left;
  display: inline;
  clear: none;
  text-align: inherit;
  padding-left: 0;
  padding-right: 0;
  width: 17.6%;
  margin-left: 0%;
  margin-right: 3%;
  position: relative;
  cursor: pointer;
  text-align: center;
  height: 200px; }
  .tabs .perc-widget:last-child {
    margin-right: 0%; }
  .tabs .perc-widget .industry h6 {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #FFFFFF; }
  .tabs .perc-widget .industry i {
    padding: 5px 5px 2px;
    position: relative; }
    .tabs .perc-widget .industry i:before {
      content: "\f067"; }
    .tabs .perc-widget .industry i:hover {
      background: #47A03D; }
  .tabs .perc-widget .industry .hmm {
    display: inline-block;
    padding: 10px;
    position: absolute;
    margin-left: -23.5px;
    bottom: 0;
    left: 50%; }
    .tabs .perc-widget .industry .hmm:hover {
      background: #47A03D; }
  .tabs .perc-widget .industry.active i:before {
    content: "\f068"; }
  .tabs .perc-widget .industry.active .hmm {
    background: #47A03D; }

.tab-content {
  display: none;
  background: #47A03D;
  color: #FFFFFF; }
  .tab-content h5 {
    font-family: DINWebPro-Medium, 'Helvetica', Arial, sans-serif;
    border-bottom: 2px solid #FFFFFF; }
  .tab-content .tab-pane {
    display: none;
    float: left;
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in; }
    .tab-content .tab-pane.active {
      display: inline;
      opacity: 1;
      height: auto;
      padding: 20px 0; }
  .tab-content .description {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .tab-content .description:last-child {
      margin-right: 0%; }
  .tab-content .rec-solutions, .tab-content .rec-services {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%; }
    .tab-content .rec-solutions:last-child, .tab-content .rec-services:last-child {
      margin-right: 0%; }
    .tab-content .rec-solutions a, .tab-content .rec-services a {
      text-decoration: none; }
      .tab-content .rec-solutions a:hover, .tab-content .rec-services a:hover {
        border-bottom: 1px solid #FFFFFF; }
      .tab-content .rec-solutions a:after, .tab-content .rec-services a:after {
        content: "➜";
        padding-left: 10px; }

@media only screen and (min-width: 320px) and (max-width: 550px) {
  .tabs .perc-widget {
    float: left;
    display: inline;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 46.89062%;
    margin-left: 0%;
    margin-right: 3%;
    height: auto;
    text-align: center; }
    .tabs .perc-widget:last-child {
      margin-right: 0%; }
  .hmm {
    display: none !important; }
  .tab-content {
    display: none !important; }
    .tab-content .description, .tab-content .rec-solutions, .tab-content .rec-services {
      float: left;
      display: inline;
      clear: none;
      text-align: inherit;
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      .tab-content .description:last-child, .tab-content .rec-solutions:last-child, .tab-content .rec-services:last-child {
        margin-right: 0%; } }

.homepage-gift {
  background: url('img/sprites/homepage-sprites.png') no-repeat 0 -3px;
  width: 180px;
  height: 146px; }

.homepage-promocard {
  background: url('img/sprites/homepage-sprites.png') no-repeat -187px -6px;
  width: 127px;
  height: 192px; }

.homepage-eCommerce {
  background: url('img/sprites/homepage-sprites.png') no-repeat -320px -6px;
  width: 191px;
  height: 111px; }

.homepage-mobile {
  background: url('img/sprites/homepage-sprites.png') no-repeat -517px -4px;
  width: 131px;
  height: 144px; }

.homepage-design {
  background: url('img/sprites/homepage-sprites.png') no-repeat -659px -2px;
  width: 144px;
  height: 114px;
  margin-bottom: 10px !important; }

.homepage-delivery {
  background: url('img/sprites/homepage-sprites.png') no-repeat -807px 0;
  width: 135px;
  height: 94px;
  margin-top: 5px !important;
  margin-bottom: 25px !important; }

.homepage-distro {
  background: url('img/sprites/homepage-sprites.png') no-repeat -6px -198px;
  width: 144px;
  height: 111px;
  margin-bottom: 13px !important; }

.apparel {
  background: url('img/sprites/homepage-sprites.png') no-repeat -480px -167px;
  width: 73px;
  height: 62px;
  margin-top: 7px !important;
  margin-bottom: 2px !important; }

.dining {
  background: url('img/sprites/homepage-sprites.png') no-repeat -573px -178px;
  width: 50px;
  height: 64px;
  margin-top: 3px !important;
  margin-bottom: 4px !important; }

.specialty {
  background: url('img/sprites/homepage-sprites.png') no-repeat -639px -173px;
  width: 78px;
  height: 69px;
  margin-bottom: 3px !important; }

.supermarket {
  background: url('img/sprites/homepage-sprites.png') no-repeat -734px -171px;
  width: 48px;
  height: 71px; }

.aeroplane {
  background: url('img/sprites/homepage-sprites.png') no-repeat -797px -187px;
  width: 55px;
  height: 55px;
  margin-top: 17px !important;
  margin-bottom: 1px !important; }

.thumbs-up {
  background: url('img/sprites/homepage-sprites.png') no-repeat -864px -253px;
  width: 66px;
  height: 64px; }

.envelope {
  background: url('img/sprites/homepage-sprites.png') no-repeat -474px -283px;
  width: 124px;
  height: 143px; }

.factory {
  background: url('img/sprites/homepage-sprites.png') no-repeat -623px -283px;
  width: 201px;
  height: 143px; }

.three-cards {
  background: url('img/sprites/homepage-sprites.png') no-repeat -746px -449px;
  width: 184px;
  height: 141px; }

.clipboard {
  background: url('img/sprites/homepage-sprites.png') no-repeat -573px -441px;
  width: 124px;
  height: 144px; }

.dolley {
  background: url('img/sprites/homepage-sprites.png') no-repeat -445px -436px;
  width: 93px;
  height: 154px; }

.dollar {
  background: url('img/sprites/homepage-sprites.png') no-repeat -368px -145px;
  margin-top: 21px;
  width: 86px;
  height: 43px; }

.flag {
  width: 17px;
  height: 11px;
  background: url(img/sprites/flags.png) no-repeat;
  margin: 6px 5px 0 0;
  float: left; }
  .flag.China {
    background-position: -1253px -284px; }
  .flag.USA {
    background-position: -1273px -284px; }
  .flag.United_Kingdom {
    background-position: -1292px -284px; }
  .flag.Sweden {
    background-position: -1311px -284px; }
  .flag.Germany {
    background-position: -1330px -284px; }
  .flag.Spain {
    background-position: -1253px -298px; }
  .flag.Norway {
    background-position: -1273px -298px; }
  .flag.Finland {
    background-position: -1292px -298px; }
  .flag.Russia {
    background-position: -1311px -298px; }
  .flag.Estonia {
    background-position: -1330px -298px; }
  .flag.France {
    background-position: -1253px -311px; }
  .flag.Latvia {
    background-position: -1273px -311px; }
  .flag.Lithuania {
    background-position: -1292px -311px; }
  .flag.Poland {
    background-position: -1311px -311px; }
  .flag.Czech_Republic {
    background-position: -1330px -311px; }
  .flag.Slovatkia {
    background-position: -1253px -324px; }
  .flag.Hungary {
    background-position: -1273px -324px; }
  .flag.Romania {
    background-position: -1292px -324px; }
  .flag.Turkey {
    background-position: -1311px -324px; }
  .flag.Greece {
    background-position: -1330px -324px; }
  .flag.Denmark {
    background-position: -1253px -337px; }
  .flag.Ireland {
    background-position: -1273px -337px; }
  .flag.Netherlands {
    background-position: -1292px -337px; }
  .flag.Austria {
    background-position: -1330px -337px; }
  .flag.Belgium {
    background-position: -1311px -337px; }
  .flag.Luxembourg {
    background-position: -1253px -350px; }
  .flag.Switzerland {
    background-position: -1273px -350px; }
  .flag.Italy {
    background-position: -1292px -350px; }
  .flag.Portugal {
    background-position: -1311px -350px; }
  .flag.Slovenia {
    background-position: -1330px -350px; }
  .flag.India {
    background-position: -1253px -363px; }
  .flag.South_Korea {
    background-position: -1273px -363px; }
  .flag.Japan {
    background-position: -1292px -363px; }
  .flag.Canada {
    background-position: -1311px -363px; }
  .flag.Mexico {
    background-position: -1330px -363px; }
  .flag.Panama {
    background-position: -1253px -376px; }
  .flag.Brazil {
    background-position: -1273px -376px; }
  .flag.Chile {
    background-position: -1292px -376px; }
  .flag.New_Zealand {
    background-position: -1311px -376px; }
  .flag.South_Africa {
    background-position: -1330px -376px; }
  .flag.Swaziland {
    background-position: -1253px -389px; }
  .flag.Zambia {
    background-position: -1273px -389px; }
  .flag.United_Arab_Emirates {
    background-position: -1292px -389px; }
  .flag.Australia {
    background-position: -1311px -389px; }
  .flag.Bulgaria {
    background-position: -1330px -389px; }
  .flag.Croatia {
    background-position: -1273px -402px; }
  .flag.Malaysia {
    background-position: -1292px -402px; }
  .flag.Serbia {
    background-position: -1253px -402px; }

.full-flag {
  width: 215px;
  height: 144px;
  background: url(img/sprites/flags.png) no-repeat; }
  .full-flag.China {
    background-position: 0 0; }
  .full-flag.USA {
    background-position: -220px 0; }
  .full-flag.United_Kingdom {
    background-position: -442px 0; }
  .full-flag.Sweden {
    background-position: -662px 0; }
  .full-flag.Germany {
    background-position: -884px 0; }
  .full-flag.Spain {
    background-position: 0 -148px; }
  .full-flag.Norway {
    background-position: -220px -148px; }
  .full-flag.Finland {
    background-position: -442px -148px; }
  .full-flag.Russia {
    background-position: -662px -148px; }
  .full-flag.Estonia {
    background-position: -884px -148px; }
  .full-flag.France {
    background-position: 0 -297px; }
  .full-flag.Latvia {
    background-position: -220px -297px; }
  .full-flag.Lithuania {
    background-position: -442px -297px; }
  .full-flag.Czech_Republic {
    background-position: -662px -297px; }
  .full-flag.Poland {
    background-position: -884px -297px; }
  .full-flag.Slovatkia {
    background-position: 0 -446px; }
  .full-flag.Hungary {
    background-position: -220px -446px; }
  .full-flag.Romania {
    background-position: -442px -446px; }
  .full-flag.Turkey {
    background-position: -662px -446px; }
  .full-flag.Greece {
    background-position: -884px -446px; }
  .full-flag.Denmark {
    background-position: 0 -595px; }
  .full-flag.Ireland {
    background-position: -220px -595px; }
  .full-flag.Netherlands {
    background-position: -442px -595px; }
  .full-flag.Austria {
    background-position: -662px -595px; }
  .full-flag.Belgium {
    background-position: -884px -595px; }
  .full-flag.Luxembourg {
    background-position: 0 -744px; }
  .full-flag.Switzerland {
    background-position: -220px -744px; }
  .full-flag.Italy {
    background-position: -442px -744px; }
  .full-flag.Portugal {
    background-position: -662px -744px; }
  .full-flag.Slovenia {
    background-position: -884px -744px; }
  .full-flag.India {
    background-position: 0 -893px; }
  .full-flag.South_Korea {
    background-position: -220px -893px; }
  .full-flag.Japan {
    background-position: -442px -893px; }
  .full-flag.Canada {
    background-position: -662px -893px; }
  .full-flag.Mexico {
    background-position: -884px -893px; }
  .full-flag.Panama {
    background-position: 0 -1042px; }
  .full-flag.Brazil {
    background-position: -220px -1042px; }
  .full-flag.Chile {
    background-position: -442px -1042px; }
  .full-flag.New_Zealand {
    background-position: -662px -1042px; }
  .full-flag.South_Africa {
    background-position: -884px -1042px; }
  .full-flag.Swaziland {
    background-position: 0 -1191px; }
  .full-flag.Zambia {
    background-position: -220px -1191px; }
  .full-flag.United_Arab_Emirates {
    background-position: -442px -1191px; }
  .full-flag.Australia {
    background-position: -662px -1191px; }

@media only screen and (min-width: 320px) and (max-width: 850px) {
  .homepage-gift {
    background: url('img/sprites/homepage-sprites.png') no-repeat 1.667% 64.672%;
    width: 102px;
    height: 82px; }
  .homepage-promocard {
    background: url('img/sprites/homepage-sprites.png') no-repeat 13.834% 73.434%;
    width: 89px;
    height: 137px; }
  .homepage-eCommerce {
    background: url('img/sprites/homepage-sprites.png') no-repeat 25.149% 62.963%;
    width: 103px;
    height: 60px; }
  .homepage-mobile {
    background: url('img/sprites/homepage-sprites.png') no-repeat 37.441% 69.309%;
    width: 98px;
    height: 108px; }
  .homepage-design {
    background: url('img/sprites/homepage-sprites.png') no-repeat 21.871% 43.315%;
    width: 87px;
    height: 69px; }
  .homepage-delivery {
    background: url('img/sprites/homepage-sprites.png') no-repeat 32.404% 44.567%;
    width: 81px;
    height: 57px;
    margin-top: 5px !important;
    margin-bottom: 17px !important; }
  .homepage-distro {
    background: url('img/sprites/homepage-sprites.png') no-repeat 42.573% 43.152%;
    width: 87px;
    height: 67px;
    margin-bottom: 13px !important; }
  .envelope {
    background: url('img/sprites/homepage-sprites.png') no-repeat 1.066% 88.501%;
    width: 98px;
    height: 113px; }
  .factory {
    background: url('img/sprites/homepage-sprites.png') no-repeat 35.787% 99.388%;
    width: 154px;
    height: 110px; }
  .three-cards {
    background: url('img/sprites/homepage-sprites.png') no-repeat 14.988% 99.402%;
    margin-top: 10px !important;
    width: 128px;
    height: 98px; } }

.container {
  width: auto;
  max-width: 1170px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px; }

.row {
  *zoom: 1; }
  .row:before, .row:after {
    content: '';
    display: table; }
  .row:after {
    clear: both; }

.map_tooltip {
  border-radius: 0 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  color: #FFFFFF !important;
  width: auto !important;
  max-width: none !important;
  overflow: hidden; }
  .map_tooltip h6 {
    margin: 0;
    padding: 0; }
  .map_tooltip .flag-wrapper {
    width: 20px;
    float: left;
    margin-right: 5px; }
    .map_tooltip .flag-wrapper img {
      margin-top: 10px; }
  .map_tooltip .details {
    padding: 0 20px 0 5px;
    white-space: nowrap; }

@media only screen and (min-width: 320px) {
  .mobile {
    display: block; }
  .desktop {
    display: none; }
  .mobile-no-padding {
    padding: 0; } }

@media only screen and (min-width: 480px) {
  .mobile {
    display: block; }
  .desktop {
    display: none; } }

@media only screen and (min-width: 768px) {
  .mobile {
    display: block; }
  .desktop {
    display: none; } }

@media only screen and (min-width: 1024px) {
  .mobile {
    display: none; }
  .desktop {
    display: block; } }

@media only screen and (min-width: 1140px) {
  .mobile {
    display: none; }
  .desktop {
    display: block; } }

@media only screen and (min-width: 1280px) {
  .mobile {
    display: none; }
  .desktop {
    display: block; } }

@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) { }

/* 
 *  Core Owl Carousel CSS File
 *  v1.3.2
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y; }

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%; }

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel .owl-item {
  float: left; }

.owl-controls .owl-page, .owl-controls .owl-buttons div {
  cursor: pointer; }

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move; }

/* fix */
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

/*
*   Owl Carousel Owl Demo Theme 
* v1.3.2
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center; }

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5; }

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none; }

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */ }

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  border-radius: 20px;
  background: #869791; }

.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1; }

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 30px; }

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center; }

/*
Version: 3.5.0 Timestamp: Mon Jun 16 19:29:44 EDT 2014
*/
.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  width: 100%;
  *display: inline;
  vertical-align: middle;
  font-family: DINWebPro, 'Helvetica', Arial, sans-serif;
  font-weight: 200;
  text-align: left; }

.select2-container, .select2-drop, .select2-search, .select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box;
  /* webkit */
  -moz-box-sizing: border-box;
  /* firefox */
  box-sizing: border-box;
  /* css3 */ }

.select2-container .select2-choice {
  display: block;
  height: 46px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  line-height: 46px;
  color: #B2B2B2;
  text-decoration: none;
  border-radius: 0px;
  border: 2px solid #4190d8;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

html[dir="rtl"] .select2-container .select2-choice {
  padding: 0 8px 0 0; }

.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), color-stop(90%, #fff));
  background-image: -webkit-linear-gradient(top, #eee 0%, #fff 90%);
  background-image: linear-gradient(to bottom, #eee 0%, #fff 90%); }

.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px; }

.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: none;
  width: auto; }

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
  margin-left: 26px;
  margin-right: 0; }

.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  outline: 0; }

.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block; }

.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer; }

.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 2px solid #4190d8; }

.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15); }

.select2-drop-active {
  margin-top: -3px;
  border: 2px solid #4190d8;
  border-top: none; }

.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 2px solid #4190d8; }

.select2-drop-auto-width {
  border-top: 1px solid #aaa;
  width: auto; }

.select2-drop-auto-width .select2-search {
  padding-top: 4px; }

.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 40px;
  padding: 0 15px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 2px solid #4190d8; }
  .select2-container .select2-choice .select2-arrow:hover {
    background: #4190d8; }
    .select2-container .select2-choice .select2-arrow:hover:after {
      color: #FFFFFF; }
  .select2-container .select2-choice .select2-arrow:after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 30px;
    font-size: 3rem;
    color: #4190d8;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 9px; }

.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
  display: none; }

.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }

html[dir="rtl"] .select2-search input {
  padding: 4px 5px 4px 20px; }

.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px; }

.select2-container-active .select2-choice {
  outline: none; }

.select2-container-active .select2-choices {
  border: 1px solid #e2e2e2;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices {
  border: 2px solid #4190d8;
  border-top-color: transparent; }

.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  -webkit-filter: none;
  filter: none; }
  .select2-dropdown-open .select2-choice .select2-arrow:after {
    content: "\f106"; }

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
  border-right: none; }

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -16px 1px; }

.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/* results */
.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

html[dir="rtl"] .select2-results {
  padding: 0 4px 0 0;
  margin: 4px 0 4px 4px; }

.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0; }

.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none; }

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold; }

.select2-results .select2-result-label {
  padding: 7px 7px 0px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.select2-results-dept-1 .select2-result-label {
  padding-left: 20px; }

.select2-results-dept-2 .select2-result-label {
  padding-left: 40px; }

.select2-results-dept-3 .select2-result-label {
  padding-left: 60px; }

.select2-results-dept-4 .select2-result-label {
  padding-left: 80px; }

.select2-results-dept-5 .select2-result-label {
  padding-left: 100px; }

.select2-results-dept-6 .select2-result-label {
  padding-left: 110px; }

.select2-results-dept-7 .select2-result-label {
  padding-left: 120px; }

.select2-results .select2-highlighted {
  background: #4190d8;
  color: #fff; }

.select2-results li em {
  background: #feffde;
  font-style: normal; }

.select2-results .select2-highlighted em {
  background: transparent; }

.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000; }

.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
  padding-left: 5px; }

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default; }

.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default; }

.select2-results .select2-selected {
  display: none; }

.select2-more-results {
  background: #f4f4f4;
  display: list-item; }

/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default; }

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0; }

.select2-container.select2-container-disabled .select2-choice abbr {
  display: none; }

/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0 5px 0 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: linear-gradient(to bottom, #eee 1%, #fff 15%); }

html[dir="rtl"] .select2-container-multi .select2-choices {
  padding: 0 0 0 5px; }

.select2-locked {
  padding: 3px 5px 3px 5px !important; }

.select2-container-multi .select2-choices {
  min-height: 26px; }

.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #e2e2e2;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.select2-container-multi .select2-choices li {
  float: left;
  list-style: none; }

html[dir="rtl"] .select2-container-multi .select2-choices li {
  float: right; }

.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent !important; }

.select2-default {
  color: #999 !important; }

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: -webkit-linear-gradient(bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); }

html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 18px 3px 5px; }

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default; }

.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4; }

.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none; }

html[dir="rtl"] .select2-search-choice-close {
  right: auto;
  left: 3px; }

.select2-container-multi .select2-search-choice-close {
  left: 3px; }

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
  left: auto;
  right: 2px; }

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px; }

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px; }

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none; }

/* end multiselect */
.select2-result-selectable .select2-match, .select2-result-unselectable .select2-match {
  text-decoration: underline; }

.select2-offscreen, .select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important; }

.select2-display-none {
  display: none; }

.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll; }

/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
    background-repeat: no-repeat !important;
    -webkit-background-size: 60px 40px !important;
    background-size: 60px 40px !important; }
  .select2-search input {
    background-position: 100% -21px !important; } }

body {
  padding: 0;
  margin: 0; }

.footer .perc-list-title, .footer .form-title, .sidebar .perc-archive-title {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: DINWebPro-bold, 'Helvetica', Arial, sans-serif;
  color: #C4D8EB; }

.perc-form-error-asterisk {
  display: none; }

.percSolutionsServices .homepage-gift {
  margin-top: 45px; }
.percSolutionsServices .second .homepage-promocard {
  margin-top: -81px; }
.percSolutionsServices .second .homepage-eCommerce {
  margin-top: 1px; }
.percSolutionsServices .second .homepage-gift {
  margin-top: 44px; }
.percSolutionsServices .third .homepage-gift {
  margin-top: -1px; }

.language-hidden {
  display: none !important; }

.language-shown {
  display: block !important; }

@media only screen and (min-width: 320px) and (max-width: 850px) {
  .percSolutionsServices .homepage-gift {
    margin-top: 55px; }
  .percSolutionsServices .second .homepage-promocard {
    margin-top: -77px; }
  .percSolutionsServices .second .homepage-gift {
    margin-top: 44px; }
  .percSolutionsServices .third .homepage-gift {
    margin-top: 26px; } }
