/* 
 * 	Core Owl Carousel CSS File (live)
 *	v1.3.2
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
  cursor: url(../images/grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}
/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 30px;
  background: #869791;
  filter: alpha(opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: alpha(opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}
/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: alpha(opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  border-radius: 20px;
  background: #869791;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: alpha(opacity=100);
  /*IE7 fix*/
  opacity: 1;
}
/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 30px;
}
/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(../images/AjaxLoader.gif) no-repeat center center;
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}
.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
            transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
            transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
            transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
            transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
            transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

/*! normalize.css v1.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}
/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0;
}
/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: none;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}
h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}
/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Address styling not present in IE 6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 1em 0;
}
/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none;
}
/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: '';
  content: none;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}
dd {
  margin: 0 0 0 40px;
}
/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}
/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}
/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}
/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}
/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}
/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}
/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}
/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.cf:after {
  clear: both;
}
/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1;
}
::-webkit-input-placeholder {
  opacity: 1;
}
:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
}
::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
}
:-ms-input-placeholder {
  opacity: 1;
}
@font-face {
  font-family: 'oswald_regularregular';
  src: url('../fonts/Oswald-Regular-webfont.eot');
  src: url('../fonts/Oswald-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/Oswald-Regular-webfont.woff2') format('woff2'), url('../fonts/Oswald-Regular-webfont.woff') format('woff'), url('../fonts/Oswald-Regular-webfont.ttf') format('truetype'), url('../fonts/Oswald-Regular-webfont.svg#oswald_regularregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'source_sans_proregular';
  src: url('../fonts/SourceSansPro-Regular-webfont.eot');
  src: url('../fonts/SourceSansPro-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/SourceSansPro-Regular-webfont.woff2') format('woff2'), url('../fonts/SourceSansPro-Regular-webfont.woff') format('woff'), url('../fonts/SourceSansPro-Regular-webfont.ttf') format('truetype'), url('../fonts/SourceSansPro-Regular-webfont.svg#source_sans_proregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'modern_pictogramsnormal';
  src: url('../fonts/modernpics-webfont.eot');
  src: url('../fonts/modernpics-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/modernpics-webfont.woff2') format('woff2'), url('../fonts/modernpics-webfont.woff') format('woff'), url('../fonts/modernpics-webfont.ttf') format('truetype'), url('../fonts/modernpics-webfont.svg#modern_pictogramsnormal') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "oben";
  src: url("../fonts/oben.eot");
  src: url("../fonts/oben.eot?#iefix") format("embedded-opentype"), url("../fonts/oben.woff") format("woff"), url("../fonts/oben.ttf") format("truetype"), url("../fonts/oben.svg#top-calibre") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "oben" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "oben" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-align-justify:before {
  content: "a";
}
.icon-social-skype:before {
  content: "c";
}
.icon-social-linkedin:before {
  content: "d";
}
.icon-social-facebook:before {
  content: "g";
}
.icon-social-twitter:before {
  content: "h";
}
.icon-social-google-plus:before {
  content: "i";
}
.icon-chevron-left-1:before {
  content: "<";
}
.icon-chevron-right-1:before {
  content: ">";
}
.icon-pin:before {
  content: "b";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'oswald_regularregular', Arial, sans-serif;
  color: #069adb;
  text-transform: uppercase;
  margin: 0 0 0.4em 0;
  -webkit-padding-before: 1px;
}
h1 {
  font-size: 2.5em;
  color: #069adb;
}
h2 {
  font-size: 2em;
  color: white;
}
h3 {
  font-size: 1.7em;
  color: white;
}
p {
  font-family: 'source_sans_proregular', Arial, sans-serif;
  color: #b5acb8;
}
a,
a:visited {
  color: #069adb;
  transition: 0.3s;
}
a:hover,
a:visited:hover {
  color: #0577a9;
}
a.button {
  display: block;
  background: #1a171b;
  float: left;
  font-family: 'oswald_regularregular', Arial, sans-serif;
  font-size: 1.2em;
  line-height: 1.2em;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.45em 0.35em 0.25em 0.35em;
  -webkit-padding-before: 5px;
  transition: 0.3s;
}
a.button:hover {
  background: #069adb;
  color: white;
}
ul li,
ol li {
  font-family: 'source_sans_proregular', Arial, sans-serif;
  color: #b5acb8;
}
body {
  background: #1a171b;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em 0 1em;
}
.content {
  padding: 2em 0 1em 0;
}
.breadcrumb {
  padding: 2em 0 2em 0.85em;
  background: #1a171b;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.breadcrumb .wrapper {
  padding: 0;
}
.breadcrumb:after {
  background: linear-gradient(rgba(0, 0, 0, 0) 0px, #322f33 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
  bottom: 0;
  content: " ";
  height: 45%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.breadcrumb h1 {
  margin: 0 0 0.25em 0;
  color: white;
}
.breadcrumb .trail {
  color: #e6e6e6;
  position: relative;
  z-index: 15;
}
.breadcrumb .trail a {
  color: #66cdfb;
}
.breadcrumb .trail a:hover {
  color: #0589c2;
}
.search-page {
  padding: 1em;
}
.search-page h1 span {
  color: white;
  border-bottom: 1px solid #ccc;
}
.contact-page {
  overflow: hidden;
  padding: 1em 0 1em 1em;
}
.contact-page .col-1 {
  padding-right: 1em;
}
.contact-page .col-1,
.contact-page .col-2 {
  float: left;
  width: 50%;
  box-sizing: border-box;
}
.contact-page .col-1 figure img,
.contact-page .col-2 figure img {
  max-width: 100%;
}
.contact-page .row {
  margin: 1em 0 0 0;
}
.contact-page .row .col {
  width: 33.33%;
  float: left;
  padding: 0.75em;
  box-sizing: border-box;
}
.about-page {
  padding: 0 0 0 1em;
}
.about-page img.featured {
  -webkit-border-radius: 0 0 0 40px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 0 40px;
  -moz-background-clip: padding;
  border-radius: 0 0 0 40px;
  background-clip: padding-box;
}
.about-page .row .col {
  width: 50%;
}
ul.values {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
ul.values li {
  font-size: 1.4em;
  font-family: 'oswald_regularregular', Arial, sans-serif;
  text-transform: uppercase;
  color: #b5acb8;
  float: left;
  margin: 0 1em 0 0;
}
ul.values li:after {
  content: '/';
  padding: 0 0 0 1em;
  color: #069adb;
}
ul.values li:last-of-type:after {
  content: none;
}
.news-page {
  overflow: hidden;
  padding: 0 1em 0 1em;
}
.news-page .left-col {
  float: left;
  width: 20%;
}
.news-page .left-col ul {
  padding: 0 0 1em 0;
  margin: 0;
  list-style-type: none;
}
.news-page .left-col ul li a {
  text-decoration: none;
  text-transform: uppercase;
}
.news-page .right-col {
  float: right;
  width: 80%;
}
.news-page .right-col .content {
  padding-top: 0;
}
.news-page .right-col h1 span {
  color: white;
}
.news-page .right-col .cover figure img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
table {
  background: #45484d;
  border: 1px solid #5d6168;
  width: 100%;
  margin: 1.5em 0 1.5em 0;
}
table thead th {
  font-family: 'oswald_regularregular', Arial, sans-serif;
  font-weight: normal;
  font-size: 1.25em;
  text-align: left;
  padding: 0.5em 0.35em 0.5em 0.35em;
  text-transform: uppercase;
  background: #45484d;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #45484d 0%, #000000 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#45484d', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
  color: white;
}
table tbody tr td {
  padding: 0.45em;
  color: #e0e2e4;
}
table tbody tr:nth-of-type(odd) {
  background: #757a83;
}
section.header {
  padding: 1em 0 1em 0;
}
section.header .branding {
  float: left;
}
section.header .branding .logo figure img {
  max-width: 250px;
}
section.header .info {
  float: right;
  padding: 0 0 0 0;
  width: 50%;
}
section.header .info .social ul {
  padding: 0;
  margin: 0 0 0;
  list-style-type: none;
  float: right;
}
section.header .info .social ul li {
  float: left;
}
section.header .info .social ul li a {
  font-size: 3.2em;
  margin: 0 0.1em 0 0;
  text-decoration: none;
  color: #434351;
  transition: 0.3s;
}
section.header .info .social ul li a:hover {
  color: #069adb;
}
section.header .info .contact {
  padding: 2em 0 0 0;
}
section.header .info .contact ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  float: right;
}
section.header .info .contact ul li {
  float: right;
  font-family: 'oswald_regularregular', Arial, sans-serif;
  font-size: 1.25em;
  text-transform: uppercase;
  margin: 0 1em 0 0;
}
section.header .info .contact ul li a {
  color: #069adb;
}
section.header .translator {
  padding: 0 0 1em 0;
  overflow: hidden;
}
section.header .translator #google_language_translator {
  float: right;
}
section.navigation {
  background: #069adb;
  width: 100%;
}
section.navigation .wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
}
section.navigation nav {
  float: left;
  overflow: hidden;
}
section.navigation nav a#toggle {
  width: 100%;
  display: none;
  padding: 0.35em 0.35em 0.15em 0.35em;
  font-size: 2.25em;
  color: white;
  float: left;
  text-decoration: none;
}
section.navigation nav ul {
  padding: 0;
  margin: 0;
}
section.navigation nav ul li {
  float: left;
}
section.navigation nav ul li a {
  display: block;
  font-family: 'oswald_regularregular', Arial, sans-serif;
  font-size: 1.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2em 1.5em 1em 1.5em;
  color: white;
  transition: 0.3s;
}
section.navigation nav ul li a:hover {
  background: #1a171b;
  color: white;
}
section.navigation nav ul li.current-menu-item a {
  background: #1a171b;
  color: white;
}
section.navigation .search {
  position: absolute;
  right: 20px;
  top: 25%;
}
section.navigation .search ::-webkit-input-placeholder {
  opacity: 1;
  color: white;
}
section.navigation .search :-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: white;
}
section.navigation .search ::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: white;
}
section.navigation .search :-ms-input-placeholder {
  opacity: 1;
  color: white;
}
section.navigation .search fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
section.navigation .search input[type="search"] {
  padding: 0 0 0 1.5em;
  color: white;
  border: 1px solid white;
  background: #66cdfb;
  min-height: 32px;
  box-sizing: border-box;
}
section.navigation .search input[type="search"]:focus {
  background: #97ddfc;
  color: #1a171b;
}
section.navigation .search input[type="submit"] {
  font-family: 'oswald_regularregular', Arial, sans-serif;
  text-transform: uppercase;
  color: white;
  background: #035478;
  border: 1px solid white;
  height: 32px;
  padding-top: 5px;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}
section.banner div.slide {
  overflow: hidden;
  position: relative;
}
section.banner div.slide .image {
  position: relative;
}
section.banner div.slide .image:after {
  content: '';
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-top: 300px solid transparent;
  border-bottom: 600px solid transparent;
  border-right: 300px solid #1a171b;
}
section.banner div.slide .image figure img {
  max-width: 100%;
  -webkit-border-radius: 0 0 0 80px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 0 80px;
  -moz-background-clip: padding;
  border-radius: 0 0 0 80px;
  background-clip: padding-box;
}
section.banner div.slide .content {
  padding: 2em;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 8.5%;
  top: 22%;
  width: 35%;
}
section.banner div.slide .content h3 {
  font-size: 2.3em;
  margin: 0 0 0.5em 0;
  color: white;
  text-transform: uppercase;
}
section.banner div.slide .content p {
  margin: 0 0 1em 0;
  padding: 0;
}
section.banner .owl-theme .owl-controls .owl-buttons .owl-next,
section.banner .owl-theme .owl-controls .owl-buttons .owl-prev {
  font-family: 'oben', Arial, sans-serif;
  font-size: 2.5em;
  background: #1a171b;
  opacity: 1;
  height: 200px;
  line-height: 200px;
  vertical-align: middle;
  padding: 0;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  transition: 0.3s;
}
section.banner .owl-theme .owl-controls .owl-buttons .owl-next:hover,
section.banner .owl-theme .owl-controls .owl-buttons .owl-prev:hover {
  background: #069adb;
}
section.banner .owl-theme .owl-controls .owl-buttons .owl-next {
  position: absolute;
  right: 0;
  top: 25%;
}
section.banner .owl-theme .owl-controls .owl-buttons .owl-prev {
  position: absolute;
  left: 0;
  top: 25%;
}
section.welcome {
  padding: 2em 0 1em 0;
}
section.welcome .wrapper {
  max-width: 820px;
}
section.welcome h1,
section.welcome p {
  text-align: center;
}
section.welcome h1 span.italic {
  font-style: italic;
  padding-right: 5px;
}
section.distributer-cta {
  background: #069adb url(../images/bg-distributor-pattern.png);
  width: 100%;
  padding: 2em 0 2em 0;
  margin: 2em 0 0em 0;
}
section.distributer-cta .wrapper {
  max-width: 760px;
}
section.distributer-cta h3 {
  font-size: 2.5em;
}
section.distributer-cta h3,
section.distributer-cta p {
  color: white;
  text-align: center;
  margin: 0 0 0.4em 0;
}
section.distributer-cta p {
  margin: 0 0 1em 0;
}
section.distributer-cta a.button {
  display: block;
  background: none;
  float: none;
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
section.distributer-cta a.button:hover {
  background: #0577a9;
}
section.features,
section.features-small {
  padding: 2em 0 2em 0;
}
section.features article,
section.features-small article {
  float: left;
  width: 33.33%;
  padding: 10px;
  box-sizing: border-box;
}
section.features article .image,
section.features-small article .image {
  position: relative;
  overflow: hidden;
  margin: 0 0 1em 0;
  transition: 0.3s;
}
section.features article .image:after,
section.features-small article .image:after {
  content: '';
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 205px solid transparent;
  border-right: 0px solid #1a171b;
  transition: 3s;
}
section.features article .image figure a,
section.features-small article .image figure a {
  display: block;
  position: relative;
  z-index: 25;
}
section.features article .image figure img,
section.features-small article .image figure img {
  min-width: 100%;
  max-height: 100%;
  display: block;
  position: relative;
  box-sizing: border-box;
  -webkit-border-radius: 0 0 0 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 0 0;
  -moz-background-clip: padding;
  border-radius: 0 0 0 0;
  background-clip: padding-box;
  transition: 2s;
}
section.features article .feature-active:after,
section.features-small article .feature-active:after {
  content: '';
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 205px solid transparent;
  border-right: 95px solid #1a171b;
  transition: 2s;
}
section.features article .feature-active figure img,
section.features-small article .feature-active figure img {
  -webkit-border-radius: 0 0 0 40px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 0 40px;
  -moz-background-clip: padding;
  border-radius: 0 0 0 40px;
  background-clip: padding-box;
}
section.features article h3,
section.features-small article h3 {
  font-size: 2em;
  margin: 0 0 0.25em 0;
}
section.features article h3 a,
section.features-small article h3 a {
  color: white;
  text-decoration: none;
}
section.features article h3 a:hover,
section.features-small article h3 a:hover {
  color: white;
}
section.features article h3 .product-title-1 span.c5,
section.features-small article h3 .product-title-1 span.c5,
section.features article h3 .product-title-1 span.c6,
section.features-small article h3 .product-title-1 span.c6,
section.features article h3 .product-title-1 span.c7,
section.features-small article h3 .product-title-1 span.c7,
section.features article h3 .product-title-1 span.c8,
section.features-small article h3 .product-title-1 span.c8,
section.features article h3 .product-title-1 span.c9,
section.features-small article h3 .product-title-1 span.c9,
section.features article h3 .product-title-1 span.c10,
section.features-small article h3 .product-title-1 span.c10,
section.features article h3 .product-title-1 span.c11,
section.features-small article h3 .product-title-1 span.c11 {
  color: #069adb;
}
section.features article h3 .product-title-2 span.c7,
section.features-small article h3 .product-title-2 span.c7,
section.features article h3 .product-title-2 span.c8,
section.features-small article h3 .product-title-2 span.c8,
section.features article h3 .product-title-2 span.c9,
section.features-small article h3 .product-title-2 span.c9,
section.features article h3 .product-title-2 span.c10,
section.features-small article h3 .product-title-2 span.c10,
section.features article h3 .product-title-2 span.c11,
section.features-small article h3 .product-title-2 span.c11,
section.features article h3 .product-title-2 span.c12,
section.features-small article h3 .product-title-2 span.c12,
section.features article h3 .product-title-2 span.c13,
section.features-small article h3 .product-title-2 span.c13 {
  color: #069adb;
}
section.features article h3 .product-title-3 span.c7,
section.features-small article h3 .product-title-3 span.c7,
section.features article h3 .product-title-3 span.c8,
section.features-small article h3 .product-title-3 span.c8,
section.features article h3 .product-title-3 span.c9,
section.features-small article h3 .product-title-3 span.c9,
section.features article h3 .product-title-3 span.c10,
section.features-small article h3 .product-title-3 span.c10,
section.features article h3 .product-title-3 span.c11,
section.features-small article h3 .product-title-3 span.c11,
section.features article h3 .product-title-3 span.c12,
section.features-small article h3 .product-title-3 span.c12,
section.features article h3 .product-title-3 span.c13,
section.features-small article h3 .product-title-3 span.c13 {
  color: #069adb;
}
section.features {
  opacity: 0.2;
  transition: 0.2s;
}
section.features.active {
  opacity: 1;
}
section.features-small {
  background: #252326;
  overflow: hidden;
}
section.features-small article {
  width: 25%;
  padding: 20px;
}
section.features-small article .image:after {
  border: none;
}
section.features-small article .image figure img {
  -webkit-border-radius: 0 0 0 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 0 0;
  -moz-background-clip: padding;
  border-radius: 0 0 0 0;
  background-clip: padding-box;
  max-width: 100%;
}
section.features-small article h3 {
  font-size: 1.5em;
}
section.features-small article h3 a {
  color: white;
}
section.features-small article h3 a:hover {
  color: #069adb;
}
.news-page article {
  padding: 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.news-page article figure img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 0 1em 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
}
.news-page article figure figcaption {
  display: none;
}
.news-page article .date p {
  font-style: italic;
}
.news-page article .date p span {
  color: #069adb;
}
.news-page article .content {
  padding: 0 0 0 0;
}
.news-page article .content h3 {
  font-size: 2em;
}
.news-page article .content h3 a {
  color: #069adb;
  text-decoration: none;
  transition: 0.3s;
}
.news-page article .content h3 a:hover {
  color: #1bb5f9;
}
.news-page article .content .posted-in ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.news-page article .content .posted-in ul li {
  float: left;
}
.news-page article .content .posted-in ul li a {
  font-size: 0.8em;
  background: #069adb;
  color: white;
  text-decoration: none;
  padding: 0.25em 0.6em 0.25em 0.6em;
  margin: 0 5px 0 0;
  transition: 0.3s;
}
.news-page article .content .posted-in ul li a:hover {
  background: #0577a9;
}
.news-page article:nth-child(odd) {
  background: #272329;
}
.news-page article:nth-child(odd) .content h3 a {
  color: white;
}
.news-single .posted-in ul,
.category-page .posted-in ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.news-single .posted-in ul li,
.category-page .posted-in ul li {
  float: left;
  margin: 0 0 1em 0;
}
.news-single .posted-in ul li a,
.category-page .posted-in ul li a {
  background: #069adb;
  color: white;
  text-decoration: none;
  padding: 0.25em 0.6em 0.25em 0.6em;
  margin: 0 5px 0 0;
  transition: 0.3s;
}
.news-single .posted-in ul li a:hover,
.category-page .posted-in ul li a:hover {
  background: #0577a9;
}
.news-single .date p,
.category-page .date p {
  font-style: italic;
}
.news-single .date p span,
.category-page .date p span {
  color: #069adb;
}
.contact-page-template {
  position: relative;
  z-index: 15;
  margin-top: -15em;
}
.contact-page-template .content {
  padding: 0;
}
.contact-page-template .contact-form {
  padding: 0 2em 2em 2em;
  box-sizing: border-box;
}
.contact-page-template .bgmp_placemark h3 {
  color: #069adb;
}
.contact-page-template .country-emails {
  margin: 0;
}
.contact-page-template .country-emails ul {
  list-style-type: none;
  padding: 0;
}
.contact-page-template .country-emails ul li {
  width: 50%;
  float: left;
}
.contact-page-template .country-emails ul li p.country {
  font-size: 1.3em;
  font-family: 'oswald_regularregular', Arial, sans-serif;
  text-transform: uppercase;
  margin: 0;
}
.contact-page-template .country-emails ul li p.country:before {
  color: #069adb;
}
.map-image {
  position: relative;
  z-index: 10;
  text-align: center;
}
.map-image figure img {
  max-width: 100%;
}
.wpcf7 {
  width: 100%;
}
.wpcf7 span.req {
  color: red;
}
.wpcf7 ::-webkit-input-placeholder {
  opacity: 1;
  color: #9d90a1;
}
.wpcf7 :-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #9d90a1;
}
.wpcf7 ::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #9d90a1;
}
.wpcf7 :-ms-input-placeholder {
  opacity: 1;
  color: #9d90a1;
}
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  box-sizing: border-box;
  background: #4f4652;
  border: 0;
  min-height: 40px;
  padding: 5px;
  resize: none;
  color: #9d90a1;
}
.wpcf7 input[type="submit"] {
  font-family: 'oswald_regularregular', Arial, sans-serif;
  font-size: 1.2em;
  text-transform: uppercase;
  float: right;
  width: auto;
  background: #069adb;
  color: white;
  padding: 0.3em 1.2em 0.1em 1.2em;
}
.wpcf7 input[type="submit"]:hover {
  background: #1bb5f9;
}
.wpcf7 .wpcf7-captchac {
  margin: 0.6em 0 0 0;
  float: left;
  width: auto;
}
.wpcf7 .wpcf7-captchar {
  float: left;
  width: 100px;
  margin: 0.6em 0 0 0.6em;
  padding: 0.2em;
  min-height: 28px;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-family: 'source_sans_proregular', Arial, sans-serif;
  background: #ee1749;
  color: white;
  width: 100%;
  padding: 0.6em 0.3em 0.6em 0.3em;
  margin: 0.2em 0 0 0;
  box-sizing: border-box;
}
.wpcf7 .wpcf7-response-output {
  font-family: 'source_sans_proregular', Arial, sans-serif;
  width: 100%;
  margin: 0 0 1em 0;
  background: #ee1749;
  color: white;
  border: 0;
  padding: 0.6em;
  box-sizing: border-box;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background: #3a9c21;
}
.product-page {
  padding: 0 1em 0 1em;
}
section.products article {
  float: left;
  width: 33.33%;
  padding: 0 20px 35px 0;
  box-sizing: border-box;
}
section.products article .image.no-image {
  background: #e5e7e3;
}
section.products article .image {
  position: relative;
  overflow: hidden;
  margin: 0 0 1em 0;
  background: white;
  -webkit-border-radius: 0 0 0 40px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 0 40px;
  -moz-background-clip: padding;
  border-radius: 0 0 0 40px;
  background-clip: padding-box;
  transition: 0.3s;
}
section.products article .image:after {
  content: '';
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 245px solid transparent;
  border-right: 95px solid #1a171b;
  transition: 0.3s;
}
section.products article .image figure {
  width: 100%;
}
section.products article .image figure a {
  display: block;
  position: relative;
  z-index: 25;
}
section.products article .image figure img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  position: relative;
  box-sizing: border-box;
  transition: 2s;
  text-align: center;
}
section.products article h3.product-title a span {
  color: #069adb;
}
section.products article h3 {
  font-size: 2em;
  margin: 0 0 0.25em 0;
}
section.products article h3 a {
  color: white;
  text-decoration: none;
}
section.products article h3 a:hover {
  color: #069adb;
}
section.products article h3 .product-title-1 span.c5,
section.products article h3 .product-title-1 span.c6,
section.products article h3 .product-title-1 span.c7,
section.products article h3 .product-title-1 span.c8,
section.products article h3 .product-title-1 span.c9,
section.products article h3 .product-title-1 span.c10,
section.products article h3 .product-title-1 span.c11 {
  color: #069adb;
}
section.products article h3 .product-title-2 span.c7,
section.products article h3 .product-title-2 span.c8,
section.products article h3 .product-title-2 span.c9,
section.products article h3 .product-title-2 span.c10,
section.products article h3 .product-title-2 span.c11,
section.products article h3 .product-title-2 span.c12,
section.products article h3 .product-title-2 span.c13 {
  color: #069adb;
}
section.products article h3 .product-title-3 span.c7,
section.products article h3 .product-title-3 span.c8,
section.products article h3 .product-title-3 span.c9,
section.products article h3 .product-title-3 span.c10,
section.products article h3 .product-title-3 span.c11,
section.products article h3 .product-title-3 span.c12,
section.products article h3 .product-title-3 span.c13 {
  color: #069adb;
}
.category-description {
  max-width: 720px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 2em;
}
.category-description h3 {
  color: white;
}
.category-description h3 span {
  color: #069adb;
}
.category-description h3,
.category-description p {
  text-align: center;
}
.product-detail .col-1,
.product-detail .col-2 {
  width: 50%;
  float: left;
  padding: 0 2em 0 0;
  box-sizing: border-box;
  overflow: hidden;
}
.product-detail .col-2 {
  padding-right: 0;
  padding-top: 0.2em;
}
.product-detail .col-1 figure img {
  max-width: 100%;
  -webkit-border-radius: 0 0 0 10%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 0 10%;
  -moz-background-clip: padding;
  border-radius: 0 0 0 10%;
  background-clip: padding-box;
}
.product-detail .enquiry-form {
  display: none;
  margin: 2em 0 0 0;
}
.product-detail .enquiry-form h3 span {
  color: #069adb;
}
div.pagination {
  margin: 1em 0 0 0;
  text-align: center;
}
div.pagination a,
div.pagination span.pages,
div.pagination span.dots,
div.pagination span.current {
  padding: 0.25em 0.75em 0.25em 0.75em;
  margin: 3px;
  color: white;
  border: 1px solid white;
  text-decoration: none;
}
div.pagination a:hover,
div.pagination a:focus {
  background: #069adb;
}
div.pagination span.current {
  background: #069adb;
  color: white;
  /* IE6–IE9 */
}
section.footer {
  padding: 2em 0 2em 0;
}
section.footer h4 {
  font-size: 1.5em;
  color: white;
  margin: 0 0 0.5em 0;
}
section.footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
section.footer ul li a:hover {
  text-decoration: none;
}
section.footer .col {
  width: 25%;
  float: left;
  padding: 20px;
  box-sizing: border-box;
}
section.footer .col .social {
  margin: 1em 0 0 0;
}
section.footer .col .social ul {
  float: left;
}
section.footer .col .social ul li {
  float: left;
}
section.footer .col .social ul li a {
  font-size: 3.2em;
  margin: 0 0.1em 0 0;
  text-decoration: none;
  color: #434351;
  transition: 0.3s;
}
section.footer .col .social ul li a:hover {
  color: #069adb;
}
section.footer .copyright p {
  text-align: center;
  color: #777;
}
@media only screen and (max-width: 1344px) {
  .contact-page {
    margin-top: -10em;
  }
}
@media only screen and (max-width: 940px) {
  section.banner .owl-theme .owl-controls .owl-buttons .owl-next,
  section.banner .owl-theme .owl-controls .owl-buttons .owl-prev {
    background: none;
  }
  section.banner .owl-theme .owl-controls .owl-buttons .owl-next:hover,
  section.banner .owl-theme .owl-controls .owl-buttons .owl-prev:hover {
    background: none;
  }
}
@media only screen and (max-width: 940px) {
  .contact-page .country-emails ul li {
    width: 100%;
  }
}
@media only screen and (max-width: 851px) {
  section.navigation {
    position: relative;
  }
  section.navigation nav {
    width: 100%;
  }
  section.navigation nav a#toggle {
    display: block;
  }
  section.navigation nav ul {
    display: none;
  }
  section.navigation nav ul li {
    width: 100%;
  }
  section.navigation nav ul li a {
    padding-left: 0.75em;
  }
  section.navigation.active .search {
    display: none;
  }
  section.features article {
    width: 100%;
  }
  section.features article .image {
    position: relative;
    overflow: hidden;
    margin: 0 0 1em 0;
    transition: 0.3s;
  }
  section.features article .image:after {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 510px solid transparent;
    border-right: 205px solid #1a171b;
    transition: 3s;
  }
  section.features-small article {
    width: 50%;
  }
  section.banner div.slide .content {
    display: none;
  }
}
@media only screen and (max-width: 944px) {
  section.banner .owl-theme .owl-controls .owl-buttons .owl-next,
  section.banner .owl-theme .owl-controls .owl-buttons .owl-prev {
    top: 15%;
  }
}
@media only screen and (max-width: 786px) {
  section.footer .col {
    width: 50%;
  }
  .news-page .right-col,
  .news-page .left-col {
    width: 100%;
  }
  .news-page .left-col ul {
    float: left;
    width: 50%;
  }
}
@media only screen and (max-width: 719px) {
  section.products article {
    width: 100%;
  }
  section.products article .image figure img {
    min-width: 100%;
  }
  section.products article .image:after {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 510px solid transparent;
    border-right: 205px solid #1a171b;
    transition: 3s;
  }
}
@media only screen and (max-width: 701px) {
  section.header .branding {
    overflow: hidden;
  }
  section.header .branding .logo figure img {
    max-width: 200px;
  }
  .wrapper {
    overflow: hidden;
  }
}
@media only screen and (max-width: 661px) {
  .product-detail .col-1 {
    padding: 0 0 1em 0;
  }
  .product-detail .col-1 figure img {
    min-width: 100%;
  }
  .product-detail .col-1,
  .product-detail .col-2 {
    width: 100%;
  }
  .contact-page .col-1,
  .contact-page .col-2 {
    width: 100%;
    padding: 0 1em 0 0;
  }
  .contact-page {
    margin-top: -5em;
  }
  .news-page .left-col ul {
    width: 100%;
  }
}
@media only screen and (max-width: 545px) {
  section.banner .owl-theme .owl-controls .owl-buttons .owl-next,
  section.banner .owl-theme .owl-controls .owl-buttons .owl-prev {
    top: 5%;
  }
}
@media only screen and (max-width: 462px) {
  section.header .info {
    width: 100%;
    padding: 0.5em 0 0 0;
  }
  section.header .info .contact {
    padding: 0;
  }
  section.header .branding {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  section.header .branding .logo {
    width: 100%;
  }
  section.header .branding .logo figure img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    box-sizing: border-box;
  }
  section.banner .owl-theme .owl-controls .owl-buttons .owl-next,
  section.banner .owl-theme .owl-controls .owl-buttons .owl-prev {
    display: none;
  }
  section.features-small article {
    width: 100%;
  }
  section.footer .col {
    width: 100%;
    padding: 0 0 1em 0;
  }
  .about-page .row .col {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 344px) {
  section.navigation .search {
    display: none;
  }
  section.banner {
    display: none;
  }
}
@media only screen and (max-width: 320px) {
  .news-page article {
    padding: 0.5em;
  }
  .news-page .left-col ul {
    float: left;
    width: 100%;
  }
  section.footer .col {
    width: 100%;
  }
  h1 {
    font-size: 2em;
  }
}

/* cancel center 2 box
.home .features {
	text-align: center;
}

.home .features article {
	float: none;
	display: inline-block;
}

.home .features h3 {
	text-align: left;
}

*/