/*
var(--darkTone): #1A2632;
var(--midTone): #22313F;
var(--lightTone): #34495E;
var(--highlightTone): #CF1938;
var(--greyOver): rgba(0,0,0,0.1);
var(--fontColour): #666;
var(--headingFont): Montserrat;
var(--headingColour): #111;
var(--headingWeight): 400;
var(--containerWidth): 1200px;
var(--gridPadding): 10px;
var(--borderRadius): 2em;
var(--borderwidth): 2px;
var(--darkRGB): 26,38,50;
var(--lightRGB): 250,250,250;
*/
/* ---------------------------------- */
/* ------ MAIN BODY OF WEBSITE ------ */
/* ---------------------------------- */
html {
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
}
 
body {
  background:#fff;
  font: 16px/1.6em Montserrat, "-apple-system", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--fontColour);
  font-weight:300;
}

a {
  color: var(--darkTone);
}

a:hover {
  color: var(--highlightTone);
}

p {
  margin: 0.8em 0;
}

icon {
  font-family: fontawesome;
}

/* ---------------------------------- */
/* ------------ HEADINGS ------------ */
/* ---------------------------------- */
h1, 
h2, 
h3, 
h4, 
h5, 
.blog-widget-heading, 
.blogMenu .categoryMenu:before, 
.blogArchive:before,
.enqHeader {
  font-weight: var(--headingWeight);
  font-family: var(--headingFont);
  line-height: 1.2em;
  color: var(--headingColour);
}

h1 {
  font-size: 3em;
  margin: .3em 0;
}

h2, 
section[id^="shopSection"] h3, 
.blog-widget-heading,
.blogMenu .categoryMenu:before,
.blogArchive:before,
.enqHeader {
  font-size: 2.5em;
  margin: .3em 0;
}


h1[style*="text-align: center"]:after,
h2[style*="center"]:after,
#subBannerHome h2:after,
#enquire-dropdown h2:after {  
  margin: 0.3rem auto 0.8rem;
}

h1 + h2:after,
.blogSubHead h2:after {
  display: none;
}

h3 {
  font-size: 1.5em;
  margin: .3em 0;
}

h4 {
  font-size: 1.1em;
  margin: .3em 0;
}

h5 {
  font-size: 1.1em;
  margin: .2em 0;
}

h6 {
  font-size: 1em;
  line-height: 1.2em;
  margin: .2em 0;
}

h6 a {
  margin-bottom: 0.2em;
}

section {
  width: 100%;
}

.container {
  max-width: var(--containerWidth);
  width: 100%;
  margin: auto;
  position: relative;
}

.textSection .siteContent, .categorySection .siteContent, .viewCart .siteContent {
  padding: 6em 0;
}
.textSection .siteContent img, .categorySection .siteContent img, .viewCart .siteContent img {
  height: auto !important;
  max-width: 100%;
}

.contentWrap section:last-of-type > div:last-of-type .siteContent {
  padding-bottom: 6em;
}

.textSection + .photoSection .siteContent {padding-bottom:6em;}

.container {
 max-width: 1700px;
 width: 100%;
 margin: auto;
 position: relative;
}

.textSection .siteContent,
.categorySection .siteContent,
.viewCart .siteContent {
 padding: 2em 0;
}

.textSection .siteContent img,
.categorySection .siteContent img,
.viewCart .siteContent img {
 height: auto !important;
 max-width: 100%;
}

.contentWrap section:last-of-type > div:last-of-type .siteContent {
 padding-bottom: 2em;
}

.textSection + .photoSection .siteContent {
 padding-bottom:4em;
}

/* ---------------------------------- */
/* ---------- CONTENT AREA ---------- */
/* ---------------------------------- */

.fixedTopWrap {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 101;

}

.siteTop {
 padding-top:150px;
}

.siteBottom .container {
 display: -ms-flexbox;
 display: flex;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -ms-flex-align: stretch;
 align-items: stretch;
 padding: 0 10px;
}

.textSection .container  {
 padding: 0 10px;
}

.siteContent,
.searchContent {
 width: 100%;

}

.buttonSection .siteContent,
.buttonSection .container {
 padding: 0;
}

.desktop-hide,
a.desktop-hide {
 display: none !important;
}
/* ---------------------------------- */
/* ------------ SIDEBAR ------------- */
/* ---------------------------------- */
.sidebar {
  width: 280px;
  margin: 0px 15px 0 0;
  -ms-flex: 0,0,0;
      flex: 0,0,0;
  background:#f7f7f7;
  display: none;
}

.sidebar > *, #outerSidebar > * {
  padding: 0 10px;
}

.sidebar.blogSide, 
body[class*="shop"] .sidebar, 
body[class*="category"] .sidebar {
  display:inline-block;
}

/*.textSection .sidebar, .photoSection .sidebar {
  display: none;
}*/

.sidebar .item, #outerSidebar .item {
  width: 100%;
  margin-top: 15px;
}
.sidebar .item .contentImg, #outerSidebar .item .contentImg {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.sidebar .item .caption, #outerSidebar .item .caption {
  font-size: .9em;
}

#outerSidebar {
  display: none;
}

#cartContent .sidebar {
  display: none;
}

/*
@media (min-width:600px){
    .siteBottom {
      width: 100%;
      max-width: var(--containerWidth);
      margin: auto;
      display: flex;
      justify-content: space-between;
      
    }

    .sidebar {
      display: none;
    }

    #outerSidebar {
      width: 250px;
      flex-shrink: 0;
      background: var(--greyOver);
      display: inline-block;
    }

    .contentWrap {
      width: 100%;
      -ms-flex:0 1 auto;
    }
}

*/

.siteBottom.activeOuterSidebar {
    width: 100%;
    max-width: var(--containerWidth);
    margin: auto;
    display: flex;
    justify-content: space-between;
  }

.activeOuterSidebar .sidebar {
    display: none;
  }

.activeOuterSidebar #outerSidebar {
    width: 250px;
    flex-shrink: 0;
    background: var(--greyOver);
    display: inline-block;
  }

.activeOuterSidebar .contentWrap {
    width: 100%;
    -ms-flex:0 1 auto;
  }

/* ---------------------------------- */
/* -------- CONTACT DETAILS --------- */
/* ---------------------------------- */
.contact a:before,
.contact div:before,
.contact p:before,
.flickerplate a:before {
 font-family: FontAwesome;
 display: inline-block;
 position: relative;
 margin-right: 1em;
 color: inherit;
 speak: none;
 font-style: normal;
 font-weight: normal;
 font-variant: normal;
 text-transform: none;
 line-height: 1;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}
