/* ---------------------------------- */
/* ------ MAIN BODY OF WEBSITE ------ */
/* ---------------------------------- */
html {
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bgColor);
  font: 16px/1.6em var(--bodyFont);
  color: var(--fontColor);
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primaryDark);
}

*[data-token=""],
a[href=""], a[href*="$"] {
  display: none;
}

p {
  margin: 0.7em 0;
}

p[style*="text-align: center;"] {
  max-width:720px;
  margin:0.7em auto;
}


strong {
  font-weight:700;

}

icon {
  font-family: fontawesome;
}



/* ---------------------------------- */
/* ------------ HEADINGS ------------ */
/* ---------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--headingWeight);
  font-family: var(--headingFont);
  line-height: 1.2em;
  color: var(--headingColor);
    letter-spacing:-0.03em;
}


h1 {
  font-size: 3em;
  margin: .3em 0;
}

h2 {
  font-size: 2.2em;
  margin: .3em 0;
}


h1 + h2:after,
.blogSubHead h2:after {
  display: none;
}


h3 {
  font-size: 1.6em;
  margin: .3em 0;
}


h4 {
  font-size: 1.6em;
  margin: .3em 0;
}

h5 {
  color:var(--primary);
  font-size:1.1em;
  letter-spacing:0;
  margin-bottom:0.2em;
  font-weight:500;
}

h6 {
  font-weight: inherit;
  font-family: inherit;
  font-size: 1em;
  margin: 1em 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%;
}



.textSection + .photoSection .siteContent {
  padding-bottom:6em;
}

/* ---------------------------------- */
/* ---------- CONTENT AREA ---------- */
/* ---------------------------------- */
.siteTop, .siteBottom { 
  margin:0 auto;
}

.outerWrap {


}

.siteTop {
  padding-top:140px;
}

.siteBottom .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0 1%;
}

.siteContent, .searchContent {
  width: 100%;
  -ms-flex: 1 1 auto;
}

.buttonSection .siteContent, .buttonSection .container {
  padding: 0;
}

.desktop-hide, a.desktop-hide {
  display: none !important;
}

/* ---------------------------------- */
/* ------------ SIDEBAR ------------- */
/* ---------------------------------- */
.sidebar {

  width: 280px;
  padding: 2em 0.5em 15px;
  margin: 0px 15px 0 0;
  line-height: 1.5em;
  background: var(--opacity03);
}


.textSection .sidebar, .photoSection .sidebar {
  display: none;
}

.sidebar .item, #outerSidebar .item {
  width: 100%;
  margin-top: 15px;
}

.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: 1100px;
margin: auto;
display: flex;
justify-content: space-between;
}

.sidebar {
display: none;
}

#outerSidebar {
width: 200px;
padding: 0 15px;
flex-shrink: 0;
background: var(--opacity1);
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(--opacity03);
  display: inline-block;
}

.activeOuterSidebar .contentWrap {
  width: 100%;
  -ms-flex:0 1 auto;
}

@media (max-width:900px) {
  .activeOuterSidebar #outerSidebar {
    width: 200px;
  }
}

@media (max-width:700px) {
  .siteBottom.activeOuterSidebar {
    flex-direction: column;
  }
  .activeOuterSidebar #outerSidebar {
    width: 100%;
    order:2;
  }
}

/* -------------------------------------------------------------- */
/* - The following styles sidebar list, shop and blog sidemenus - */
/* -------------------------------------------------------------- */

.sidebar h2,
.blogSide .blogArchive::before,
.blogMenu .categoryMenu::before {
  font-size: 1.4em;
  font-family: var(--headingFont);
  font-weight: var(--headingWeight);
  color: var(--headingColor);
  display: block;
  margin-bottom: .5em;
}

.sidebar {
  font-size: .9em;
}
.sidebar ul {
  padding: 0;
  margin: 1.5em 0 1em;
  line-height: 1.2em;
}
.sidebar ul li {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul li a {
  display: block;
  width: 100%;
  padding: 3px;
  margin: 1px 0;
  text-decoration: none;
  color: var(--fontColor);
  transition: var(--transition);
}
.sidebar ul li a:hover {
  opacity: .6;
}
.sidebar ul li.current > a {
  color: var(--primary);
}
.sidebar ul li > a:hover {
  opacity: .6;
}
.sidebar ul li ul {
  padding: 0;
  margin: 0;
  font-size: .9em;
}
.sidebar ul li ul li {
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: block;
}
.sidebar ul li ul li ul {
  margin-bottom: 5px;
}
.sidebar ul > li > a {
  font-weight: bold;
}
.sidebar ul > li > ul > li > a {
  padding-left: 10px;
  font-weight: normal;
}
.sidebar ul > li > ul > li > a:before {
  content: '\f101';
  float: left;
  font-family: 'fontAwesome';
  font-size: 0.9em;
  margin-right: 5px;
}
.sidebar ul > li > ul > li > ul > li > a {
  padding-left: 20px;
  font-size: 0.9em;
}
.sidebar ul > li > ul > li > ul > li > a:before {
  content: '\f105';
  float: left;
  font-family: 'fontAwesome';
  font-size: 0.9em;
  margin-right: 5px;
}

/* ---------------------------------- */
/* -------- CONTACT DETAILS --------- */
/* ---------------------------------- */
.contact a:before, .contact div:before, .contact p: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;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.phone:before {
  content: "\f098";
  /*phone in square*/
  content: "\f095";
  /*phone*/
}


.mobile:before {
  content: "\f10b";
  /*mobile*/
}

.email:before {
  content: "\f2b7";
  /*envelope open*/
  content: "\f2b6";
  /*envelope open solid*/
  content: "\f199";
  /*envelope in square*/
  content: "\f003";
  /*empty envelope*/
  content: "\f0e0";
  /*solid envelope*/
}

.fax:before {
  content: "\f1ac";
  /*fax*/
}

.address:before {
  content: "\f278";
  /*map*/
  content: "\f279";
  /*map solid*/
  content: "\f124";
  /*location arrow*/
  content: "\f041";
  /*map marker*/
}

/*-----social icons-----*/


.ebay:before {
  content: "\f07a";
  /*facebook square*/

}



.facebook:before {
  content: "\f082";
  /*facebook square*/
  content: "\f09a";
  /*facebook f*/
}

.instagram:before {
  content: "\f16d";
  /*instagram logo*/
}

.twitter:before {
  content: "\f081";
  /*twitter square*/
  content: "\f099";
  /*twitter bird*/
}

.googlePlus:before {
  content: "\f0d4";
  /*google plus square*/
  content: "\f0d5";
  /*google plus*/
}

.pinterest:before {
  content: "\f0d3";
  /*pinterest square*/
  content: "\f0d2";
  /*pinterest circle*/
}

.linkedIn:before {
  content: "\f08c";
  /*linkedIn square*/
  content: "\f0e1";
  /*linkedIn in*/
}

.youTube:before {
  content: "\f16a";
  /*youtube play*/
  /*   content: "\f166"; */
  /*youtube square*/
  /*   content: "\f167"; */
  /*youtube normal*/
}

.blog:before {
  content: "\f27a";
}

.flickr:before {
  content: "\f16e";
  /*flicker dots*/
}

/*-----social colours-----*/
/*.facebook {
background: #49639E;
}

.instagram {
background: #8a3ab9;
}

.twitter {
background: #5EA9DD;
}

.googlePlus {
background: #DD4B39;
}

.pinterest {
background: #BD081C;
}

.linkedIn {
background: #0177B5;
}

.youTube {
background: #E22D24;
}

.flickr {
background: #ff0084;
}*/

/* ---------------------------------- */
/* -------- HR line styling --------- */
/* ---------------------------------- */
hr {
  border: 0;
  height: 1px;
  color: rgba(var(--opacityColor),.1);
  background-color: rgba(var(--opacityColor),.1);
  width: 100%;
}

/* ---------------------------------- */
/* ----------- NAVIGATION ----------- */
/* ---------------------------------- */

#menu {
  z-index: 100;
  font-family:var(--headingFont);
}


