/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900');
* {
  box-sizing: border-box;
}
*:focus {
  outline: 0;
}
select:focus,
input:focus {
  outline: 0;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  height: 100%;
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html,
body {
  margin: 0;
  padding: 0;
}
/*
 * Mixins
 */
/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.4.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
/*
 * jQuery FlexSlider v2.6.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url('fonts/flexslider-icon.eot');
  src: url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  position: relative;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  background: #ffffff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -40px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav .flex-prev {
  left: -50px;
  background: url('../img/clients-prev.png') no-repeat;
  width: 51px;
  height: 81px;
  text-indent: -9999px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
  background: url('../img/clients-next.png') no-repeat;
  width: 51px;
  height: 81px;
  text-indent: 9999px;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  display: none;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
#carousel .slides {
  display: none;
}
.flex-caption {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
}
.flex-caption h1 {
  font-size: 59px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 300;
}
.flex-caption p {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 7px;
}
.flex-caption .buttonSLider {
  margin-top: 55px;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: 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;
}
.slick-arrow.slick-hidden {
  display: none;
}
.left-arrow {
  position: absolute;
  top: 50%;
  left: -120px;
  z-index: 99;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .left-arrow {
    display: none;
  }
}
.clientContainer .left-arrow {
  top: 25px;
}
.left-arrow:hover {
  cursor: pointer;
}
@media all and (min-width:  1201px ) {
  .left-arrow:after {
    background: url('../img/left-arrow.png') no-repeat;
    width: 18px;
    height: 34px;
    display: inline-block;
    content: '';
  }
}
.right-arrow {
  position: absolute;
  top: 50%;
  right: -120px;
  z-index: 99;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .right-arrow {
    display: none;
  }
}
.clientContainer .right-arrow {
  top: 25px;
}
.right-arrow:hover {
  cursor: pointer;
}
@media all and (min-width:  1201px ) {
  .right-arrow:after {
    background: url('../img/right-arrow.png') no-repeat;
    width: 18px;
    height: 34px;
    display: inline-block;
    content: '';
  }
}
.slideshowLeftArrow,
.slideshowRightArrow {
  position: absolute;
  top: 5px;
  z-index: 8000;
  font-size: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -ms-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}
@media all and (max-width: 640px) {
  .slideshowLeftArrow,
  .slideshowRightArrow {
    top: 0;
  }
}
.slideshowLeftArrow i,
.slideshowRightArrow i {
  color: #fff;
}
.slideshowLeftArrow {
  left: 10px;
}
.slideshowLeftArrow:before {
  content: '';
  display: inline-block;
  background: url('../img/left_arrow.png') no-repeat;
  width: 22px;
  height: 44px;
}
.slideshowRightArrow {
  right: 10px;
}
.slideshowRightArrow:before {
  content: '';
  display: inline-block;
  background: url('../img/right_arrow.png') no-repeat;
  width: 22px;
  height: 44px;
}
/**
 * Home page slider
 */
.sliderContainer {
  float: left;
  width: 100%;
  overflow: hidden;
}
.sliderWrap {
  *zoom: 1;
  max-width: 100%;
  position: relative;
}
.sliderWrap:before,
.sliderWrap:after {
  content: "";
  display: table;
}
.sliderWrap:after {
  clear: both;
}
@media all and (max-width: 640px) {
  .sliderWrap {
    margin-bottom: 15px;
  }
}
.sliderWrap .slider {
  width: 100%;
}
@media all and (max-width: 640px) {
  .sliderWrap .slider {
    width: auto;
    margin: 0;
  }
}
.sliderWrap .slider li {
  position: relative;
  overflow: hidden;
  min-height: 750px;
}
@media all and (max-width: 640px) {
  .sliderWrap .slider li {
    min-height: 640px;
  }
}
.sliderWrap .slider li a {
  display: block;
}
.sliderWrap .slider img {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  right: 0;
  width: 2000px;
  max-width: 2000px;
}
.lt-ie9 .sliderWrap .slider img {
  left: 0;
}
@media all and (max-width: 640px) {
  .sliderWrap .slider img {
    position: relative;
    top: auto;
    left: auto;
    min-height: initial;
    width: 640px;
    max-width: 640px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.sliderWrap .slick-dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 40px;
}
.sliderWrap .slick-dots li {
  display: inline-block;
  min-height: 0;
}
.sliderWrap .slick-dots li a {
  position: relative;
  cursor: pointer;
  text-indent: -9999px;
  border: none;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin: 10px 7px;
}
.sliderWrap .slick-dots li.slick-active a {
  background: #870b0b;
  border: 1px solid #bb2525;
}
.sliderWrap .slideshowLeftArrow,
.sliderWrap .slideshowRightArrow {
  position: absolute;
  top: 50%;
  z-index: 8000;
  font-size: 25px;
  background: #fff;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -ms-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}
.sliderWrap .slideshowLeftArrow i,
.sliderWrap .slideshowRightArrow i {
  color: #fff;
}
.sliderWrap .slideshowLeftArrow:hover,
.sliderWrap .slideshowRightArrow:hover {
  background: #fff;
}
.sliderWrap .slideshowLeftArrow {
  left: 30px;
}
.sliderWrap .slideshowRightArrow {
  right: 30px;
}
.sliderWrap .innerText {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.sliderWrap .innerText .slideshowPosition {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}
.sliderWrap .innerText .slideshowText {
  display: table-cell;
  vertical-align: middle;
}
@media all and (max-width: 640px), all and (min-width:  641px ) and (max-width:  1219px ) {
  .sliderWrap .innerText .slideshowText {
    padding: 0 20px;
  }
}
.sliderWrap .innerText .slideshowText h2 {
  font-size: 60px;
  font-size: 3.75rem;
  color: #ffa800;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 300;
}
@media all and (max-width: 640px) {
  .sliderWrap .innerText .slideshowText h2 {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 20px 0;
  }
}
.sliderWrap .innerText .slideshowText span {
  color: #fff;
  display: block;
}
.sliderWrap .innerText .slideshowText span.top {
  font-size: 27px;
  font-size: 1.6875rem;
}
.sliderWrap .innerText .slideshowText span.bottom {
  font-weight: 300;
}
.sliderWrap .innerText .slideshowText .buttonSLider {
  margin-top: 35px;
  margin-bottom: 15px;
  background: #870b0b;
  color: #fff;
  padding: 27px 63px;
  min-width: 260px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-weight: 300;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #bb2525;
}
.sliderWrap .innerText .slideshowText .buttonSLider:hover {
  background: #6c0909;
}
/*
 * Widths
 */
/*
 * Media Query Breakpoints
 */
/*
 * Colors
 */
html {
  margin: 0;
  padding: 0;
  height: 100%;
}
html:before {
  content: 'tablet: 1219px, mobile: 640px, flyout: 800px, medium: 800px';
  position: absolute;
  top: 0;
  visibility: hidden;
}
* {
  box-sizing: border-box;
}
*:focus {
  outline: 0;
}
select:focus,
input:focus {
  outline: 0;
}
body {
  font-size: 16px;
  overflow-x: hidden;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Roboto', sans-serif;
  color: #202020;
  min-width: 360px;
}
html,
body {
  height: 100%;
}
/* sticky footer */
body {
  display: flex;
  flex-direction: column;
}
.page-wrap {
  flex: 1 0 auto;
}
/* sticky header */
.titleWrap {
  *zoom: 1;
}
.titleWrap:before,
.titleWrap:after {
  content: "";
  display: table;
}
.titleWrap:after {
  clear: both;
}
.titleWrap h1 {
  margin-bottom: 35px;
  font-weight: 300;
}
h1,
h2,
h3,
h4 {
  font-weight: 300;
  color: #202020;
  margin-bottom: 22px;
  line-height: 1.3;
}
h1 {
  font-size: 27px;
  font-size: 1.6875rem;
}
h2 {
  font-size: 40px;
  font-size: 2.5rem;
}
@media all and (max-width: 640px) {
  h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
h3 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
}
p {
  line-height: 33px;
  margin-bottom: 25px;
  font-weight: 300;
}
a {
  color: #202020;
  text-decoration: none;
}
ul {
  padding-left: 0;
}
li {
  list-style-type: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
input,
textarea {
  font-family: 'Roboto', sans-serif;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-weight: normal!important;
  font-size: 13px;
  font-size: 0.8125rem;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  font-weight: normal!important;
  font-size: 13px;
  font-size: 0.8125rem;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: normal!important;
  font-size: 13px;
  font-size: 0.8125rem;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-weight: normal!important;
  font-size: 13px;
  font-size: 0.8125rem;
}
textarea {
  resize: vertical;
}
.clear {
  clear: both;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  clear: both;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .wrapper {
    padding: 0 15px;
  }
}
.button,
.woocommerce-checkout .woocommerce #payment .button#place_order,
.woocommerce .button.wc-backward,
.woocommerce div.product form.cart .button {
  background: #870b0b;
  color: #fff;
  padding: 27px 63px;
  min-width: 260px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-weight: 300;
  border-radius: 4px;
  text-align: center;
}
.button:hover,
.woocommerce-checkout .woocommerce #payment .button#place_order:hover,
.woocommerce .button.wc-backward:hover,
.woocommerce div.product form.cart .button:hover {
  background: #6c0909;
}
.buttonSec {
  background: #870b0b;
  color: #fff;
  padding: 27px 63px;
  min-width: 260px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-weight: 300;
  border-radius: 4px;
  text-align: center;
  background: transparent;
  color: #202020;
  border: 1px solid #000;
}
.buttonSec:hover {
  background: #6c0909;
}
.buttonSec:hover {
  background: #870b0b;
  color: #fff;
}
.readmore,
.readless {
  color: #ffa800;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.readmore:hover,
.readless:hover {
  color: #ffb933;
}
.woocommerce div.product form.cart .button {
  padding: 17.5px 25px;
}
.woocommerce div.product form.cart .button:before {
  background: url('../img/cart.png') no-repeat;
  width: 19px;
  height: 15px;
  display: inline-block;
  content: '';
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.woocommerce-checkout .woocommerce #payment .button#place_order {
  background: #5abe33;
  float: left;
}
.woocommerce-checkout .woocommerce #payment .button#place_order:hover {
  background: #75d051;
}
.hover {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.hover:hover {
  color: #ffa800;
}
.buttonSLider {
  border: 2px solid #fff;
  padding: 16px 55px;
  color: #fff;
  display: inline-block;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.buttonSLider:hover {
  background: #ffa800;
}
/*
 * Helpers
 */
.left {
  float: left;
}
.clear {
  clear: both;
}
.right {
  float: right;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.text-center {
  text-align: center;
}
.link {
  color: #ffa800;
  font-weight: 300;
}
.link:hover {
  text-decoration: underline;
}
.back {
  color: #202020;
  text-transform: uppercase;
  font-weight: 300;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.back:hover {
  color: #870b0b;
}
/*
 * Pagination
 */
.wp-pagenavi {
  margin-bottom: 50px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  border-radius: 50%;
  border: none;
  background: transparent;
  border: 1px solid #202020;
  display: inline-block;
  color: #202020;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  margin-right: 13px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 45px;
}
.wp-pagenavi span {
  font-weight: normal;
}
.wp-pagenavi span.current {
  background: #870b0b;
  color: #fff;
  font-weight: normal;
}
/*
  * Editor styles
  */
.wisywig h2 {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: normal;
}
.wisywig h3 {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 300;
}
.wisywig h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.wisywig ul {
  margin-bottom: 22px;
}
.wisywig ul li {
  padding-left: 40px;
  position: relative;
  line-height: 28px;
  font-weight: 300;
}
.wisywig ul li:before {
  background: url('../img/tick.png') no-repeat;
  width: 16px;
  height: 11px;
  display: inline-block;
  content: '';
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 8px;
}
.wisywig a {
  color: #870b0b;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.wisywig a:hover {
  color: #a20d0d;
  text-decoration: underline;
}
.wisywig strong {
  font-weight: bold;
}
.wisywig .gallery {
  margin-bottom: 25px!important;
}
.wisywig .gallery img {
  border: none!important;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .wisywig .gallery img {
    width: 100%!important;
  }
}
.wisywig .gallery .gallery-icon {
  height: 100%;
}
.wisywig .gallery .gallery-icon img {
  height: 100%;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .wisywig .gallery.gallery-columns-4 .gallery-item {
    margin-top: 0px!important;
  }
}
.wisywig .gallery.gallery-columns-3 .gallery-item:not(:nth-of-type(3n)) {
  margin-right: 0.5%;
}
.wisywig table {
  max-width: 100%;
  margin-bottom: 25px;
}
.wisywig table td {
  padding: 15px 20px;
}
.wisywig table thead {
  background: #4b4b4b;
  color: #fff;
}
.wisywig table thead td {
  border-left: 1px solid #fff;
}
.wisywig table thead td:last-child {
  border-right: 1px solid #fff;
}
.wisywig table tbody tr {
  border-bottom: 1px solid #e1e1e1;
}
.wisywig table tbody td {
  border-left: 1px solid #e1e1e1;
}
.wisywig table tbody td:last-child {
  border-right: 1px solid #e1e1e1;
}
.js_scrollFadeIn,
.js_fadeIn {
  opacity: 0;
}
.js_scrollFadeIn.fadeIn,
.js_fadeIn.fadeIn {
  transition: opacity .5s,transform .5s;
  opacity: 1;
}
.map {
  width: 100%;
  height: 350px;
}
.acf-map {
  width: 100%;
  height: 500px;
}
/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}
div.wpcf7 .ajax-loader {
  display: none!important;
}
.lang {
  display: inline-block;
  margin-left: 30px;
}
@media all and (max-width: 800px) {
  .lang {
    display: inline-block;
    float: none;
    margin-left: 10px;
    margin-top: 15px;
  }
}
.lang .wpml-ls-legacy-dropdown {
  width: auto;
}
.lang .wpml-ls-legacy-dropdown a {
  background: transparent;
  color: #fff;
  border: none;
  font-weight: 300;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media all and (max-width: 800px) {
  .lang .wpml-ls-legacy-dropdown a {
    font-weight: 500;
    font-size: 18px;
  }
}
.lang .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a {
  background: transparent;
  color: #fff;
}
.lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  border-top: none;
  background: #202020;
  text-align: left;
  padding: 5px 0;
}
.lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li a {
  padding: 7px 10px;
}
div.wpcf7-mail-sent-ok {
  margin: 25px 0;
  padding: 10px;
  line-height: 1.4;
}
/*
 * Set up defaults
 */
/*
 * Main Menu
 */
.mainMenu {
  float: left;
  margin: 5px 0 0 15px;
}
@media all and (min-width: 800px) and (max-width: 1200px) {
  .mainMenu {
    width: calc(100% - 120px);
    margin-top: 25px;
    line-height: 15px;
    padding-left: 0;
    margin-left: 0;
  }
}
@media all and (max-width: 800px) {
  .mainMenu {
    float: none;
    transform: none;
    margin: 0;
  }
}
.mainMenu li {
  display: inline-block;
  position: relative;
}
@media all and (max-width: 800px) {
  .mainMenu li {
    clear: left;
    width: 100%;
  }
}
.mainMenu li.current_page_item a {
  color: #ffa800;
}
.mainMenu li.menu-item-has-children:after {
  content: "\f107";
  font-family: "FontAwesome";
  color: #202020;
  font-size: 13px;
  font-size: 0.8125rem;
  position: absolute;
  /* margin: 0 auto; */
  left: 0;
  right: 0;
  text-align: center;
  margin-top: 3px;
}
@media all and (max-width: 800px) {
  .mainMenu li.menu-item-has-children:after {
    display: none;
  }
}
.mainMenu li.menu-item-has-children.current_page_item:after {
  content: "\f107";
  font-family: "FontAwesome";
  color: #ffa800;
  font-size: 13px;
  font-size: 0.8125rem;
}
.mainMenu li.current-menu-ancestor a {
  color: #ffa800;
}
.mainMenu li.current-menu-ancestor:after {
  content: "\f107";
  font-family: "FontAwesome";
  color: #ffa800;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media all and (min-width:  801px ) {
  .mainMenu li ul.sub-menu {
    padding-top: 20px;
    display: none;
    position: absolute;
    z-index: 99;
    left: -30%;
    text-align: center;
  }
}
@media all and (max-width: 800px) {
  .mainMenu li ul.sub-menu {
    position: relative;
  }
}
.mainMenu li ul.sub-menu li {
  display: block;
  border-bottom: 1px solid #202020;
  background-color: rgba(0, 0, 0, 0.7);
}
@media all and (max-width: 800px) {
  .mainMenu li ul.sub-menu li {
    background-color: transparent;
  }
}
.mainMenu li ul.sub-menu li:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.mainMenu li ul.sub-menu li:last-child {
  border-bottom: none;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.mainMenu li ul.sub-menu li.current_page_item a {
  color: #ffa800;
}
@media all and (max-width: 800px) {
  .mainMenu li ul.sub-menu li.current_page_item a {
    color: #202020;
  }
}
.mainMenu li ul.sub-menu li a {
  color: #fff;
  padding: 6px 30px;
  display: block;
}
@media all and (min-width:  1201px ) {
  .mainMenu li ul.sub-menu li a {
    white-space: nowrap;
  }
}
@media all and (min-width:  801px ) {
  .mainMenu li ul.sub-menu li a:hover {
    color: #ffa800;
  }
}
@media all and (min-width:  801px ) {
  .mainMenu li:hover ul {
    display: block;
  }
}
.mainMenu li.menu-item-language-current {
  margin-right: 0;
  border: 1px solid #e5e5e5;
  padding: 13px;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  letter-spacing: 1px;
  color: #717171;
  font-size: 12px;
  font-size: 0.75rem;
}
.mainMenu li.menu-item-language-current:after {
  display: none;
}
@media all and (min-width:  1201px ) {
  .mainMenu li.menu-item-language-current:hover ul {
    width: 75px;
    margin-top: 10px;
  }
}
.mainMenu li a {
  padding: 10px 13px;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s;
}
@media all and (min-width:  801px ) {
  .mainMenu li a:hover {
    color: #ffa800;
  }
}
@media all and (max-width: 800px) {
  .mainMenu li a {
    padding: 0 20px 0 ;
    display: block;
    position: relative;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media all and (max-width: 800px) {
  .mainMenu li.hasChildren > a:after,
  .mainMenu li.menu-item-has-children > a:after {
    content: "\f0da";
    font-family: "FontAwesome";
    color: #202020;
    position: absolute;
    top: 20px;
    right: 15px;
    padding: 0 0 0 2px;
    transform: translateY(-50%);
    transition: transform 0.3s;
    color: #fff;
  }
}
@media all and (max-width: 800px) {
  .mainMenu li.hasChildren.open > a:after,
  .mainMenu li.menu-item-has-children.open > a:after {
    transform: translateY(-50%) rotate(90deg);
  }
}
@media all and (max-width: 800px) {
  .mainMenu li ul {
    display: none;
    padding: 0 0 0 10px;
  }
}
@media all and (max-width: 800px) {
  .mainMenu li.childActive > ul {
    display: block;
  }
}
.siteWrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
@media all and (max-width: 800px) {
  .fixedFlyout .siteWrapper {
    padding: 104px 0 0;
  }
}
.siteInnerWrapper {
  width: 100%;
}
.flyoutInitialised .siteInnerWrapper {
  transition: transform 0.3s ease-in-out;
}
@media all and (max-width: 800px) {
  .flyoutInitialised #header {
    transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  }
}
@media all and (max-width: 800px) {
  .fixedFlyout #header {
    position: fixed!important;
    width: 100%;
    min-width: 320px;
    top: 0;
  }
}
.flyoutInitialised footer {
  transition: transform 0.3s ease-in-out;
}
@media all and (max-width: 800px) {
  .fixedFlyout .footerWrap {
    transition: transform 0.3s ease-in-out;
  }
}
/*
 * Breakpoint for mobile menu to appear, can be set to whatever site needs
*/
.flyoutButton {
  cursor: pointer;
  padding: 30px 0;
  display: none;
}
@media all and (max-width: 800px) {
  .flyoutButton {
    display: block;
  }
}
.flyoutButton:before {
  display: inline-block;
  margin-right: 5px;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 20px;
  vertical-align: middle;
  color: #fff;
  content: 'Menu';
}
.flyoutButton span {
  width: 22px;
  height: 2px;
  display: inline-block;
  position: relative;
  background: #fff;
  vertical-align: middle;
  transition: background 100ms ease-in-out 0.3s;
}
.flyoutButton span:before,
.flyoutButton span:after {
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  content: '';
  transform: rotate3d(0, 0, 0, 0deg);
  transition: transform 300ms linear 0ms, top 300ms linear 400ms, width 300ms linear 700ms;
}
.flyoutButton span:before {
  top: -6px;
  width: 22px;
}
.flyoutButton span:after {
  top: 6px;
  width: 22px;
}
.flyoutActive .flyoutButton span {
  background: transparent;
  transition: background 100ms ease-in-out 600ms;
}
.flyoutActive .flyoutButton span:before,
.flyoutActive .flyoutButton span:after {
  transition: width 300ms linear 0ms, top 300ms linear 300ms, transform 300ms linear 700ms;
}
.flyoutActive .flyoutButton span:before {
  top: 0;
  width: 22px;
  transform: rotate3d(0, 0, 1, -45deg);
}
.flyoutActive .flyoutButton span:after {
  top: 0;
  width: 22px;
  transform: rotate3d(0, 0, 1, 45deg);
}
#mega-menu-wrap-main-menu {
  z-index: 999;
  background: transparent;
}
@media all and (max-width: 800px) {
  #mega-menu-wrap-main-menu {
    background: #000;
  }
}
#mega-menu-wrap-main-menu .mega-menu-toggle {
  background: transparent;
}
@media all and (max-width: 800px) {
  #mega-menu-wrap-main-menu .mega-menu-toggle {
    background: #000;
  }
}
#mega-menu-wrap-main-menu .mega-menu-toggle .logo {
  display: inline-block;
  margin-top: 0;
}
#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-right {
  margin-top: 5px;
}
@media all and (max-width: 800px) {
  #mega-menu-wrap-main-menu #mega-menu-main-menu {
    padding-top: 30px;
  }
}
@media all and (min-width: 800px) and (max-width: 1200px) {
  #mega-menu-wrap-main-menu #mega-menu-main-menu {
    text-align: center;
    margin-top: 20px;
  }
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item.mega-current-menu-item > a {
  color: #ffa800 !important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
  text-transform: uppercase;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500!important;
  background: transparent!important;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 800px) {
  #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    padding: 0 20px;
  }
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover {
  font-weight: 500!important;
  color: #ffa800;
  background: transparent!important;
  line-height: 30px;
}
@media all and (max-width: 800px) {
  .flyoutWrap .searchWrap {
    display: none;
  }
  .flyoutInitialised .flyoutWrap {
    transition: transform 0.3s ease-in-out;
    display: block;
  }
  .flyoutRight .flyoutButton {
    float: left;
  }
  .flyoutRight.flyoutMove .flyoutButton {
    float: right;
  }
  .flyoutRight .flyoutWrap {
    left: 100%;
    bottom: 0;
  }
  .flyoutRight #header {
    right: 0;
    position: relative;
  }
  .flyoutRight.flyoutActive .flyoutWrap {
    transform: translateX(-100%);
  }
  .flyoutRight.flyoutActive.flyoutMove .siteInnerWrapper,
  .flyoutRight.flyoutActive.flyoutMove footer {
    transform: translateX(-70%);
  }
  .flyoutRight.flyoutActive.flyoutMove #header {
    right: 70%;
  }
  .flyoutLeft .flyoutButton {
    float: right;
  }
  .flyoutLeft.flyoutMove .flyoutButton {
    float: right;
  }
  .flyoutLeft .flyoutWrap {
    right: 100%;
    bottom: 0;
  }
  .flyoutLeft #header {
    left: 0;
    position: relative;
  }
  .flyoutLeft.flyoutActive .flyoutWrap {
    transform: translateX(100%);
  }
  .flyoutLeft.flyoutActive.flyoutMove .siteInnerWrapper,
  .flyoutLeft.flyoutActive.flyoutMove footer {
    transform: translateX(70%);
  }
  .flyoutLeft.flyoutActive.flyoutMove #header {
    left: 70%;
  }
  .flyoutTop .flyoutButton {
    float: right;
    position: relative;
    z-index: 21;
  }
  .flyoutTop .flyoutWrap {
    width: 100%;
    transform: translateY(-100%);
    left: 0;
    right: 0;
    bottom: 0;
  }
  .flyoutTop.flyoutActive .flyoutWrap {
    transform: translateY(0);
  }
}
.flyoutActive header .top .navigation nav {
  display: block;
}
header {
  height: 85px;
  z-index: 9999;
  background: #000;
  position: fixed;
  width: 100%;
  top: 0;
}
@media all and (min-width: 800px) and (max-width: 1200px) {
  header {
    height: auto;
    text-align: center;
    padding: 20px 0;
  }
}
header.home {
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
@media all and (min-width:  801px ) {
  header.home {
    background: transparent;
  }
  header.home.fixed {
    background: #000;
  }
}
@media all and (max-width: 800px) {
  header {
    padding: 0 20px;
  }
}
header .logo {
  display: inline-block;
  float: left;
  margin-top: 10px;
  width: 217px;
}
@media all and (min-width: 800px) and (max-width: 1200px) {
  header .logo {
    float: none;
    margin-top: 0;
  }
}
@media all and (max-width: 800px) {
  header .logo {
    display: none;
  }
}
@media all and (max-width: 640px) {
  header .logo {
    margin-top: 15px;
  }
}
@media all and (max-width: 800px) {
  header .logo img {
    max-width: 150px;
    margin-top: 5px;
  }
}
@media all and (min-width:  1201px ) {
  header .navigation {
    width: calc(100% - 217px);
    float: left;
    text-align: right;
  }
}
@media all and (max-width: 800px) {
  header .wrapper {
    padding: 0;
  }
}
header .wrapper nav {
  display: inline-block;
  margin-top: 27px;
}
@media all and (min-width: 800px) and (max-width: 1200px) {
  header .wrapper nav {
    margin-left: 0;
    margin-top: 0px;
    width: 100%;
  }
}
@media all and (max-width: 800px) {
  header .wrapper nav {
    margin-left: 0;
    width: 100%;
    margin-top: 15px;
  }
}
header .wrapper .rightNav {
  float: none;
  display: inline-block;
  position: relative;
  bottom: 4px;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  header .wrapper .rightNav {
    float: none;
  }
}
@media all and (max-width: 800px) {
  header .wrapper .rightNav {
    background: #000;
    padding-bottom: 20px;
    width: 100%;
    padding-top: 20px;
    display: none;
  }
  header .wrapper .rightNav.open {
    display: block;
  }
  header .wrapper .rightNav .searchWrap {
    display: block;
  }
}
header .wrapper .searchWrap {
  display: inline-block;
  position: relative;
}
@media all and (min-width:  1201px ) {
  header .wrapper .searchWrap {
    margin-top: 30px;
  }
}
@media all and (max-width: 800px) {
  header .wrapper .searchWrap {
    width: 100%;
    padding: 0 20px;
    display: none;
  }
}
header .wrapper .searchWrap .searchIcon {
  margin-left: 30px;
  cursor: pointer;
}
@media all and (max-width: 800px) {
  header .wrapper .searchWrap .searchIcon {
    display: none;
  }
}
@media all and (min-width:  801px ) {
  header .wrapper .searchWrap .searchBlock {
    position: absolute;
    top: 55px;
    min-width: 250px;
    background: #fff;
    padding: 23px;
    z-index: 99;
    width: 320px;
    border: 1px solid #e5e5e5;
    display: none;
    right: 0;
  }
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  header .wrapper .searchWrap .searchBlock {
    right: 0;
  }
}
@media all and (max-width: 800px) {
  header .wrapper .searchWrap .searchBlock {
    display: block!important;
  }
}
header .wrapper .searchWrap .searchBlock .close {
  position: absolute;
  right: 5px;
  top: 3px;
}
@media all and (max-width: 800px) {
  header .wrapper .searchWrap .searchBlock .close {
    display: none;
  }
}
header .wrapper .searchWrap .searchBlock input.yith-s {
  border: none;
  border-bottom: 1px solid #696969;
  padding-bottom: 6px;
  float: left;
  margin-top: 5px;
}
@media all and (max-width: 800px) {
  header .wrapper .searchWrap .searchBlock input.yith-s {
    width: calc(100% - 46px);
    padding: 10px;
    font-size: 15px;
    margin-top: 0;
  }
}
header .wrapper .searchWrap .searchBlock #yith-searchsubmit {
  padding: 9px 19px;
  font-size: 13px;
  font-size: 0.8125em;
  background: #870b0b;
  color: #fff;
  padding: 27px 63px;
  min-width: 260px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-weight: 300;
  border-radius: 4px;
  text-align: center;
  min-width: auto;
  float: right;
  padding: 10px 15px;
}
header .wrapper .searchWrap .searchBlock #yith-searchsubmit:hover {
  background: #6c0909;
}
@media all and (max-width: 800px) {
  header .wrapper .searchWrap .searchBlock #yith-searchsubmit {
    padding: 11px 19px;
    border-radius: 0;
    background: url('../img/search_mob.png') no-repeat;
    min-width: auto;
    width: 41px;
    height: 41px;
    color: transparent;
  }
}
header .wrapper .searchWrap .searchBlock .autocomplete-suggestions {
  top: 55px;
}
section.slider {
  display: block;
  float: left;
  width: 100%;
}
footer {
  *zoom: 1;
  float: left;
  width: 100%;
  color: #fff;
  font-weight: 300;
}
footer:before,
footer:after {
  content: "";
  display: table;
}
footer:after {
  clear: both;
}
footer a {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  color: #fff;
}
footer a:hover {
  color: #ffa800;
}
footer .top {
  background: url('../img/footer-bg.jpg') no-repeat;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 55px 0;
  background-size: cover;
}
@media all and (max-width: 800px) {
  footer .top {
    padding: 30px 0 0;
  }
}
footer .col4 {
  width: 25%;
  float: left;
}
@media all and (min-width:  1201px ) {
  footer .col4:nth-of-type(2) {
    padding-left: 95px;
  }
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  footer .col4 {
    padding-right: 10px;
  }
}
@media all and (max-width: 800px) {
  footer .col4 {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 800px) {
  footer .col4.nav {
    display: none;
  }
}
@media all and (max-width: 640px) {
  footer .col4:nth-of-type(3) {
    clear: both;
  }
}
footer .col4 .text {
  margin-top: 25px;
}
footer .col4 .text p {
  margin-bottom: 0;
  line-height: 25px;
}
footer .col4 .text p strong {
  font-weight: bold;
}
footer .col4 .text .link {
  margin-top: 20px;
  display: inline-block;
}
footer .col4 h3 {
  color: #fff;
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 30px;
}
@media all and (max-width: 800px) {
  footer .col4 h3 {
    display: none;
  }
}
footer .col4 li {
  line-height: 27px;
}
footer .col4 li .sub-menu {
  display: none;
}
footer .col4 .social a {
  display: block;
  line-height: 35px;
}
@media all and (max-width: 800px) {
  footer .col4 .social a {
    display: inline-block;
  }
}
footer .col4 .social a span {
  width: 25px;
  display: inline-block;
  margin-right: 15px;
  text-align: center;
}
@media all and (max-width: 800px) {
  footer .col4 form {
    width: 90%;
    margin: 0 auto;
  }
}
footer .col4 form p {
  margin-bottom: 0;
}
footer .col4 form input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 2px solid #ffa800;
  margin-top: 20px;
  margin-bottom: 15px;
  width: 100%;
  color: #ffa800;
  padding-bottom: 5px;
}
footer .col4 form input[type="submit"] {
  color: #fff;
  background: url(../img/send.png) no-repeat;
  border: 0;
  display: block;
  height: 15px;
  width: 24px;
  cursor: pointer;
  top: 9px;
  right: 0;
  padding: 20px 0;
  text-indent: 9999px;
  min-width: auto;
  float: right;
}
footer .col4 .wpcf7-submit {
  padding: 10px 25px;
}
footer .col4 div.wpcf7-validation-errors {
  display: none!important;
}
footer .col4 .wpcf7-form label.error {
  font-size: 13px;
}
footer .bottom {
  height: 85px;
  padding: 32px 0;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  footer .bottom {
    padding: 32px 15px;
  }
}
@media all and (max-width: 640px) {
  footer .bottom {
    text-align: center;
    padding: 25px 0;
    height: auto;
  }
}
@media all and (min-width:  1201px ), all and (min-width:  641px ) and (max-width:  1219px ) {
  footer .bottom .images a:not(:last-child) {
    margin-right: 25px;
  }
}
@media all and (max-width: 640px) {
  footer .bottom .images {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .bottom .images a {
    margin: 0 10px;
  }
}
footer .bottom .copyright {
  color: #8c8c8c;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 4px;
  margin-top: 9px;
}
@media all and (max-width: 640px) {
  footer .bottom .copyright {
    float: none;
    margin-top: 10px;
    display: inline-block;
  }
}
/*
 *  Home
 */
.homeContent {
  *zoom: 1;
  margin-top: 10px;
}
.homeContent:before,
.homeContent:after {
  content: "";
  display: table;
}
.homeContent:after {
  clear: both;
}
@media all and (max-width: 640px) {
  .homeContent {
    margin-bottom: 0!important;
  }
}
.homeContent .titleWrap {
  margin-top: 45px;
}
@media all and (max-width: 640px) {
  .homeContent .titleWrap {
    text-align: center;
    margin-top: 30px;
  }
}
.homeContent .titleWrap h1 {
  margin-top: 10px;
}
@media all and (max-width: 640px) {
  .homeContent .titleWrap h1 {
    float: none;
  }
}
@media all and (max-width: 640px) {
  .homeContent .titleWrap a {
    float: none;
  }
}
/*
  * Secondary pages
  */
.pageWrap {
  margin: 55px 0;
  *zoom: 1;
  float: left;
  width: 100%;
}
.pageWrap:before,
.pageWrap:after {
  content: "";
  display: table;
}
.pageWrap:after {
  clear: both;
}
/*
 * Top banner
 */
.topBanner {
  *zoom: 1;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.topBanner:before,
.topBanner:after {
  content: "";
  display: table;
}
.topBanner:after {
  clear: both;
}
.topBanner .bannerBg {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  right: 0;
  width: 2000px;
  max-width: 2000px;
}
@media all and (max-width: 640px) {
  .topBanner .bannerBg {
    margin: 0;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
  }
}
.topBanner .bannerBg img {
  z-index: 2;
}
.topBanner .topBannerContent {
  height: 350px;
  display: table;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 640px) {
  .topBanner .topBannerContent {
    height: 100%;
    position: absolute;
    display: block;
  }
}
.topBanner .topBannerContent .topBannerContentInner {
  display: table-cell;
  vertical-align: middle;
}
@media all and (max-width: 640px) {
  .topBanner .topBannerContent .topBannerContentInner {
    display: table;
    height: 100%;
  }
}
@media all and (max-width: 640px) {
  .topBanner .topBannerContent .titleWrap {
    display: table-cell;
    vertical-align: middle;
  }
}
.topBanner .topBannerContent .titleWrap h1 {
  font-size: 42px;
  font-size: 2.625rem;
  color: #fff;
  margin-bottom: 0;
}
@media all and (max-width: 640px) {
  .topBanner .topBannerContent .titleWrap h1 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}
.topBanner .topBannerContent .titleWrap h3 {
  font-size: 26px;
  font-size: 1.625rem;
  color: #fff;
  font-weight: normal;
}
.topBanner .topBannerContent p {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  margin-top: 27px;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .topBanner .topBannerContent p {
    margin-top: 15px;
  }
}
.blogPosts li {
  float: left;
  width: 100%;
  margin-bottom: 100px;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .blogPosts li {
    margin-bottom: 50px;
  }
}
.blogPosts li .imageWrap {
  width: 600px;
  float: left;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .blogPosts li .imageWrap {
    width: 45%;
  }
}
@media all and (max-width: 640px) {
  .blogPosts li .imageWrap {
    width: 100%;
  }
}
.blogPosts li .cont {
  width: calc(100% - 600px);
  padding-left: 60px;
  float: left;
  position: relative;
}
@media all and (min-width:  1201px ) {
  .blogPosts li .cont {
    min-height: 378px;
  }
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .blogPosts li .cont {
    width: 55%;
    padding-left: 30px;
  }
}
@media all and (max-width: 640px) {
  .blogPosts li .cont {
    padding-left: 0;
    width: 100%;
  }
}
@media all and (min-width:  1201px ) {
  .blogPosts li .cont .textWrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.blogPosts li .cont h2 {
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 300;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .blogPosts li .cont h2 {
    margin-top: 0;
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media all and (max-width: 640px) {
  .blogPosts li .cont h2 {
    margin-top: 40px;
  }
}
.blogPosts li .cont h2 a {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.blogPosts li .cont h2 a:hover {
  color: #870b0b;
}
.servicesPage .serv-menu {
  width: 30%;
  margin-right: 2%;
  float: left;
}
@media all and (max-width: 640px) {
  .servicesPage .serv-menu {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.servicesPage .serv-menu li {
  background: none;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 0;
  padding-bottom: 13px;
}
.servicesPage .serv-menu li:not(:first-of-type) {
  padding-top: 14px;
}
@media all and (max-width: 640px) {
  .servicesPage .serv-menu .titleWrap .title {
    cursor: pointer;
  }
  .servicesPage .serv-menu .titleWrap .title:after {
    content: "\f107";
    font-family: "FontAwesome";
    color: #202020;
    float: right;
  }
  .servicesPage .serv-menu .titleWrap .title.open:after {
    content: "\f106";
    font-family: "FontAwesome";
    color: #202020;
  }
}
.servicesPage .serv-text {
  float: left;
  width: 68%;
  border-left: 1px solid #e5e5e5;
  padding-left: 30px;
}
@media all and (max-width: 640px) {
  .servicesPage .serv-text {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}
.servicesPage .serv-text .serv-image {
  float: left;
}
.servicesPage .serv-text .content {
  margin-top: 25px;
}
.clientsSliderWrap {
  *zoom: 1;
  width: 100%;
  clear: both;
  float: left;
  padding: 20px 0;
}
.clientsSliderWrap:before,
.clientsSliderWrap:after {
  content: "";
  display: table;
}
.clientsSliderWrap:after {
  clear: both;
}
.clientsSliderWrap .clientsSlider {
  /* the slides */
  /* the parent */
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .clientsSliderWrap .clientsSlider {
    padding: 0 50px;
  }
}
@media all and (min-width:  1201px ) {
  .clientsSliderWrap .clientsSlider {
    padding: 0 10px;
  }
}
.clientsSliderWrap .clientsSlider .slick-slide {
  margin: 0 5px;
}
.clientsSliderWrap .clientsSlider .slick-list {
  margin: 0 -5px;
}
.clientsSliderWrap .clientsSlider .slick-slide {
  text-align: center;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
}
.clientsSliderWrap .clientsSlider .slick-slide img {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.offersWrap {
  *zoom: 1;
}
.offersWrap:before,
.offersWrap:after {
  content: "";
  display: table;
}
.offersWrap:after {
  clear: both;
}
.offersWrap .offer {
  position: relative;
  cursor: pointer;
}
.offersWrap .offer:after {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: transparent;
  opacity: 0;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.offersWrap .offer:hover:after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.offersWrap .offer:hover span {
  color: #ffa800;
}
@media all and (max-width: 640px) {
  .offersWrap .offer .bg {
    width: 100%;
  }
}
.offersWrap .offer a {
  display: block;
  z-index: 999;
  position: relative;
}
.offersWrap .offer .textWrap {
  position: absolute;
  left: 30px;
  bottom: 35px;
  z-index: 99;
}
@media all and (max-width: 640px) {
  .offersWrap .offer .textWrap img {
    max-width: 150px;
  }
}
.offersWrap .offer span {
  display: block;
  margin-top: 25px;
  color: #fff;
  font-size: 27px;
  font-size: 1.6875rem;
  z-index: 99;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 640px) {
  .offersWrap .offer span {
    bottom: 20px;
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 10px;
  }
}
.offersWrap .offer.first,
.offersWrap .offer.second {
  width: 49%;
}
@media all and (max-width: 640px) {
  .offersWrap .offer.first,
  .offersWrap .offer.second {
    width: 100%;
  }
}
@media all and (max-width: 640px) {
  .offersWrap .offer.second {
    margin-top: 20px;
  }
}
.offersWrap .offer.third {
  margin-top: 16px;
  float: left;
}
@media all and (max-width: 640px) {
  .offersWrap .offer.third {
    margin-top: 20px;
  }
}
.masonryWrap {
  *zoom: 1;
  margin-top: 20px;
}
.masonryWrap:before,
.masonryWrap:after {
  content: "";
  display: table;
}
.masonryWrap:after {
  clear: both;
}
.masonryWrap .top .grid-item {
  float: left;
  max-width: 591px;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .masonryWrap .top .grid-item {
    max-width: 100%;
    width: 49%;
  }
}
@media all and (max-width: 640px) {
  .masonryWrap .top .grid-item {
    max-width: 100%;
  }
}
.masonryWrap .top .grid-item:nth-child(even) {
  float: right;
}
.masonryWrap .top .grid-item img {
  max-height: 293px;
}
.masonryWrap .col2 {
  width: 300px;
  float: left;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .masonryWrap .col2 {
    width: 25%;
    margin-right: 2%;
  }
}
@media all and (max-width: 640px) {
  .masonryWrap .col2 {
    width: 100%;
  }
}
@media all and (max-width: 640px) {
  .masonryWrap .col2 .grid-item:first-child {
    height: 400px;
    overflow: hidden;
  }
}
.masonryWrap .col3 {
  width: 880px;
  float: right;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .masonryWrap .col3 {
    width: 73%;
  }
}
@media all and (max-width: 640px) {
  .masonryWrap .col3 {
    width: 100%;
  }
}
.masonryWrap .col3 .grid-item:last-child {
  float: right;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .masonryWrap .col3 .grid-item:not(:first-child) {
    width: 49%;
  }
}
.masonryWrap .grid-item {
  float: left;
  margin-bottom: 18px;
  position: relative;
  cursor: pointer;
}
.masonryWrap .grid-item.right {
  float: right;
}
.masonryWrap .grid-item a {
  display: block;
}
.masonryWrap .grid-item a:after {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: transparent;
  opacity: 0;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.masonryWrap .grid-item a:hover:after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.3;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.masonryWrap .grid-item a:before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(248, 248, 248, 0) 0%, #000 100%);
}
.masonryWrap .grid-item:hover span {
  color: #ffa800;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .masonryWrap .grid-item {
    margin-bottom: 1%;
  }
}
@media all and (max-width: 640px) {
  .masonryWrap .grid-item {
    width: 100%;
  }
  .masonryWrap .grid-item img {
    width: 100%;
  }
}
.masonryWrap .grid-item span {
  color: #fff;
  font-size: 27px;
  font-size: 1.6875rem;
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .masonryWrap .grid-item span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.aboutSection {
  *zoom: 1;
  position: relative;
  margin-top: 50px;
  min-height: 590px;
  margin-bottom: 75px;
}
.aboutSection:before,
.aboutSection:after {
  content: "";
  display: table;
}
.aboutSection:after {
  clear: both;
}
@media all and (max-width: 800px) {
  .aboutSection {
    margin-top: 30px;
    margin-bottom: 50px;
    min-height: auto;
  }
}
.aboutSection .textWrap {
  width: 540px;
  float: right;
  z-index: 99;
  margin-top: 60px;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .aboutSection .textWrap {
    width: auto;
    margin-top: 0;
  }
}
.aboutSection .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .aboutSection .bg {
    float: left;
    width: 50%;
    margin-top: 10px;
  }
}
@media all and (max-width: 800px) {
  .aboutSection .bg {
    display: none;
  }
}
@media all and (min-width: 800px) and (max-width: 1200px) {
  .aboutSection .wrapper {
    width: 50%;
    float: right;
    clear: none;
    padding-left: 30px;
    padding-right: 15px;
  }
}
.home .clientsSliderWrap {
  margin-bottom: 20px;
}
@media all and (max-width: 640px) {
  .homeWrapper {
    padding: 0;
  }
}
.shareWrap span {
  color: #bcbcbc;
  font-size: 13px;
  font-size: 0.8125rem;
}
.shareWrap .a2a_kit {
  display: inline-block;
  margin-left: 15px;
}
.shareWrap .a2a_kit a {
  margin-right: 15px;
}
html.single:not(.woocommerce) .pageWrap {
  margin-top: 0;
}
html.single:not(.woocommerce) .pageWrap .titleWrap {
  height: 60px;
  padding: 25px 0;
}
@media all and (min-width:  1201px ) {
  html.single:not(.woocommerce) .singleWrap {
    width: 915px;
    margin: 0 auto;
  }
}
.singlePage .textWrap {
  margin-top: 30px;
}
.singlePage .textWrap .img-cont {
  margin-bottom: 30px;
}
.singlePage .textWrap h1 {
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 300;
}
.contactPage .left {
  width: 544px;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .contactPage .left {
    width: 45%;
  }
}
@media all and (max-width: 640px) {
  .contactPage .left {
    display: none;
  }
}
.contactPage .right {
  width: calc(100% - 544px);
  padding-left: 55px;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .contactPage .right {
    width: 55%;
    padding-left: 30px;
  }
}
@media all and (max-width: 640px) {
  .contactPage .right {
    width: 100%;
    padding-left: 0;
  }
}
.contactPage .right .textWrap p {
  margin-bottom: 0;
}
.contactPage .right .formContainer {
  margin-top: 30px;
}
.contactPage .right .formContainer .title {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
.contactPage .right .formContainer form p {
  margin-bottom: 0;
}
.contactPage .right .formContainer form input:not([type="submit"]),
.contactPage .right .formContainer form textarea {
  font-weight: 300;
  color: #202020;
  border: none;
  border-bottom: 1px solid #bcbcbc;
  width: 100%;
  height: 40px;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
}
.contactPage .right .formContainer form input:not([type="submit"])::-webkit-input-placeholder,
.contactPage .right .formContainer form textarea::-webkit-input-placeholder {
  font-size: 16px;
  font-size: 1rem;
  color: #202020;
}
.contactPage .right .formContainer form input:not([type="submit"]):-moz-placeholder,
.contactPage .right .formContainer form textarea:-moz-placeholder {
  font-size: 16px;
  font-size: 1rem;
  color: #202020;
}
.contactPage .right .formContainer form input:not([type="submit"])::-moz-placeholder,
.contactPage .right .formContainer form textarea::-moz-placeholder {
  font-size: 16px;
  font-size: 1rem;
  color: #202020;
}
.contactPage .right .formContainer form input:not([type="submit"]):-ms-input-placeholder,
.contactPage .right .formContainer form textarea:-ms-input-placeholder {
  font-size: 16px;
  font-size: 1rem;
  color: #202020;
}
.contactPage .right .formContainer form textarea {
  margin-top: 20px;
}
.contactPage .right .formContainer form .wpcf7-submit {
  background: #870b0b;
  color: #fff;
  padding: 27px 63px;
  min-width: 260px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-weight: 300;
  border-radius: 4px;
  text-align: center;
  background: transparent;
  color: #202020;
  border: 1px solid #000;
  padding: 24px 41px;
  min-width: auto;
  font-size: 16px;
  font-size: 1rem;
  display: block;
  width: auto;
  margin-top: 35px;
}
.contactPage .right .formContainer form .wpcf7-submit:hover {
  background: #6c0909;
}
.contactPage .right .formContainer form .wpcf7-submit:hover {
  background: #870b0b;
  color: #fff;
}
.contactPage .workTime {
  clear: both;
  float: left;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 20px;
}
body.contacts .pageWrap {
  margin-bottom: 0;
}
.notFound .notFoundWrap {
  width: 650px;
  margin: 0 auto;
  margin-top: 160px;
  margin-bottom: 100px;
  overflow: hidden;
}
@media all and (max-width: 640px) {
  .notFound .notFoundWrap {
    text-align: center;
    width: 100%;
    margin-top: 70px;
    margin-bottom: 50px;
    padding: 0 15px;
  }
}
.notFound .notFoundWrap h1 {
  font-size: 212px;
  font-size: 13.25rem;
  font-weight: 500;
  line-height: 1;
}
.notFound .notFoundWrap .link {
  color: #870b0b;
}
.notFound .notFoundWrap .link:hover {
  text-decoration: underline;
}
.notFound .notFoundWrap span,
.notFound .notFoundWrap a {
  font-weight: 500;
}
.notFound .notFoundWrap .line {
  padding: 0 5px;
}
.notFound .notFoundWrap .left {
  width: 375px;
}
@media all and (max-width: 640px) {
  .notFound .notFoundWrap .left {
    width: 100%;
  }
}
.notFound .notFoundWrap .right {
  width: calc(100% - 375px);
}
@media all and (max-width: 640px) {
  .notFound .notFoundWrap .right {
    width: 100%;
  }
}
.notFound .notFoundWrap .right img {
  margin-top: 100px;
}
.notFound .clientsSliderWrap {
  margin-bottom: 30px;
}
@media all and (max-width: 640px) {
  .aboutPage iframe {
    width: 100%;
    margin-bottom: 30px;
  }
}
.woocommerce .prodCategories {
  width: 345px;
  float: left;
  margin-bottom: 50px;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .woocommerce .prodCategories {
    width: 40%;
  }
}
@media all and (max-width: 768px) {
  .woocommerce .prodCategories {
    width: 100%;
  }
}
.woocommerce .prodCategories .specialOffer {
  margin-top: 50px;
}
@media all and (max-width: 768px) {
  .woocommerce .prodCategories .specialOffer {
    display: none;
  }
}
.woocommerce #container {
  width: calc(100% - 345px);
  padding-left: 45px;
  float: left;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .woocommerce #container {
    width: 60%;
  }
}
@media all and (max-width: 768px) {
  .woocommerce #container {
    width: 100%;
    padding-left: 0;
  }
}
.woocommerce .woocommerce-breadcrumb {
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 300;
  margin-bottom: 50px;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .woocommerce .woocommerce-breadcrumb {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1.3;
  }
}
.woocommerce .woocommerce-breadcrumb a {
  color: #797979;
}
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  display: none;
}
.woocommerce .prodCategories li.current-cat > ul.children,
.woocommerce .prodCategories li.current-cat-ancestor > ul.children {
  display: block;
}
.woocommerce .prodCategories li a {
  color: #797979;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  display: block;
  padding: 10px 0 10px 40px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce .prodCategories li a:hover {
  color: #870b0b;
}
.woocommerce .prodCategories li ul.children {
  display: none;
  padding: 15px 0;
  background: #f5f5f5;
}
.woocommerce .prodCategories li ul.children li a {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  padding-top: 10px;
  padding-bottom: 10px;
}
.woocommerce .prodCategories li ul.children .current-cat > a {
  background: transparent;
  color: #870b0b;
  font-weight: normal;
}
.woocommerce .prodCategories li ul.children .current-cat > a:hover {
  color: #870b0b;
}
.woocommerce .prodCategories li ul.children ul.children {
  padding-left: 25px;
}
.woocommerce .prodCategories > ul > li {
  border-bottom: 1px solid #e4e2de;
}
.woocommerce .prodCategories > ul > li.current-cat,
.woocommerce .prodCategories > ul > li.current-cat-ancestor {
  z-index: 5;
  position: relative;
}
.woocommerce .prodCategories > ul > li.current-cat > a,
.woocommerce .prodCategories > ul > li.current-cat-ancestor > a {
  background: #870b0b;
  color: #fff;
}
.woocommerce .prodCategories > ul > li.current-cat > a:hover,
.woocommerce .prodCategories > ul > li.current-cat-ancestor > a:hover {
  color: #fff;
}
.woocommerce .prodCategories > ul > li.current-cat span,
.woocommerce .prodCategories > ul > li.current-cat-ancestor span {
  float: right;
  background: url('../img/close1.png') no-repeat;
  width: 35px;
  height: 35px;
  z-index: 99;
  position: absolute;
  right: 10px;
  top: 7px;
}
.woocommerce .prodCategories li > a {
  font-size: 20px;
  font-size: 1.25rem;
  padding: 15px 22px 15px 40px;
}
@media all and (max-width: 640px) {
  .woocommerce .prodCategories li > a {
    padding-left: 10px;
  }
}
@media all and (min-width:  1201px ) {
  .woocommerce #container ul.products {
    margin-bottom: 40px;
  }
}
.woocommerce #container ul.products li.product {
  border: 1px solid #e4e2de;
  cursor: pointer;
}
@media all and (min-width: 769px) {
  .woocommerce #container ul.products li.product {
    margin: 0 2% 2% 0;
    width: 32%;
  }
}
.woocommerce #container ul.products li.product a:after {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: transparent;
  opacity: 0;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.woocommerce #container ul.products li.product a:hover:after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.3;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce #container ul.products li.product.last {
  margin-right: 0;
}
.woocommerce #container ul.products li.product .price {
  display: none;
}
.woocommerce #container ul.products li.product .button {
  display: none;
}
.woocommerce #container ul.products li.product .woocommerce-loop-category__title {
  text-align: center;
  font-weight: 500;
  padding: 10px 10px 20px;
  z-index: 99;
  min-height: 70px;
}
.woocommerce #container ul.products li.product .woocommerce-loop-product__title {
  min-height: 150px;
  text-align: center;
  font-weight: 500;
  padding: 15px 8px 10px;
  z-index: 99;
  min-height: 70px;
}
.woocommerce #container ul.products li.product .shop_cat_desc {
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  min-height: 80px;
}
.woocommerce span.onsale {
  padding: inherit!important;
  background: #870b0b !important;
}
@media all and (min-width: 769px) {
  .woocommerce #content div.product div.images {
    width: 53%;
  }
}
.woocommerce #content div.product div.images .woocommerce-product-gallery__image {
  border: 1px solid #e4e2de;
  margin-bottom: 2%;
}
.woocommerce #content div.product div.images .woocommerce-product-gallery__image img {
  min-height: 100px;
}
.woocommerce #content div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 32%;
  margin-right: 2%;
}
.woocommerce #content div.product div.images .woocommerce-product-gallery__image:nth-child(3n+4) {
  margin-right: 0;
}
.woocommerce #content div.product div.summary h2 {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: normal;
}
.woocommerce #content div.product div.summary h3 {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 300;
}
.woocommerce #content div.product div.summary h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.woocommerce #content div.product div.summary ul {
  margin-bottom: 22px;
}
.woocommerce #content div.product div.summary ul li {
  padding-left: 40px;
  position: relative;
  line-height: 28px;
  font-weight: 300;
}
.woocommerce #content div.product div.summary ul li:before {
  background: url('../img/tick.png') no-repeat;
  width: 16px;
  height: 11px;
  display: inline-block;
  content: '';
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 8px;
}
.woocommerce #content div.product div.summary a {
  color: #870b0b;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.woocommerce #content div.product div.summary a:hover {
  color: #a20d0d;
  text-decoration: underline;
}
.woocommerce #content div.product div.summary strong {
  font-weight: bold;
}
.woocommerce #content div.product div.summary .gallery {
  margin-bottom: 25px!important;
}
.woocommerce #content div.product div.summary .gallery img {
  border: none!important;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .woocommerce #content div.product div.summary .gallery img {
    width: 100%!important;
  }
}
.woocommerce #content div.product div.summary .gallery .gallery-icon {
  height: 100%;
}
.woocommerce #content div.product div.summary .gallery .gallery-icon img {
  height: 100%;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .woocommerce #content div.product div.summary .gallery.gallery-columns-4 .gallery-item {
    margin-top: 0px!important;
  }
}
.woocommerce #content div.product div.summary .gallery.gallery-columns-3 .gallery-item:not(:nth-of-type(3n)) {
  margin-right: 0.5%;
}
.woocommerce #content div.product div.summary table {
  max-width: 100%;
  margin-bottom: 25px;
}
.woocommerce #content div.product div.summary table td {
  padding: 15px 20px;
}
.woocommerce #content div.product div.summary table thead {
  background: #4b4b4b;
  color: #fff;
}
.woocommerce #content div.product div.summary table thead td {
  border-left: 1px solid #fff;
}
.woocommerce #content div.product div.summary table thead td:last-child {
  border-right: 1px solid #fff;
}
.woocommerce #content div.product div.summary table tbody tr {
  border-bottom: 1px solid #e1e1e1;
}
.woocommerce #content div.product div.summary table tbody td {
  border-left: 1px solid #e1e1e1;
}
.woocommerce #content div.product div.summary table tbody td:last-child {
  border-right: 1px solid #e1e1e1;
}
@media all and (min-width: 769px) {
  .woocommerce #content div.product div.summary {
    width: 47%;
    padding-left: 30px;
  }
}
.woocommerce #content div.product div.summary .summaryContent {
  margin-bottom: 20px;
}
.woocommerce #content div.product div.summary .price,
.woocommerce #content div.product div.summary form.cart {
  display: none;
}
.woocommerce #content div.product div.summary .woocommerce-product-details__short-description[data-readmore] {
  margin-bottom: 15px;
}
.woocommerce #content div.product div.summary .product_title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
.woocommerce #content div.product div.summary .product_meta {
  display: none;
}
.woocommerce .related {
  clear: both;
}
.woocommerce .related h2 {
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 300;
  margin-bottom: 35px;
}
.woocommerce .contactUsProduct {
  background: #5c9425;
  padding: 10px 30px;
  position: relative;
  clear: both;
  min-height: 75px;
  margin: 20px 0 45px;
  float: left;
  width: 100%;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .woocommerce .contactUsProduct {
    padding: 20px;
    text-align: center;
  }
}
.woocommerce .contactUsProduct:after {
  background: url('../img/skrepka.png') no-repeat;
  content: '';
  right: 10px;
  top: -15px;
  width: 35px;
  height: 32px;
  position: absolute;
}
.woocommerce .contactUsProduct .textWrap {
  float: left;
}
@media all and (min-width:  1201px ) {
  .woocommerce .contactUsProduct .textWrap {
    width: 275px;
    border-right: 1px solid #fff;
  }
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .woocommerce .contactUsProduct .textWrap {
    width: 100%;
  }
}
.woocommerce .contactUsProduct .contactWrap {
  float: left;
  padding-top: 5px;
}
@media all and (min-width:  1201px ) {
  .woocommerce .contactUsProduct .contactWrap {
    width: calc(100% - 275px);
    padding-left: 35px;
  }
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .woocommerce .contactUsProduct .contactWrap {
    width: 100%;
  }
}
.woocommerce .contactUsProduct span {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 2px;
  display: inline-block;
}
.woocommerce .contactUsProduct a {
  color: #fff;
  position: relative;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .woocommerce .contactUsProduct a {
    display: block;
  }
}
.woocommerce .contactUsProduct a:hover {
  text-decoration: underline;
}
.woocommerce .contactUsProduct a.phone:before {
  background: url('../img/phone.png') no-repeat;
  content: '';
  width: 20px;
  height: 28px;
  display: inline-block;
  margin-right: 7px;
  position: relative;
  top: 5px;
}
@media all and (min-width:  1201px ) {
  .woocommerce .contactUsProduct a.email {
    margin-left: 20px;
  }
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .woocommerce .contactUsProduct a.email {
    margin-top: 10px;
  }
}
.woocommerce .contactUsProduct a.email:before {
  background: url('../img/plane.png') no-repeat;
  content: '';
  width: 23px;
  height: 23px;
  display: inline-block;
  margin-right: 7px;
  position: relative;
  top: 5px;
}
.woocommerce .woocommerce-tabs .wc-tabs,
.woocommerce .woocommerce-tabs h2:first-of-type {
  display: none;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: normal;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel h3 {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 300;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel ul {
  margin-bottom: 22px;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel ul li {
  padding-left: 40px;
  position: relative;
  line-height: 28px;
  font-weight: 300;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel ul li:before {
  background: url('../img/tick.png') no-repeat;
  width: 16px;
  height: 11px;
  display: inline-block;
  content: '';
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 8px;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel a {
  color: #870b0b;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel a:hover {
  color: #a20d0d;
  text-decoration: underline;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel strong {
  font-weight: bold;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel .gallery {
  margin-bottom: 25px!important;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel .gallery img {
  border: none!important;
}
@media all and (min-width:  641px ) and (max-width:  1219px ) {
  .woocommerce .woocommerce-tabs .woocommerce-Tabs-panel .gallery img {
    width: 100%!important;
  }
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel .gallery .gallery-icon {
  height: 100%;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel .gallery .gallery-icon img {
  height: 100%;
}
@media all and (min-width:  641px ) and (max-width:  1219px ), all and (max-width: 640px) {
  .woocommerce .woocommerce-tabs .woocommerce-Tabs-panel .gallery.gallery-columns-4 .gallery-item {
    margin-top: 0px!important;
  }
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel .gallery.gallery-columns-3 .gallery-item:not(:nth-of-type(3n)) {
  margin-right: 0.5%;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel table {
  max-width: 100%;
  margin-bottom: 25px;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel table td {
  padding: 15px 20px;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel table thead {
  background: #4b4b4b;
  color: #fff;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel table thead td {
  border-left: 1px solid #fff;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel table thead td:last-child {
  border-right: 1px solid #fff;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel table tbody tr {
  border-bottom: 1px solid #e1e1e1;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel table tbody td {
  border-left: 1px solid #e1e1e1;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel table tbody td:last-child {
  border-right: 1px solid #e1e1e1;
}
.woocommerce .woocommerce-tabs .woocommerce-Tabs-panel table {
  width: 100%;
}
@media all and (max-width: 768px) {
  .page-template-sale-php .prodCategories,
  .post-type-archive-product .prodCategories,
  .tax-product_cat .prodCategories {
    margin-bottom: 0;
  }
  .page-template-sale-php .prodCategories .titleWrap,
  .post-type-archive-product .prodCategories .titleWrap,
  .tax-product_cat .prodCategories .titleWrap {
    border: 1px solid #e4e2de;
    margin-bottom: 30px;
  }
  .page-template-sale-php .prodCategories .titleWrap h1,
  .post-type-archive-product .prodCategories .titleWrap h1,
  .tax-product_cat .prodCategories .titleWrap h1 {
    margin-bottom: 0;
    padding: 10px;
  }
  .page-template-sale-php .prodCategories .titleWrap h1.open:after,
  .post-type-archive-product .prodCategories .titleWrap h1.open:after,
  .tax-product_cat .prodCategories .titleWrap h1.open:after {
    content: "\f077";
    font-family: "FontAwesome";
    color: #202020;
    float: right;
  }
  .page-template-sale-php .prodCategories .titleWrap h1:after,
  .post-type-archive-product .prodCategories .titleWrap h1:after,
  .tax-product_cat .prodCategories .titleWrap h1:after {
    content: "\f078";
    font-family: "FontAwesome";
    color: #202020;
    float: right;
  }
  .page-template-sale-php .prodCategories ul,
  .post-type-archive-product .prodCategories ul,
  .tax-product_cat .prodCategories ul {
    display: none;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 768px) {
  .post-type-archive-product .woocommerce-breadcrumb {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .single-product .prodCategories {
    display: none;
  }
}
.videoBlock {
  margin: 20px 0;
}
.videoBlock iframe {
  width: 100%;
}

/*
 * ====================================
 * ====================================
 * ====================================
 * ====================================
 * Post-Woocommerce update hacks.
 */
@media screen and (max-width: 768px) {
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        width: 48% !important; /* blatant override */
        float: left;
        clear: both;
        margin: 0 0 2.992em;
    }
    .woocommerce ul.products li.product:nth-child(2n),
    .woocommerce-page ul.products li.product:nth-child(2n) {
        float: right;
        clear: none !important;
    }
}

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


.wpml-ls-legacy-dropdown {display:none !important }