.phone:before {
 content: "\f098";
 content: "\f095";
}
.mobile:before {
 content: "\f10b";
}
.email:before {
 content: "\f2b7";
 content: "\f003";
 content: "\f0e0";
 content: "\f199";
 content: "\f2b6";
}
.fax:before {
 content: "\f1ac";
}
.address:before {
 content: "\f278";
 content: "\f279";
 content: "\f124";
 content: "\f041";
}
.facebook:before {
 content: "\f082";
 content: "\f09a";
}
.instagram:before {
 content: "\f16d";
}
.twitter:before {
 content: "\f081";
 content: "\f099";
}
.googlePlus:before {
 content: "\f0d4";
 content: "\f0d5";
}
.pinterest:before {
 content: "\f0d3";
 content: "\f0d2";
}
.linkedIn:before {
 content: "\f08c";
 content: "\f0e1";
}
.youTube:before {
 content: "\f16a";
 content: "\f166";
 content: "\f167";
}
.flickr:before {
 content: "\f16e";
}
/* ---------------------------------- */
/* --Standard for HR line styling  -- */
/* ---------------------------------- */
hr {
  border: 0;
  height: 1px;
  color: #ccc;
  background-color: #ccc;
  width: 100%;
}



/* ---------------------------------- */
/* ----------- NAVIGATION ----------- */
/* ---------------------------------- */

#menu {
 position: absolute;
 top:70px;
 z-index: 100;
}
#menu nav {
 max-width: 1700px;
 width: 100%;
 margin: auto;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-pack: justify;
 justify-content: flex-end;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 padding: 0 10px;
}

#menu nav li {
 list-style: none;
 float: left;
 display: inline-block;
 margin: 0px 5px;
}
#menu nav li a {
 display: inline-block;
 text-decoration: none;
 width: 100%;
 padding: 16px 20px;
 color: #555;
 font-size: 1em;
 border-bottom: 1px solid transparent;
 transition: 0.3s;
 text-transform:uppercase;
 font-weight:600;
}
#menu nav li a {
 position: relative;
}
#menu nav li a::before {
 content: '';
 position: absolute;
 left: 50%;
 bottom: 0;
 width: 100%;
 height: 2px;
 background-color: var(--highlightTone);
 transform-origin: center;
 transform: translate(-50%, 0) scaleX(0);
 transition: transform 0.3s ease-in-out;
}
#menu nav li a:hover::before {
 transform: translate(-50%, 0) scaleX(1);
}
#menu nav .current > a {
 color: var(--highlightTone);
}
#menu nav .parent > a:after {
 font-family: FontAwesome;
 margin-left: 8px;
 content: "\f107";
 line-height: 1em;
}
#mobileMenu,
#navToggleWrap {
 display: none;
}


/* ---------------------------------- */
/* ------------ SUB MENU ------------ */
/* ---------------------------------- */

#menu nav ul {
 position: absolute;
 width: 150px;
 margin: 0;
 padding: 0;
 display: none;
 font-size: .85em;
}
#menu .subContainer {
 background: #333;
 margin-top: 10px;
 position: relative;
 display: inline-block;
 padding: 10px;
 width: 100%;
 box-sizing: border-box;
}
#menu .subContainer:after {
 position: absolute;
 top: -10px;
 left: 30px;
 width: 0px;
 height: 0px;
 content: "";
 border-left: 10px solid transparent;
 border-right: 10px solid transparent;
 border-bottom: 10px solid #333;
}
#menu nav ul li {
 width: 100%;
 display: inline-block;
}
#menu nav ul li a {
 padding: 5px 10px;
 line-height: 1.1em;
 color: #ccc;
}
#menu nav ul li a:hover {
 color:#fff;
}

/*-----------------------------------*/
/*------------ SIDE MENU ------------*/
/*-----------------------------------*/
.sideMenu li {
 width: 100%;
 list-style: none;
 margin-bottom: 5px;
 position: relative;
}
.sideMenu li a {
 width: 100%;
 display: inline-block;
 background: #222;
 text-decoration: none;
 color: #fff;
 padding: 10px;
}
.sideMenu li a:hover {
 background: #eee;
 color: #222;
}
.sideMenu li ul {
 position: absolute;
 z-index: 1000;
 top: 0;
 left: 200px;
 width: 210px;
 margin: 0;
 padding: 0;
 display: none;
}
.sideMenu .subContainer {
 padding-left: 10px;
}
.sideMenu .current ul a {
 background: #222;
}
.sideMenu .current a,
.sideMenu ul .current a {
 background: #222;
}

/* ---------------------------------- */
/* --------- PHOTO SECTION ---------- */
/* ---------------------------------- */


.contentImgRow .item {
 display: inline-block;
}
.contentImgRow .contentImg {
 width: 100%;
 height: 0;
 padding-bottom: 80%;
 background-repeat: no-repeat !important;
 background-size: cover !important;
 background-position: center center !important;
 image-rendering: auto;
 margin: 0;
}
.contentImgRow .caption {
 font-size: .9em;
 margin-top: 5px;
}
.contentImgRow .caption:empty {
 display: none;
}
.contentImgRow.imgTag .contentImg {
 height: auto;
 padding: 0;
}
.contentImgRow.imgTag .item a {
 display: -ms-flexbox;
 display: flex;
 height: 100%;
 max-height: 180px;
}
.contentImgRow.imgTag .item a img {
 width: 100%;
 height: auto;
 object-fit: cover;
}
.overlayImg {
 cursor: pointer;
}
#enquiry {
 width: 100%;
 max-width: 100%;
 float: left;
 padding: 0;
 padding:30px 15px;
 margin-bottom: 20px;
 font-size: .8em;
 line-height: 1.4em;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;

}
.enqHeader {
 font-family: Montserrat;
 font-weight: 600;
 width: 100%;
 text-align:center;
 color: #666;
 padding: 12px 10px 12px;
 margin-bottom: 15px;
 font-size: 2.5em;
}
.enqRow {
 width: 100%;
 overflow: hidden;
 padding: 3px 5px;
}
.enqRow.half {
 width: 50%;
 display: inline-block;
}
.enqLeft {
 display:none;
 padding: 5px;
 float: left;
 width: 25%;
 font-size: 1.2em;
}
.enqRight {
 width: 75%;
 float: left;
}
.enqRow.half .enqLeft,
.enqRow.half .enqRight {
 width: 100%;
 font-size: 1em;
}
.enqLeft,
.enqRight {
 width: 100%;
 font-size: 1em;
}
.enqLeft {
 line-height: 1.3em;
}
.enqRow {
 padding: 3px 10px;
}
#enquiry input,
#enquiry textarea,
#enquiry select {
 font-family: inherit;
}
#enquiry input,
#enquiry textarea {
 width: 100%;
 border: none;
 border-bottom-color: currentcolor;
 border-bottom-style: none;
 border-bottom-width: medium;
 padding: 5px;
 border-bottom: 1px solid rgba(30,30,30,0.2);
 margin-bottom: 15px;
 -webkit-appearance: none;
 border-radius: 0;
 font-size: 16px;
}
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=date],
input[type=time],
input[type=phone],
input[type=password],
.select,
textarea {
 transition: all 0.2s ease-in-out;
 background: none;
 color: #222;
 border: none;
 font-size: 16px;
}
input[type=text]:hover,
input[type=tel]:hover,
input[type=email]:hover,
input[type=number]:hover,
input[type=date]:hover,
input[type=time]:hover,
input[type=phone]:hover,
input[type=password]:hover,
.select:hover,
textarea:hover {
 outline: 1px solid rgba(0, 0, 0, 0.2);
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=phone]:focus,
input[type=password]:focus,
.select:focus,
textarea:focus {
 background: #eee;
 outline: 1px solid rgba(0, 0, 0, 0.8);
}
#enquiry textarea {
 height: 80px;
 padding: 5px;
}
#enquiry input[type="radio"] {
 width: 15px;
 -webkit-appearance: radio;
 margin: 0;
 padding: 0;
}
#enquiry input[type="checkbox"] {
 -webkit-appearance: checkbox;
 width: 15px;
 margin: 0;
 padding: 0;
 vertical-align: bottom;
}
#enquiry input[type="date"] {
 font-family: inhert;
}
#enquiry input[type="time"] {
 font-family: inherit;
}
#enquiry input[type="submit"] {
 margin-bottom: 10px;
 border: 0;
 cursor: pointer;
}
#enquiry select {
 width: 100%;
}
#enquiry ::-webkit-input-placeholder {
 color: #000;
 opacity: 0.6;
}
#enquiry :-moz-placeholder {
 color: #000;
 opacity: 0.6;
}
#enquiry ::-moz-placeholder {
 color: #000;
 opacity: 0.6;
}
#enquiry :-ms-input-placeholder {
 color: #000;
 opacity: 0.6;
}
#enquiry .checkbox {
 padding: 5px;
}
.select {
 position: relative;
}
.select:after {
 position: absolute;
 top: 0;
 right: 0;
 height: 100%;
 width: 25px;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-pack: center;
 justify-content: center;
 -ms-flex-align: center;
 align-items: center;
 content: "\f078";
 border-left: 1px solid #ccc;
 font-family: fontawesome;
 pointer-events: none;
}
.select select {
 background: 0;
 border: 0;
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 display: inline-block;
 width: 100%;
 padding: .5em;
 outline: 0;
}
.grecaptcha-badge {
 z-index:9999;
}