#menu nav {
  max-width: 100%;
  width: 100%;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  align-items:center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 5px;
}



#menu nav li {
  list-style: none;
  float: left;
  display: inline-block;
}

#menu nav li#link53,
footer nav li#link4b{
  display:none;
}

#menu > nav > li {
    margin: 0px 8px;
}

#menu nav li a {
  position:relative;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  padding: 10px 12px;
  color:var(--fontColor);
  font-size: 1em;
  border-bottom: var(--buttonBorderWidth) solid transparent;
  transition:0.3s ease;
  font-weight:700;

}




#menu nav li a:hover,
#menu nav .parent:hover > a,
#menu nav .current > a {
  background:var(--primaryLight);
  border-radius:1em;
  color:var(--primary);
}



@media all and (min-width:700px) {
  .scrollStart #menu {
    position:relative;
    top:0;
  }

/*   .scrollStart #menu nav .parent:hover > a,
  .scrollStart #menu nav li a:hover,
  .scrollStart #menu nav .current > a {
    border-bottom: var(--buttonBorderWidth) solid var(--fontColor);
  }


.scrollStart .contactContainer *:before {
  color:var(--fontColor)!important;
}
 */
}


#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 li a:hover {
  border-bottom:2px solid transparent;
}

#menu nav ul {
  position: absolute;
  width: 220px;
  margin: 0;
  padding: 0;
  display: none;
  font-size: .8em;
}
#menu nav ul li {
  width: 100%;
  display: inline-block;
}
#menu nav ul li a {
  opacity:0.7;
  color:var(--fontColor);
  padding: 5px 10px;
  line-height: 1.2em;
  text-transform:initial;
  letter-spacing:0em;
}
#menu nav ul li a:hover {
  color:var(--primary);
  opacity:1;
}
#menu .subContainer {
  margin-top:10px;
  background: #f7f7f7;
  position: relative;
  display: inline-block;
  padding: 10px;
  width: 100%;
  border-radius:0.6em;
}


@media all and (min-width:700px) {

}
/* ---------------------------------- */
/* --------- PHOTO SECTION ---------- */
/* ---------------------------------- */
.item {
  display:block;
}

.item .overlayImg {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  overflow: hidden;
}

.overlayImg .contentImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  image-rendering: auto;
}

.overlayImg img.contentImg {
  object-fit: cover;
}

.contentImgRow .caption {
  font-size: .9em;
  margin-top: 5px;
}

.contentImgRow .caption:empty {
  display: none;
}

/*------------------------------------*/
/*----------- ENQUIRY FORM -----------*/
/*------------------------------------*/



.enqRow.checkbox {
  width:20%!important;
}

.enquiryForm input.datepicker {
  margin-bottom:0;
}
.enquiryForm .enqRight.calendar {
  position:relative;
}
.enquiryForm .enqRight.calendar:before {
  content:"\f073";
  position:absolute;
  top:0;
  right:0;
  background:#555;
  color:#fff;
  font-family:"fontAwesome";
  font-size:1em;
  height: 100%;
  width: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid #ccc;
  font-family: fontawesome;
  pointer-events: none;
}

.enquiryForm input.datepicker:hover .enqRight.calendar:before {
  background:#f7f7f7;
  color:#222;
}


.enquiryForm {
  width: 100%;
  padding: 0;
  margin: 1em auto;
  line-height: 1.4em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;


  color: var(--inputColor);
}
.enquiryForm.enqEmbed {
  color: var(--formColor);
  max-width: 100%;
  padding: 20px 20px;
  max-width:900px;
  background:#fff;
  box-shadow:var(--boxShadow);
}



.enquiryForm .enqHeader {
  font-size: 1.6em;
  font-family: var(--headingFont);
  font-weight: var(--headingWeight);
  padding: 1em 0.5em 1.5em;
  width: 100%;
  text-align:center;
}
.enquiryForm .itemEnqDetails {
  width: 100%;
}
.enquiryForm .enqRow {
  width: 100%;
  overflow: hidden;
  padding: .3em .5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}
.enquiryForm .enqRow.textarea {
  -ms-flex-align: start;
  align-items: flex-start;
}
.enquiryForm .enqRow.half{
  width: 50%;
  display: inline-block;
}

.enquiryForm .enqRow.full{
  width: 100%;
  display: inline-block;
}

.enquiryForm .enqLeft {
  padding: 0 5px;
  width: 100%;

}
.enquiryForm .enqRight {
  width: 100%;
}
.enquiryForm .enqRow.half .enqLeft,
.enquiryForm .enqRow.half .enqRight {
  width: 100%;
}
.enquiryForm .button {
  width: 100%;
  -webkit-appearance: none;
}
.enquiryForm textarea {
  height: 80px;
}
.enquiryForm input[type="radio"] {
  width: 15px;
  -webkit-appearance: radio;
  margin: 0;
  padding: 0;
}
.enquiryForm input[type="checkbox"] {
  -webkit-appearance: checkbox;
  width: 15px;
  margin: 0;
  padding: 0;
}
.enquiryForm input[type="date"] {
  font-family: inherit;
}
.enquiryForm input[type="time"] {
  font-family: inherit;
}
.enquiryForm input[type="submit"] {
  margin-bottom: 10px;
  cursor: pointer;
  color:#fff;
  border:1px solid #fff;
}

.enquiryForm input[type="submit"]:hover {
  color:var(--primary);
}

.enquiryForm select {
  width: 100%;
}
.enquiryForm .checkbox .enqRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.enquiryForm .checkbox .enqRight input[type=checkbox] {
  visibility: hidden;
  display: none;
}
.enquiryForm .checkbox .enqRight input[type=checkbox]:checked + label icon {
  border-color: var(--fontColor);
}
.enquiryForm .checkbox .enqRight input[type=checkbox]:checked + label icon:after {
  opacity: 1;
}
.enquiryForm .checkbox .enqRight input[type=checkbox]:hover + label icon:after {
  opacity: .6;
}
.enquiryForm .checkbox .enqRight label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.enquiryForm .checkbox .enqRight label icon {
  display: inline-block;
  cursor: pointer;
  position: relative;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  border-radius: var(--borderRadius);
  border: 1px solid rgba(0,0,0,0.6);
  transition: all 0.3s ease;
  margin-right: .5em;
  color:var(--fontColor);
}
.enquiryForm .checkbox .enqRight label icon:after {
  opacity: 0;
  transition: var(--transition);
  content: '';
  position: absolute;
  width: 10px;
  height: 6px;
  background: transparent;
  top: 4px;
  left: 3px;
  border: 3px solid var(--fontColor);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}
