/* Normalize CSS */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block; }

audio, canvas, video {
  display: inline;
  zoom: 1px; }

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body, button, input, select, textarea {
  font-family: sans-serif; }

a {
  color: #00e; }

a:visited {
  color: #551a8b; }

a:focus {
  outline: thin dotted; }

a:hover, a:active {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

blockquote {
  margin: 1em 40px; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

pre, code, kbd, samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

pre {
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }

q:before, q:after {
  content: none; }

small {
  font-size: 75%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

ul, ol {
  margin: 1em 0;
  padding: 0 0 0 40px; }

dd {
  margin: 0 0 0 40px; }

nav ul, nav ol {
  list-style: none;
  list-style-image: none; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

svg:not(:root) {
  overflow: hidden; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  margin-left: -7px; }

button, input, select, textarea {
  font-size: 100%;
  vertical-align: middle; }

button, input {
  line-height: normal; }

button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  overflow: visible; }

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

audio:not([controls]), [hidden] {
  display: none; }

body, figure, form {
  margin: 0; }

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%; }

#map_canvas * {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

#map_canvas img {
  max-width: none; }

/*
@font-face {
  font-family: 'FONTNAME';
  src: url("../fonts/FILENAME.eot");
  src: url("../fonts/FILENAME.eot#iefix") format('embedded-opentype'), 
  		url("../fonts/FILENAME.woff") format('woff'), 
  		url("../fonts/FILENAME.ttf") format('truetype'), 
  		url("../fonts/FILENAME.svg") format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/* COLOURS */
.content-darktext {
  color: #252122; }

.content-lighttext {
  color: #ffffff; }

.content-darktext .slide-title {
  color: #252122 !important; }
  .content-darktext .slide-title:before {
    background: #252122 !important; }
.content-darktext .slide-content-txt:before {
  background: #252122 !important; }
.content-darktext .slide-content-txt p {
  color: #252122 !important; }

.content-lighttext .slide-title {
  color: #ffffff !important; }
  .content-lighttext .slide-title:before {
    background: #ffffff !important; }
.content-lighttext .slide-content-txt:before {
  background: #ffffff !important; }
.content-lighttext .slide-content-txt p {
  color: #ffffff !important; }

.content-lightshadewhite {
  background-color: rgba(255, 255, 255, 0.3); }

.content-heavyshadewhite {
  background-color: rgba(255, 255, 255, 0.7); }

.content-lightshadegrey {
  background-color: rgba(0, 0, 0, 0.3); }

.content-heavyshadegrey {
  background-color: rgba(0, 0, 0, 0.7); }

.orange {
  color: #e55f2c; }

/* USAGE 
.button {@include border-radius(5px);}
*/
/* BASE CSS */
body {
  background: #fff;
  color: #535152;
  font-family: "Open Sans", arial, sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #252122; }

.title-tag {
  position: relative; }
  .title-tag:before {
    content: "";
    display: block;
    height: 2px;
    width: 15px;
    background: #252122;
    position: absolute;
    top: -10px;
    left: 1px; }

a {
  text-decoration: underline;
  color: #535152;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  a:visited {
    color: #535152; }
  a:hover, a:focus {
    color: #e55f2c; }

/* GENERAL CLASSES */
.container {
  margin: 0 auto;
  width: 100%;
  clear: both;
  padding: 0 40px; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */ }

.last {
  margin-right: 0 !important; }

.left {
  float: left; }

.right {
  float: right; }

.align-right {
  text-align: right; }

.align-center {
  text-align: center; }

.imgLeft {
  float: left;
  margin: 0 15px 15px 0; }

.imgRight {
  float: right;
  margin: 0 0 15px 15px; }

.imgCenter {
  margin-left: auto;
  margin-right: auto;
  display: block; }

.screen-reader-text {
  position: absolute;
  top: -9999px;
  left: -9999px; }

.hidden {
  display: none; }

.replace {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.nav {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.nowrap {
  white-space: nowrap; }

.bold {
  font-weight: bold; }

.flex-video {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 67.5%;
  height: 0;
  margin-bottom: 16px; }
  .flex-video.widescreen {
    padding-bottom: 57.25%; }
  .flex-video iframe, .flex-video object, .flex-video embed, .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.btn-dl {
  display: block;
  padding: 8px 0 8px 40px;
  height: 30px;
  background-position: 0 top;
  background-repeat: no-repeat;
  color: #535152;
  text-align: left;
  text-decoration: underline; }
  .btn-dl.pdf {
    background-image: url("/images/icn-dl-pdf.png"); }
  .btn-dl.img {
    background-image: url("/images/icn-dl-img.png"); }
  .btn-dl.pin {
    background-image: url("/images/icn-dl-pin.png"); }
  .btn-dl.pdf:hover, .btn-dl.pdf:focus, .btn-dl.img:hover, .btn-dl.img:focus, .btn-dl.pin:hover, .btn-dl.pin:focus {
    background-position: 0 bottom;
    color: #e55f2c; }

.button {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 5px;
  border: none;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-transition: background-position 0.3s ease;
  -moz-transition: background-position 0.3s ease;
  -o-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease;
  background-repeat: repeat-x;
  background-position: 0; }
  .button:visited {
    color: #fff; }
  .button.orange {
    /*background-color: $green_dark;
    background-image: -moz-linear-gradient(top, $green_light 0%, $green_dark 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$green_light), color-stop(100%,$green_dark));
    background-image: -webkit-linear-gradient(top, $green_light 0%,$green_dark 100%);
    background-image: -o-linear-gradient(top, $green_light 0%,$green_dark 100%);
    background-image: -ms-linear-gradient(top, $green_light 0%,$green_dark 100%);
    background-image: linear-gradient(to bottom, $green_light 0%,$green_dark 100%);*/ }

.tel {
  display: inline-block;
  position: relative;
  /*padding-left: 20px;*/
  color: #cdcbcc;
  font-size: 16px;
  line-height: 21px;
  font-weight: bold;
  text-decoration: none;
  /*
  &:before {
      content: " ";
      position: absolute;
      top: 6px;
      left: 0;
      display: block;
      width: 12px;
      height: 12px;
      background: url("/images/icn-phone.png") 0 0 no-repeat;
  }*/ }
  .tel:visited {
    color: #cdcbcc; }
  .tel:hover, .tel:focus {
    color: #fff; }

/* LAYOUT */
#main_wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: left; }

/* **********************************
		Site Header
********************************** */
.site-header {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px 0 10px 20px; }
  .site-header {
    *zoom: 1; }
  .site-header:before, .site-header:after {
    content: "";
    display: table; }
  .site-header:after {
    clear: both; }

.site-logo {
  display: block;
  float: left;
  width: 158px;
  height: 81px;
  margin-right: 15px;
  background: url("/images/site-logo-3.gif") 0 0 no-repeat; }

.site-tagline {
  display: block;
  float: right;
  width: 139px;
  height: 81px;
  background: url("/images/site-logo-rhs.gif") 0 bottom no-repeat; }

.site-nav {
  margin-top: 55px;
  float: left; }

.nav-menu {
  height: auto;
  background: transparent;
  margin: 0;
  padding: 0; }
  .nav-menu li {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 5px;
    text-transform: uppercase;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
    .nav-menu li.has-flyout a {
      padding-right: 15px; }
      .nav-menu li.has-flyout a:hover + .flyout {
        display: block !important; }
    .nav-menu li.has-flyout .flyout:hover {
      display: block !important; }
  .nav-menu a {
    position: relative;
    display: block;
    color: #939594;
    padding: 10px;
    font-size: 16px;
    text-decoration: none; }
    .nav-menu a:hover, .nav-menu a:focus {
      text-decoration: underline; }
  .nav-menu .active > a {
    color: #e55f2c; }
  .nav-menu .flyout {
    top: 38px;
    background: #e55f2c; }
    .nav-menu .flyout li {
      display: block;
      margin: 0; }
      .nav-menu .flyout li a {
        text-decoration: none;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .nav-menu .flyout li a:hover, .nav-menu .flyout li a:focus {
          background: #fff;
          color: #000000; }

/* **********************************
		Site Footer
********************************** */
.site-footer {
  padding: 40px 0; }
  .site-footer .site-tagline {
    width: 145px;
    padding-top: 70px;
    background-position: 0 10px;
    font-size: 8px;
    color: #000; }

.footer-main {
  position: relative;
  min-height: 30px;
  margin-right: 140px;
  padding: 8px 200px 0 200px;
  font-size: 12px;
  line-height: 1.4; }

.footer-locations {
  position: relative; }
  .footer-locations {
    *zoom: 1; }
  .footer-locations:before, .footer-locations:after {
    content: "";
    display: table; }
  .footer-locations:after {
    clear: both; }
  .footer-locations:before {
    content: "";
    display: block;
    height: 1px;
    width: 10px;
    background: #252122;
    position: absolute;
    top: 0;
    left: 10px; }

.footer-location {
  float: left;
  width: 33.33%;
  padding: 10px 10px 0;
  line-height: 1.1; }
  .footer-location strong {
    color: #252122; }

.site-logo-sm {
  display: block;
  width: 90px;
  height: 30px;
  background: url("/images/site-logo.jpg") 0 0 no-repeat;
  background-size: contain; }

.logo-footer {
  position: absolute;
  left: 0;
  top: 0;
  width: 158px;
  height: 81px;
  margin-right: 15px;
  background: url("/images/site-logo-2.gif") 0 0 no-repeat; }

.footer-social {
  position: absolute;
  right: 20px;
  bottom: 0;
  padding-top: 5px; }

.icn-fb, .icn-insta, .icn-pin {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 3px;
  background: url("/images/sprite-social.png") 0 0 no-repeat; }

.icn-fb {
  background-position: 0 top; }
  .icn-fb:hover, .icn-fb:focus {
    background-position: 0 bottom; }

.icn-insta {
  background-position: -20px top; }
  .icn-insta:hover, .icn-insta:focus {
    background-position: -20px bottom; }

.icn-pin {
  background-position: -40px top; }
  .icn-pin:hover, .icn-pin:focus {
    background-position: -40px bottom; }

.icn-fb-large, .icn-insta-large, .icn-pin-large {
  display: inline-block;
  width: 41px;
  height: 41px;
  margin: 0 5px;
  background: url("/images/sprite-social-large.png") 0 0 no-repeat; }

.icn-fb-large {
  background-position: -51px top; }
  .icn-fb-large:hover, .icn-fb-large:focus {
    background-position: -51px bottom; }

.icn-insta-large {
  background-position: 0 top; }
  .icn-insta-large:hover, .icn-insta-large:focus {
    background-position: 0 bottom; }

.icn-pin-large {
  background-position: -103px top; }
  .icn-pin-large:hover, .icn-pin-large:focus {
    background-position: -103px bottom; }

/* **********************************
		Home
********************************** */
.feature-carousel-outter {
  position: relative; }

.feature-carousel {
  width: 100%;
  height: 550px; }

.slider {
  width: 100%;
  height: 100%; }

.feature-carousel .slide {
  width: 100%;
  max-width: 1025px;
  margin: 0 2px;
  height: 100%;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  -moz-transition: opacity 0.3s ease, -moz-filter 0.3s ease;
  -o-transition: opacity 0.3s ease, -o-filter 0.3s ease;
  -ms-transition: opacity 0.3s ease, -ms-filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease; }
  .feature-carousel .slide.selected {
    opacity: 1;
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%); }
    .feature-carousel .slide.selected .slide-content {
      opacity: 1; }
.feature-carousel .slide-content {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 325px;
  height: 325px;
  padding: 20px 20px;
  border: 5px solid #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  .feature-carousel .slide-content p {
    color: #fff;
    font-size: 14px; }
    .feature-carousel .slide-content p:last-child {
      margin-bottom: 0; }
.feature-carousel .slide-title {
  margin: 5px auto 10px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2; }
  .feature-carousel .slide-title:before {
    background: #fff; }
.feature-carousel .proddesigner {
  margin-bottom: 10px; }
.feature-carousel .slide-content-txt {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px; }
  .feature-carousel .slide-content-txt:before {
    background: #fff; }

.dotnav {
  max-width: 1055px;
  padding: 0 15px;
  margin: 10px auto 35px; }
  .dotnav .indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 1px;
    background-color: #e6e7e9;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
    .dotnav .indicator.selected {
      background-color: #818286; }

.page-intro h1, .page-intro h2 {
  color: #252122;
  font-size: 30px;
  letter-spacing: -0.05em; }
.page-intro h1 {
  font-weight: 600;
  margin: 0 0 5px 0; }
.page-intro h2 {
  font-weight: 300;
  margin: 0 0 20px 0; }

.home-intro {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #cdcbcc; }
  .home-intro h1, .home-intro h2 {
    color: #535152;
    font-size: 30px;
    letter-spacing: -0.05em; }
  .home-intro h1 {
    font-weight: 600;
    margin: 0 0 5px 0; }
  .home-intro h2 {
    font-weight: 300;
    margin: 0 0 20px 0; }
  .home-intro .columns.eight {
    padding-right: 0; }
    .home-intro .columns.eight.column-border {
      border-right: 1px solid #cdcbcc;
      padding-right: 25px; }

.home-bio {
  padding-right: 35px;
  border-right: 1px solid #cdcbcc; }

.home-vision {
  padding-left: 35px;
  text-align: center; }
  .home-vision p, .home-vision div {
    font-size: 16px; }
  .home-vision .fullrange {
    font-size: 16px;
    margin-bottom: 30px; }
    .home-vision .fullrange a {
      display: inline-block;
      padding: 14px 40px 14px 30px;
      text-decoration: none;
      font-weight: bold;
      border: 1px solid #252122;
      text-transform: uppercase;
      color: #252122;
      background: url("/images/icn-arrow-right-sm.gif") 94% center no-repeat; }
  .home-vision .dl-btnswrap {
    padding-top: 58px; }
  .home-vision .btn-dl {
    margin-top: 15px; }

.products-carousel {
  margin: 50px auto;
  height: 300px;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }
  .products-carousel .slide {
    height: 100%;
    width: 100%;
    max-width: 500px; }
    .products-carousel .slide.selected .caption {
      opacity: 1; }
  .products-carousel .prod-img {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    height: 220px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
  .products-carousel .caption {
    display: block;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }

.overgrad-left, .overgrad-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  display: none; }

.overgrad-left {
  left: 0;
  background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, white), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); }

.overgrad-right {
  right: 0;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, white));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }

.prod-slide-left, .prod-slide-right, .slide-left, .slide-right {
  position: absolute;
  top: 90px;
  height: 220px;
  width: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }

.prod-slide-left, .slide-left {
  left: -50px;
  background: url("/images/arrow_previous.png") center no-repeat; }

.prod-slide-right, .slide-right {
  right: -50px;
  background: url("/images/arrow_next.png") center no-repeat; }

.greycontent {
  padding: 40px 0;
  background: #f2f2f2; }
  .greycontent .overgrad-left {
    background: -moz-linear-gradient(left, #f2f2f2 0%, rgba(242, 242, 242, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f2f2f2), color-stop(100%, rgba(242, 242, 242, 0)));
    background: -webkit-linear-gradient(left, #f2f2f2 0%, rgba(242, 242, 242, 0) 100%);
    background: -o-linear-gradient(left, #f2f2f2 0%, rgba(242, 242, 242, 0) 100%);
    background: -ms-linear-gradient(left, #f2f2f2 0%, rgba(242, 242, 242, 0) 100%);
    background: linear-gradient(to right, #f2f2f2 0%, rgba(242, 242, 242, 0) 100%); }
  .greycontent .overgrad-right {
    background: -moz-linear-gradient(left, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(242, 242, 242, 0)), color-stop(100%, #f2f2f2));
    background: -webkit-linear-gradient(left, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%);
    background: -o-linear-gradient(left, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%);
    background: -ms-linear-gradient(left, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%);
    background: linear-gradient(to right, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%); }

.feat-carousel {
  margin: 50px auto 0;
  height: 330px;
  width: 100%; }
  .feat-carousel .slide {
    height: 100%;
    width: 320px;
    margin: 0;
    padding: 0;
    text-align: center; }
  .feat-carousel .prod-img {
    display: block;
    margin: 0 15px 20px;
    height: 220px;
    width: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .feat-carousel .proddesigner {
    margin-top: 8px; }
  .feat-carousel .caption {
    padding: 0 15px;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    text-decoration: none; }
  .feat-carousel p {
    padding: 0 15px;
    max-height: 63px;
    overflow: hidden; }
  .feat-carousel .overgrad-left, .feat-carousel .overgrad-right {
    display: none; }

/* **********************************
		Content Pages
********************************** */
.prodrange-intro {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 0 25px 0; }
  .prodrange-intro h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: normal; }

.prodrange-categories {
  margin: 0 0 30px 0;
  padding: 0;
  border-top: 1px solid #49494c;
  border-bottom: 1px solid #49494c;
  text-align: center; }
  .prodrange-categories {
    *zoom: 1; }
  .prodrange-categories:before, .prodrange-categories:after {
    content: "";
    display: table; }
  .prodrange-categories:after {
    clear: both; }
  .prodrange-categories li {
    display: inline-block;
    padding: 20px 25px;
    font-size: 18px;
    cursor: pointer;
    color: #818286;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
    .prodrange-categories li:hover, .prodrange-categories li:focus {
      text-decoration: underline; }
    .prodrange-categories li.active {
      color: #252122;
      text-decoration: none; }

.gencontent-footline {
  clear: both;
  margin: 0 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid #cdcbcc; }

.prodrange-prodlist {
  border-bottom: 1px solid #cdcbcc; }

.prodrange-type {
  display: none; }
  .prodrange-type {
    *zoom: 1; }
  .prodrange-type:before, .prodrange-type:after {
    content: "";
    display: table; }
  .prodrange-type:after {
    clear: both; }
  .prodrange-type .product {
    float: left;
    width: 33.33%;
    height: 265px;
    padding: 0 20px;
    margin-bottom: 20px;
    cursor: pointer; }
  .prodrange-type .prodimg {
    width: 100%;
    max-width: 290px;
    height: 200px;
    margin: 0 auto 10px;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover; }
  .prodrange-type .range-product .prodimg {
    background-size: contain; }
  .prodrange-type .prodtitle {
    text-align: center; }
  .prodrange-type .proddesigner {
    text-align: center;
    margin-top: 8px; }
  .prodrange-type.active {
    display: block; }

.prodtitle {
  text-align: center;
  font-size: 16px;
  font-weight: bold; }

.proddesigner {
  font-style: italic;
  font-size: 13px; }
  .proddesigner span, .proddesigner a {
    text-decoration: none;
    color: #e55f2c; }

#prod-gallery {
  padding: 40px 0 20px 0;
  z-index: 9999; }

.prodgal-carousel-outter {
  position: relative; }

.prodgal-carousel {
  width: 100%;
  height: 755px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  .prodgal-carousel .slide {
    height: 100%;
    width: 100%;
    max-width: 750px;
    margin: 0;
    padding: 0; }
    .prodgal-carousel .slide.selected .prodgal-prodtitle, .prodgal-carousel .slide.selected .prodgal-prodinfo {
      opacity: 1; }
  .prodgal-carousel .prodgal-prodimg {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 10px;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
  .prodgal-carousel .prodgal-prodtitle {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
  .prodgal-carousel .prodgal-prodinfo {
    position: relative;
    padding-right: 350px;
    font-size: 16px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
    .prodgal-carousel .prodgal-prodinfo p, .prodgal-carousel .prodgal-prodinfo div {
      font-size: 16px; }
    .prodgal-carousel .prodgal-prodinfo .colour-container {
      display: inline-block;
      position: absolute;
      right: 0;
      top: -65px;
      width: 240px;
      /*margin-right: 110px;*/ }
      .prodgal-carousel .prodgal-prodinfo .colour-container .colour-title {
        display: block;
        padding: 5px 0;
        margin-bottom: 5px; }
      .prodgal-carousel .prodgal-prodinfo .colour-container .colourbox {
        width: 35px;
        height: 35px;
        border: 1px solid #535152;
        display: inline-block;
        margin: 0 10px 0 0; }
  .prodgal-carousel .prodgal-proddownloads {
    position: absolute;
    right: 0;
    top: 20px;
    width: 240px; }
    .prodgal-carousel .prodgal-proddownloads .download {
      line-height: 36px;
      margin-bottom: 12px; }
  .prodgal-carousel .slide-left, .prodgal-carousel .slide-right {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.5);
    top: 275px;
    margin-top: -40px;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
    .prodgal-carousel .slide-left:hover, .prodgal-carousel .slide-left:focus, .prodgal-carousel .slide-right:hover, .prodgal-carousel .slide-right:focus {
      background-color: rgba(255, 255, 255, 0.8); }
  .prodgal-carousel .slide-left {
    left: 0;
    background-image: url("/images/arrow_previous-dark.png"); }
  .prodgal-carousel .slide-right {
    right: 0;
    background-image: url("/images/arrow_next-dark.png"); }

.download {
  display: block;
  padding-left: 55px;
  text-decoration: none;
  min-height: 36px;
  background: url("/images/icn-dl-pdf.gif") 0 0 no-repeat; }
  .download:hover, .download:focus {
    color: #e55f2c; }
  .download.pdf {
    background-image: url("/images/icn-dl-pdf.gif"); }
  .download.img {
    background-image: url("/images/icn-dl-img.gif"); }

.product-maingallery-wrap {
  margin: 0 200px 55px 0; }

.product-maingallery {
  height: 472px; }
  .product-maingallery .slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .product-maingallery .prev, .product-maingallery .next {
    display: none;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    background-color: rgba(255, 255, 255, 0.7);
    background-position: center;
    background-repeat: no-repeat; }
  .product-maingallery .prev {
    left: 0;
    background-image: url("/images/arrow_previous-dark.png"); }
  .product-maingallery .next {
    right: 0;
    background-image: url("/images/arrow_next-dark.png"); }

.product-mainthumbs {
  float: right;
  width: 195px;
  height: 472px; }
  .product-mainthumbs .slide {
    width: 100%;
    height: 155px;
    margin-bottom: 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .product-mainthumbs .prev, .product-mainthumbs .next {
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    right: 50%;
    margin-right: -18px;
    background-color: rgba(255, 255, 255, 0.7);
    background-position: center;
    background-repeat: no-repeat; }
  .product-mainthumbs .prev {
    top: 0;
    background-image: url("/images/arrow_up-dark.png"); }
  .product-mainthumbs .next {
    bottom: 0;
    background-image: url("/images/arrow_down-dark.png"); }

.location-mapping-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  margin-bottom: 70px;
  background: #ece2e0; }

.gmap-outter {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.map-pin {
  width: 21px;
  height: 44px;
  background: url("/images/icn-pin.png") center no-repeat; }

.location-caption-outter {
  margin: 0 auto;
  max-width: 960px;
  height: 100%;
  position: relative; }

.location-caption-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 430px;
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  z-index: 30; }
  .location-caption-wrap img {
    display: block;
    margin: 0 auto; }

.location-caption {
  padding: 40px 60px 30px; }
  .location-caption .office-title {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 20px; }
  .location-caption .office-address {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.3; }
  .location-caption .tel {
    display: block;
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: bold;
    color: #535152; }
  .location-caption .trading-title {
    font-size: 20px;
    margin: 40px 0 9px 0; }
  .location-caption .trading-hrs {
    font-size: 16px;
    line-height: 1.5; }
    .location-caption .trading-hrs p {
      margin-bottom: 0px; }

.fluid-showroom-content {
  margin-right: 270px;
  padding-right: 70px; }

.fixed-showroom-col {
  float: right;
  width: 270px; }
  .fixed-showroom-col h3 {
    font-size: 18px; }
  .fixed-showroom-col > h3 {
    padding-left: 70px; }

.showroom-inner {
  border-left: 1px solid #d0d0d0;
  padding-left: 70px; }

.showrooms-wrap {
  margin-bottom: 60px; }
  .showrooms-wrap:last-child {
    margin-bottom: 0; }

.showroom {
  margin: 0 auto 20px;
  display: block;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none; }
  .showroom img {
    display: block;
    margin: 0 auto 8px; }

.showroom-footline {
  clear: both;
  padding-top: 25px;
  border-bottom: 1px solid #d0d0d0; }

.contactus-form {
  margin-top: 30px; }
  .contactus-form label {
    width: 110px;
    float: left;
    padding-top: 8px; }
  .contactus-form .field {
    margin-left: 110px; }
    .contactus-form .field select {
      max-width: 180px; }
    .contactus-form .field textarea {
      height: 170px;
      resize: vertical; }
  .contactus-form .btn-submit {
    float: right;
    margin-top: 20px; }

.btn-submit {
  padding: 15px 60px;
  background: #fff;
  border: 1px solid #535152;
  color: #535152;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .btn-submit:hover, .btn-submit:focus {
    color: #fff;
    background: #252122; }

.subscribe-widget {
  max-width: 1025px;
  background-color: #191919;
  /*background: url("/images/bg-subscribe.jpg") center no-repeat;*/
  background-size: cover;
  margin: 35px auto;
  padding: 20px; }

.subscribe-widget-inner {
  padding: 20px;
  border: 4px solid #fff;
  color: #c6c6c6; }
  .subscribe-widget-inner {
    *zoom: 1; }
  .subscribe-widget-inner:before, .subscribe-widget-inner:after {
    content: "";
    display: table; }
  .subscribe-widget-inner:after {
    clear: both; }
  .subscribe-widget-inner h2 {
    margin-bottom: 15px; }
  .subscribe-widget-inner label {
    color: #c6c6c6; }
  .subscribe-widget-inner .title-tag {
    color: #c6c6c6; }
    .subscribe-widget-inner .title-tag:before {
      background-color: #c6c6c6; }
  .subscribe-widget-inner .join-title {
    float: left;
    width: 165px;
    line-height: 1.4; }

.subscribe-titlecol {
  width: 185px;
  float: left; }

.subscribe-form {
  margin-left: 185px;
  padding-top: 14px; }
  .subscribe-form .columns.seven {
    padding-top: 32px; }
    .subscribe-form .columns.seven .title-tag {
      position: relative;
      top: -32px; }
  .subscribe-form .columns.five {
    padding-top: 8px; }
    .subscribe-form .columns.five .title-tag {
      position: relative;
      top: -8px; }
  .subscribe-form .input-field {
    margin-bottom: 5px; }
    .subscribe-form .input-field label {
      display: inline-block; }
  .subscribe-form input[type="text"], .subscribe-form input[type="email"] {
    height: 40px;
    margin: 0;
    padding: 11px 15px;
    background: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    color: #c6c6c6; }
    .subscribe-form input[type="text"]::-webkit-input-placeholder, .subscribe-form input[type="email"]::-webkit-input-placeholder {
      color: #c6c6c6; }
    .subscribe-form input[type="text"]::-moz-placeholder, .subscribe-form input[type="email"]::-moz-placeholder {
      color: #c6c6c6; }
    .subscribe-form input[type="text"]:-ms-input-placeholder, .subscribe-form input[type="email"]:-ms-input-placeholder {
      color: #c6c6c6; }
    .subscribe-form input[type="text"]:-moz-placeholder, .subscribe-form input[type="email"]:-moz-placeholder {
      color: #c6c6c6; }
    .subscribe-form input[type="text"]:focus, .subscribe-form input[type="email"]:focus {
      background: #fff;
      background: rgba(255, 255, 255, 0.9);
      color: #535152; }
      .subscribe-form input[type="text"]:focus::-webkit-input-placeholder, .subscribe-form input[type="email"]:focus::-webkit-input-placeholder {
        color: #535152; }
      .subscribe-form input[type="text"]:focus::-moz-placeholder, .subscribe-form input[type="email"]:focus::-moz-placeholder {
        color: #535152; }
      .subscribe-form input[type="text"]:focus:-ms-input-placeholder, .subscribe-form input[type="email"]:focus:-ms-input-placeholder {
        color: #535152; }
      .subscribe-form input[type="text"]:focus:-moz-placeholder, .subscribe-form input[type="email"]:focus:-moz-placeholder {
        color: #535152; }
  .subscribe-form input[name="name"] {
    border-top-color: #ccc; }
  .subscribe-form .btn-subscribe {
    display: block;
    width: 100%;
    border: 0;
    padding: 12px 15px;
    background: #6b6b6b;
    color: #fff;
    text-align: left;
    font-size: 18px; }
  .subscribe-form .checkswrap {
    margin-top: 42px;
    padding: 5px 0;
    border-top: 1px solid #ccc; }
    .subscribe-form .checkswrap .input-field {
      padding: 10px 0;
      border-bottom: 1px solid #ccc; }

/* OffCanvas mobile */
.mobile-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 40px;
  display: none;
  background: url("/images/icn-menu-grey.png") center no-repeat;
  cursor: pointer; }

body {
  /*&.hide-extras {overflow: hidden;}*/ }
  body.off-canvas {
    padding: 0;
    margin: 0; }

#main:before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%; }

#mob-right-nav, #main {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.4s all ease-in;
  -moz-transition: 0.4s all ease-in;
  -o-transition: 0.4s all ease-in;
  transition: 0.4s all ease-in; }

#main {
  float: right;
  margin-right: 0; }

#mob-right-nav {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 260px;
  z-index: 2;
  right: -260px; }

.mob-sidebar {
  padding: 20px;
  border-left: 3px solid #252122; }
  .mob-sidebar li a {
    padding: 10px 5px;
    text-decoration: none;
    border-bottom: 1px solid #cdcbcc;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
    .mob-sidebar li a:hover, .mob-sidebar li a:focus {
      background-color: #cdcbcc; }
  .mob-sidebar li, .mob-sidebar li a {
    font-size: 16px;
    color: #535152;
    display: block; }
  .mob-sidebar .flyout {
    display: block !important;
    position: static;
    border: none;
    width: auto;
    padding-left: 15px;
    margin: 5px 0;
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
    .mob-sidebar .flyout li {
      border: none; }
      .mob-sidebar .flyout li a {
        padding: 10px 5px; }
  .mob-sidebar .site-logo {
    margin: 10px auto;
    float: none; }

.mobilemenu-social {
  margin-top: 20px;
  text-align: center; }
  .mobilemenu-social .icn-fb, .mobilemenu-social .icn-insta, .mobilemenu-social .icn-pin {
    margin: 0 10px; }

.active-right #mob-right-nav {
  right: 0; }
.active-right #main {
  margin-right: 260px; }

.error-message {
  color: #ff0000; }

.gmnoprint img {
  max-width: none; }

/* bValidator Form Messages */
.bvalidator_invalid {
  background-color: #FFFFAE; }

.bvalidator_errmsg {
  display: none;
  padding: 1px 10px 1px 5px;
  background-color: #333;
  border: 1px solid #999;
  -moz-box-shadow: 0 0 6px #ddd;
  -webkit-box-shadow: 0 0 6px #ddd;
  box-shadow: 0 0 6px #ddd;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  opacity: 0.9;
  white-space: nowrap;
  color: #FFF; }
  .bvalidator_errmsg div {
    font-size: 11px; }
  .bvalidator_errmsg .bvalidator_close_icon {
    margin-left: 5px;
    margin-top: -2px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #e55f2c;
    font-size: 12px;
    line-height: 1;
    cursor: pointer; }
  .bvalidator_errmsg em {
    position: absolute;
    bottom: -8px;
    left: 8px;
    display: block;
    height: 0;
    width: 0;
    border-color: #333 transparent transparent;
    border-style: solid;
    border-width: 8px 8px 0; }

/* Tablet Portrait size to standard 960 (devices and browsers) */
/* All Mobile Sizes (devices and browser) */
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
/* iPhone Retina Images */
/* PRINT */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: ""; }

  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2, h3 {
    page-break-after: avoid; } }

/*# sourceMappingURL=style.css.map */