/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */
footer {
 color:#fff;
 width: 100%;
 background: #222;
 font-size: .8em;
}

footer p {
 color:#fff;
}


footer {
  width: 100%;

  font-size: .8em;
  position: relative;
}
footer .container {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  flex-wrap: wrap;
  padding: 2em 0 2em;
}

#footerBottom {
  background:#033361;
}

#footerTop {
  background:#00519E;
    padding: 2em 0 2em;
}




/*-------- FOOTER TEXT STYLES ---------*/
footer {
  color: #fff;
}

#footerBottom a {
  color: inherit;
  opacity: 0.5;
  text-decoration: none;
}
#footerBottom a:hover {
  color: inherit;
  opacity: 1;
}

/*------------ FOOTER MENU ------------*/
footer nav {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-bottom: 1em;
}
footer nav li {
  list-style: none;
  display: inline-block;
}
footer nav li a {
  text-decoration: none;
  padding: 0.8em 1em;
  display: inline-block;
}

.footerRight {
  width: 100%;
  text-align: center;
}

/* ---------------------------------- */
/* ---------- CUSTOM FOOTER --------- */
/* ---------------------------------- */

footer {
  text-align:center;
}

footer h3 {
  
  color:#fff;
  display:block;
  text-transform:uppercase;
  letter-spacing:0.1em;
}

.footerText {
  max-width:75%;
  margin:0 auto;
}

footer .col-3 {
 display: flex;
 flex-direction: column;
 /*! align-items:center; */


}

footer .col-3:nth-child(2) {
  display:flex;
  flex-direction:row;
}

footer  .col-2 span {
 margin:20px 0 10px;
 font-size:20px;
 display:block;
}
.col-3 .facebook,
.col-3 .instagram,
.col-3 .youTube {
 background:none;
}
.col-3 a:before,
.col-3 p:before {
 font-family:fontawesome;
 padding-right:10px;
 font-weight:100;
 width:2.8em;
}
.col-3 .enquire-trigger {
 text-decoration: none;
}
.col-3 .enquire-trigger:before {
 content:"\f2b6";
}
.col-3 .linedIn:before {
 font-family: fontawesome;
 content:"\f08c";
}
.col-3 a,
.col-3 p {
 color:#fff;
 font-size:16px;
 text-transform: uppercase;
 letter-spacing: 0em;
 text-decoration: none;
 transition: all .3s ease;
 line-height: 2em;
 margin:0px;
 font-weight:300;
 margin-bottom:5px;
}



/* ----------------------------------------- */
/* -----------------TO TOP ----------------- */
/* ----------------------------------------- */

#toTop {
 position: fixed;
 bottom: 90px;
 right: 20px;
 z-index: 900;
}
#toTop:before {
 content: "\f077";
}


/* ---------------------------------- */
/* ---------  list styling  --------- */
/* ---------------------------------- */


.siteBottom .siteContent li {
 margin-bottom: 0.5em;
 position: relative;
}
.siteBottom .siteContent ul {
 list-style: none;
}
.siteBottom .siteContent ul li:before {
 content: "\f111";
 font-family: FontAwesome;
 font-size: 0.5em;
 margin-right: 10px;
 color: var(--highlightTone);
 position: relative;
 top: 0;
 left: 0px;
}



/*-----------------------------------*/
/*-------------- GRID ---------------*/
/* ---------------------------------- */


.grid {
 display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 justify-content: space-between;
 width: 100%;
}

.contentImgRow.grid {
 display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 justify-content: space-between;
 width: 100%;
}


.grid:after {
 content: "";
 display: table;
 clear: both;
}
.grid.justify {
 -ms-flex-pack: justify;
 justify-content: space-between;
}
.grid.center {
 -ms-flex-pack: center;
 justify-content: center;
}
.grid [class*='col-'],
.contentImgRow .item,
.cartThumb,
.blog-widget .blog-widget-article {
 float: left;
 margin: calc(10px / 2);
}
.col-1,
.sidebar .blog-widget .blog-widget-article,
#outerSidebar .blog-widget .blog-widget-article,
.sidebar .item > *:not([class*="blog"]),
#outerSidebar .item > *:not([class*="blog"]),
.blogPost {
 width: 100%;
 width: calc(100% - 10px);
}
.col-2,
section[class*="imgC"] .col-4 {
 width: 50%;
 width: calc(50% - 10px);
}
.col-3 {
 width: 33.33333%;
 width: calc(33.33333% - 10px);
}
.col-3x2 {
 width: 66.66%;
 width: calc(66.66% - 10px);
}
.col-4,
.contentImgRow .item,
.cartThumb,
.blog-widget .blog-widget-article {
 width: 25%;
 width: calc(25% - 10px);
}
.col-4x3 {
 width: 75%;
 width: calc(75% - 10px);
}
.col-5 {
 width: 20%;
 width: calc(20% - 10px);
}
.col-5x2 {
 width: 40%;
 width: calc(40% - 10px);
}
.col-5x3 {
 width: 60%;
 width: calc(60% - 10px);
}
.col-5x4 {
 width: 80%;
 width: calc(80% - 10px);
}
.col-6 {
 width: 16.666%;
 width: calc(16.666% - 10px);
}
.col-6x5 {
 width: 83.33%;
 width: calc(83.33% - 10px);
}
.siteBottom section * {
 box-sizing: border-box;
}
.siteBottom section {
 position: relative;
}