.enquiryForm .checkbox .enqRight label:hover icon {
  opacity: .6;
}
.enquiryForm .checkbox .enqRight label:hover icon:after {
  opacity: .6;
}
.enquiryForm .radioWrap {
  -ms-flex-align: start;
  align-items: flex-start;
}
.enquiryForm .radioWrap .enqRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.enquiryForm .radioWrap .enqRight .radioBtn {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: .2em 0;
}
.enquiryForm .radioWrap .enqRight .radioBtn input[type=radio] {
  visibility: hidden;
  display: none;
}
.enquiryForm .radioWrap .enqRight .radioBtn input[type=radio]:checked + label icon {
  border-color: var(--cta);
}
.enquiryForm .radioWrap .enqRight .radioBtn input[type=radio]:checked + label icon:after {
  opacity: 1;
}
.enquiryForm .radioWrap .enqRight .radioBtn input[type=radio]:hover + label icon:after {
  opacity: .6;
}
.enquiryForm .radioWrap .enqRight .radioBtn label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.enquiryForm .radioWrap .enqRight .radioBtn label icon {
  display: inline-block;
  cursor: pointer;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 0;
  left: 0;
  border: 1px solid rgba(var(--opacityColor),.2);
  background: var(--inputBG);
  transition: var(--transition);
  margin-right: .5em;
}
.enquiryForm .radioWrap .enqRight .radioBtn label icon:after {
  opacity: 0;
  transition: var(--transition);
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cta);
  border-radius: 50%;
  top: 4px;
  left: 4px;
}
.enquiryForm .radioWrap .enqRight .radioBtn label:hover icon {
  opacity: .6;
}
.enquiryForm .radioWrap .enqRight .radioBtn label:hover icon:after {
  opacity: .6;
}

/* Enquire Only Item  */
.enqItem .enquiryForm {
  max-width: 500px;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=date],
input[type=time],
input[type=phone],
input[type=password],
textarea {
  transition: var(--transition);
  background:none;
  color: var(--fontColor);
  outline: none;
  border: 1px solid rgba(var(--opacityColor),.5);
  border-radius: var(--borderRadius);
  font-size: 1em;
  font-family: inherit;
  padding: var(--inputPadding);
  width: 100%;
}
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,
textarea:hover {
  outline: none;
  border-color: rgba(var(--opacityColor),.8);
}
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,
textarea:focus {
  outline: none;
  border-color: rgba(var(--opacityColor),3);
}

/* Custom styling for <select> */
.select {
  position: relative;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: rgba(var(--opacityColor),.2);
  color: var(--inputColor);
  outline: none;
  border: 1px solid rgba(var(--opacityColor),.2);
  border-radius: var(--borderRadius);
  width: 100%;
}

select::-ms-expand {
  display: none;
}

.select:after {
  content: "\f078";
  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;
  font-family: 'fontAwesome';
  pointer-events: none;
  border-radius: 0 var(--borderRadius) var(--borderRadius) 0;
  color: var(--fontColor);
  background: rgba(var(--opacityColor),.1);
  border: 1px solid rgba(var(--opacityColor),0);
}
.select select {
  -webkit-appearance: none;
  background: var(--inputBG);
  border: 0;
  line-height: 1em;
  display: inline-block;
  width: 100%;
  padding: var(--inputPadding);
  outline: 0;
  font-size: 1em;
  border-radius: var(--borderRadius);
}

.select select option{
  color: var(--black);
  background: var(--white);
}

.select:hover {
  outline: none;
  border-color: rgba(var(--opacityColor),.6);
}
.select:hover::after {
  color: var(--fontColor);
}
.select:active:after {
  color: var(--headingColor);
  background: rgba(var(--opacityColor),.2);
  border: 1px solid rgba(var(--opacityColor),.1);
}
.select:focus {
  border-color: var(--primaryDark);
}
.select:focus:after {
  background: var(--primaryDark);
  border-color: var(--primaryDark);
}

/*-----Placeholder Styles-----*/
::-webkit-input-placeholder {
  color: var(--fontColor);
  opacity: 0.6;
}

:-moz-placeholder {
  color: var(--fontColor);
  opacity: 0.6;
}

::-moz-placeholder {
  color: var(--fontColor);
  opacity: 0.6;
}

:-ms-input-placeholder {
  color: var(--fontColor);
  opacity: 0.6;
}

.grecaptcha-badge {
  z-index: 900;
  bottom: 60px !important;
}

/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */

footer {
  width: 100%;
  font-size: .85em;
  position: relative;
 color:var(--fontColor);
}

footer .logo {
  max-width:140px!important;
  padding:0px;
  margin:0;
}


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: 1em 1em;
}

#footerTop .container {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  flex-direction:row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: flex-start;
  flex-wrap: wrap;
  padding:4em 1em;
}

#footerBottom .container{
  padding:0em 0em;
}

/*-------- FOOTER TEXT STYLES ---------*/


#footerBottom a {
  color: inherit;
  opacity: 0.5;
  text-decoration: none;
}
#footerBottom a:hover {
  color: inherit;
  opacity: 1;
}

/*------------ FOOTER MENU ------------*/
footer nav {
  width: 60%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  margin-bottom: 0.2em;
}

#footerBottom nav {
  display:none;
}


footer nav li {
  list-style: none;
  display: inline-block;
}

footer nav ul li {
  display:none;
}

footer nav ul {
  display:none;
}


footer nav li a {
 text-decoration: none;
 padding: 0;
 display: inline-block;
  transition:0.3s ease;
  color:var(--fontColor);
}

footer nav li a:hover {
  text-decoration:underline;
}

.footerRight {
  width: 100%;
  text-align: center;
  padding:1.5em 0em;
  display:flex;
  justify-content:space-between;
}




/* ---------------------------------- */
/* ---------- CUSTOM FOOTER --------- */
/* ---------------------------------- */



#footerBottom .container {
  border-top:1px solid rgba(30,30,30,0.2);
  display:flex;
  flex-direction:column;
}



#footerTop  ul {
  padding:0;
  margin:0;
}

footer  [class*='col-'] {
 /*! padding:0em 1em; */
}


footer .logo {
  position:relative;
  top:0;
  display:block;
}

footer .email {
  text-decoration: none;
}

footer .phone:before,
footer .email:before,
footer .address:before{
  display:none;
}

footer .contact strong {
  display:block;
}




footer .email {
  word-break:break-word;
}

footer .col-4.contactBox *:not(.-ctaBtn-) {
 color:var(--fontColor);
}


footer .contact a.iconOnly {
  margin-top:10px;
  background:var(--cta);
}



footerContact {
  display:flex;
  flex-direction:row;
}


footer a {
  text-decoration:none;
   color:var(--fontColor);
}

footer li {
 list-style: none;
}

#footerTop .container > div > li > a,
footer h5  {
 font-size:1.4em;
 font-weight:var(--headingWeight);
 font-family:var(--headingFont);
 padding-top:0;
 margin:0!important;
 padding-bottom:0.5em;
 text-decoration:none;
 text-transform:initial;
 letter-spacing:0;
 display:inline-block;
 text-decoration:none;
  color:var(--headingColor);
}


