/* -------------------- imports -------------------- */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    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;
    top: 0;
    left: 0;

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

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[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;
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    margin-top: -10px;
    padding: 0;

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

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

.slick-dots
{
    position: absolute;
    bottom: -45px;

    display: block;

    width: 100%;
    padding: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* -------------------- variables -------------------- */
/* -------------------- base -------------------- */
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,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
body {
  line-height: 1;
  color: #000;
  background: #fff;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: middle;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
a img {
  border: none;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Titillium Web', 'Arial', sans-serif;
  font-weight: 400;
  line-height: 1.25;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}
input[type=text],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  outline: none;
}
textarea {
  overflow: auto;
}
select:-moz-focusring {
  color: transparent !important;
  text-shadow: 0 0 0 #fff !important;
}
/* -------------------- wordpress -------------------- */
.gform_validation_container,
.gform_ajax_spinner,
.validation_error {
  display: none;
}
.alignleft {
  margin: 0 15px 5px 0;
  float: left;
}
.alignright {
  margin: 0 0 5px 15px;
  float: right;
}
.aligncenter {
  margin: 0 auto 5px;
  display: block;
  text-align: center;
}
/* -------------------- layout -------------------- */
.wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1030px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.wrapper:before,
.wrapper:after {
  content: '';
  display: table;
}
.wrapper:after {
  clear: both;
}
@media only screen and (max-width: 1070px) {
  .wrapper {
    padding: 0 20px;
  }
}
/* -------------------- modules -------------------- */
.button {
  color: #fff;
  font-family: 'Titillium Web', 'Arial', sans-serif;
  line-height: 1.25;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 7px 6px 9px 12px;
  background: #e0001a;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.button:after {
  position: absolute;
  content: '';
  top: 0;
  right: -16px;
  border-left: 16px solid #e0001a;
  border-bottom: 36px solid transparent;
  -moz-transform: scale(0.9999);
  -webkit-transition: border 0.2s ease-in-out;
  -moz-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  -ms-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.button:hover {
  background: #3e3d40;
  padding: 7px 11px 9px 17px;
}
.button:hover:after {
  border-left-color: #3e3d40;
}
.user-content h1,
.user-content h2 {
  color: #808081;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.136363636;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.user-content h3 {
  color: #808081;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 20px 0 10px;
}
.user-content h4 {
  color: #0076bc;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
}
.user-content p,
.user-content h6,
.user-content ul li {
  color: #3e3d40;
  font-size: 16px;
  line-height: 1.625;
  margin: 0 0 10px;
}
.user-content p a,
.user-content h6 a,
.user-content ul li a {
  color: inherit;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.user-content p a:hover,
.user-content h6 a:hover,
.user-content ul li a:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.user-content h6 {
  margin: 0;
  color: #0076bc;
  font-weight: 700;
}
.user-content ul {
  padding: 0 0 10px 20px;
}
.user-content ul li {
  margin: 0;
  position: relative;
  padding: 0 0 0 15px;
}
.user-content ul li ul {
  padding: 0 0 0 10px;
}
.user-content ul li:before {
  position: absolute;
  content: '•';
  left: 0px;
  top: 0px;
  font-size: 15px;
}
body {
  padding-top: 144px;
}
@media only screen and (max-width: 978px) {
  body {
    padding-top: 70px;
  }
}
header {
  position: fixed;
  height: 144px;
  background: #fff;
  z-index: 99;
  width: 100%;
  top: 0px;
  border-bottom: 1px solid #464646;
  -webkit-transition: top 0.2s ease-in-out;
  -moz-transition: top 0.2s ease-in-out;
  -o-transition: top 0.2s ease-in-out;
  -ms-transition: top 0.2s ease-in-out;
  transition: top 0.2s ease-in-out;
}
@media only screen and (max-width: 978px) {
  header {
    height: 70px;
    top: 0 !important;
  }
}
header .header-logo {
  float: left;
  margin: 32px 0 0;
}
@media only screen and (max-width: 978px) {
  header .header-logo {
    margin: 18px 0;
  }
}
header .header-logo img {
  width: 330px;
  height: 50px;
}
@media only screen and (max-width: 978px) {
  header .header-logo img {
    width: 236px;
    height: 35px;
  }
}
header .header-links {
  float: right;
}
@media only screen and (max-width: 978px) {
  header .header-links {
    display: none;
  }
}
header .header-links ul li {
  float: left;
}
header .header-links ul li a {
  height: 37px;
  display: block;
  position: relative;
  padding: 0 13px;
}
header .header-links ul li a span {
  color: #464646;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  display: block;
  text-transform: uppercase;
  padding: 23px 0 0;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
header .header-links ul li a svg path {
  fill: #464646;
  -webkit-transition: fill 0.2s ease-in-out;
  -moz-transition: fill 0.2s ease-in-out;
  -o-transition: fill 0.2s ease-in-out;
  -ms-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}
header .header-links ul li a.icon-cart > svg {
  width: 24px;
  height: 22px;
  margin: 15px 0 0;
}
header .header-links ul li a.icon-call > svg {
  width: 14px;
  height: 24px;
  margin: 13px 0 0;
}
header .header-links ul li a.icon-email > svg {
  width: 19px;
  height: 14px;
  margin: 23px 0 0;
}
header .header-links ul li a:before {
  position: absolute;
  content: '';
  bottom: -2px;
  left: 3px;
  width: 2px;
  height: 50px;
  background: #d0d1d3;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
header .header-links ul li a:hover span {
  color: #007fbc;
}
header .header-links ul li a:hover svg path {
  fill: #007fbc;
}
header .header-nav {
  clear: both;
  padding: 17px 0 0;
}
@media only screen and (max-width: 978px) {
  header .header-nav {
    display: none;
  }
}
header .header-nav ul li {
  float: left;
  padding: 0 20px 0 0;
}
header .header-nav ul li a {
  color: #000;
  font-size: 18px;
  padding: 11px 10px;
  display: block;
  position: relative;
  background: #e7e7e7;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  line-height: 1;
}
header .header-nav ul li a:after,
header .header-nav ul li a:before {
  position: absolute;
  content: '';
  top: 0;
  right: -18px;
  border-left: 18px solid #e7e7e7;
  border-top: 40px solid transparent;
  -moz-transform: scale(0.9999);
  -webkit-transition: border 0.2s ease-in-out;
  -moz-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  -ms-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
header .header-nav ul li a:before {
  right: auto;
  left: -18px;
  border: none;
  border-right: 18px solid #e7e7e7;
  border-bottom: 40px solid transparent;
}
header .header-nav ul li:first-child a:before {
  left: -2000px;
  border: none;
  height: 40px;
  width: 2001px;
  background: #e7e7e7;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
header .header-nav ul li.current-menu-item a,
header .header-nav ul li.current-page-ancestor a,
header .header-nav ul li:hover a {
  background: #7f7f82;
  color: #fff;
}
header .header-nav ul li.current-menu-item a:before,
header .header-nav ul li.current-page-ancestor a:before,
header .header-nav ul li:hover a:before {
  border-right-color: #7f7f82;
}
header .header-nav ul li.current-menu-item a:after,
header .header-nav ul li.current-page-ancestor a:after,
header .header-nav ul li:hover a:after {
  border-left-color: #7f7f82;
}
header .header-nav ul li:nth-child(2) a {
  background: #d8dddd;
}
header .header-nav ul li:nth-child(2) a:before {
  border-right-color: #d8dddd;
}
header .header-nav ul li:nth-child(2) a:after {
  border-left-color: #d8dddd;
}
header .header-nav ul li:nth-child(2).current-menu-item a,
header .header-nav ul li:nth-child(2).current-page-ancestor a,
header .header-nav ul li:nth-child(2):hover a {
  background: #e0001a;
}
header .header-nav ul li:nth-child(2).current-menu-item a:before,
header .header-nav ul li:nth-child(2).current-page-ancestor a:before,
header .header-nav ul li:nth-child(2):hover a:before {
  border-right-color: #e0001a;
}
header .header-nav ul li:nth-child(2).current-menu-item a:after,
header .header-nav ul li:nth-child(2).current-page-ancestor a:after,
header .header-nav ul li:nth-child(2):hover a:after {
  border-left-color: #e0001a;
}
header .header-nav ul li:nth-child(3) a {
  background: #cecece;
}
header .header-nav ul li:nth-child(3) a:before {
  border-right-color: #cecece;
}
header .header-nav ul li:nth-child(3) a:after {
  border-left-color: #cecece;
}
header .header-nav ul li:nth-child(3).current-menu-item a,
header .header-nav ul li:nth-child(3).current-page-ancestor a,
header .header-nav ul li:nth-child(3):hover a {
  background: #007fbc;
}
header .header-nav ul li:nth-child(3).current-menu-item a:before,
header .header-nav ul li:nth-child(3).current-page-ancestor a:before,
header .header-nav ul li:nth-child(3):hover a:before {
  border-right-color: #007fbc;
}
header .header-nav ul li:nth-child(3).current-menu-item a:after,
header .header-nav ul li:nth-child(3).current-page-ancestor a:after,
header .header-nav ul li:nth-child(3):hover a:after {
  border-left-color: #007fbc;
}
header .header-nav ul li:nth-child(4) a {
  background: #c4c4c4;
}
header .header-nav ul li:nth-child(4) a:before {
  border-right-color: #c4c4c4;
}
header .header-nav ul li:nth-child(4) a:after {
  border-left-color: #c4c4c4;
}
header .header-nav ul li:nth-child(4).current-menu-item a,
header .header-nav ul li:nth-child(4).current-page-ancestor a,
header .header-nav ul li:nth-child(4):hover a {
  background: #3e3d40;
}
header .header-nav ul li:nth-child(4).current-menu-item a:before,
header .header-nav ul li:nth-child(4).current-page-ancestor a:before,
header .header-nav ul li:nth-child(4):hover a:before {
  border-right-color: #3e3d40;
}
header .header-nav ul li:nth-child(4).current-menu-item a:after,
header .header-nav ul li:nth-child(4).current-page-ancestor a:after,
header .header-nav ul li:nth-child(4):hover a:after {
  border-left-color: #3e3d40;
}
header .header-nav ul li:nth-child(5) a {
  background: #b5b5b5;
}
header .header-nav ul li:nth-child(5) a:before {
  border-right-color: #b5b5b5;
}
header .header-nav ul li:nth-child(5) a:after {
  border-left-color: #b5b5b5;
}
header .header-nav ul li:nth-child(5).current-menu-item a,
header .header-nav ul li:nth-child(5).current-page-ancestor a,
header .header-nav ul li:nth-child(5):hover a {
  background: #007fbc;
}
header .header-nav ul li:nth-child(5).current-menu-item a:before,
header .header-nav ul li:nth-child(5).current-page-ancestor a:before,
header .header-nav ul li:nth-child(5):hover a:before {
  border-right-color: #007fbc;
}
header .header-nav ul li:nth-child(5).current-menu-item a:after,
header .header-nav ul li:nth-child(5).current-page-ancestor a:after,
header .header-nav ul li:nth-child(5):hover a:after {
  border-left-color: #007fbc;
}
header .header-nav ul li:first-child.current-menu-item a:before,
header .header-nav ul li:first-child.current-page-ancestor a:before,
header .header-nav ul li:first-child:hover a:before {
  background: #7f7f82;
}
.woocommerce .menu-item-81 a {
  background: #007fbc !important;
  color: #fff !important;
}
.woocommerce .menu-item-81 a:before {
  border-right-color: #007fbc !important;
}
.woocommerce .menu-item-81 a:after {
  border-left-color: #007fbc !important;
}
.scrolling header {
  top: -103px;
}
.footer-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .footer-mobile {
    display: block;
    background: #ececec;
    text-align: center;
    height: 45px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.footer-mobile ul li {
  float: left;
  width: 33.333333333%;
  width: 50%;
  position: relative;
  height: 45px;
}
.footer-mobile ul li a {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: url("../img/footer-mobile-shop.png") left center no-repeat;
  line-height: 45px;
  float: left;
  color: #464646;
  font-size: 18px;
  padding: 0 0 0 40px;
  white-space: nowrap;
}
.footer-mobile ul li:nth-of-type(2) a {
  background: url("../img/footer-mobile-phone.png") left center no-repeat;
  padding: 0 0 0 30px;
}
.footer-mobile ul li:nth-of-type(3) a {
  background: url("../img/footer-mobile-email.png") left center no-repeat;
  padding: 0 0 0 33px;
}
footer {
  background: #ececec;
  height: 136px;
  border-top: 1px solid #ddd;
}
@media only screen and (max-width: 978px) {
  footer {
    height: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    height: 45px;
    overflow: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
footer .footer-logo {
  float: left;
  margin: 21px 0 0;
}
@media only screen and (max-width: 978px) {
  footer .footer-logo {
    margin: 30px 0 20px;
    float: none;
  }
}
footer .footer-logo img {
  width: 119px;
  height: 35px;
}
footer .footer-info {
  position: absolute;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  top: 13px;
}
@media only screen and (max-width: 978px) {
  footer .footer-info {
    top: 0;
    position: relative;
  }
}
footer .footer-info p,
footer .footer-info ul li a {
  font-size: 14px;
  line-height: 1.785714286;
  color: #838486;
}
@media only screen and (max-width: 540px) {
  footer .footer-info p,
  footer .footer-info ul li a {
    margin: 0 0 10px;
    font-size: 11px;
  }
}
footer .footer-info p span,
footer .footer-info ul li a span {
  padding: 0 5px;
}
@media only screen and (max-width: 540px) {
  footer .footer-info p span,
  footer .footer-info ul li a span {
    display: none;
  }
}
footer .footer-info p span:first-of-type,
footer .footer-info ul li a span:first-of-type {
  display: none;
}
footer .footer-info p strong,
footer .footer-info ul li a strong {
  color: #000;
  font-weight: 600;
}
@media only screen and (max-width: 540px) {
  footer .footer-info p em,
  footer .footer-info ul li a em {
    display: block;
  }
}
footer .footer-info ul {
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 540px) {
  footer .footer-info ul {
    display: none;
  }
}
footer .footer-info ul li {
  float: left;
}
footer .footer-info ul li a {
  color: #3e3d40;
  padding: 0 10px;
  position: relative;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
@media only screen and (max-width: 1070px) {
  footer .footer-info ul li a {
    padding: 0 5px;
  }
}
footer .footer-info ul li a:after {
  position: absolute;
  content: '|';
  right: -1px;
  top: -2px;
}
footer .footer-info ul li a:hover {
  color: #000;
}
footer .footer-info ul li:last-child > a:after {
  display: none;
}
footer .footer-design {
  display: inline-block;
  margin: 5px 0 0;
}
@media only screen and (max-width: 540px) {
  footer .footer-design {
    margin: 10px 0 0;
  }
}
footer .footer-design img {
  width: 26px;
  height: 29px;
  display: inline-block;
  margin: 0 10px 0 0;
}
footer .footer-design span {
  color: #bcbcbd;
  font-family: "PT Sans Narrow", "Arial", sans-serif;
  font-size: 13px;
  line-height: 1;
  position: relative;
  top: -10px;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
footer .footer-design:hover span {
  color: #000;
}
footer .footer-mem {
  float: right;
  margin: 23px 0 0;
}
@media only screen and (max-width: 978px) {
  footer .footer-mem {
    float: none;
    margin: 10px 0 20px;
  }
}
footer .footer-mem img {
  width: 121px;
  height: 33px;
}
.testimonials {
  background: #000;
  padding: 30px 0 55px;
}
@media only screen and (max-width: 767px) {
  .testimonials {
    display: none;
  }
}
.testimonials .testimonials-carousel {
  margin: 0;
  *zoom: 1;
  width: auto;
  max-width: 750px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.testimonials .testimonials-carousel:before,
.testimonials .testimonials-carousel:after {
  content: '';
  display: table;
}
.testimonials .testimonials-carousel:after {
  clear: both;
}
.testimonials .testimonials-carousel ul.slick-dots {
  bottom: -55px;
}
.testimonials .testimonials-carousel ul.slick-dots li {
  padding: 0;
  margin: 0 2px;
}
.testimonials .testimonials-carousel ul.slick-dots li button {
  border: 1px solid #fff;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.testimonials .testimonials-carousel ul.slick-dots li button:before {
  display: none;
}
.testimonials .testimonials-carousel ul.slick-dots li.slick-active button {
  background: #fff;
}
.testimonials .testimonials-carousel article {
  text-align: center;
}
.testimonials .testimonials-carousel article p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 20px;
}
.testimonials .testimonials-carousel article small {
  color: #808081;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375;
}
.testimonials-61 {
  background: #e0001a;
}
.testimonials-61 .testimonials-carousel article small {
  color: #fff;
}
.testimonials-63 {
  background: #007fbc;
}
.testimonials-63 .testimonials-carousel article small {
  color: #fff;
}
.testimonials-65 {
  background: #3e3d40;
}
.testimonials-65 .testimonials-carousel article small {
  color: #fff;
}
.hero-carousel {
  margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .hero-carousel {
    display: none;
  }
}
.hero-carousel ul.slick-dots {
  bottom: 0px;
}
.hero-carousel ul.slick-dots li {
  padding: 0;
  margin: 0 2px;
}
.hero-carousel ul.slick-dots li button {
  border: 1px solid #fff;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.hero-carousel ul.slick-dots li button:before {
  display: none;
}
.hero-carousel ul.slick-dots li.slick-active button {
  background: #fff;
}
.hero-carousel article {
  height: 375px;
}
.hero-carousel article .wrapper {
  height: 100%;
}
@media only screen and (max-width: 640px) {
  .hero-carousel article .wrapper {
    background-position: center left 10% !important;
  }
}
.hero-carousel article .wrapper .caption {
  padding: 45px 0 0;
  top: -100px;
  position: relative;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.hero-carousel article .wrapper .caption h2 {
  font-family: 'DinBold', 'Arial', sans-serif;
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.133333333;
  text-transform: uppercase;
  font-weight: normal;
  margin: 0 0 10px;
}
.hero-carousel article .wrapper .caption p {
  color: #fff;
  font-size: 16px;
  margin: 0 0 15px;
}
.hero-carousel article .wrapper .caption .button {
  background: #fff;
  color: #3e3d40;
}
.hero-carousel article .wrapper .caption .button:after {
  border-left-color: #fff;
}
.hero-carousel article .wrapper .caption .button:hover {
  background: #e0001a;
  color: #fff;
}
.hero-carousel article .wrapper .caption .button:hover:after {
  border-left-color: #e0001a;
}
.hero-carousel article .wrapper .caption.loaded {
  top: 0;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: 0.4s ease-out 0.2s;
  -moz-transition: 0.4s ease-out 0.2s;
  -o-transition: 0.4s ease-out 0.2s;
  -ms-transition: 0.4s ease-out 0.2s;
  transition: 0.4s ease-out 0.2s;
}
.features {
  margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .features {
    display: none;
  }
}
.features a {
  height: 230px;
  display: block;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.999999999999996%;
  margin-left: 0%;
  margin-right: 2%;
  position: relative;
}
.features a:before,
.features a:after {
  content: '';
  display: table;
}
.features a:after {
  clear: both;
}
.features a:last-child {
  margin-right: 0%;
}
.features a p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 20px;
  background: #7f7f82;
  height: 40px;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  -ms-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@media only screen and (max-width: 900px) {
  .features a p {
    height: 55px;
  }
}
.features a p svg {
  float: left;
  margin: 2px 0 0 5px;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  -ms-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
.features a p span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 0;
  display: block;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 1070px) {
  .features a p span {
    font-size: 14px;
    padding: 10px 0 0;
  }
}
.features a p:after {
  position: absolute;
  content: '';
  top: 0;
  right: -20px;
  border-left: 20px solid #7f7f82;
  border-top: 40px solid transparent;
  -moz-transform: scale(0.9999);
  -webkit-transition: border 0.2s ease-in-out;
  -moz-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  -ms-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
@media only screen and (max-width: 900px) {
  .features a p:after {
    border-top: 55px solid transparent;
  }
}
.features a:nth-of-type(2) p {
  background: #e0001a;
}
.features a:nth-of-type(2) p:after {
  border-left-color: #e0001a;
}
.features a:nth-of-type(3) p {
  background: #007fbc;
}
.features a:nth-of-type(3) p:after {
  border-left-color: #007fbc;
}
.features a:hover p svg {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  -ms-animation-name: shake;
  animation-name: shake;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.features a:hover p span {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.main {
  *zoom: 1;
  margin: 0 0 40px;
}
.main:before,
.main:after {
  content: '';
  display: table;
}
.main:after {
  clear: both;
}
@media only screen and (max-width: 900px) {
  .main {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .main {
    display: none;
  }
}
.main .main-content {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.99999999999999%;
  margin-left: 0%;
  margin-right: 2%;
}
.main .main-content:before,
.main .main-content:after {
  content: '';
  display: table;
}
.main .main-content:after {
  clear: both;
}
.main .main-content:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 900px) {
  .main .main-content {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 49%;
    margin-left: 0%;
    margin-right: 2%;
  }
  .main .main-content:before,
  .main .main-content:after {
    content: '';
    display: table;
  }
  .main .main-content:after {
    clear: both;
  }
  .main .main-content:last-child {
    margin-right: 0%;
  }
}
.main .main-content .blurb {
  color: #3e3d40;
  font-size: 16px;
  line-height: 1.625;
  overflow: hidden;
  margin: 0 0 27px;
}
.main .main-sidebar {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.999999999999996%;
  margin-left: 0%;
  margin-right: 2%;
}
.main .main-sidebar:before,
.main .main-sidebar:after {
  content: '';
  display: table;
}
.main .main-sidebar:after {
  clear: both;
}
.main .main-sidebar:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 900px) {
  .main .main-sidebar {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 49%;
    margin-left: 0%;
    margin-right: 2%;
  }
  .main .main-sidebar:before,
  .main .main-sidebar:after {
    content: '';
    display: table;
  }
  .main .main-sidebar:after {
    clear: both;
  }
  .main .main-sidebar:last-child {
    margin-right: 0%;
  }
}
.specials {
  margin: 20px 0 0;
}
.specials h3 {
  color: #e1001a;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.181818182;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.specials .items {
  *zoom: 1;
}
.specials .items:before,
.specials .items:after {
  content: '';
  display: table;
}
.specials .items:after {
  clear: both;
}
.specials .items a {
  display: block;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.199999999999996%;
  margin-left: 0%;
  margin-right: 3.600000000000001%;
  position: relative;
}
.specials .items a:before,
.specials .items a:after {
  content: '';
  display: table;
}
.specials .items a:after {
  clear: both;
}
.specials .items a:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 900px) {
  .specials .items a {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .specials .items a:first-child {
    margin-left: auto;
  }
  .specials .items a:last-child {
    margin-right: auto;
  }
}
.specials .items a img {
  width: 100%;
  display: block;
  margin: 0 0 10px;
}
.specials .items a h4 {
  color: #808081;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.222222222;
  margin: 0 0 17px;
  height: 66px;
  overflow: hidden;
}
.specials .items a:first-of-type:after {
  position: absolute;
  content: '';
  top: 0px;
  right: -12px;
  height: 306px;
  width: 1px;
  background: #cecfd1;
}
@media only screen and (max-width: 900px) {
  .specials .items a:first-of-type:after {
    display: none;
  }
}
.specials .items a:hover span {
  background: #3e3d40;
  padding: 7px 11px 9px 17px;
}
.specials .items a:hover span:after {
  border-left-color: #3e3d40;
}
.enquiry-form {
  display: none;
  margin: 0 0 38px;
}
.enquiry-form.open {
  display: block;
}
.enquiry-form.open .gform_confirmation_message {
  padding: 21px 12px;
  display: block;
  color: #3e3d40;
  font-size: 14px;
  background: #e8e8e8;
}
.enquiry-form.open .gform_wrapper {
  padding: 21px 12px 16px;
  background: #e8e8e8;
  position: relative;
}
.enquiry-form.open .gform_wrapper .gform_title {
  color: #808081;
  font-size: 22px;
  font-weight: 700;
  padding: 0 9px;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.enquiry-form.open .gform_wrapper .gform_description {
  color: #3e3d40;
  font-size: 14px;
  margin: 0 0 14px;
  padding: 0 9px;
  display: block;
}
.enquiry-form.open .gform_wrapper .validation_message {
  color: #e0001a;
  font-size: 14px;
}
.enquiry-form.open .gform_wrapper ul {
  padding: 0;
}
.enquiry-form.open .gform_wrapper ul li {
  margin: 0 0 9px;
  padding: 0;
}
.enquiry-form.open .gform_wrapper ul li .gfield_label {
  display: none;
}
.enquiry-form.open .gform_wrapper ul li input[type=text],
.enquiry-form.open .gform_wrapper ul li textarea {
  font-family: 'Titillium Web', 'Arial', sans-serif;
  color: #3e3d40;
  font-size: 16px;
  border: none;
  width: 100%;
  padding: 7px;
}
.enquiry-form.open .gform_wrapper ul li ::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.enquiry-form.open .gform_wrapper ul li :-moz-placeholder {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.enquiry-form.open .gform_wrapper ul li ::-moz-placeholder {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.enquiry-form.open .gform_wrapper ul li :-ms-input-placeholder {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.enquiry-form.open .gform_wrapper ul li textarea {
  resize: none;
  height: 136px;
  margin: 0 0 10px;
}
.enquiry-form.open .gform_wrapper ul li .ginput_counter {
  color: #3e3d40;
  font-size: 14px;
}
.enquiry-form.open .gform_wrapper ul li ul.gfield_radio li {
  position: relative;
}
.enquiry-form.open .gform_wrapper ul li ul.gfield_radio li input {
  margin: 0 0 20px;
}
.enquiry-form.open .gform_wrapper ul li ul.gfield_radio li label {
  position: absolute;
  left: 30px;
  color: #3e3d40;
  font-size: 14px;
  line-height: 1.214285714;
}
.enquiry-form.open .gform_wrapper ul li.styled-select .ginput_container {
  width: 100%;
  height: 40px;
  overflow: hidden;
  background: #fff url("../img/plus.svg") center right 0px no-repeat;
  position: relative;
}
.enquiry-form.open .gform_wrapper ul li.styled-select .ginput_container select {
  background: transparent;
  width: 120%;
  padding: 0 7px;
  font-size: 16px !important;
  font-family: 'Titillium Web', 'Arial', sans-serif;
  line-height: 40px;
  border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 40px;
  -webkit-appearance: none;
  color: #3e3d40 !important;
}
.enquiry-form.open .gform_wrapper ul li:before {
  display: none;
}
.enquiry-form.open .gform_wrapper .gform_footer {
  position: absolute;
  bottom: -36px;
  left: 0px;
}
.enquiry-form.open .gform_wrapper .gform_footer button {
  border: none;
  cursor: pointer;
  background: #7f7f82;
  height: 36px;
  padding-top: 6px;
}
.enquiry-form.open .gform_wrapper .gform_footer button:after {
  border-left-color: #7f7f82;
}
.enquiry-form.open .gform_wrapper .gform_footer button:hover {
  background: #e0001a;
}
.enquiry-form.open .gform_wrapper .gform_footer button:hover:after {
  border-left-color: #e0001a;
}
.generic {
  padding: 60px 0 100px;
beloe(767px)
}
@media only screen and (max-width: 1070px) {
  .generic {
    padding: 40px 0;
  }
}
.generic .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 468px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.generic .wrapper:before,
.generic .wrapper:after {
  content: '';
  display: table;
}
.generic .wrapper:after {
  clear: both;
}
@media only screen and (max-width: 508px) {
  .generic .wrapper {
    padding: 0 20px;
  }
}
.about {
  padding: 0 0 30px;
}
.about .wrapper {
  padding: 0 0 0 100px;
}
@media only screen and (max-width: 1070px) {
  .about .wrapper {
    padding: 0;
  }
}
.about .wrapper .about-banner {
  width: 100%;
  display: block;
  margin: 0 0 30px;
}
.about .wrapper .text {
  padding: 0 5% 0 0;
}
@media only screen and (max-width: 1070px) {
  .about .wrapper .text {
    padding: 0 20px;
  }
}
.contact {
  padding: 20px 0;
}
.contact .wrapper {
  padding: 0 0 0 100px;
  *zoom: 1;
}
.contact .wrapper:before,
.contact .wrapper:after {
  content: '';
  display: table;
}
.contact .wrapper:after {
  clear: both;
}
@media only screen and (max-width: 1070px) {
  .contact .wrapper {
    padding: 0;
  }
}
.contact .wrapper .text {
  float: left;
  width: 58.682634731%;
}
@media only screen and (max-width: 1070px) {
  .contact .wrapper .text {
    width: 50%;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .contact .wrapper .text {
    width: 100%;
  }
}
.contact .wrapper .form {
  float: right;
  width: 39.806996381%;
}
@media only screen and (max-width: 1070px) {
  .contact .wrapper .form {
    width: 50%;
    padding: 0 20px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact .wrapper .form {
    width: 100%;
    padding: 20px;
  }
}
.service {
  padding: 0 0 50px;
}
@media only screen and (max-width: 767px) {
  .service .wrapper {
    padding: 0;
  }
}
.service .service-nav {
  float: left;
  width: 18.640776699%;
  padding: 12px 20px 0 0;
}
@media only screen and (max-width: 978px) {
  .service .service-nav {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .service .service-nav {
    float: none;
    width: 100%;
    padding: 0;
  }
}
.service .service-nav .service-nav-title {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  background: #808081;
  text-transform: uppercase;
  position: relative;
  display: none;
}
@media only screen and (max-width: 767px) {
  .service .service-nav .service-nav-title {
    display: block;
  }
}
.service .service-nav .service-nav-title:before,
.service .service-nav .service-nav-title:after {
  position: absolute;
  content: '';
  top: 15px;
  right: 10px;
  height: 2px;
  width: 12px;
  background: #fff;
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.service .service-nav .service-nav-title:after {
  top: 22px;
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg);
}
.service .service-nav .service-nav-title.active:before,
.service .service-nav .service-nav-title.active:after {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  top: 19px;
}
.service .service-nav ul {
  display: block;
}
@media only screen and (max-width: 767px) {
  .service .service-nav ul {
    background: #808081;
    position: absolute;
    left: 0;
    width: 100%;
    display: none;
  }
}
.service .service-nav ul li a {
  color: #3e3d40;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  display: block;
  padding: 6px 0;
}
@media only screen and (max-width: 767px) {
  .service .service-nav ul li a {
    padding: 6px 20px;
    color: #fff;
  }
}
.service .service-nav ul li a:hover,
.service .service-nav ul li a.active {
  text-decoration: underline;
}
.service .service-main {
  float: right;
  width: 81.359223301%;
  *zoom: 1;
}
.service .service-main:before,
.service .service-main:after {
  content: '';
  display: table;
}
.service .service-main:after {
  clear: both;
}
@media only screen and (max-width: 978px) {
  .service .service-main {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .service .service-main {
    float: none;
    width: 100%;
  }
}
.service .service-main .service-banner {
  margin: 0 0 30px;
}
.service .service-main .service-banner img {
  width: 100%;
  display: block;
}
.service .service-main .service-content {
  float: left;
  width: 59.683313033%;
  padding: 0 20px 0 0;
}
@media only screen and (max-width: 820px) {
  .service .service-main .service-content {
    float: none;
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .service .service-main .service-content {
    padding: 0 20px;
  }
}
.service .service-main .service-content-61 h1,
.service .service-main .service-content-61 h2,
.service .service-main .service-content-61 h3,
.service .service-main .service-content-61 h4,
.service .service-main .service-content-61 h5,
.service .service-main .service-content-61 h6 {
  color: #e0001a;
}
.service .service-main .service-content-63 h1,
.service .service-main .service-content-63 h2,
.service .service-main .service-content-63 h3,
.service .service-main .service-content-63 h4,
.service .service-main .service-content-63 h5,
.service .service-main .service-content-63 h6 {
  color: #007fbc;
}
.service .service-main .service-content-65 h1,
.service .service-main .service-content-65 h2,
.service .service-main .service-content-65 h3,
.service .service-main .service-content-65 h4,
.service .service-main .service-content-65 h5,
.service .service-main .service-content-65 h6 {
  color: #3e3d40;
}
.service .service-main .service-sidebar {
  float: right;
  width: 40.316686967%;
}
@media only screen and (max-width: 820px) {
  .service .service-main .service-sidebar {
    float: none;
    width: 100%;
  }
}
.service .service-main .service-sidebar .enquiry-form-toggle {
  background: #808081;
  position: relative;
  margin: 0 0 30px;
  -webkit-transition: margin 0.2s ease-in-out;
  -moz-transition: margin 0.2s ease-in-out;
  -o-transition: margin 0.2s ease-in-out;
  -ms-transition: margin 0.2s ease-in-out;
  transition: margin 0.2s ease-in-out;
  cursor: pointer;
}
.service .service-main .service-sidebar .enquiry-form-toggle span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 7px 13px 10px;
  display: block;
}
.service .service-main .service-sidebar .enquiry-form-toggle svg {
  position: absolute;
  top: 3px;
  right: 13px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  -moz-transition: -moz-transform 0.2s ease-in-out;
  -o-transition: -o-transform 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
.service .service-main .service-sidebar .enquiry-form-toggle-61 {
  background: #e0001a;
}
.service .service-main .service-sidebar .enquiry-form-toggle-63 {
  background: #007fbc;
}
.service .service-main .service-sidebar .enquiry-form-toggle-65 {
  background: #3e3d40;
}
.service .service-main .service-sidebar .enquiry-form-toggle:after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  border-top: 40px solid #fff;
  border-left: 16px solid transparent;
  -moz-transform: scale(0.9999);
}
.service .service-main .service-sidebar .enquiry-form-toggle.open {
  margin: 0;
}
.service .service-main .service-sidebar .enquiry-form-toggle.open svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.service .service-main .service-sidebar .enquiry-form {
  margin: 0 0 65px;
}
.service .service-main .service-sidebar .sidebar-promo img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 820px) and (max-width: 767px) {
  .service .service-main .service-sidebar {
    padding: 0 20px;
  }
}
.mobile-buttons {
  display: none;
  padding: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .mobile-buttons {
    display: block;
  }
}
.mobile-buttons h2 {
  color: #3e3d40;
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0;
  text-align: center;
}
.mobile-buttons .items {
  *zoom: 1;
}
.mobile-buttons .items:before,
.mobile-buttons .items:after {
  content: '';
  display: table;
}
.mobile-buttons .items:after {
  clear: both;
}
.mobile-buttons .items a {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  display: block;
  background: #808081;
  margin-bottom: 20px;
  padding: 20px;
  text-align: center;
}
.mobile-buttons .items a:before,
.mobile-buttons .items a:after {
  content: '';
  display: table;
}
.mobile-buttons .items a:after {
  clear: both;
}
.mobile-buttons .items a:nth-child(2n) {
  margin-right: 0%;
  float: right;
}
.mobile-buttons .items a:nth-child(2n+1) {
  clear: both;
}
.mobile-buttons .items a span {
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  display: block;
}
.mobile-buttons .items a img {
  display: block;
  margin: 0 auto;
}
.mobile-buttons .items a:nth-of-type(2) {
  background: #e0001a;
}
.mobile-buttons .items a:nth-of-type(3) {
  background: #0076bb;
}
.mobile-buttons .items a:nth-of-type(4) {
  background: #57575a;
}
.mobile-buttons p {
  text-align: center;
  font-size: 12px;
  line-height: 1.333333333;
  color: #000;
}
.mobile-buttons p strong {
  color: #838486;
}
/* -------------------- menu -------------------- */
.menu-button {
  position: fixed;
  width: 60px;
  height: 69px;
  background: #fff;
  top: 0;
  right: 0;
  display: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 9999;
}
@media only screen and (max-width: 978px) {
  .menu-button {
    display: block;
  }
}
.menu-button span {
  position: absolute;
  width: 26px;
  height: 3px;
  background: #000;
  left: 17px;
  top: 33px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu-button span:before,
.menu-button span:after {
  position: absolute;
  content: '';
  top: -9px;
  width: 26px;
  height: 3px;
  background: #000;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu-button span:after {
  top: 9px;
}
.menu-button:hover span {
  left: 15px;
  width: 30px;
}
.menu-button:hover span:before,
.menu-button:hover span:after {
  width: 30px;
}
.menu-active .menu-button {
  right: 320px;
}
@media only screen and (max-width: 400px) {
  .menu-active .menu-button {
    right: 0;
    background: transparent;
  }
}
.menu-active .menu-button span {
  background: transparent;
}
.menu-active .menu-button span:before {
  -webkit-transform: rotateZ(45deg) translateX(5px) translateY(5px) !important;
  -moz-transform: rotateZ(45deg) translateX(5px) translateY(5px) !important;
  -o-transform: rotateZ(45deg) translateX(5px) translateY(5px) !important;
  -ms-transform: rotateZ(45deg) translateX(5px) translateY(5px) !important;
  transform: rotateZ(45deg) translateX(5px) translateY(5px) !important;
  top: -7px;
}
@media only screen and (max-width: 400px) {
  .menu-active .menu-button span:before {
    background: #fff;
  }
}
.menu-active .menu-button span:after {
  -webkit-transform: rotateZ(-45deg) translateX(5px) translateY(-5px) !important;
  -moz-transform: rotateZ(-45deg) translateX(5px) translateY(-5px) !important;
  -o-transform: rotateZ(-45deg) translateX(5px) translateY(-5px) !important;
  -ms-transform: rotateZ(-45deg) translateX(5px) translateY(-5px) !important;
  transform: rotateZ(-45deg) translateX(5px) translateY(-5px) !important;
  top: 7px;
}
@media only screen and (max-width: 400px) {
  .menu-active .menu-button span:after {
    background: #fff;
  }
}
.menu {
  position: fixed;
  top: 0;
  right: -320px;
  bottom: 0;
  width: 320px;
  z-index: 9998;
  background: #000;
  padding: 11px 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow: scroll;
}
@media only screen and (max-width: 400px) {
  .menu {
    width: 100%;
    right: -100%;
  }
}
.menu ul li a {
  color: #fff;
  font-family: 'Titillium Web', 'Arial', sans-serif;
  font-size: 16px;
  padding: 7px 0;
  display: block;
}
.menu ul li ul li {
  padding: 0 10px;
}
.menu-active .menu {
  right: 0;
}
@-moz-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -o-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
  }
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -o-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
  }
}
@-o-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -o-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -o-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
  }
}