/* ---------------------------------- */
/* ------- DYNAMIC BACKGROUNDS ------ */
/* ---------------------------------- */


.backgroundImage {
 position: absolute;
 background-size: cover;
 background-position: center center;
}

section .backgroundImage:after {
 content:"";
 position:absolute;
 top: 0;
 left: 0;
 bottom: 0;
 right: 0;
}
section[class*="M_full"] .backgroundImage[style*="-dark"]:after {
 background: #333;
 opacity: 0.95;
}
section[class*="M_full"] .backgroundImage[style*="-light"]:after {
 background: #fff;
 opacity: 0.85;
}
section[class*="M_left"] .backgroundImage[style*="-dark"]:after {
 background: linear-gradient(to right, rgba(,0) 0%,rgba(,.95) 60%,rgba(,0.95) 100%);
}
section[class*="M_right"] .backgroundImage[style*="-dark"]:after {
 background: linear-gradient(to left, rgba(,0) 0%,rgba(,.95) 60%,rgba(,0.95) 100%);
}
section[class*="M_left"] .backgroundImage[style*="-light"]:after {
 background: linear-gradient(to right, rgba(,0) 0%,rgba(,.95) 60%,rgba(,0.95) 100%);
}
section[class*="M_right"] .backgroundImage[style*="-light"]:after {
 background: linear-gradient(to left, rgba(,0) 0%,rgba(,.95) 60%,rgba(,0.95) 100%);
}
section[class*="-dark"] h1,
section[class*="-dark"] h2,
section[class*="-dark"] h3,
section[class*="-dark"] h4,
section[class*="-dark"] h5,
section[class*="-dark"] h6 {
 color: #fff;
}
section[class*="-dark"] p,
section[class*="-dark"] li,
section[class*="-dark"] *:not(h6) > a {
 color: #ccc;
}
section[class*="-dark"] *:not(h6) > a {
 color: #FC9600;
}
.M_left_img,
.M_right_img {
}
.M_full_img .backgroundImage {
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
}
.M_left_img .backgroundImage {
 top: 0;
 left: 0;
 bottom: 0;
 width: 50%;
}
.M_left_img .siteContent {
 width: 45%;
 margin: 0 0 0 auto;
}
.M_right_img .backgroundImage {
 top: 0;
 right: 0;
 bottom: 0;
 width: 50%;
}
.M_right_img .siteContent {
 width: 45%;
 margin: 0 auto 0 0;
}
.M_left_imgC .backgroundImage {
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
}
.M_left_imgC .siteContent {
 width: 45%;
 margin: 0 0 0 auto;
}
.M_right_imgC .backgroundImage {
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
}
.M_right_imgC .siteContent {
 width: 45%;
 margin: 0 auto 0 0;
}
@media all and (max-width: 900px) {
 section[class*="M_left"] .backgroundImage[style*="-dark"]:after {
  background: linear-gradient(to right, rgba(,.8) 0%,rgba(,.95) 60%,rgba(,0.95) 100%);
 }
 section[class*="M_right"] .backgroundImage[style*="-dark"]:after {
  background: linear-gradient(to left, rgba(,0.8) 0%,rgba(,.95) 60%,rgba(,0.95) 100%);
 }
 section[class*="M_left"] .backgroundImage[style*="-light"]:after {
  background: linear-gradient(to right, rgba(,.8) 0%,rgba(,.95) 60%,rgba(,0.95) 100%);
 }
 section[class*="M_right"] .backgroundImage[style*="-light"]:after {
  background: linear-gradient(to left, rgba(,.8) 0%,rgba(,.95) 60%,rgba(,0.95) 100%);
 }
 .M_left_img,
 .M_right_img {
  padding: 0;
 }
 .siteBottom section .siteContent {
  width: 100%;
 }
 .M_left_img .backgroundImage,
 .M_right_img .backgroundImage {
  position: relative;
  width: 100%;
  height: 250px;
 }
 .M_left_imgC .backgroundImage {
  background-position: 90% 50%;
 }
 .M_right_imgC .backgroundImage {
  background-position: 10% 50%;
 }
}

/* ---------------------------------- */
/* -------- GRAPHICAL BUTTONS ------- */
/* ---------------------------------- */

.button,
.contact a,
#enquiry input[type="submit"],
.basicFrame,
h6 a,
.blog-widget-article-content-button,
.blogBtn button,
.cartThumb .info:after {
 display: inline-block;
 cursor: pointer;
 line-height: 1em;
 padding: 0.8em 1.6em;
 text-decoration: none;
 text-align: center;
 font-weight: normal;
 transition: 0.2s;
}

* a.iconOnly {
}

* a.iconOnly:before {
 margin-right: 0;
}

.butS1,
a.basicFrame,
#enquiry input[type="submit"],
body .cartBtn.green,
body .cartBtn,
.cartItemAdd,
.checkoutNext,
.editDetails,
.saveDetails,
body:not(.shopping) .viewCartSection #viewCart,
#toTop,
h6 a {
 color: #fff;
 background: var(--highlightTone);
   border: 1px solid transparent;
  transition:0.4s ease;
 
}

.butS1:hover,
a.basicFrame:hover,
#enquiry input[type="submit"]:hover,
body .cartBtn.green:hover,
body .cartBtn:hover,
.cartItemAdd:hover,
.checkoutNext:hover,
.editDetails:hover,
.saveDetails:hover,
body:not(.shopping) .viewCartSection #viewCart:hover,
#toTop:hover,
h6 a:hover,
.butS1:active,
a.basicFrame:active,
#enquiry input[type="submit"]:active,
body .cartBtn.green:active,
body .cartBtn:active,
.cartItemAdd:active,
.checkoutNext:active,
.editDetails:active,
.saveDetails:active,
body:not(.shopping) .viewCartSection #viewCart:active,
#toTop:active,
h6 a:active {
 color: var(--darkTone);
 background: #fff;
 border: 1px solid var(--darkTone);
}

.select:after {
 color: #555;
 background: #555;
 border: 1px solid transparent;
}

.select:hover:after,
.select:active:after {
 color: #555;
 background: rgba(0,0,0,0.2);
 border: 1px solid transparent;
}

.butS2,
body .cartBtn.grey,
.cartItemPrev,
.checkoutPrev,
.cartBtnHL.resumeShopping,
.cartItemUpdate,
.openCheckout,
.blogNavigation a,
div button,
.blog-widget-article-content-button,
.blogBtn button,
.cartThumb .info:after {
 background: #ddd;
 border: 1px solid #ddd;
 color: inherit;
}
.butS2:hover,
body .cartBtn.grey:hover,
.cartItemPrev:hover,
.checkoutPrev:hover,
.cartBtnHL.resumeShopping:hover,
.cartItemUpdate:hover,
.openCheckout:hover,
.blogNavigation a:hover,
.butS2:active,
body .cartBtn.grey:active,
.cartItemPrev:active,
.checkoutPrev:active,
.cartBtnHL.resumeShopping:active,
.cartItemUpdate:active,
.openCheckout:active,
.blogNavigation a:active,
div button:hover,
div button:active,
.blog-widget-article-content-button:hover,
.blog-widget-article-content-button:active,
.blogBtn button:hover,
.blogBtn button:active,
.cartThumb .info:hover:after,
.cartThumb.info:active:after {
 background: #333;
 border: 1px solid #333;
 color: #fff;
}