footer h5 {
    display:block;
}


footer .enquire-trigger {
  margin-top:10px;
}



footer iframe {
  margin-top:2em;
}

.footerLogos {
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  padding:1em;
}

.footerLogos img {
  height:40px;
  object-fit:contain;
  padding:5px;
}

.footerLogos img:not(:last-child) {
  margin-right:10px;
}
/* ---------------------------------- */
/* ------------- TO TOP ------------- */
/* ---------------------------------- */
#toTop {
  position: fixed;
  bottom: 70px;
  left: 20px;
  z-index: 900;
  outline: none;
  color: var(--cta);
  background: var(--primaryLight);
}
#toTop:before {
  content: "\f077";
}

/* ---------------------------------- */
/* ---------  list styling  --------- */
/* ---------------------------------- */
.siteBottom .siteContent ul {
  list-style:none;
  margin: 0;
  padding: 0 0 0 0em;
}
.siteBottom .siteContent ul li {
  /*! margin-bottom: 0.5em; */
  position: relative;
  padding-left:15px;
}
.siteBottom .siteContent ul li:before {
  content: "\f111";
  /* dots */
  /*   content: "\f054"; */
  /* chevron-right */
  /*   content: "\f0da"; */
  /* caret-right */
  /*   content: "\f00c"; */
  font-family: FontAwesome;
  font-size: 0.5em;
  margin-right: 0px;
  color: var(--primary);
  position: relative;
  top: 0px;
  left: -10px;

}

.M_full_img .siteContent ul li:before, 
.M_full_img a{
  color:var(--white)!important;
}

.siteBottom .siteContent ul[style="list-style-type: circle;"] li:before,
.siteBottom .siteContent ul[style="list-style-type: disc;"] li:before,
.siteBottom .siteContent ul[style="list-style-type: square;"] li:before,
.siteBottom .siteContent ul[style="list-style-type: none;"] li:before {
  display: none;
}

.siteBottom .siteContent ul[style="list-style-type: none;"] .fontAwesomeIcon {
  position: absolute;
  left: -1.3em;
}


/*-----------------------------------*/
/*-------------- GRID ---------------*/
/*-----------------------------------*/
.grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.grid:after {
  content: "";
  display: table;
  clear: both;
  width: 100%;
}
.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:  var(--gridSpacing) calc(var(--gridSpacing) / 2);
}

.col-1,
#outerSidebar .blog-widget .blog-widget-article,
.sidebar .blog-widget .blog-widget-article {
  width: 100%;
  width: calc(100% - var(--gridSpacing));
}

.col-2,
section[class*="_img"]:not([class*="full"]) .col-4{
  width: 50%;
  width: calc(50% - var(--gridSpacing));
}

.col-3,
.cartThumb.category,
section[class*="_imgC"] .col-6,
.blog-widget .blog-widget-article {
  width: 33.33333%;
  width: calc(33.33333% - var(--gridSpacing));
}

.col-3x2 {
  width: 66.66%;
  width: calc(66.66% - var(--gridSpacing));
}

.col-4,
.link17 .col-3,
.contentImgRow .item,
.cartThumb.item
{
  width: 25%;
  width: calc(25% - var(--gridSpacing));
}

.contentImgRow .item {
  width: 25%;
  width: calc(25% - var(--gridSpacing));
}

.col-4x3 {
  width: 75%;
  width: calc(75% - var(--gridSpacing));
}

.col-5 {
  width: 20%;
  width: calc(20% - var(--gridSpacing));
}

.col-5x2 {
  width: 40%;
  width: calc(40% - var(--gridSpacing));
}

.col-5x3 {
  width: 60%;
  width: calc(60% - var(--gridSpacing));
}

.col-5x4 {
  width: 80%;
  width: calc(80% - var(--gridSpacing));
}

.col-6 {
  width: 16.666%;
  width: calc(16.666% - var(--gridSpacing));
}

.col-8 {
  width: 15%;
  width: calc(15% - var(--gridSpacing));
}

.col-6x5 {
  width: 83.33%;
  width: calc(83.33% - var(--gridSpacing));
}

/* ---------------------------------- */
/* ------- DYNAMIC BACKGROUNDS ------ */
/* ---------------------------------- */

.dark{
  color: var(--fontColor);
}

.light {
  color: var(--fontColor);
}

.siteBottom section * {
  box-sizing: border-box;
}

.siteBottom section {
  position: relative;
}


.backgroundImage {
  position: absolute;
  background-size: cover;
  background-position: center center;
}


section[class*="M_full"].dark .backgroundImage:after {  
  background: rgb(var(--overlayRGB));
  opacity: 0;
}

.link0 section[class*="M_full"].dark .backgroundImage:after {  
  background-position:fixed;
  opacity:0;
}

.link0 section[class*="M_full"].dark .backgroundImage {  
  background-attachment:fixed;
}

/* section[class*="M_full"].light .backgroundImage:after {  
background: rgb(var(--overlayRGB));
opacity: 0.85;
}
*/
section[class*="M_left"].dark .backgroundImage:after {  
  background: linear-gradient(to right, rgba(var(--overlayRGB),0) 0%,rgba(var(--overlayRGB),.95) 60%,rgba(var(--overlayRGB),0.95) 100%);
}

section[class*="M_right"].dark .backgroundImage:after {  
  background: linear-gradient(to left, rgba(var(--overlayRGB),0) 0%,rgba(var(--overlayRGB),.95) 60%,rgba(var(--overlayRGB),0.95) 100%);
}

section[class*="M_left"].light .backgroundImage:after {  
  background: linear-gradient(to right, rgba(var(--overlayRGB),0) 0%,rgba(var(--overlayRGB),.95) 60%,rgba(var(--overlayRGB),0.95) 100%);
}

section[class*="M_right"].light .backgroundImage:after {  
  background: linear-gradient(to left, rgba(var(--overlayRGB),0) 0%,rgba(var(--overlayRGB),.95) 60%,rgba(var(--overlayRGB),0.95) 100%);
}


/*-- full width image --*/

.link0 .M_full_img .backgroundImage {
  top: 0;
  left: 0;
  right: 0; 
  bottom: 0%;
  height:45%;
}

.M_full_img .backgroundImage {
  top: 0;
  left: 0;
  right: 0; 
  bottom: 0%;
  height:100%;
}


/*-- image left --*/

.M_left_img .backgroundImage {
  top: 0; left: 0; bottom: 0; 
  width: 50%;
}

.M_left_img .siteContent {
  max-width: 45%;
  margin: 2em 0 2em auto;
  
}

section.M_left_img {
  background:var(--primary);
}

section.M_left_img * {
  color:var(--white);
}
/*-- image right --*/

.M_right_img .backgroundImage {
  top: 0; right: 0; bottom: 0; 
  width: 50%;
}

.M_right_img .siteContent {
  max-width: 45%;
  margin: 0 auto 0 0;
}

/*-- image left cover --*/

.M_left_imgC .backgroundImage {
  top: 0; left: 0; right: 0; bottom: 0; 

}

