@charset "UTF-8";
/**
 * Style file
 *
 * This file is compiled into style.css
 */
/* ---------- Import functions ---------- */
/**
 * Functions
 *
 */
/* ---------- Import variables ---------- */
/* Layout */
/**
 * Jeet grid settings.
 */
/* Breakpoints - mobile first
 * Usage:
 *
 *  	@include breakpoint(mobile) {
 *      //do stuff
 *    }  
 *
 */
/* Colors */
/* Greys */
/* Elements */
/* Borders */
/* Links */
/* Font stuff */
/* ---------- Import grid system ---------- */
/*  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()
*/
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/* ---------- Import base ---------- */
/*  Better box model */
*,
*:after,
*:before {
  box-sizing: border-box;
}

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

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 16;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

q:before,
q:after {
  content: '';
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Base responsive images */
img {
  height: auto;
  max-width: 100%;
  border: 0;
}

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

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

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

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

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

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Mixins
 *
 * Snippets of reusable CSS to develop faster and keep code readable
 */
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

@keyframes thr-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes transform-background {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes transform-background {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(300px);
            transform: translateY(300px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(300px);
            transform: translateY(300px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/**
 * Extendables
 *
 * Collect all of your extendable classes, ids and silent extendables.
 */
.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

/**
 * Typography
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
}

html,
button,
input,
select,
textarea {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  font-size: 40px;
  font-size: 2.5rem;
  color: #199ad6;
  margin: .67em 0;
  font-weight: lighter;
}

@media (max-width: 480px) {
  h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

h2 {
  font-size: 34px;
  font-size: 2.125rem;
  color: #199ad6;
  margin: .83em 0;
  font-weight: lighter;
}

@media (max-width: 480px) {
  h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

h3 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #1273a0;
  margin: 1em 0;
  font-weight: normal;
}

h4 {
  font-size: 16px;
  font-size: 1rem;
  color: #199ad6;
  margin: 1.33em 0;
  font-weight: bolder;
}

h5 {
  font-size: 14px;
  font-size: 0.875rem;
  color: #199ad6;
  margin: 1.67em 0;
}

h6 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #199ad6;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
}

mark {
  background: #ff0;
  color: #000;
}

p, pre {
  margin: 1.5em 0;
}

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-family: 'courier new',monospace;
  font-size: 16px;
  font-size: 1rem;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: '';
  content: none;
}

small {
  font-size: 14px;
  font-size: 0.875rem;
}

large {
  font-size: 18px;
  font-size: 1.125rem;
}

sub, sup {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

dl, menu, ol, ul {
  margin: 1.5em 0;
}

dl dl, dl menu, dl ol, dl ul, menu dl, menu menu, menu ol, menu ul, ol dl, ol menu, ol ol, ol ul, ul dl, ul menu, ul ol, ul ul {
  margin: 0;
  list-style: disc;
}

dd {
  margin: 0 0 0 40px;
}

menu, ol, ul {
  padding: 0 0 0 40px;
}

menu.rteindent1, ol.rteindent1, ul.rteindent1 {
  padding: 0;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

figure {
  margin: 0;
}

/* ---------- Components ---------- */
blockquote {
  margin: 2.5em 0;
  padding-left: 65px;
  background: transparent url(../img/icon-quote.png) no-repeat 0 10px;
  font-weight: normal;
  font-style: italic;
}

/*
 * Buttons
 */
.button,
input[type=submit] {
  transition: all 0.3s;
  display: inline-block;
  padding: 10px 15px;
  border: 0;
  background-color: #199ad6;
  color: #fff;
}

.button:hover,
input[type=submit]:hover,
.button:focus {
  background-color: #1680b1;
  color: #fff;
  text-decoration: none;
}

.breadcrumb {
  font-size: 80%;
  margin-bottom: 20px;
}

/*
 * caption.js styles
 */
/* Main */
.caption {
  line-height: 0;
}

.caption figcaption {
  line-height: 1.2;
  width: 100%;
  font-size: 90%;
  padding-top: 1em;
}

.caption.stacked,
.caption.animated,
.caption.hide {
  position: relative;
  overflow: hidden;
}

.caption.stacked figcaption,
.caption.animated figcaption,
.caption.hide figcaption {
  position: absolute;
}

/* Stacked mode */
.caption.stacked figcaption {
  bottom: 0;
}

/* Animated mode */
.caption.animated figcaption {
  transition: 0.25s bottom;
}

.caption.animated:hover figcaption {
  bottom: 0 !important;
}

/* Hide mode */
.caption.hide figcaption {
  transition: 0.25s margin-bottom;
}

.caption.hide:hover figcaption {
  margin-bottom: 0 !important;
}

/*
 * Make the block config icon sexy
 */
.contextual-links-region {
  outline: none;
  position: relative;
}

.contextual-links-region-active {
  outline: #999 dashed 1px;
}

div.contextual-links-wrapper {
  display: none;
  font-size: 100%;
  position: absolute;
  right: 5px;
  /* LTR */
  top: 2px;
  z-index: 999;
}

html.js div.contextual-links-wrapper {
  display: block;
}

a.contextual-links-trigger {
  background: transparent url(../img/admin/icon-configuration.png) no-repeat 50% 7px;
  border: 0;
  display: none;
  height: 30px;
  margin: 0;
  padding: 0;
  outline: none;
  text-indent: 35px;
  /* LTR */
  width: 30px;
  overflow: hidden;
  transition: none;
}

a.contextual-links-trigger:hover,
div.contextual-links-active a.contextual-links-trigger {
  background-position: 50% -29px;
}

div.contextual-links-active a.contextual-links-trigger {
  background-color: #202020;
  background-position: 50% -64px;
  position: relative;
  z-index: 1;
}

div.contextual-links-wrapper ul.contextual-links {
  background-color: #202020;
  border: 0;
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 30px;
  white-space: nowrap;
}

a.contextual-links-trigger-active,
div.contextual-links-active a.contextual-links-trigger,
div.contextual-links-active ul.contextual-links {
  display: block;
}

ul.contextual-links li {
  line-height: 100%;
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

div.contextual-links-wrapper a {
  text-decoration: none;
}

ul.contextual-links li a {
  background-color: #202020;
  color: #fff !important;
  display: block;
  margin: 0;
  padding: 10px;
}

ul.contextual-links li a:hover {
  background-color: #0074bd;
}

/*
 * Forms, webforms
 */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=date],
input[type=month],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=week],
input[type=number],
input[type=search],
input[type=tel],
input[type=color],
.form-text,
select,
textarea {
  padding: .5em .6em;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 0;
  color: #908d7f;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  max-width: 500px;
  outline: none;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.form-text:focus,
select:focus,
textarea:focus {
  border-color: #777;
}

fieldset {
  margin-bottom: 1.5em;
  padding: 0;
  border: 0;
}

fieldset fieldset {
  margin-bottom: 0;
}

fieldset .form-item:last-child {
  margin-bottom: 0;
}

.fieldset-description {
  margin-bottom: 1.5em;
}

.grippie {
  max-width: 500px;
}

/*  legend... wait for it... dary! */
legend {
  padding: 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 1px solid #f1f1e3;
  display: block;
  width: 100%;
  margin-bottom: 1.5em;
}

label {
  display: block;
  margin-bottom: 0.5em;
}

/*  Placeholders. Keep as seperate selectors or it won't work  */
.placeholder {
  color: #919191;
}

::-webkit-input-placeholder {
  color: #919191;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #919191;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #919191;
}

:-ms-input-placeholder {
  color: #919191;
}

/*  Drupal classes */
.form-item {
  margin-bottom: 1.5em;
}

input[type="submit"], .form-submit {
  background-color: #199ad6;
  cursor: pointer;
}

.views-reset-button input[type="submit"], .views-reset-button .form-submit {
  background-color: #199ad6;
}

.views-reset-button input[type="submit"]:hover, .views-reset-button input[type="submit"]:focus, .views-reset-button .form-submit:hover, .views-reset-button .form-submit:focus {
  background-color: #1680b1;
}

.form-managed-file .form-submit {
  background-color: #199ad6;
}

.form-managed-file .form-submit:hover {
  background-color: #1680b1;
}

.description {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0.75em 0;
}

.form-type-checkbox {
  margin-bottom: 1.5em;
}

.form-radios label,
label.option {
  display: inline;
}

.form-managed-file .form-file {
  display: inline;
  width: auto;
}

/*
  WEBFORM
*/
.webform-client-form .form,
.webform-client-form .form-item {
  margin-bottom: 1.5em;
}

.webform-client-form .form label,
.webform-client-form .form-item label {
  margin-bottom: 1.5em;
}

.webform-client-form .form-item {
  position: relative;
}

.webform-client-form .form-item > label {
  font-weight: bold;
}

.webform-client-form .form-item .label-inline {
  display: inline;
}

.webform-client-form .form-item textarea {
  box-shadow: none;
  border: 1px solid #f1f1e3;
  padding: 10px;
  border-radius: 0;
}

.webform-client-form .form-item input[readonly="readonly"] {
  background-color: #fcfcfc;
  border-color: #f1f1e3;
}

.webform-client-form .webform-component-checkboxes input,
.webform-client-form .webform-component-radios input {
  padding-top: 2px;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item,
.webform-client-form .webform-component-radios.form-item .form-item {
  margin-bottom: 0;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item label,
.webform-client-form .webform-component-radios.form-item .form-item label {
  font-weight: normal;
  margin-bottom: 0;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item .form-type-checkbox,
.webform-client-form .webform-component-radios.form-item .form-item .form-type-checkbox {
  margin: 0;
  padding: 10px 0 10px 5px;
}

.webform-client-form .form-item-clear {
  width: auto;
  border: 0;
  padding: 0;
  font-weight: bold;
}

.webform-client-form .webform-component-date .form-select,
.webform-client-form .webform-component-time .form-select {
  width: auto;
}

.webform-client-form .webform-component-textarea .grippie {
  display: none;
}

.page-user {
  background: #f2f2f2;
}

.page-user .login-form {
  background: #fff;
  max-width: 460px;
  margin: 40px auto 0;
  padding: 30px;
  border: 1px solid #ccc;
}

.page-user h1 {
  margin: 0 0 1em;
  line-height: 1;
  font-size: 28px;
  text-align: center;
}

.page-user .login-footer {
  margin: 40px auto;
  max-width: 400px;
  text-align: center;
}

.page-maintenance {
  padding: 50px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.page-maintenance h1:before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 1em;
  background: url("../img/admin/info.png");
  background: url("../img/admin/info.svg"), none;
  background-size: 150px 150px;
}

/*
 * Drupal messages
 */
.message {
  padding: 10px 55px 10px 10px;
  position: relative;
  color: #fff;
  margin-bottom: 1.5em;
}

.message a {
  color: yellow;
}

.message a:hover {
  color: yellow;
  text-decoration: underline;
}

.message.info {
  background: #5BC0DE;
}

.message.info .close {
  background: #2390b0;
}

.message.info .close:hover {
  background: #1b6d85;
}

.message.error {
  background: #D9534F;
}

.message.error .close {
  background: #a02622;
}

.message.error .close:hover {
  background: #761c19;
}

.message.warning {
  background: #F0AD4E;
}

.message.warning .close {
  background: #c77c11;
}

.message.warning .close:hover {
  background: #985f0d;
}

.message.status {
  background: #5CB85C;
}

.message.status .close {
  background: #357935;
}

.message.status .close:hover {
  background: #255625;
}

.message .close {
  color: #fff;
  font-size: 34px;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
}

.message .close:hover {
  text-decoration: none;
}

.message .placeholder {
  color: #fff;
  font-weight: bold;
}

.messages > *:last-child,
.messages > *:last-child > *:last-child,
.messages > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}

/*
 * Pagination
 */
.item-list {
  overflow: auto;
}

.item-list .pager {
  padding: 0;
  text-align: left;
  overflow: auto;
}

.item-list .pager li {
  float: left;
  list-style: none;
  padding: 0;
}

.item-list .pager a {
  color: #908d7f;
  background: #fff;
  border-top: 1px solid #f1f1e3;
  border-left: 1px solid #f1f1e3;
  border-bottom: 1px solid #f1f1e3;
  display: inline-block;
  padding: 5px 14px;
}

.item-list .pager a:hover {
  background: #1680b1;
  border-color: #1680b1;
  color: #fff;
  text-decoration: none;
}

.item-list .pager a:active {
  background: #999999;
}

.item-list .pager .pager-ellipsis {
  background: #fff;
  border-top: 1px solid #f1f1e3;
  border-left: 1px solid #f1f1e3;
  border-bottom: 1px solid #f1f1e3;
  display: inline-block;
  padding: 5px 12px;
  /*  2 px less */
}

.item-list .pager .last {
  border-right: 1px solid #f1f1e3;
}

.item-list .pager .pager-current {
  background: #777;
  border-top: 1px solid #f1f1e3;
  border-left: 1px solid #f1f1e3;
  border-bottom: 1px solid #f1f1e3;
  color: #fff;
  padding: 6px 15px;
  margin-top: -1px;
}

.site-map ul {
  padding: 0;
  margin: 0;
}

.site-map ul ul {
  padding-left: 20px;
}

.site-map ul ul a {
  background: #999;
}

.site-map ul ul ul a {
  background: #777;
}

.site-map ul ul ul ul a {
  background: #555;
}

.site-map ul ul ul ul ul a {
  background: #333;
}

.site-map ul a {
  padding: 5px 10px;
  background: #00aeef;
  /* Change to primary-color colour */
}

.site-map li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-map a {
  color: white;
  display: inline-block;
  margin-bottom: 1px;
}

.site-map a:hover {
  background: #0089bc;
  color: #fff;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  height: 408px;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track {
  -webkit-translate3d: 0, 0, 0;
  -moz-translate3d: 0, 0, 0;
  -ms-translate3d: 0, 0, 0;
  -o-translate3d: 0, 0, 0;
  translate3d: 0, 0, 0;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 20px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 20px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  z-index: 10000;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*
 * Tables
 */
table {
  background-color: #fff;
  border: 0 solid transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em;
}

table caption {
  text-align: left;
}

table th {
  text-align: left;
  background: #bfbfb5;
  color: #fff;
  text-transform: uppercase;
}

table td {
  vertical-align: top;
}

table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 5px;
  vertical-align: top;
  border-top: 1px solid #f1f1e3;
}

@media (min-width: 768px) {
  table > thead > tr > th,
  table > thead > tr > td,
  table > tbody > tr > th,
  table > tbody > tr > td,
  table > tfoot > tr > th,
  table > tfoot > tr > td {
    padding: 20px;
  }
}

table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #f1f1e3;
  background: #bfbfb5;
  color: #fff;
}

table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

table > tbody + tbody {
  border-top: 2px solid #f1f1e3;
}

table .table {
  background-color: #fff;
  margin-bottom: 0;
}

.page-node-101 table tr td {
  border: 0 !important;
}

.table-bordered {
  border: 1px solid #f1f1e3;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #f1f1e3;
  padding: 5px;
}

@media (min-width: 768px) {
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    padding: 20px;
  }
  .table-bordered > thead > tr > th h2,
  .table-bordered > thead > tr > td h2,
  .table-bordered > tbody > tr > th h2,
  .table-bordered > tbody > tr > td h2,
  .table-bordered > tfoot > tr > th h2,
  .table-bordered > tfoot > tr > td h2 {
    font-size: 24px !important;
  }
}

.table-striped > tbody > tr:nth-child(odd),
.table-striped .odd-row {
  background-color: #f2f2f2;
}

.table-striped th, .table-striped td {
  border: 0;
}

.table-striped-vertical th:nth-child(odd),
.table-striped-vertical td:nth-child(odd),
.table-striped-vertical .odd-column {
  background-color: #f2f2f2;
}

.table-striped-vertical th, .table-striped-vertical td {
  border: 0;
}

.table-vertical th, .table-vertical td {
  border-top: 0;
  border-right: 1px solid #f1f1e3;
}

.table-vertical tr td:last-child,
.table-vertical tr th:last-child {
  border: 0;
}

.table-unstyled > thead > tr > th,
.table-unstyled > thead > tr > td,
.table-unstyled > tbody > tr > th,
.table-unstyled > tbody > tr > td,
.table-unstyled > tfoot > tr > th,
.table-unstyled > tfoot > tr > td {
  padding: 0;
  vertical-align: top;
  border: 0;
}

/*
 * The Drupal view/edit tabs
 */
.tabs.primary {
  padding-left: 0;
  list-style: none;
  border-bottom: 1px solid #f1f1e3;
  margin-bottom: 1.5em;
  *zoom: 1;
}

.tabs.primary:before, .tabs.primary:after {
  content: '';
  display: table;
}

.tabs.primary:after {
  clear: both;
}

.tabs.primary > li {
  position: relative;
  display: block;
  float: left;
  margin-bottom: -1px;
}

.tabs.primary > li > a {
  color: #908d7f;
  position: relative;
  display: block;
  padding: 8px 13px;
  margin-right: 2px;
  border: 1px solid transparent;
}

.tabs.primary > li > a:hover {
  border-color: #1479a8 #1479a8 #f1f1e3;
}

.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1479a8;
}

.tabs.primary > li.active > a, .tabs.primary > li.active > a:hover, .tabs.primary > li.active > a:focus {
  color: #908d7f;
  background-color: #fff;
  border: 1px solid #f1f1e3;
  border-bottom-color: transparent;
  cursor: default;
}

/*
 * Classes that can be used in the WYSIWYG editor
 */
.image-left {
  float: left;
  background-color: #fff;
  border: 1px solid #f1f1e3;
  padding: 5px;
  margin-right: 1.25em;
}

.image-right {
  float: right;
  background-color: #fff;
  border: 1px solid #f1f1e3;
  padding: 5px;
  margin-left: 1.25em;
}

big {
  font-size: 18px;
  font-size: 1.125rem;
}

small {
  font-size: 14px;
  font-size: 0.875rem;
}

/* ---------- Import design ---------- */
/**
 * Layout
 *
 * All layout theming should go in this file
 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
  *zoom: 1;
}

.container:before, .container:after {
  content: '';
  display: table;
}

.container:after {
  clear: both;
}

.container.no-padding {
  padding: 0;
}

@media (min-width: 1024px) {
  .one-sidebar.sidebar-first .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 25.75%;
  }
  .one-sidebar.sidebar-first .main:before, .one-sidebar.sidebar-first .main:after {
    content: '';
    display: table;
  }
  .one-sidebar.sidebar-first .main:after {
    clear: both;
  }
  .one-sidebar.sidebar-first .main:last-child {
    margin-right: 0%;
  }
  .one-sidebar.sidebar-second .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .one-sidebar.sidebar-second .main:before, .one-sidebar.sidebar-second .main:after {
    content: '';
    display: table;
  }
  .one-sidebar.sidebar-second .main:after {
    clear: both;
  }
  .one-sidebar.sidebar-second .main:last-child {
    margin-right: 0%;
  }
  .one-sidebar aside.sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: -77.25%;
  }
  .one-sidebar aside.sidebar_first:before, .one-sidebar aside.sidebar_first:after {
    content: '';
    display: table;
  }
  .one-sidebar aside.sidebar_first:after {
    clear: both;
  }
  .one-sidebar aside.sidebar_first:last-child {
    margin-right: 0%;
  }
  .one-sidebar aside.sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .one-sidebar aside.sidebar_second:before, .one-sidebar aside.sidebar_second:after {
    content: '';
    display: table;
  }
  .one-sidebar aside.sidebar_second:after {
    clear: both;
  }
  .one-sidebar aside.sidebar_second:last-child {
    margin-right: 0%;
  }
  .two-sidebars .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: 25.75%;
  }
  .two-sidebars .main:before, .two-sidebars .main:after {
    content: '';
    display: table;
  }
  .two-sidebars .main:after {
    clear: both;
  }
  .two-sidebars .main:last-child {
    margin-right: 0%;
  }
  .two-sidebars .sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    left: -51.5%;
  }
  .two-sidebars .sidebar_first:before, .two-sidebars .sidebar_first:after {
    content: '';
    display: table;
  }
  .two-sidebars .sidebar_first:after {
    clear: both;
  }
  .two-sidebars .sidebar_first:last-child {
    margin-right: 0%;
  }
  .two-sidebars .sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .two-sidebars .sidebar_second:before, .two-sidebars .sidebar_second:after {
    content: '';
    display: table;
  }
  .two-sidebars .sidebar_second:after {
    clear: both;
  }
  .two-sidebars .sidebar_second:last-child {
    margin-right: 0%;
  }
  .home_contact_us .column {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .home_contact_us .column:before, .home_contact_us .column:after {
    content: '';
    display: table;
  }
  .home_contact_us .column:after {
    clear: both;
  }
  .home_contact_us .column:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .product-categories .view-content > .views-row {
    margin-bottom: 2em;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .product-categories .view-content > .views-row:before, .product-categories .view-content > .views-row:after {
    content: '';
    display: table;
  }
  .product-categories .view-content > .views-row:after {
    clear: both;
  }
  .product-categories .view-content > .views-row:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .product-categories .view-content > .views-row:nth-of-type(2n + 1) {
    clear: both;
  }
}

@media (min-width: 1024px) {
  .product-categories .view-content > .views-row {
    margin-bottom: 2em;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .product-categories .view-content > .views-row:before, .product-categories .view-content > .views-row:after {
    content: '';
    display: table;
  }
  .product-categories .view-content > .views-row:after {
    clear: both;
  }
  .product-categories .view-content > .views-row:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  .product-categories .view-content > .views-row:nth-of-type(3n + 1) {
    clear: both;
  }
}

.primary-navigation ul, .primary-navigation ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation .mobile-dd-toggle-wrapper .btn-toggle-menu {
  background: #199ad6;
  display: block;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: lighter;
  cursor: pointer;
}

.primary-navigation .mobile-dd-toggle-wrapper .btn-toggle-menu:hover, .primary-navigation .mobile-dd-toggle-wrapper .btn-toggle-menu.active {
  background-color: #1479a8;
}

.primary-navigation .content > ul.menu {
  position: relative;
}

.primary-navigation .content > ul.menu > li {
  float: none;
}

@media (min-width: 768px) {
  .primary-navigation .content > ul.menu > li {
    float: left;
  }
}

.primary-navigation .content > ul.menu > li > a {
  display: block;
  padding: 10px 20px;
  border-bottom: 5px solid transparent;
  color: #fff;
  background: #199ad6;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .primary-navigation .content > ul.menu > li > a {
    color: #199ad6;
    background: transparent;
    font-weight: 600;
  }
}

.primary-navigation .content > ul.menu > li > a:hover, .primary-navigation .content > ul.menu > li > a.active-trail, .primary-navigation .content > ul.menu > li > a.active {
  border-color: #ffce07;
}

.primary-navigation .content > ul.menu > li:hover > a {
  border-color: #ffce07;
}

.primary-navigation .content > ul.menu > li > ul {
  width: 250px;
  position: absolute;
  background: #199ad6;
  z-index: 200000;
  display: none;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

@media (min-width: 768px) {
  .primary-navigation .content > ul.menu > li > ul {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  }
}

.primary-navigation .content > ul.menu > li > ul a {
  color: #fff;
  display: block;
  padding: 5px 10px;
  background: transparent url(../img/icon-arrow-right-white.png) no-repeat 95% center;
}

.primary-navigation .content > ul.menu > li > ul a:hover {
  background-color: #1479a8;
}

.primary-navigation .content > ul.menu > li:hover > ul {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.primary-navigation .content > ul.menu > li.mega-menu > ul {
  width: 100%;
  left: 0;
  padding: 20px;
}

.primary-navigation .content > ul.menu > li.mega-menu > ul > li {
  float: left;
}

.primary-navigation .content > ul.menu > li.mega-menu > ul > li > a {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 20px 10px;
}

.primary-navigation .content > ul.menu > li.mega-menu > ul > li > ul > li > a {
  font-size: 14px;
  font-size: 0.875rem;
}

.primary-navigation .content > ul.menu > li.mega-menu > ul > li > ul > li > ul {
  display: none;
}

/*
 * Design
 * 
 * Include all your design elements in this file.
 */
body {
  color: #908d7f;
  background: #f1f1e3;
}

body.admin-menu {
  margin-top: 29px !important;
}

a {
  transition: all 0.3s;
  color: #199ad6;
  text-decoration: none;
}

a:hover, a:focus {
  color: #1479a8;
}

p {
  margin: 0 0 15px;
}

.hidden {
  display: none;
}

.layout-row {
  *zoom: 1;
}

.layout-row:before, .layout-row:after {
  content: '';
  display: table;
}

.layout-row:after {
  clear: both;
}

body.cke_editable {
  padding: 20px;
}

body.cke_editable .layout-row {
  padding: 10px;
  margin: 0 -10px 20px;
  border: 1px dashed pink;
}

body.cke_editable .layout-row > div {
  border: 1px dashed #a5d3e4;
}

body.cke_editable table td {
  border: 1px dashed #ccc;
}

@media (min-width: 769px) {
  .col-one-half {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-half:before, .col-one-half:after {
    content: '';
    display: table;
  }
  .col-one-half:after {
    clear: both;
  }
  .col-one-half:last-child {
    margin-right: 0%;
  }
  .col-one-third {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-third:before, .col-one-third:after {
    content: '';
    display: table;
  }
  .col-one-third:after {
    clear: both;
  }
  .col-one-third:last-child {
    margin-right: 0%;
  }
  .col-two-thirds {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-two-thirds:before, .col-two-thirds:after {
    content: '';
    display: table;
  }
  .col-two-thirds:after {
    clear: both;
  }
  .col-two-thirds:last-child {
    margin-right: 0%;
  }
  .col-one-quarter {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-quarter:before, .col-one-quarter:after {
    content: '';
    display: table;
  }
  .col-one-quarter:after {
    clear: both;
  }
  .col-one-quarter:last-child {
    margin-right: 0%;
  }
}

/*
	CONTENT AREA
*/
/*	
	HEADFER SLIDER
*/
@media (max-width: 480px) {
  header {
    width: 100%;
    overflow: hidden;
  }
}

.header-slider-container {
  clear: both;
  position: relative;
  display: none;
}

@media (min-width: 430px) {
  .header-slider-container {
    display: block;
  }
}

.header-slider-container .header-slider-overlay {
  position: absolute;
  z-index: 900;
  width: 100%;
  background: transparent;
}

.header-slider-container .header-slider-overlay .slider-controls-holder {
  height: inherit;
  width: 100%;
  text-align: right;
  padding-right: 20px;
  padding-top: 120px;
}

.header-slider-container .header-slider-overlay .slider-controls-holder .cur-slide-title {
  font-size: 59px;
  font-size: 3.6875rem;
  font-weight: lighter;
  color: #fff;
  margin-bottom: 20px;
  width: 320px;
  display: block;
  float: right;
  height: 200px;
  line-height: 4.2rem;
}

.header-slider-container .header-slider-overlay .slider-controls-holder .slide-controls {
  display: block;
  clear: both;
  float: right;
}

.header-slider-container .header-slider-overlay .slider-controls-holder .slide-controls, .header-slider-container .header-slider-overlay .slider-controls-holder .slide-controls li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-slider-container .header-slider-overlay .slider-controls-holder .slide-controls > li {
  float: left;
}

.header-slider-container .header-slider-overlay .slider-controls-holder .slide-controls > li > a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  background: #199ad6;
  cursor: pointer;
  text-align: center;
  line-height: 24px;
  height: 44px;
}

.header-slider-container .header-slider-overlay .slider-controls-holder .slide-controls > li > a:hover {
  background-color: #1479a8;
}

.header-slider-container .header-slider-overlay .slider-controls-holder .slide-controls > li > a.slide-arrow {
  background-color: #1485ba;
  border-right: 1px solid #fff;
}

.header-slider-container .header-slider-overlay .slider-controls-holder .slide-controls > li > a.slide-arrow:hover {
  background-color: #0f648c;
}

.header-slider-container .header-slider-overlay .slider-controls-holder .slide-controls > li:last-child > a {
  min-width: 250px;
}

.header-slider-container .header-slider-overlay.mobile .slider-controls-holder {
  padding-top: 20px;
  position: absolute;
  bottom: 20px;
  height: auto;
}

.header-slider-container .header-slider-overlay.mobile .slider-controls-holder .cur-slide-title {
  font-size: 35px;
  font-size: 2.1875rem;
  width: 100%;
  display: block;
  height: auto;
  float: none;
  line-height: 2rem;
}

.header-slider-container .header-slider-overlay.mobile .slider-controls-holder .slide-controls > li > a {
  padding: 10px 15px;
}

.header-slider-container .header-slider-overlay.mobile .slider-controls-holder .slide-controls > li:last-child > a {
  min-width: 0px;
}

.header-slider-container .header-slider img {
  vertical-align: top;
}

/*
Please write in the SASS files
*/
/*
Nah, it'll be fine mate :) 
*/
/*
	FRONT PAGE
*/
body.front .slide-details {
  position: absolute;
  bottom: 25%;
  z-index: 9999;
  right: 32px;
  color: #ffffff;
  font-size: 3vw;
  width: 30%;
  text-align: right;
  font-weight: normal;
}

@media (min-width: 1280px) {
  body.front .slide-details {
    font-size: 2.5vw;
  }
}

body.front .slide-sub-title {
  display: none;
}

body.front .fp-services .service-col {
  border: 5px solid #f1f1e4;
  margin: 0 auto 30px;
}

@media (min-width: 768px) {
  body.front .fp-services .service-col {
    margin: 0;
  }
}

body.front .fp-services .service-col > .service-link {
  display: block;
  position: relative;
}

body.front .fp-services .service-col > .service-link .service-image {
  overflow: hidden;
}

body.front .fp-services .service-col > .service-link .service-image img {
  width: 100%;
  display: block;
  vertical-align: top;
}

body.front .fp-services .service-col > .service-link .service-link.button-inside {
  position: absolute;
  margin-top: -100px;
  z-index: 10;
  display: inline-block;
  background: #199ad6 url(../img/icon-arrow-right-white.png) no-repeat 94% center;
  color: #fff;
  padding: 10px 40px 10px 20px;
  font-size: 29px;
  font-size: 1.8125rem;
  line-height: 45px;
  font-weight: 300;
  transition: all 0.3s;
}

@media (min-width: 768px) and (max-width: 1280px) {
  body.front .fp-services .service-col > .service-link .service-link.button-inside {
    font-size: 2vw;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  body.front .fp-services .service-col > .service-link .service-link.button-inside {
    font-size: 4vw;
  }
}

@media (max-width: 480px) {
  body.front .fp-services .service-col > .service-link .service-link.button-inside {
    font-size: 6vw;
  }
}

body.front .fp-services .service-col > .service-link:hover .service-link.button-inside {
  background-color: #1479a8;
}

body.front .fp-welcome {
  background: #f1f1e3;
  padding: 40px 40px 40px 40px;
  color: #908d7f;
}

@media (min-width: 768px) {
  body.front .fp-welcome {
    padding-right: 400px;
    background: #fff url(../img/fp-recognition-bg.png) no-repeat bottom right;
    border: 5px solid #f1f1e3;
  }
}

body.front .fp-welcome h2 {
  margin: 0 0 20px;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 300;
  color: #199ad6;
}

@media (max-width: 480px) {
  body.front .fp-welcome h2 {
    line-height: 1.3em;
    font-size: 27px;
    font-size: 1.6875rem;
  }
}

body.front .fp-welcome .button {
  font-size: 16px;
  font-size: 1rem;
  padding: 20px;
  text-transform: uppercase;
  background-color: #199ad6;
}

body.front .fp-welcome .button:hover {
  background-color: #1479a8;
}

body.front .fp-servicing-maintenance-container {
  padding-bottom: 0;
}

body.front .fp-servicing-maintenance {
  background: #f1f1e3;
  padding: 40px 40px 40px 40px;
  color: #908d7f;
  min-height: 365px;
}

@media (min-width: 768px) {
  body.front .fp-servicing-maintenance {
    min-height: 365px;
    background: #fff url(../img/fp-servicing-bg.png) no-repeat bottom right;
    border: 5px solid #f1f1e3;
  }
}

body.front .fp-servicing-maintenance h2 {
  margin: 0 0 20px;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 300;
  color: #199ad6;
}

body.front .fp-servicing-maintenance .content {
  color: #908d7f;
}

@media (min-width: 768px) {
  body.front .fp-servicing-maintenance .content {
    max-width: 60%;
  }
}

body.front .fp-servicing-maintenance .button {
  font-size: 16px;
  font-size: 1rem;
  padding: 20px;
  text-transform: uppercase;
  background-color: #199ad6;
}

body.front .fp-servicing-maintenance .button:hover {
  background-color: #1479a8;
}

.page-taxonomy .products-teaser .views-field {
  margin-bottom: 2em;
}

/*
	HEADER
*/
header > .container {
  background: #fff;
}

@media (min-width: 768px) {
  header > .container {
    background: #fff url(../img/header-el-top.png) no-repeat top right;
  }
}

.not-front header > .container {
  border-bottom: 5px solid #fcce01;
}

header .site-name-slogan {
  margin: 30px 0 6px 0;
}

header .site-name-slogan .site-name {
  margin: 0;
}

header .site-name-slogan .site-name a {
  display: block;
  text-indent: -9001px;
  background: transparent url(../img/logo.png) no-repeat center center;
  width: 325px;
  height: 91px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  header .site-name-slogan .site-name a {
    background-position: 0 0;
    margin: 0 0;
  }
}

/*
	FOOTER
*/
.home_contact_us .container {
  margin-top: 30px;
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #908d7f;
  padding: 0 15px;
}

.home_contact_us .container .column {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .home_contact_us .container .column {
    margin-bottom: 0;
  }
}

.home_contact_us .container.designed-by {
  padding-top: 0;
  background: transparent;
  text-align: right;
}

.home_contact_us .container.designed-by a {
  font-weight: bold;
}

.home_contact_us .container h2 {
  margin: 0 0 30px;
  font-weight: lighter;
  color: #199ad6;
  font-size: 34px;
  font-size: 2.125rem;
}

.home_contact_us .container h2:after {
  content: '\00a0';
}

.home_contact_us .container .content > div {
  color: #199ad6;
  font-size: 14px;
  font-size: 0.875rem;
}

.home_contact_us .container .content > div strong {
  min-width: 70px;
  display: inline-block;
}

.home_contact_us .container .content ul {
  padding: 0;
}

.home_contact_us .container .content ul li {
  list-style: none;
  padding-left: 23px;
  background: transparent url(../img/arrow-right.png) no-repeat 5px 6px;
}

/*
	MAIN CONTENT CONTAINER
*/
body.not-front .main-container > .container {
  padding: 30px;
  background: #fff;
  color: #908d7f;
}

body.not-front .main-container > .container > .container-inner {
  padding-bottom: 30px;
}

body.not-front .main-container > .container .sidebar .block-menu-block h2 {
  margin: 0;
}

body.not-front .main-container > .container .sidebar .block-menu-block h2 a {
  background: #1684b8 url(../img/icon-arrow-right-white.png) no-repeat 95% center;
  color: #fff;
  display: block;
  padding: .5em 15px;
  font-weight: lighter;
  font-size: 25px;
  font-size: 1.5625rem;
}

body.not-front .main-container > .container .sidebar .block-menu-block h2 a:hover {
  background-color: #9d9d95;
}

body.not-front .main-container > .container .sidebar .block-menu-block h2 a.active {
  background-color: #199ad6;
}

body.not-front .main-container > .container .sidebar .block-menu-block h2 a.active:hover {
  background-color: #1479a8;
}

body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu, body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li > a {
  display: block;
  background: #1684b8 url(../img/icon-arrow-right-white.png) no-repeat 95% center;
  padding: 15px 15px;
  color: #fff;
}

body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li > a.active, body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li > a:hover {
  background-color: #1273a0;
}

body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li > ul {
  padding: 0;
  display: none;
}

body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li > ul > li > a {
  display: block;
  background: #1684b8;
  padding: 5px 40px;
  color: #fff;
}

body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li > ul > li > a.active, body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li > ul > li > a:hover {
  background-color: #1273a0;
}

body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li > ul > li ul {
  display: none;
}

body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li.active > ul, body.not-front .main-container > .container .sidebar .block-menu-block .content > ul.menu > li.active-trail > ul {
  display: block;
}

body.not-front .main-container > .container .main {
  padding-right: 30px;
}

body.not-front .main-container > .container .main h1 {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
}

@media (min-width: 768px) {
  body.not-front .main-container > .container .main h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

body.not-front .main-container > .container .main .content-wrapper .field {
  margin-bottom: 20px;
}

body.not-front .main-container > .container .main .content-wrapper .field .field-label {
  font-family: 'Open Sans';
  color: #199ad6;
  font-weight: lighter !important;
  font-size: 18px;
  margin-bottom: 5px;
}

/*
	FRONT PAGE
*/
body.front .main-container > .container {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #fff;
  color: #908d7f;
}

body.front .main-container > .container:first-child {
  padding-top: 40px;
}

body.front .main-container > .container.fp-servicing-maintenance-container {
  padding-bottom: 0;
}

.map-iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.map-iframe iframe,
.map-iframe object,
.map-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cke_editable ul {
  display: block;
  list-style-type: disc;
}

.search-info,
.submitted-by {
  display: none;
}

/*
	TOP BANNER
*/
.top-banner img {
  vertical-align: top;
}

/**
 * Responsive tables. tables in node content are wrapped with a div with class "table-responsive" via js in scripts.js
 */
.table-responsive {
  width: 100%;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .table-responsive table tr td, .table-responsive table tr th {
    padding: 5px;
  }
}

.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.table-responsive::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

.taxonomy-description {
  margin-bottom: 30px;
}

.fp-products > .container {
  background: white;
  padding-bottom: 2em;
}

.home_sign_up {
  margin-top: 30px;
}

.home_sign_up > .container {
  background: #fff;
}

.home_sign_up > .container .block {
  padding: 40px 0;
}

.home_sign_up > .container .block > h2 {
  margin-top: 0;
}

.home_sign_up > .container .block > .content .node > h2 {
  display: none;
}

@media (min-width: 768px) {
  .home_sign_up > .container .block > .content .field-name-body,
  .home_sign_up > .container .block > .content .webform-client-form {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .home_sign_up > .container .block > .content .field-name-body:before, .home_sign_up > .container .block > .content .field-name-body:after,
  .home_sign_up > .container .block > .content .webform-client-form:before,
  .home_sign_up > .container .block > .content .webform-client-form:after {
    content: '';
    display: table;
  }
  .home_sign_up > .container .block > .content .field-name-body:after,
  .home_sign_up > .container .block > .content .webform-client-form:after {
    clear: both;
  }
  .home_sign_up > .container .block > .content .field-name-body:last-child,
  .home_sign_up > .container .block > .content .webform-client-form:last-child {
    margin-right: 0%;
  }
}

.block-search {
  padding-top: 40px;
  padding-bottom: 40px;
}

.block-search > h2 {
  display: none;
}

.block-search .form-type-searchfield {
  float: left;
  width: 70%;
}

.block-search .form-actions {
  float: left;
  width: 30%;
}

.block-search .form-actions .form-submit {
  line-height: 20px;
}

.page-search .main .form-type-searchfield,
.page-search #search-form,
.page-search .region-content > h2 {
  display: none;
}

.sidebar_first .region-sidebar-first > div:first-child {
  padding-top: 0;
  margin-bottom: 1em;
}

.page-node-98 .content-wrapper .field-name-body h2 {
  text-align: left !important;
}

.page-node-98 .content-wrapper .field-name-body h2 span {
  display: block;
  text-align: left;
}

.page-node-98 .content-wrapper .field-name-body img {
  height: auto !important;
}

.table {
  *zoom: 1;
}

.table:before, .table:after {
  content: '';
  display: table;
}

.table:after {
  clear: both;
}

.table .table-cell {
  width: 100%;
  text-align: center !important;
}

@media (min-width: 480px) and (max-width: 1023px) {
  .table .table-cell {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .table .table-cell:before, .table .table-cell:after {
    content: '';
    display: table;
  }
  .table .table-cell:after {
    clear: both;
  }
  .table .table-cell:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .table .table-cell:nth-of-type(2n + 1) {
    clear: both;
  }
}

@media (min-width: 1024px) {
  .table .table-cell {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .table .table-cell:before, .table .table-cell:after {
    content: '';
    display: table;
  }
  .table .table-cell:after {
    clear: both;
  }
  .table .table-cell:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  .table .table-cell:nth-of-type(3n + 1) {
    clear: both;
  }
}

.table .table-cell p {
  text-align: center;
}

.search-form label {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
}

.search-form .form-item-custom-search-types {
  display: none;
}

footer .designed-by {
  padding: 3em 0 2em;
}

footer .designed-by p {
  margin: 0;
  text-align: right;
}

@media (max-width: 480px) {
  footer .designed-by p {
    text-align: center;
  }
}

footer .designed-by p a {
  font-weight: bold;
}

.view-id-products_by_audience_segment .node-readmore {
  display: none;
}

.view-id-products_by_audience_segment .view-content {
  *zoom: 1;
}

.view-id-products_by_audience_segment .view-content:before, .view-id-products_by_audience_segment .view-content:after {
  content: '';
  display: table;
}

.view-id-products_by_audience_segment .view-content:after {
  clear: both;
}

.view-id-products_by_audience_segment .view-content .views-row {
  width: 100%;
}

@media (min-width: 480px) and (max-width: 1023px) {
  .view-id-products_by_audience_segment .view-content .views-row {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .view-id-products_by_audience_segment .view-content .views-row:before, .view-id-products_by_audience_segment .view-content .views-row:after {
    content: '';
    display: table;
  }
  .view-id-products_by_audience_segment .view-content .views-row:after {
    clear: both;
  }
  .view-id-products_by_audience_segment .view-content .views-row:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .view-id-products_by_audience_segment .view-content .views-row:nth-of-type(2n + 1) {
    clear: both;
  }
}

@media (min-width: 1024px) {
  .view-id-products_by_audience_segment .view-content .views-row {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .view-id-products_by_audience_segment .view-content .views-row:before, .view-id-products_by_audience_segment .view-content .views-row:after {
    content: '';
    display: table;
  }
  .view-id-products_by_audience_segment .view-content .views-row:after {
    clear: both;
  }
  .view-id-products_by_audience_segment .view-content .views-row:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  .view-id-products_by_audience_segment .view-content .views-row:nth-of-type(3n + 1) {
    clear: both;
  }
}

.view-id-products_by_audience_segment .group-single-product {
  border-top: 5px solid #fcce01;
  padding-top: 10px;
}

.view-id-products_by_audience_segment .single-category .cat-image a {
  display: block;
}

.view-id-products_by_audience_segment .single-category .cat-image a img {
  display: block;
}

.view-id-products_by_audience_segment .single-category .cat-link h3 {
  margin: 10px 0 0;
  font-size: 22px;
  font-size: 1.375rem;
}

.view-id-products_by_audience_segment .single-category .cat-link h3 a {
  display: block;
  padding-right: 30px;
  background: transparent url(../img/arrow-right-blue.png) no-repeat 95% 10px;
}

.single-product-incl, .view-id-products_by_audience_segment .group-single-product, .node-type-product .content-wrapper .block-views .group-single-product, .field-name-field-related-products .group-single-product, .section-products.page-taxonomy .content-wrapper .group-single-product, .view-taxonomy-term .view-content > .views-row .group-single-product {
  margin-bottom: 20px;
}

.single-product-incl .field-name-field-product-image, .view-id-products_by_audience_segment .group-single-product .field-name-field-product-image, .node-type-product .content-wrapper .block-views .group-single-product .field-name-field-product-image, .field-name-field-related-products .group-single-product .field-name-field-product-image, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-field-product-image, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-field-product-image,
.single-product-incl .field-name-field-product-code, .view-id-products_by_audience_segment .group-single-product .field-name-field-product-code, .node-type-product .content-wrapper .block-views .group-single-product .field-name-field-product-code, .field-name-field-related-products .group-single-product .field-name-field-product-code, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-field-product-code, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-field-product-code {
  margin: 0 0 10px !important;
}

.single-product-incl .field-name-field-product-image a, .view-id-products_by_audience_segment .group-single-product .field-name-field-product-image a, .node-type-product .content-wrapper .block-views .group-single-product .field-name-field-product-image a, .field-name-field-related-products .group-single-product .field-name-field-product-image a, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-field-product-image a, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-field-product-image a, .single-product-incl .field-name-field-product-image img, .view-id-products_by_audience_segment .group-single-product .field-name-field-product-image img, .node-type-product .content-wrapper .block-views .group-single-product .field-name-field-product-image img, .field-name-field-related-products .group-single-product .field-name-field-product-image img, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-field-product-image img, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-field-product-image img,
.single-product-incl .field-name-field-product-code a, .view-id-products_by_audience_segment .group-single-product .field-name-field-product-code a, .node-type-product .content-wrapper .block-views .group-single-product .field-name-field-product-code a, .field-name-field-related-products .group-single-product .field-name-field-product-code a, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-field-product-code a, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-field-product-code a,
.single-product-incl .field-name-field-product-code img, .view-id-products_by_audience_segment .group-single-product .field-name-field-product-code img, .node-type-product .content-wrapper .block-views .group-single-product .field-name-field-product-code img, .field-name-field-related-products .group-single-product .field-name-field-product-code img, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-field-product-code img, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-field-product-code img {
  display: block;
}

.single-product-incl .field-name-field-product-code .field-label, .view-id-products_by_audience_segment .group-single-product .field-name-field-product-code .field-label, .node-type-product .content-wrapper .block-views .group-single-product .field-name-field-product-code .field-label, .field-name-field-related-products .group-single-product .field-name-field-product-code .field-label, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-field-product-code .field-label, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-field-product-code .field-label {
  display: inline-block;
}

.single-product-incl .field-name-field-product-code .field-items, .view-id-products_by_audience_segment .group-single-product .field-name-field-product-code .field-items, .node-type-product .content-wrapper .block-views .group-single-product .field-name-field-product-code .field-items, .field-name-field-related-products .group-single-product .field-name-field-product-code .field-items, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-field-product-code .field-items, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-field-product-code .field-items {
  display: inline-block;
  color: #199ad6;
  font-weight: lighter;
}

.single-product-incl .field-name-title, .view-id-products_by_audience_segment .group-single-product .field-name-title, .node-type-product .content-wrapper .block-views .group-single-product .field-name-title, .field-name-field-related-products .group-single-product .field-name-title, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-title, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-title {
  margin: 0 0 5px !important;
}

.single-product-incl h2, .view-id-products_by_audience_segment .group-single-product h2, .node-type-product .content-wrapper .block-views .group-single-product h2, .field-name-field-related-products .group-single-product h2, .section-products.page-taxonomy .content-wrapper .group-single-product h2, .view-taxonomy-term .view-content > .views-row .group-single-product h2 {
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  margin: 0 0 0px;
  color: #1273a0;
}

.single-product-incl h2:hover, .view-id-products_by_audience_segment .group-single-product h2:hover, .node-type-product .content-wrapper .block-views .group-single-product h2:hover, .field-name-field-related-products .group-single-product h2:hover, .section-products.page-taxonomy .content-wrapper .group-single-product h2:hover, .view-taxonomy-term .view-content > .views-row .group-single-product h2:hover {
  color: #0d5272;
}

.single-product-incl h2 a, .view-id-products_by_audience_segment .group-single-product h2 a, .node-type-product .content-wrapper .block-views .group-single-product h2 a, .field-name-field-related-products .group-single-product h2 a, .section-products.page-taxonomy .content-wrapper .group-single-product h2 a, .view-taxonomy-term .view-content > .views-row .group-single-product h2 a {
  color: #1273a0;
}

.single-product-incl h2 a:hover, .view-id-products_by_audience_segment .group-single-product h2 a:hover, .node-type-product .content-wrapper .block-views .group-single-product h2 a:hover, .field-name-field-related-products .group-single-product h2 a:hover, .section-products.page-taxonomy .content-wrapper .group-single-product h2 a:hover, .view-taxonomy-term .view-content > .views-row .group-single-product h2 a:hover {
  color: #0d5272;
}

.single-product-incl .field-name-node-link a, .view-id-products_by_audience_segment .group-single-product .field-name-node-link a, .node-type-product .content-wrapper .block-views .group-single-product .field-name-node-link a, .field-name-field-related-products .group-single-product .field-name-node-link a, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-node-link a, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-node-link a {
  display: inline-block;
  padding-right: 25px;
  color: #199ad6;
  background: transparent url(../img/arrow-right-light-blue.png) no-repeat 95% center;
}

.single-product-incl .field-name-node-link a:hover, .view-id-products_by_audience_segment .group-single-product .field-name-node-link a:hover, .node-type-product .content-wrapper .block-views .group-single-product .field-name-node-link a:hover, .field-name-field-related-products .group-single-product .field-name-node-link a:hover, .section-products.page-taxonomy .content-wrapper .group-single-product .field-name-node-link a:hover, .view-taxonomy-term .view-content > .views-row .group-single-product .field-name-node-link a:hover {
  color: #1479a8;
}

.node-type-product .content-wrapper {
  *zoom: 1;
}

.node-type-product .content-wrapper:before, .node-type-product .content-wrapper:after {
  content: '';
  display: table;
}

.node-type-product .content-wrapper:after {
  clear: both;
}

.node-type-product .content-wrapper .block-views {
  clear: both;
  margin-top: 20px;
}

.node-type-product .content-wrapper .block-views .view-id-related_products.view-display-id-block_1 > .view-content > div {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
}

.node-type-product .content-wrapper .block-views .view-id-related_products.view-display-id-block_1 > .view-content > div:before, .node-type-product .content-wrapper .block-views .view-id-related_products.view-display-id-block_1 > .view-content > div:after {
  content: '';
  display: table;
}

.node-type-product .content-wrapper .block-views .view-id-related_products.view-display-id-block_1 > .view-content > div:after {
  clear: both;
}

.node-type-product .content-wrapper .block-views .view-id-related_products.view-display-id-block_1 > .view-content > div:nth-of-type(3n) {
  margin-right: 0%;
  float: right;
}

.node-type-product .content-wrapper .block-views .view-id-related_products.view-display-id-block_1 > .view-content > div:nth-of-type(3n + 1) {
  clear: both;
}

@media (min-width: 480px) {
  .node-type-product .content-wrapper .region-content > .field-name-field-product-image,
  .node-type-product .content-wrapper .product-right {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .node-type-product .content-wrapper .region-content > .field-name-field-product-image:before, .node-type-product .content-wrapper .region-content > .field-name-field-product-image:after,
  .node-type-product .content-wrapper .product-right:before,
  .node-type-product .content-wrapper .product-right:after {
    content: '';
    display: table;
  }
  .node-type-product .content-wrapper .region-content > .field-name-field-product-image:after,
  .node-type-product .content-wrapper .product-right:after {
    clear: both;
  }
  .node-type-product .content-wrapper .region-content > .field-name-field-product-image:nth-of-type(2n),
  .node-type-product .content-wrapper .product-right:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .node-type-product .content-wrapper .region-content > .field-name-field-product-image:nth-of-type(2n + 1),
  .node-type-product .content-wrapper .product-right:nth-of-type(2n + 1) {
    clear: both;
  }
}

.node-type-product .content-wrapper > .field-name-field-product-image {
  text-align: center;
}

.node-type-product .content-wrapper > .block-views {
  padding-top: 20px;
}

a[data-readmore-toggle] {
  margin: 10px 0 30px;
}

.page-products .content-wrapper .item-list {
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 480px) and (max-width: 768px) {
  .page-products .content-wrapper .item-list {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .page-products .content-wrapper .item-list:before, .page-products .content-wrapper .item-list:after {
    content: '';
    display: table;
  }
  .page-products .content-wrapper .item-list:after {
    clear: both;
  }
  .page-products .content-wrapper .item-list:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .page-products .content-wrapper .item-list:nth-of-type(2n + 1) {
    clear: both;
  }
}

@media (min-width: 768px) {
  .page-products .content-wrapper .item-list {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .page-products .content-wrapper .item-list:before, .page-products .content-wrapper .item-list:after {
    content: '';
    display: table;
  }
  .page-products .content-wrapper .item-list:after {
    clear: both;
  }
  .page-products .content-wrapper .item-list:nth-of-type(2n) {
    margin-right: 3%;
    float: left;
  }
  .page-products .content-wrapper .item-list:nth-of-type(2n + 1) {
    clear: none;
  }
  .page-products .content-wrapper .item-list:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  .page-products .content-wrapper .item-list:nth-of-type(3n + 1) {
    clear: both;
  }
}

.page-products .content-wrapper .item-list .field {
  margin: 0 !important;
}

.page-products .content-wrapper .item-list h3 {
  margin: 0;
}

.page-products .content-wrapper .item-list h2 {
  font-weight: normal;
  border-bottom: 1px solid #199ad6;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 15px;
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .page-products .content-wrapper .item-list h2 {
    height: 57px;
  }
}

.page-products .content-wrapper .item-list h2 a {
  color: #199ad6;
}

.page-products .content-wrapper .item-list h2 a:hover {
  color: #1479a8;
}

.page-products .content-wrapper .item-list .field-name-field-category-thumbnail {
  margin: 0 0 10px !important;
}

.page-products .content-wrapper .item-list .field-name-field-category-thumbnail a,
.page-products .content-wrapper .item-list .field-name-field-category-thumbnail img {
  display: block;
}

.page-products .content-wrapper .item-list ul {
  display: none;
}

.page-products .content-wrapper .item-list ul, .page-products .content-wrapper .item-list ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-products .content-wrapper .item-list ul a {
  display: block;
  margin-bottom: 5px;
}

.fp-products h2 {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  margin-top: 0;
}

@media (max-width: 480px) {
  .fp-products h2 {
    font-size: 9vw;
  }
}

.fp-products .content {
  background: #ffce07;
  color: #fff;
  padding: 20px 0px;
  overflow: hidden;
}

@media (min-width: 480px) {
  .fp-products .content .views-row {
    width: 50%;
    float: left;
  }
}

@media (min-width: 1024px) {
  .fp-products .content .views-row {
    width: 25%;
    margin-bottom: 0;
  }
}

.fp-products .content .single-top-category {
  width: 100%;
  margin-bottom: 15px;
  padding: 0 15px;
  float: none;
}

.fp-products .content .single-top-category .cat-inner {
  background: #fff;
}

.fp-products .content .single-top-category .cat-inner .cat-image {
  margin-bottom: 15px;
  text-align: center;
}

.fp-products .content .single-top-category .cat-inner .cat-image img {
  display: inline-block;
}

.fp-products .content .single-top-category .cat-inner .cat-price {
  color: #199ad6;
  padding: 0 15px;
  margin-bottom: 15px;
}

.fp-products .content .single-top-category .cat-inner .cat-name {
  color: #333;
  padding: 0 15px;
  margin-bottom: 15px;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}

.fp-products .content .single-top-category .cat-inner .cat-sub-cats {
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .fp-products .content .single-top-category .cat-inner .cat-sub-cats {
    min-height: 3.4em;
  }
}

.fp-products .content .single-top-category .cat-inner .cat-sub-cats ul, .fp-products .content .single-top-category .cat-inner .cat-sub-cats ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fp-products .content .single-top-category .cat-inner .cat-sub-cats ul li {
  display: block;
  padding: 0 15px 0 35px;
  margin-bottom: 5px;
  color: #adadad;
  background: transparent url(../img/arrow-right.png) no-repeat 15px 6px;
}

.fp-products .content .single-top-category .cat-inner a {
  overflow: hidden;
  display: block;
}

.fp-products .content .single-top-category .cat-inner a img {
  display: block;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  width: 100%;
}

.fp-products .content .single-top-category .cat-inner a img:hover {
  transition: all 0.3s ease;
}

.fp-products .content .single-top-category .cat-inner a img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.fp-products .content .single-top-category .cat-inner .cat-link a {
  display: block;
  text-align: center;
  color: #fff;
  background: #199ad6;
  line-height: 60px;
  text-transform: uppercase;
  font-weight: bold;
}

.fp-products .content .single-top-category .cat-inner .cat-link a:hover {
  background-color: #1479a8;
}

.field-name-field-related-products {
  clear: both;
  margin-top: 40px;
}

.field-name-field-related-products .field-label {
  font-weight: normal !important;
  font-size: 22px !important;
  line-height: 26px !important;
  margin: 0 0 20px !important;
  color: #1273a0;
}

.field-name-field-related-products .field-label:hover {
  color: #0d5272;
}

.field-name-field-related-products .field-label a {
  color: #1273a0;
}

.field-name-field-related-products .field-label a:hover {
  color: #0d5272;
}

.field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div {
  width: 100%;
}

@media (min-width: 768px) {
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:before, .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:after {
    content: '';
    display: table;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:after {
    clear: both;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:nth-of-type(2n + 1) {
    clear: both;
  }
}

@media (min-width: 1024px) {
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:before, .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:after {
    content: '';
    display: table;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:after {
    clear: both;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:nth-of-type(2n) {
    margin-right: 3%;
    float: left;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:nth-of-type(2n + 1) {
    clear: none;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  .field-name-field-related-products .view-id-related_products_new.view-display-id-block > .view-content > div:nth-of-type(3n + 1) {
    clear: both;
  }
}

.section-products.page-taxonomy .node-readmore {
  display: none;
}

.section-products.page-taxonomy .content-wrapper .group-single-product {
  border-top: 5px solid #fcce01;
  padding-top: 10px;
}

.section-products.page-taxonomy .content-wrapper .single-category .cat-image a {
  display: block;
}

.section-products.page-taxonomy .content-wrapper .single-category .cat-image a img {
  display: block;
}

.section-products.page-taxonomy .content-wrapper .single-category .cat-link h3 {
  margin: 10px 0 0;
  font-size: 22px;
  font-size: 1.375rem;
}

.section-products.page-taxonomy .content-wrapper .single-category .cat-link h3 a {
  display: block;
  padding-right: 30px;
  background: transparent url(../img/arrow-right-blue.png) no-repeat 95% 10px;
}

.view-taxonomy-term {
  @extends .section-products.page-taxonomy;
}

.view-taxonomy-term .view-content {
  *zoom: 1;
}

.view-taxonomy-term .view-content img {
  display: block;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  width: 100%;
}

.view-taxonomy-term .view-content img:hover {
  transition: all 0.3s ease;
}

.view-taxonomy-term .view-content img:hover {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.view-taxonomy-term .view-content:before, .view-taxonomy-term .view-content:after {
  content: '';
  display: table;
}

.view-taxonomy-term .view-content:after {
  clear: both;
}

@media (min-width: 480px) {
  .view-taxonomy-term .view-content > .views-row {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .view-taxonomy-term .view-content > .views-row {
    float: left;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .view-taxonomy-term .view-content > .views-row:before, .view-taxonomy-term .view-content > .views-row:after {
    content: '';
    display: table;
  }
  .view-taxonomy-term .view-content > .views-row:after {
    clear: both;
  }
  .view-taxonomy-term .view-content > .views-row:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .view-taxonomy-term .view-content > .views-row:nth-of-type(2n + 1) {
    clear: both;
  }
}

@media (min-width: 1024px) {
  .view-taxonomy-term .view-content > .views-row {
    float: left;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .view-taxonomy-term .view-content > .views-row:before, .view-taxonomy-term .view-content > .views-row:after {
    content: '';
    display: table;
  }
  .view-taxonomy-term .view-content > .views-row:after {
    clear: both;
  }
  .view-taxonomy-term .view-content > .views-row:nth-of-type(2n) {
    margin-right: 3%;
    float: left;
  }
  .view-taxonomy-term .view-content > .views-row:nth-of-type(2n + 1) {
    clear: none;
  }
  .view-taxonomy-term .view-content > .views-row:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  .view-taxonomy-term .view-content > .views-row:nth-of-type(3n + 1) {
    clear: both;
  }
}

.view-taxonomy-term .view-content > .views-row .group-single-product {
  border-top: 5px solid #fcce01;
  padding-top: 10px;
}

.view-taxonomy-term .view-content > .views-row .group-single-product .single-category .cat-image a {
  display: block;
}

.view-taxonomy-term .view-content > .views-row .group-single-product .single-category .cat-image a img {
  display: block;
  display: block;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.view-taxonomy-term .view-content > .views-row .group-single-product .single-category .cat-image a img:hover {
  transition: all 0.3s ease;
}

.view-taxonomy-term .view-content > .views-row .group-single-product .single-category .cat-image a img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.view-taxonomy-term .view-content > .views-row .group-single-product .single-category .cat-link h3 {
  margin: 10px 0 0;
  font-size: 22px;
  font-size: 1.375rem;
}

.view-taxonomy-term .view-content > .views-row .group-single-product .single-category .cat-link h3 a {
  display: block;
  padding-right: 30px;
  background: transparent url(../img/arrow-right-blue.png) no-repeat 95% 10px;
}

/*# sourceMappingURL=style.css.map */