/*-----------------------------------*/
/*-------- GRAPHICAL BUTTON ---------*/
/*-----------------------------------*/


.link0 #section2 .container {
  max-width:1500px;
}


.butFrame {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  padding: 3% 2%;
  cursor: pointer;
  width: calc(24% - 10px);
  text-align:left;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  transition: .5s ease;
    text-align:center;
  background: var(--highlightTone); 
}

.butFrame a:last-of-type {
  position:relative;

  color:#fff;
  text-decoration:none;
  padding:0em 0em;
  display:inline-block;
}


/* Hover Effect */

.butFrame:hover {
  transform: translateY(-10px);
}

.butFrame:hover .hi-icon{
  background:#289f42;
  
}

.butFrame:hover .hi-icon:before {
  color:#f7f7f7;
}

/*  .hi-icon {
  background: #E3E1E1;
  transition: background 0.2s, color 0.2s;
}

 */

.butHeading {
  font-size:1.5em;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  margin-bottom:10px;
  letter-spacing: 1px;
  text-transform:uppercase;
  font-family:var(--headingFont);
}

.butParagraph {
  display:none;
  width: 100%;
  height:80px;
  position:relative;
  text-align: center;
  font-size:0.8em;
  padding: 8px 15px;
  color: #666;
  margin-bottom: 10px;
  line-height:1.6em;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/* .butRead {
  text-align: center;
  color: #444;
  background: #E3E1E1;
  border-radius:4px;
  padding:4px;
  box-sizing:border-box;
  text-transform:lowercase;
  position:absolute;
  width:100%;
  bottom:0px;
  left:0;
  height:auto;
  display:none;
} */

.hi-icon-wrap {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-items: stretch;
}

.butImage {
  display: block;
  font-size: 0px;
  cursor: pointer;
  margin: 20px 0px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  /*! background: #fff; */
  text-decoration: none;
    margin:0 auto;
  transition:0.3s ease;
}

.butImage img {
  width:120px;
  padding:10px;
  margin:0 auto;
}



.butFrame.aos-init:nth-child(1)  {
 transition-delay: .25s;
}
.butFrame.aos-init:nth-child(2)  {
 transition-delay: .5s;
}
.butFrame.aos-init:nth-child(3)  {
 transition-delay: .75s;
}
.butFrame.aos-init:nth-child(4)  {
 transition-delay: 1s;
}




/*-----------------------------------*/
/*----------- CART THUMB ------------*/
/*-----------------------------------*/

.cartThumb {
 cursor: pointer;
 text-decoration: none;
 text-align: center;
 position: relative;
 overflow: hidden;
 color: inherit;
 background: #fff;
 box-shadow: 0 5px 10px -5px rgba(0,0,0,0.2);
 transition: 0.3s;
}
.cartThumb:hover {
 transform: translateY(-5px);
 box-shadow: 0 10px 15px -10px rgba(0,0,0,0.4);
 color: inherit;
 background: #fff;
}
.cartThumbs .image {
 width: 100%;
 height: 0;
 background: #e5e5e5;
 padding-bottom: 100%;
 background-size: cover !important;
 background-position: center center !important;
 background-repeat: no-repeat !important;
 position: relative;
 cursor: pointer;
 overflow: hidden;
}
.cartThumbs .cartThumb .imageFrame .image {
 background-size: cover !important;
}
.cartThumb .banner {
 background: #4183d7;
 color: #eee;
}
.siteBottom .cartThumbs .cartThumb .info {
 position: relative;
 padding-bottom: 4.5em;
}
.cartThumb .info:after {
 position: absolute;
 left: 10px;
 right: 10px;
 bottom: 10px;
}
.cartThumb.item .info:after {
 content: "View Product";
}
.cartThumb.category .info:after {
 content: "View More";
}
.blogPost,
.blog-widget .blog-widget-article {
 background: #fff;
 box-shadow: 0 5px 10px -5px rgba(0,0,0,0.2);
 transition: 0.3s;
}
.blogPost:hover,
.blog-widget .blog-widget-article:hover {
 transform: translateY(-5px);
 box-shadow: 0 10px 15px -10px rgba(0,0,0,0.4);
}
.categoryMenu > li > a,
.blogArchive > li > a,
.categoryMenu > li > a {
 font-weight: bold;
}
.categoryMenu li.current > a,
.blogArchive li.current > a,
.categoryMenu li.current > a {
 background: #555;
 color: inherit;
}
.categoryMenu li > a:hover,
.blogArchive li > a:hover,
.categoryMenu li > a:hover {
 color: #FC9600;
}
.viewCartRowHeader {
 background: #1a2632;
 color: #fff;
}
body:not(.shopping) .viewCartSection #viewCart {
 position: absolute;
 top: 0;
 right: 0;
 overflow: hidden;
 z-index: 1000;
}
#viewCart:before {
 content: "\f290";
 content: "\f07a";
 font-family: fontawesome;
 margin-right: .5em;
}

/* ---------------------------------- */
/* ------------- BANNER ------------- */
/* ---------------------------------- */

.topBar {
  position:absolute;
  top:0px;
  right:0px;
  z-index:1000;
  background: var(--darkTone);
  width:75%;
  font-size:1em;

}


.topBar:before {
  content:"";
  position:absolute;
  top:2px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 40px 0 0 40px;
	border-color: transparent transparent transparent #fff;
}


.topBar .phone {
    font-weight:700;
  color:#fff!important;
}


.topBar .email {
  font-weight:700;
  color:#fff;
}

.topBar a:before, a.enquire-trigger:before {
  color:#fff;
}

.topBar .container {
  display:flex;
  text-transform: uppercase;
  letter-spacing:0.1em;
  position:relative;
  justify-content: flex-end!important;     
  max-width:none;
  font-size:0.95em;
  max-width:1200px;
}