.M_left_imgC .siteContent {
  max-width: 45%;
  margin: 0 0 0 auto;
}



/*-- image right cover --*/

.M_right_imgC .backgroundImage {
  top: 0; left: 0; right: 0; bottom: 0; 
}

.M_right_imgC .siteContent {
  max-width: 45%;
  margin: 0 auto 0 0;
}

@media all and (max-width: 900px){

  section[class*="M_left"].dark .backgroundImage:after {  
    background: linear-gradient(to right, rgba(var(--overlayRGB),.8) 0%,rgba(var(--overlayRGB),.95) 60%,rgba(var(--overlayRGB),0.95) 100%);
  }

  section[class*="M_right"].dark .backgroundImage:after {  
    background: linear-gradient(to left, rgba(var(--overlayRGB),0.8) 0%,rgba(var(--overlayRGB),.95) 60%,rgba(var(--overlayRGB),0.95) 100%);
  }

  section[class*="M_left"].light .backgroundImage:after {  
    background: linear-gradient(to right, rgba(var(--overlayRGB),.8) 0%,rgba(var(--overlayRGB),.95) 60%,rgba(var(--overlayRGB),0.95) 100%);
  }

  section[class*="M_right"].light .backgroundImage:after {  
    background: linear-gradient(to left, rgba(var(--overlayRGB),.8) 0%,rgba(var(--overlayRGB),.95) 60%,rgba(var(--overlayRGB),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: 350px;
  }


  .M_left_imgC .backgroundImage {
    background-position: 90% 50%;
  }  

  .M_right_imgC .backgroundImage {
    background-position: 10% 50%;
  } 

  .M_right_img .siteContent, .M_left_img .siteContent {
    max-width: 100%!important;


  }
}

/* ---------------------------------- */
/* -------- GRAPHICAL BUTTONS ------- */
/* ---------------------------------- */
.button,
.blog-widget-article-content-button,
h6 a {
  display: inline-block;
  cursor: pointer;
  line-height: 1em;
  padding: 0.8em 1.6em;
  outline: none;
  border-radius: var(--buttonBorderRadius);
  text-decoration: none;
  font-weight: normal;
  transition: all .3s ease;
  font-family:var(--headingFont);
  text-align:center;
}

* a.iconOnly {
  padding: 0.8em 0em;
  width: 2.8em;
}


a.iconOnly:before {
  margin-right:0;
}

/*cta button*/
.-ctaBtn- {
  position:relative;
  outline: none;
  transition: var(--transition);
  color: var(--white);
  border: var(--buttonBorderWidth) solid var(--primary);
  letter-spacing:0;
  background:var(--primary);

}


.book.-ctaBtn- {
    min-width:12em;
}



.-ctaBtn-:hover,
h6 a:hover {
  background: transparent;
  border: var(--buttonBorderWidth) solid var(--primary)!important;
}

h6 a {
  position:relative;
  padding:0;
  margin-top:1em;
  text-decoration:underline;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  padding:0.8em 1.6em;
}



/*primary button*/
.-primaryBtn- {
  outline: none;
  transition: var(--transition);
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
}
.-primaryBtn-:hover {
  color: var(--white);
  background: var(--cta);
  border-color: var(--cta);
}

/*secondary button*/
.-secondaryBtn-,
.blog-widget-article-content-button,
h6 a,
.cartThumbs .cartThumb .info:after {
  outline: none;
  border: var(--buttonBorderWidth) solid transparent;
  color: var(--white);

}
.-secondaryBtn-:hover,
.blog-widget-article-content-button:hover,
h6 a:hover,
.cartThumbs.grid .cartThumb:hover .info:after,
.blog-widget .blog-widget-article:hover .blog-widget-article-content-button,
.blogPost:hover .blogPostDetails a.blogBtn.-secondaryBtn-,
.butFrame:hover .-secondaryBtn- {
  color: var(--cta);
  background: transparent;
  border-color: var(--cta);
}

/*inverted button*/
.-invertedBtn- {
  background:none;
  border: var(--buttonBorderWidth) solid var(--white);
  color: var(--white);
}
.-invertedBtn-:hover {
  color: var(--primary);
  background: var(--white);
  border: var(--buttonBorderWidth) solid var(--white);
}

/*---- Graphical Button ----*/
.butFrame {
  cursor: pointer;
  outline: none;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  color: var(--cardTextColor);
  background: var(--cardBG);
  border: var(--cardBorder);
  border-radius:1em;
}

.butFrame:hover {
  transform: var(--cardTransformHover);
  background: var(--cardBGHover);
  color: var(--cardTextColor);
}

.butFrame .butHeading {
  z-index:1;
  line-height: 1em;
  width:100%;
  margin:0 auto;
  text-align:left;
  letter-spacing:-0.02em;
  font-size:1.6em;
  color: var(--white);
  font-family: var(--headingFont);
  font-weight: var(--headingWeight);
  transition:0.3s ease;
  margin-bottom:0.5em;
  
}

.butFrame:hover .butHeading {
  transform:translateY(-10px);
}


.butFrame .butImage {
  width: 100%;
  height: 0;
  padding-bottom:90%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.butFrame .butTextWrap {
  padding:1em;
  position: absolute;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  text-align:left;
  transition:0.3s ease;
  background: rgb(37,132,165);
  background: linear-gradient(0deg, rgba(37,132,165,0.675490264465161) 0%, rgba(37,132,165,0.544) 33%, rgba(37,132,165,0) 69%); 
}

.butFrame:hover .butTextWrap {
    background: rgb(0,105,135);
  background: linear-gradient(0deg, rgba(0,105,135,0.675490264465161) 0%, rgba(0,105,135,0.544) 33%, rgba(0,105,135,0) 69%); 
}


.butReadMore {
  color:var(--white);
}

.butFrame:hover .butImage:after {
  opacity:0.1;
}

/*---- SVG Button ----*/
.svgButFrame {
 cursor: pointer;
 text-decoration: none;
 position: relative;
 overflow: hidden;
 padding: 25px 25px;
 font-size: 1.1em;
 -webkit-transition: .75s;
 transition: .75s;
 border-radius:var(--buttonBorderRadius);
 color:var(--fontColor);
  box-shadow:.0px 4px 60px 0px rgba(25.000000000000004, 49, 57, 0.1);
}

.svgButFrame[href="#"] {
 pointer-events: none;
}

.svgButFrameInner {
 position:relative;
 transition: 0.2s;
}

.svgButFrame:hover {
 background:#fff;
 transform: translatey(-5px);
 color:#222;
}

.svgButFrame:hover .svgButHeading,
.svgButFrame:hover .svgButFrameInner {
 color:var(--fontColor);
}

.svgButHeading {
 margin: 0.5em auto;
 font-family:var(--headingFont);
 color:var(--headingColor);
 font-weight:600;
 font-size:1.25em;
 min-height:0px;
 display:flex;
 align-items:flex-start;
 justify-content:flex-start;
 line-height:1.2em;
 letter-spacing:-0.03em;

}

.svgButText {
  font-size:0.75em;
  min-height:0px;
  line-height:1.6em;
}

.svgButFrame .butReadmore {
 font-size:0.9em;
 font-weight:400;
 color:var(--primaryDark);
  margin-top:1em;
  font-family:var(--headingFont);
}
.svgButFrame .butReadmore:after {
 content:"\f054";
 font-family:"fontAwesome";
 font-size:0.7em;
 margin-left:10px;
 font-weight:400;
}
.iconWrap {
 position: relative;
 top:0;
 bottom:0;
 left:0;
 right:0;
 font-size:1em;
 height: 1em;
 width: 1em;
 font-size: 50px;
  background:var(--primary);
  border-radius:0.2em;
  margin-bottom:1em;
}

/* 
.iconWrap:before {
 content:"";
 position:absolute;
 z-index:-1;
 top:0px;
 bottom:0;
 left:0px;
 right:0;
 background:var(--primaryLight);
 width:90px;
 height:90px;
 border-radius:50%;
 transition:0.3s ease;
} 
 */


/* SVG ICON STYLING */
symbol *, .icon, .icon use{fill: currentColor;}

/* delete class styling below you want to be affected by hover effects*/
.st0{color:#FFFFFF;}

/* SIZE & HOVER */
.icon{
font-size:1em;/* control icon size */
height: 1em;
width: 1em;
overflow: hidden;
color:#666;
}

.icon:hover{color:#111;} 




@-webkit-keyframes spin {
 from {
  -webkit-transform: rotateY(0deg);
 }
 to {
  -webkit-transform: rotateY(360deg);
 }
}


.svgButFrame:hover .icon   {
 -webkit-animation: spin 1s;
}
.svgButFrame.aos-init:nth-child(1)  {
 transition-delay: .25s;
}
.svgButFrame.aos-init:nth-child(2)  {
 transition-delay: .5s;
}
.svgButFrame.aos-init:nth-child(3)  {
 transition-delay: .75s;
}
.svgButFrame.aos-init:nth-child(4)  {
 transition-delay: 1s;
}
.svgButFrame.aos-init:nth-child(5)  {
  transition-delay: 1.25s; }

.svgButFrame.aos-init:nth-child(6)  {
 transition-delay: 1.75s;
}
.svgButFrame.aos-init:nth-child(7)  {
 transition-delay: 2s;
}
.svgButFrame.aos-init:nth-child(8)  {
 transition-delay: 2.25s;
}



/* ---------------------------------- */
/* ---------- VIEW CART BTN --------- */
/* ---------------------------------- */
#banner #viewCart {
  color:var(--white);
  display:flex;
  align-items:center;
  overflow: hidden;
  z-index: 1000;
  text-transform:uppercase;
  font-weight:700;
  font-size:0.9em;
}

#banner #viewCart .mobile-hide {
  display:none;
}


#banner #viewCart:hover {
  background:var(--primaryDark);
  color:#fff;
}

#banner #viewCart:last-child {
  display:none;
}

#viewCart:before, .shopOnline:before {
  content: "\f290";
  /*bag*/
  content: "\f07a";
  /*cart*/
  font-family: fontAwesome;
  margin-right: .5em;
}

/* ---------------------------------- */
/* ---------- FIXED TO TOP ---------- */
/* ---------------------------------- */
.fixedTopWrap {
  position: fixed;
  padding-top: 40px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  color: var(--white);
  transition: var(--transition);
}


@media all and (min-width:700px) {
  .scrollStart .fixedTopWrap {
    padding-top: 0px;
    color: var(--fontColor);
    background: var(--white)!important;
    box-shadow: 0 10px 15px -10px rgba(0,0,0,0.2);
  }
}

.bannerTop {
  position: relative;
  z-index: 111;
  color: var(--white);
  background-color: var(--primary);
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 1.25em;
  text-shadow: 0 0 5px rgba(255,255,255,.25);
}

.bannerTop .banner-text {
  color: red;
  text-transform: uppercase;
  font-size: 1.1em;
  animation: puls-opacity 3s linear infinite alternate;
}


@keyframes puls-opacity {
  0%   {opacity: 1;}
  30%  {opacity: 1;}
  50%  {opacity: .5;}
  70% {opacity: 1;}
  100% {opacity: 1;}
}

/* ---------------------------------- */
/* ------------- BANNER ------------- */
/* ---------------------------------- */

#banner {
  position:relative;
  z-index:1;
  transition:var(--transition);
}


#banner .container {
  display:flex;
  justify-content: space-between;
  align-items: center;
  max-width:none;
  width: 96%;
}

.logo {
  position: relative;
  display: block;
  width: 180px;
  padding: 20px 10px;
  transform-origin: 0 50%;
  transition: var(--transition);
}

.scrollLogo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.logo svg,
.logo object,
.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.logo:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media all and (min-width:700px) {
  .scrollStart #banner  {
     margin-top:0;
    background:var(--white);
  } 
}

.contactContainer > *:not([class*="Btn-"]) {color: var(--white);}

.contactContainer > a:not([class*="Btn-"]):hover {color: var(--white);}

.contactContainer *:before {
  color:var(--white)!important;
  font-size:1.2em;
}

.contactContainer .phone {
  background:var(--cta);
  padding:0.8em 1.6em;
  border:2px solid var(--cta);
  line-height:1em;
  border-radius:var(--borderRadius);
  display: inline-block;}

.contactContainer div {
  /*! padding: 10px; */
}

.contact.contactContainer * {
  text-decoration:none;  
}

#banner .contactContainer {
  display: flex;
}

#banner .contactContainer a {
  padding: 10px;
  margin: 0 5px;
}


#banner .button.superBtn {
  color: red;
}

/* removes mobile and tablet phone number link styling */
div.phone a,
div.mobile a {
  margin: 0;
  padding: 0;
  color: inherit;
  background:none;
  border: none;
  text-decoration: none;
  font-size: 1em;
}


.topBar {
  display:none;
  position:absolute;
  z-index:2;
  top:0px;
  left:0px;
  right:0px;
  z-index:100;
  width:100%;
  font-size:1em;
  font-weight:400;
  color:var(--fontColor);
  border-bottom:1px solid rgba(30,30,30,0.1);
}

.topBar a {
 color:var(--fontColor);
  text-decoration:none;
}

.topBar div:before,
.topBar a:before {
 color:var(--primary);
}

.topBar .container {
  display:flex;
  position:relative;
  box-sizing:border-box;
  justify-content: space-between!important;     
  max-width:none;
  font-size:0.95em;
  max-width:var(--containerWidth);
  padding:12px 0px;
  max-width:95%;
}


.topBar div:last-child {
  display:flex;
}

.topBar .phone {
  margin-right:2em;
}

.bookNow {
  background:var(--primary);
}

.phoneFixed {
  position:fixed;
  z-index:10;
  bottom:2%;
  right:2%;
  background:var(--primaryLight);
  padding:1em 3em;
  border-radius:1em;
  font-family:var(--headingFont);
  text-align:center;
  font-size:1.2em;
  box-shadow:var(--boxShadow);
}

.phoneFixed span {
  display:block;
  font-weight:700;
  letter-spacing:0.05em;
  font-size:0.9em;
}

.phoneFixed a:before {
  display:none;
}

/* ---------------------------------- */
/* ----------- SUB BANNERS ---------- */
/* ---------------------------------- */

/* ---------------------------------- */
/* ----------- SUB BANNERS ---------- */
/* ---------------------------------- */