#banner {
 position: relative;

}
#banner .container {
 display:flex;
 justify-content: space-between;
 align-items: center;
 padding: 0% 1%;
}
.logo {
 position: relative;
 display: block;
 width: 100%;
 max-width: 250px;
 padding:10px 0px;
 transition: 0.2s;
}
footer .logo {
 max-width:220px;
}
.scrollLogo {
 position: absolute;
 top: 0;
 left: 0;
 opacity: 0;
}
@media all and (min-width:700px) {
 .mobileScrollStart #banner .scrollLogo {
  opacity: 1;
 }
}
.logo object,
.logo img {
 width: 100%;
 height: auto;
 display: block;
 margin: 0;
 padding: 0;
 transition: 0.2s;
}
.logo:after {
 content: "";
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
}
.contactContainer {
 color: #fff;
}
.mobileScrollStart .contactContainer {
 color: inherit;
}
.contactContainer div {
 padding: 0.2em 0em;
}
#banner .contactContainer .phone:before {
 display:none;
}
#banner .contactContainer {
 position:relative;
 top:-25px;
}
#banner .contactContainer .phone {
 font-family:Montserrat;
 color:#fff!important;
 font-weight:900;
 font-size:1.5em;
 text-align:right;
 display:flex;
 flex-direction:row;
}
.phone h3 {
 color:#fff;
}
.phone h3:first-child {
 color:#FC9600;
 margin-right:10px;
}
div.phone a {
 margin: 0;
 padding: 0;
 color: inherit;
 background:none;
 border: none;
 text-decoration: none;
 font-size: 1em;
}
a[href=""],
a[href*="$"] {
 display:none;
}
#subBannerHome {
}
#subBannerHome > .container {
 max-width:100%;
 position: relative;
}
#subBannerHome .container .container {
 position: absolute;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
 z-index: 2;
}
.sliderText {
 position: absolute;
 z-index:0;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 width: 50%;
 display:flex;
 flex-direction: column;
 justify-content: center;
 align-items: flex-start;
 padding: 2em;
 animation-delay:3.2s;
}
.sliderText p {
  margin-top:25px;
  font-size:1.5em;
  width:100%;
}
.sliderText > * {
 color: #fff;
 z-index: 2;
 margin: .1em 0;
}
.sliderText h2 {
 font-size:2em;
 font-weight:300;
 letter-spacing:0.05em;
}
.sliderText h1 {
 font-size:4.5em;
 font-weight:900;
  line-height:.8em;
}

.sliderText h1 span {
  color:#00519E;
}

 .sliderText .enquire-trigger {
 margin-top:20px;
 position: relative;
 font-size:1.2em;
 letter-spacing:0.1em;
 transition:0.3s ease;
 font-family:Montserrat;
 background:var(--highlightTone);
 border:1px solid transparent;
   transition:0.3s ease;
   text-transform:uppercase;
   
}

.sliderText .enquire-trigger:hover {
  background:none;
  color:#fff;
  border:1px solid rgba(255,255,255,0.85);
}

/*==============================*/
/*===== FLICKERPLATE STYLES ====*/
/*==============================*/

.flickerplate,
.flick-inner {
 height: 80vh;
}
.flickerplate::after,
#subBanner::after {
 content: "";
 position: absolute;
 bottom: 0;
 right: 0;
 left: 0;
 width: 100%;
 height: 3%;
 background: rgba(0, 82, 158,0.75);
}
.flickerplate {
 position: relative;
 width: 100%;
 background:#ececec;
 overflow: hidden;
 margin:0 auto;
}
.flickerplate ul.flicks {
 width: 10000%;
 height: 100%;
 padding: 0px;
 margin: 0px;
 list-style: none
}
.flickerplate li {
 float: left;
 width: 1%;
 height: 100%;
 background-position: center;
 background-size: cover;
 display: table;
}
.flick-inner {
 display: table-cell;
 vertical-align: middle;
 position: relative;
 background: rgb(34,34,34);
 background: rgb(34,34,34);
 background: linear-gradient(270deg, rgba(34,34,34,0.35) 22%, rgba(34,34,34,1) 100%);
}
.flick-content {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 width: 100%;
 height: 100%;
 max-width: 1200px;
 margin: auto;
 padding: 0 5%;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: flex-start;
 font-size: 1em;
}
.flick-title,
.flick-sub-text {
 width: 40%;
 text-align: left;
}
.flick-title {
 font-size: 2em;
 color: #fff;
}
.flick-sub-text {
 font-size: 1.2em;
 color: #fff;
 margin-bottom: 1em;
}
.flick-but {
 position: relative;
 z-index: 2;
 width: 15em;
}
@media all and (max-width: 1200px) and (min-width: 1000px) {
 .flick-content {
  font-size: 1em;
 }
}
@media all and (max-width: 999px) and (min-width: 700px) {
 .flick-content,
 .arrow-navigation,
 .dot-navigation,
 .sliderText {
  font-size: 0.8em;
 }
 .flickerplate,
 .flick-inner {
  padding-bottom: 350px;
 }
}
@media all and (max-width: 700px) {
 .flick-content,
 .arrow-navigation,
 .dot-navigation,
 .sliderText {
  font-size: 0.6em;
 }
 .flickerplate,
 .flick-inner {
  padding-bottom: 250px;
 }
 .sliderText {
  width: 60%;
 }
 .sliderText p {
  line-height: 1.1em;
 }
}
.flickerplate .arrow-navigation {
 position: absolute;
 height: 80%;
 width: 10%;
 top: 10%;
 z-index: 3;
 cursor: pointer;
 overflow: hidden;
  display:none;
}
.flickerplate .arrow-navigation .arrow {
 display: block;
 height: 100%;
 width: 100%;
 transition: opacity 0.2s ease-out;
 position: relative;
 opacity: 0;
}
.flickerplate .arrow-navigation .arrow:hover {
 opacity: 0.8;
}
.flickerplate .arrow-navigation .arrow:before {
 font-size: 3em;
 position: absolute;
 left: 0px;
 bottom: 0;
 width: 100%;
 height: 20%;
 font-family: FontAwesome;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
}
.flickerplate.flicker-theme-dark .arrow-navigation .arrow:before {
 color: #222;
}
.flickerplate .arrow-navigation.left {
 left: 0
}
.flickerplate .arrow-navigation.right {
 right: 0
}
.flickerplate .arrow-navigation.left .arrow:before {
 content: "\f104";
}
.flickerplate .arrow-navigation.right .arrow:before {
 content: "\f105";
}
.flickerplate .dot-navigation {
 position: absolute;
 left: 0;
 bottom: 0;
 width: 100%;
 text-align: center;
 z-index: 100;
}
.flickerplate .dot-navigation ul {
 list-style: none;
 margin: 1em 0;
 padding: 1% 1%;
 text-align: center;
 font-size: 0.6em;
}
.flickerplate .dot-navigation ul li {
 display: inline-block;
 width: auto;
 float: none
}
.flickerplate .dot-navigation .dot {
 width: 1em;
 height: 1em;
 margin: 0px 0.5em;
 cursor: pointer;
 opacity: 0.3;
 transition: opacity 0.2s ease-out;
 border-radius: 50%;
 background-color: #fff;
}
.flickerplate.flicker-theme-dark .dot-navigation .dot {
 background-color: #222;
}
.flickerplate .dot-navigation .dot:hover {
 opacity: 0.6;
}
.flickerplate .dot-navigation .dot.active {
 opacity: 1;
}
.flickerplate.animate-transition-slide ul.flicks {
 position: relative;
 left: 0%;
 transition: left 0.4s ease-in-out
}
.flickerplate.animate-transition-fade ul.flicks {
 position: relative
}
.flickerplate.animate-transition-fade ul.flicks li {
 float: none;
 position: absolute;
 top: 0;
 left: 0;
 opacity: 0
}
.flickerplate.animate-transition-fade.fade-inited ul.flicks li {
 transition: opacity 0.8s linear
}
.flickerplate.animate-transition-fade.fade-inited ul.flicks li.first-flick,
.flickerplate.animate-transition-slide ul.flicks li {
 opacity: 1;
}