#subBanner {
  position:relative;
  background-size:cover;
}

#subBanner:before {
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  content:"";
  z-index:1;
  background: rgb(131,211,210);
  background: linear-gradient(90deg, rgba(207,239,251,1) 0%, rgba(207,239,251,1) 45%,  rgba(207,239,251,0.5) 50%, rgba(207,239,251,0.3) 60%, rgba(207,239,251,0) 100%); 
}



#subBanner h1 {
  position:relative;
  z-index:2;
  color:var(--headingColor);
  max-width:var(--containerWidth);
  margin:0 auto;
  font-size:3.2em;
}


#subBanner .container {
  padding: 5% 0% 5% 0%;
  background-size: 65%!important;
  background-repeat:no-repeat!important;
  background-position: center right !important;
  max-width:none;
}


#subBanner .container[style*='stock-01.jpg'] {
  background-size: contain !important;
}


/* ---------------------------------- */
/* ------ HOME/CONTACT STYLES ------- */
/* ---------------------------------- */



/* ---------------------------------- */
/* -------- SLIDESHOW STYLES -------- */
/* ---------------------------------- */



#subBannerHome > .container {
  max-width:98%;
  position: relative;

}

#subBannerHome .container .container {  
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  max-width:none;
}

.sliderText {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  width: 100%;
  max-width: none;
  display:flex;
  flex-direction: column;
  justify-content:flex-end;
  align-items:flex-start;
  padding:1% 1% 1% 2.5em;
  max-width:100%;
  margin:0 auto;
}

.sliderButtons {
  display:flex;
  flex-direction:row;
}

.sliderButtons a:first-child {
  margin-right:15px;
}


.sliderText > * {
  color: var(--white);
  z-index: 2;
}

.sliderText h2 {
  font-size:4em;
  padding-bottom:0;
  margin-bottom:0;
  font-weight:100;
  text-transform:uppercase;
  letter-spacing:0.1em;
}

.sliderText h5 {
  font-size:1.5em;
  font-weight:600;
  margin-bottom:0;
  text-transform:uppercase;
  font-weight:300;
}


.sliderText p {
  width:45%;
  font-size:1.05em;
  font-weight:400;
  text-shadow:0px 4px 4px rgba(30,30,30,0.2);
  margin-top:10px;
}

.sliderText a {
  padding:0.9em 1.8em;
  font-size:1.1em;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--white);
  border:2px solid var(--white);
}


/*==============================*/
/*===== FLICKERPLATE STYLES ====*/
/*==============================*/



.flickerplate, .flick-inner {
  /*Adjust This To Suit % Images*/
  /*This can be a pixel height */
  padding-bottom: 38%;
  height: 0;
  border-radius:1em;
}


.flickerplate {
  position: relative;
  left:0;
  width: 100%;
  background-color:#fff;
  overflow: hidden;
  padding-left:0%;
}

.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;  
  transition: var(--transition);
}

.flickerplate li[style*='opacity: 1']{
  z-index: 1;
}

.flick-inner {
  display: table-cell;
  vertical-align: middle;
  position: relative;
 background: rgb(17,17,17);
background: linear-gradient(97deg, rgba(17,17,17,0.829551889115021) 0%,
  rgba(17,17,17,0.34495805158000703) 43%, rgba(17,17,17,0) 86%); 
}

.flick-content {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;  
  bottom: 0px;  
  max-width: var(--containerWidth);
  margin: auto;
  padding: 0 1%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* ADJUST TEXT POSITION HORIZONTALLY */
  align-items: flex-start; 
  font-size: 1em;

}

.flick-title,
.flick-sub-text {
  width: 100%;
  max-width: 100%;
  text-align:left;
  letter-spacing:-0.05em;
}

.flick-title {
  font-size: 4em;
  color: var(--white); 
  margin:0;
  width:60%;
}

.flick-sub-text {
  font-size: 1.6em;
  color: var(--primary);
  margin-bottom: 0em;
  line-height:2em;

}

.flick-but {
  position: relative;
  z-index: 9999;
  margin-top: 0.8rem;
}


/* FLICKER ARROW NAVIGATION */
.flickerplate .arrow-navigation {
  position: absolute;
  height: 50px;
  width: 50px;
  bottom: 0px;
  z-index: 3;
  cursor: pointer;
  overflow: hidden
}
.flickerplate .arrow-navigation .arrow {
  display: block;
  height: 50px;
  width: 50px;
  transition: opacity 0.2s ease-out;
  position: relative;
  border: solid var(--buttonBorderWidth) transparent;
  background: transparent;
  transition: var(--transition);

}
.flickerplate .arrow-navigation .arrow:hover {
  /*  border-color: var(--ctaLight); */
  background: var(--ctaLight);
  transition: var(--transition);
}
.flickerplate .arrow-navigation .arrow:before {
  font-size: 25px;
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 100%;
  height: 100%;
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.flickerplate.flicker-theme-dark .arrow-navigation .arrow:before {
  color: var(--primary);
}

.flickerplate .arrow-navigation.left {
  right: 50px;
  background:#fff;
}

.flickerplate .arrow-navigation.right {
  right: 0px;
  background:#f9f9f9
}

.flickerplate .arrow-navigation.left .arrow:before {
  content: "\f104";
}
.flickerplate .arrow-navigation.right .arrow:before {
  content: "\f105";
}



/* FLICKER DOT NAVIGATION */

.flickerplate .dot-navigation {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10px;
  height: 100%;
  text-align: center;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-items: center;
}
.flickerplate .dot-navigation ul {
  list-style: none;
  margin: 0;
  padding:5% 0px;
}
.flickerplate .dot-navigation ul li {
  display: inline-block;
  width: auto;
  float: none
}
.flickerplate .dot-navigation .dot {
  width: 0.3em;
  height: 0.6em;
  margin: 0.2em 1em;
  cursor: pointer;
  transition:0.3s ease;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  background-color: rgba(255,255,255,.1);
}
.flickerplate.flicker-theme-dark .dot-navigation .dot {
  background-color: #1f789d;
}
.flickerplate .dot-navigation .dot:hover {
  background-color: rgba(255,255,255,.5);
}
.flickerplate .dot-navigation .dot.active {
  background-color: rgba(255,255,255,.95);
  height: 2em;
}
.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;
}
@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: 500px;
  }
}
@media all and (max-width: 700px) {
  .flick-content,
  .arrow-navigation,
  .dot-navigation,
  .sliderText {
    font-size: 0.8em;
  }
  .flickerplate,
  .flick-inner {
    padding-bottom: 320px;
  }
  .sliderText p {
    line-height: 1.1em;
  }
}


/* TEXT ANIMATION */

.flicks > li[style*="opacity: 0"] .flick-content > *, .flickerplate a   {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: 0.2s ease-out;
  -webkit-transform: translatey(50px);
  transform: translatey(50px);
}

.flickerplate a {
  width: auto;
}

.flicks > li[style*="opacity: 1"] .flick-content > *  {
  opacity: 1;
  transition: 0.6s ease-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translatey(0%);
  transform: translatey(0%);
}

/* FLICKER ANIMATION CSS */

.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;
}

/* FLICKER RESPONSIVE CONTROL */