.btnHolder {
 position: absolute;
  z-index:1;
 top: 0px;
 left: 0;
 right: 0;
 width: 100%;
 bottom: 100px;
 max-width: 1700px;
 margin: auto;
 padding: 0% 0%;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 align-items:flex-start;
 font-size: 1em;
 text-align:left;
 font-family:Montserrat;
 font-weight:900;
}

.down {
 position: absolute;
 z-index: 99;
 bottom: -50px;
 color: #fff!important;
 letter-spacing: 0;
 font-family:Montserrat;
 letter-spacing:0.1em;
}

.down::before {
 content: "\f078";
 font-family: FontAwesome;
 border-radius:50%;
}

.down:before:hover {
  transform:translateY(-10px);
}

.sliderText .phoneHolder {
 position: absolute;
 z-index: 99;
 bottom: 5%;
 right: 20px;
 color: #fff;
 font-family: roboto;
 font-weight: bold;
 background:none;
}

.siteTop .phoneHolder > * {
 display: block;
 margin: 0.5em 0 0 auto;
 font-size:1.1em;
}

.sliderText .phone span {
 display: inline-block;
 -webkit-transform: rotate(90deg) translate(-30px,-45px);
 transform: rotate(90deg) translate(-30px,-45px);
 -webkit-transform-origin: 100% 0%;
 transform-origin: 100% 0%;
 display:none;
}

.sliderText .butS3 {
 border:none;
 border-radius:2em;
 color:#fff;
 transition:0.3s ease;
}

.sliderText .phoneHolder .butS3 {
 padding: 0.4em 0em;
 width: 2.8em;
}


.butS3:before,
.sliderText .phone:after,
h6 a:before,
.butS2:before,
.col-3:first-child a:before {
 display: inline-block;
 background: none;
 border: 2px solid #999;
 color: inherit;
 line-height: 1em;
 padding: 0.8em 0em;
 text-decoration: none;
 text-align: center;
 font-weight: normal;
 width: 2.8em;
 border-radius:2em;
}
.butS3:hover:before,
.butS3:active:before,
h6 a:hover:before,
h6 a:active:before {
 color: #fff !important;
 border: 2px solid #999;
  trans
}


#enquire-dropdown {
 position: fixed;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 z-index: 9999;
 background: none repeat scroll 0 0 rgba(9, 61, 109, 0.95);
 display: none;
 overflow: hidden;
}
#enquire-dropdown .container {
 width: 100%;
 height: 100%;
 height: 100vh;
 max-width: 1200px;
 display: flex;
 align-items: center;
 justify-content: center;
 position: initial;
}
#enquire-dropdown #enquiry {
 background: none;
 font-size: 1em;
 width: 100%;
 max-width: 450px;
 margin: auto;
 float: none;
}
.dropContact {
 text-align: center;
 color: #f5f5f5;
 padding: 0 10px;
 border-right: 1px solid rgba(255,255,255,0.05);
}
#enquire-dropdown h2 {
 color: #fff;
 margin-bottom: 25px;
 width: 100%;
 text-align: center;
}
#enquire-dropdown #enquiry input[type="text"],
#enquire-dropdown #enquiry input[type="email"],
#enquire-dropdown #enquiry input[type="tel"],
#enquire-dropdown #enquiry textarea {
 padding: 7px 15px 7px 40px;
 -webkit-appearance: none;
 font-family: inherit;
 background: rgba(255, 255, 255, 0.03);
 color: #fff;
 font-size: 16px;
}
.required {
 font-size: 0.9em;
}
.closeBtn {
 position: absolute;
 left: 0;
 right: 10px;
 top: 10px;
 display: block;
 width: 25px;
 height: 25px;
 margin: 0 5px 0 auto;
 cursor: pointer;
 transition: 0.5s;
}
.closeBtn:hover {
 opacity: 0.5;
}
.closeBtn:before,
.closeBtn:after {
 content: "";
 width: 25px;
 height: 2px;
 background: #fff;
 position: absolute;
 top: 50%;
 right: 0;
}
.closeBtn:before {
 transform: rotate(-45deg);
}
.closeBtn:after {
 transform: rotate(45deg);
}

#enquire-dropdown * {
  color:#fff;
}

#enquire-dropdown .enqRow {
 position: relative;
}
#enquire-dropdown .contact .enqRow span {
 font-family: FontAwesome;
 position: absolute;
 top: 8px;
 left: 22px;
 font-size: 0.9em;
 font-weight: normal;
 color: #fff;
 text-rendering: auto;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}
#enquire-dropdown .name:before {
 content: "\f007";
}
#enquire-dropdown .question:before {
 content: "\f0e6";
}
#enquire-dropdown .clock:before {
 content: "\f017";
}
#enquire-dropdown ::-webkit-input-placeholder {
 color: #fff;
 opacity: 0.6;
}
#enquire-dropdown :-moz-placeholder {
 color: #fff;
 opacity: 0.6;
}
#enquire-dropdown ::-moz-placeholder {
 color: #fff;
 opacity: 0.6;
}
#enquire-dropdown :-ms-input-placeholder {
 color: #fff;
 opacity: 0.6;
}
.dropContact p a {
 color: #fff;
}
.dropContact p a:hover {
 color: #FC9600;
}
.cp-spinner {
 width:55px;
 height:55px;
 display:inline-block;
 position:relative;
 margin-top: 1em;
}
.cp-round:before {
 border-radius:50%;
 content:" ";
 width:55px;
 height:55px;
 display:inline-block;
 box-sizing:border-box;
 border-top:solid 3px #555;
 border-right:solid 3px #555;
 border-bottom:solid 3px #555;
 border-left:solid 3px #555;
 position:absolute;
 top:0;
 left:0
}
.cp-round:after {
 border-radius:50%;
 content:" ";
 width:55px;
 height:55px;
 display:inline-block;
 box-sizing:border-box;
 border-top:solid 3px var(--highlightTone);
 border-right:solid 3px transparent;
 border-bottom:solid 3px transparent;
 border-left:solid 3px transparent;
 position:absolute;
 top:0;
 left:0;
 animation:cp-round-animate 1s ease-in-out infinite
}
@keyframes cp-round-animate {
 0% {
  transform:rotate(0)
 }
 100% {
  transform:rotate(360deg)
 }
}
#loader-wrapper {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 height: 100%;
 height: 100vh;
 z-index: 9999999;
 overflow: hidden;
}
#loader {
 position: relative;
 display: block;
 width: 90%;
 height: 100%;
 margin: auto;
 max-width: 350px;
 border: 3px solid transparent;
 z-index: 1001;
 display: flex;
 flex-direction: column;
 justify-content:center;
 align-items: center;
}
#loader img {
 width:100%;
 height:auto;
 opacity:0;
 filter: alpha(opacity=0);
}
#loader img {
 -webkit-animation: load 4s alternate;
 animation: load 4s alternate;
}
@-webkit-keyframes load {
 0%   {
  opacity:0;
  filter: alpha(opacity=0);
 }
 30% {
  opacity:1;
  filter: alpha(opacity=100);
 }
 70% {
  opacity:1;
  filter: alpha(opacity=100);
 }
 100% {
  opacity:0;
  filter: alpha(opacity=0);
 }
}
@keyframes load {
 0%   {
  opacity:0;
  filter: alpha(opacity=0);
 }
 30% {
  opacity:1;
  filter: alpha(opacity=100);
 }
 70% {
  opacity:1;
  filter: alpha(opacity=100);
 }
 100% {
  opacity:0;
  filter: alpha(opacity=0);
 }
}
#loader-wrapper .loader-section {
 position: absolute;
 top: 0;
 width: 51%;
 height: 100%;
 background: #fff;
 z-index: 1000;
 -webkit-transform: translateX(0);
 -ms-transform: translateX(0);
 transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
 left: 0;
}
#loader-wrapper .loader-section.section-right {
 right: 0;
}
.loaded #loader-wrapper .loader-section.section-left {
 -webkit-transform: translateX(-100%);
 -ms-transform: translateX(-100%);
 transform: translateX(-100%);
 -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
 transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader-wrapper .loader-section.section-right {
 -webkit-transform: translateX(100%);
 -ms-transform: translateX(100%);
 transform: translateX(100%);
 -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
 transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader {
 opacity: 0;
 filter: alpha(opacity=0);
 -webkit-transition: all 0.3s ease-out;
 transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
 visibility: hidden;
 -webkit-transform: translateY(-100%);
 -ms-transform: translateY(-100%);
 transform: translateY(-100%);
 -webkit-transition: all 0.3s 1s ease-out;
 transition: all 0.3s 1s ease-out;
}



table + p {
 display:none;
}
.embed-container {
 position: relative;
 padding-bottom: 56.25%;
 height: 0;
 overflow: hidden;
 max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
 position: absolute;
 top: 0;
 left: 0;
 width: 100% !important;
 height: 100% !important;
}
.imageLayout {
 position: relative;
 padding: 4% 0 7%;
}
.imageLayout img:first-child {
 width: 90% !important;
}
.imageLayout img:last-child {
 position: absolute;
 right: 0;
 bottom: 4%;
 width: 40% !important;
 box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
}
.imageLayout:before {
 content: "";
 position: absolute;
 top: 0;
 bottom: 0;
 right: 15%;
 width: 30%;
 background: #FC9600;
 opacity: .8;
}
.twoColumn td:first-child .imageLayout img:first-child {
 margin-left: 10%;
}
.twoColumn td:first-child .imageLayout img:last-child {
 left: 0;
 right: auto;
}
.twoColumn td:first-child .imageLayout:before {
 left: 15%;
 right: auto;
}
#subBannerHome > .container:after,
.whiteSectionBefore:before {
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 bottom: -1px;
 background: url(/files/bottom.svg) bottom center;
 background-size: 100% 100% !important;
 height: 80px;
 pointer-events: none;
 z-index: 2;
}

.siteBottom section:not([class*="M_"]) + [class*="M_"]:after {
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 top: -1px;
 background: url(/files/top.svg) bottom center;
 background-size: 100% 100% !important;
 height: 80px;
 pointer-events: none;
}

.siteBottom section:not([class*="M_"]) + [class*="M_"] {
 /*! padding-top: 80px; */
}

.siteBottom section:last-child,
.itemSection {
 padding-bottom: 50px;
}

.siteBottom section.categorySection,
.siteBottom section.blogArticle {
 padding-bottom: 0;
}

footer:before {
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 top: -79px;
 background: url(/files/bottomFooter.svg) bottom center;
 background-size: 100% 100% !important;
 height: 80px;
 pointer-events: none;
 z-index: 2;
}


/* ---------------------------------- */
/* ----------- SUB BANNERS ---------- */
/* ---------------------------------- */


#subBanner {
 position:relative;
}

#subBanner .container {
 background: url(/thumbnaillarge/sl1.jpg);
 background-size: cover !important;
 background-position: center center !important;
 padding:5%;
 max-width: 100%;
}

#subBanner .container:after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: #444;
 opacity: 0.5;
}

/* ---------------------------------- */
/* ----------- CUSTOM CSS ----------- */
/* ---------------------------------- */


.link0 .siteBottom section {
 padding:80px 0px;
}


.textSection p, .siteContent p {
  width:100%;
}

#section2 .backgroundImage {
  background-attachment:fixed;
  background-size:cover;
}

.link0 #section3 .siteContent {
  background:var(--highlightTone);
  padding:4% 4%;
}

.link0 #section3 * {
  color:#fff;
}

.link0 .M_left_img .siteContent {
 width: 58%;
}

.link0 #section3 li {
  font-size:.9em;
}


.link0 #section3 li:before {
  color:#fff;
}

.link0 #section4 .siteContent {
 width: 70%;
}


.btn {
 display:inline-block;
 color:#fff;
 text-decoration:none;

 padding:1em 2em;
 border:1px solid transparent;
 transition:0.3s ease;
 font-family:Montserrat;
 text-transform:uppercase;
 letter-spacing:0.1em;
 background:var(--highlightTone);
}

.btn:hover {
 border:1px solid var(--highlightTone);
 background:none!important;
 color:var(--highlightTone);
 background:none;
}

.link1 #section1 .twoColumn td {
    max-width: 100%;
    background: #ececec;
    font-size: 1.1em;
    padding:2%;
}

#section4 .backgroundImage {
   background-position: 90% center;
}
/* ---------------------------------- */
/* ----------- MEDIA QUERIES ----------- */
/* ---------------------------------- */



@media screen and (max-width: 1300px) and (min-width: 1000px) {
 .sliderText {
  width:65%;
 }
}


#banner  ,
tagline *,
.mobileScrollStart,
.logo,
.logo2 img,
.logo img,
logo *,
.logo2 *.contact.contactContainer ,
.contact.contactContainer *#menu,
.topBar,
.topBar ,
#menu,
.fixedTopWrap,
.fixedTopWrap * {
 -moz-transition:0.5s;
 -webkit-transition:0.5s    -ms-transition:0.5s;
 -o-transition:0.5s;
 transition:0.5s;
}
.mobileScrollStart .fixedTopWrap {
 box-shadow: 0 5px 10px rgba(154,160,185,.05), 0 15px 40px rgba(166,173,201,.2);
}
.mobileScrollStart .fixedTopWrap,
.mobileScrollStart #banner {
 background:#fff;
 z-index:100;
}
.mobileScrollStart #menu {
 top:20px;
}
.mobileScrollStart #menu nav li a {
 color: #555;
 font-size:0.9em;
}
.mobileScrollStart #menu nav ul li a {
 color:#fff;
}
.mobileScrollStart .phone h3:last-child {
 color:#555;
}
.mobileScrollStart #banner .contactContainer .phone {
 font-size:1.1em;
 padding:10px 0px;
}
.mobileScrollStart #banner .logo {
 top:0px;
 display:block;
 position:relative;
 padding:10px 0px 10px 0px;
 MAX-width: 160px;
}

.mobileScrollStart .fixedTopWrap {
  border-top:2px solid var(--highlightTone);
}