@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){
  /* MEDIUM */
  .flick-content,
  .arrow-navigation,
  .dot-navigation,
  .sliderText {
    font-size: 0.8em;
  } 
  .flickerplate,
  .flick-inner {
    padding-bottom: 500px;
  }
}

@media all and (max-width: 700px) {
  /* SMALL */
  .flick-content,
  .sliderText {
    font-size: 0.9em;
  }
  .arrow-navigation,
  .dot-navigation {
    font-size: 0.6em;
  }
  .flickerplate,
  .flick-inner {
    padding-bottom: 250px;
  }
  .flick-sub-text {
    line-height: 1.1em;
  }
  .flick-content {
    top: 90px;
    bottom: 90px;
  }
}





/*----flick animation----*/

.flick-title {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.flickerplate li.active .flick-title {
  -webkit-animation: flickAnimation 1s forwards ease-out;
  animation: flickAnimation 1s forwards ease-out;
}

@-webkit-keyframes flickAnimation {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0); 
    -webkit-transform: translate(0, -2em); 
  }

  100% {
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100); 
    -webkit-transform: translate(0, 0); 
  }
}

@keyframes flickAnimation {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0); 
    -webkit-transform: translate(0, -2em); 
    transform: translate(0, -2em);
  }

  100% {
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100); 
    -webkit-transform: translate(0, 0); 
    transform: translate(0, 0);
  }
}


.flick-sub-text, flick-but  {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.flickerplate li.active .flick-sub-text, .flick-but {
  -webkit-animation: flickAnimation2 1s 0.5s forwards ease-out;
  animation: flickAnimation2 1s 0.5s forwards ease-out;
}

@-webkit-keyframes flickAnimation2 {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0); 
    -webkit-transform: translate(0, 1em); 
  }

  100% {
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100); 
    -webkit-transform: translate(0, 0); 
  }
}

@keyframes flickAnimation2 {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0); 
    -webkit-transform: translate(0, 1em); 
    transform: translate(0, 1em);
  }

  100% {
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100); 
    -webkit-transform: translate(0, 0); 
    transform: translate(0, 0);
  }
}


.slider .container {
  max-width: none;
  padding: 0;
}


/* ---------------------------------- */
/* ------- PREMIUM/WORKS CSS -------- */
/* ---------------------------------- */

/* Drop Down Enquiry */

#enquire-dropdown {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: none repeat scroll 0 0 rgba(255,255,255, 0.99);
  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 .enquiryForm {
  background: none;
  font-size: 1em;
  width: 100%;
  max-width: 450px;
  margin: auto;
  float: none;
  padding: 20px;
  box-shadow: none;
}

.dropContact {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid rgba(var(--opacityColor),0.05);
}

#enquire-dropdown h2 {
  color: var(--headingColor);
  margin-bottom: 25px;
  width: 100%;
  text-align: center;
}

#enquire-dropdown .enquiryForm input[type="text"],
#enquire-dropdown .enquiryForm input[type="email"],
#enquire-dropdown .enquiryForm input[type="tel"],
#enquire-dropdown .enquiryForm textarea {
  padding-left: 40px;
}

.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: var(--fontColor);
  position: absolute;
  top: 50%;
  right: 0;
}

.closeBtn:before {
  transform: rotate(-45deg);
}
.closeBtn:after {
  transform: rotate(45deg);
}

/*  INPUT ICONS */

#enquire-dropdown .enqRow {
  position: relative;
}

#enquire-dropdown span {
  font-family: FontAwesome;
  position: absolute;
  top: 14px;
  left: 22px;
  font-size: 0.9em;
  font-weight: normal;
  color: inherit
    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";
}

.dropContact p a {
  color: inherit
}

.dropContact p a:hover {
  color: var(--cta);
}



/* ----------- PRELOADER ICON  ----------- */

.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 var(--opacity20);
  border-right:solid 3px var(--opacity20);
  border-bottom:solid 3px var(--opacity20);
  border-left:solid 3px var(--opacity20);
  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(--white);
  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: 200px;
  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:var(--white);
  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;
}

/*------------------------------------*/
/*---------- MEDIA QUERIES -----------*/
/*------------------------------------*/



.link0 #section3 .photoSection {
  position: relative;
  z-index: 1;
}

.link0 #section3 .photoSection .container {
  max-width:calc(50vw + 60px + var(--containerWidth)/2)!important;
  margin:0 0 0 auto ;
  padding-left: calc(60px + var(--gridSpacing));
}



@media all and (max-width: 1200px) and (min-width: 1000px) {
  #menu nav li a {
    font-size:1em;
  }

  .sliderText h2 {
    font-size:4em;
  }

}





/* ---------------------------------- */
/* ----------- CUSTOM CSS ----------- */
/* ---------------------------------- */

.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; 
}

/* ----------- GROW TO FRAME ---------- */

td, div[class*="col-"] {
  position: relative;
}
@media (min-width:900px) {

.growToFrame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

section .moduleTable .growToFrame img,
.growToFrame img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  object-position: center;
}

}


.animated.fadeInUp,
.animated.fadeInDown {
  animation-delay: 3.2s;
}

.categorySection.blog:before {
  display:none!important;
}

.customSection {
  background:var(--white);
  box-shadow:var(--boxShadow);
}

.specialOffers {
  background:var(--primary);
  box-shadow:var(--boxShadow);
}

.specialOffers * {
  color:var(--white);
}

.specialOffers h4 strong {
  color:var(--primaryDark);
  font-weight:700;
}

.textPadding, .specialOffers td:first-child {
  padding:2em 4em!important;
}



.link1 #section2 .container {
  max-width:none;
  margin:0;
  padding:0;
}

.link1 #section2 * {
  margin:0;
  padding:0;
}

.link0 #section2 .textSection .siteContent {
  padding-bottom:0.5em;
}


.customSection div {
  display:flex;
  flex-direction:column;

  justify-content:center;
}

.customSection div {
  margin:0!important;
}


.M_full_img-light1 p,
.M_full_img-light1 h2,
.M_full_img-light1 a{
  color:var(--white);
}

.customTable td {
  background:#222;
  color:var(--white);
  padding:2em;
}

.customTable * {
  color:var(--white);
}

.customTable h6 a:hover {
  color: var(--primary)!important;
}

.customTable {
  max-width:900px!important;
  margin:0 auto;
}


.customTable img{
  content:"";
  position:relative;
  inset:0;

}


.checkboxWrap {
  display:flex;
  flex-direction:row;
  align-items:center;
  
}

.checkboxWrap .enqRow,
.checkboxWrap {
  width:100%;
}

.enqRow strong {
  display:block;
  font-size:1.1em;
  margin:1.2em 0em 0em 0em;
}

@media all and (max-width: 730px) and (min-width: 700px) {
  #menu .contactContainer {
    display: none;
  }
}

@media all and (max-width: 1350px) and (min-width: 1000px) {
  #menu nav li a {
    font-size:0.9em;
  }
  
  #menu nav li {
    margin:0;
  }
  
  .book {
    font-size:0.9em;
  }
}


@media (max-width:1350px){
  #subBanner h1 {
    padding-left:2%;
    font-size:2.4em;
  }
  
  .flick-content {
  padding: 0% 3%;
}
  
}