/* ---------------------------------- */
/* ------ 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(--cta);
}

a:hover {
  color: var(--primaryLight);
}

p {
  margin: 1em 0;
}

strong {
 color: var(--headingColor);
}
icon {
  font-family: fontawesome;
}

@font-face {
  font-family: 'Harabara';
  src: url('/files/HarabaraMaisBold-HarabaraMaisBold.eot');
  src: url('/files/HarabaraMaisBold-HarabaraMaisBold.eot?#iefix') format('embedded-opentype'),
    url('/files/HarabaraMaisBold-HarabaraMaisBold.woff2') format('woff2'),
    url('/files/HarabaraMaisBold-HarabaraMaisBold.woff') format('woff'),
    url('/files/HarabaraMaisBold-HarabaraMaisBold.ttf') format('truetype'),
    url('/files/HarabaraMaisBold-HarabaraMaisBold#HarabaraMaisBold-HarabaraMaisBold') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
    font-family: "fa";
    src: url("/files/fa-regular-400.eot");
    src: url('/files/fa-regular-400.eot?#iefix') format('embedded-opentype'),
    url('/files/fa-regular-400.woff2') format('woff2'),    
    url("/files/fa-regular-400.ttf") format("truetype"),
    url("/files/fa-regular-400.svg") format("svg");
    
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "fa";
    src: url("/files/fa-solid-900.eot");
    src: url('/files/fa-solid-900.eot?#iefix') format('embedded-opentype'),
    url('/files/fa-solid-900.woff') format('woff'),    
    url("/files/fa-solid-900.ttf") format("truetype"),
    url("/files/fa-solid-900.svg") format("svg");
    
    font-weight: bold;
    font-style: normal;
}


/* ---------------------------------- */
/* ------------ HEADINGS ------------ */
/* ---------------------------------- */
.style-one, .style-two, .style-three, .style-four, .style-five, .style-six,
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--headingWeight);
  font-family: var(--headingFont);
  line-height: 1.5em;
  color: var(--headingColor);
}
.style-one,
h1,
.style-two, 
h2 {
  font-size: 3em;
  margin: .3em 0;
}
.style-three,
h3 {
  font-size: 2em;
  margin: .3em 0;
}
.style-four,
h4 {
  font-size: 1.3em;
  margin: .3em 0;
}
.style-five,
h5 {
  font-size: 1.1em;
  margin: .2em 0;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}
.style-six,
h6 {
  font-weight: 700;
  font-family: inherit;
  font-size: 1.15em;
  margin: .2em 0;
  color: var(--primaryDark);
}

.paraBtn a,
h6 a {
  margin-bottom: 0.2em;
}

section {
  width: 100%;
}

.container {
  max-width: var(--containerWidth);
  width: 100%;
  margin: auto;
  position: relative;
}

.link0 .textSection .siteContent {
  padding: 4em 0;
}

.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: 3em;
}

/* ---------------------------------- */
/* ---------- CONTENT AREA ---------- */
/* ---------------------------------- */


*[data-token=""], *[data-token*="$"],
a[href=""], a[href*="$"], a[href="tel:"] {
  display: none;
}

.siteTop {
  position:relative;
}

.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;
}

.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-----*/
.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*/
}

.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: var(--opacity10);
  background-color: rgba(0,0,0,.2);
  margin: 1.5em 0;
  width: 100%;
}

/* ---------------------------------- */
/* ----------- NAVIGATION ----------- */
/* ---------------------------------- */
#menu {
  position: relative;
  z-index: 1001;
}

#menu nav {
  width: 100%;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 10px;
  gap: 0 10px;
}

#menu nav li {
  list-style: none;
  float: left;
  display: inline-block;
  margin: 0;
}

#menu nav li a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  color: inherit;
  font-size: 1em;  
  font-weight: 500;
  border-bottom: var(--buttonBorderWidth) solid transparent;
  position: relative;
}

#menu nav li a:before {
  content: '';
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translate(50%, -50%);
  display: block;
  height: 5px;
  width: 5px;
  background: var(--cta);
  z-index: 2;
  opacity: 0;
}

#menu nav li a:hover:before, #menu nav .parent:hover > a:before,
#menu nav .current > a:before {
  opacity: 1;
}

#menu nav li a:hover, #menu nav .parent:hover > a,
#menu nav .current > a {
  color: var(--cta);
}

#menu nav .parent > a:after {
  font-family: FontAwesome;
  margin-left: 8px;
  content: "\f107";
  line-height: 1em;
}

#link1 {
  display: none !important;
}
#mobileMenu, #navToggleWrap {
  display: none;
}

/* ---------------------------------- */
/* ------------ SUB MENU ------------ */
/* ---------------------------------- */
#menu nav ul {
  position: absolute;
  width: 250px;
  margin: 0;
  padding: 0;
  display: none;
  font-size: .85em;
}
#menu nav ul li {
  width: 100%;
  display: inline-block;
}
#menu nav ul li a {
  padding: 10px;
  line-height: 1.1em;
  color: white;
}
#menu .subContainer {
  background: var(--primaryDark);
  position: relative;
  display: inline-block;
  padding: 10px;
  width: 100%;
}

/* ---------------------------------- */
/* --------- PHOTO SECTION ---------- */
/* ---------------------------------- */
.item {
  display:block;
  position: relative;
}
.overlayImg:before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(0,0,0,0);
  z-index: 1;
  transition: var(--transition);
}
.overlayImg:after {
  content:"\f065 ";
  font-family:FontAwesome;
  font-size: 1em;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  color: var(--cta);
  background: white;
  width: 2em;
  line-height: 2em;
  margin: auto;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border-radius: 50%;
}
.overlayImg:hover:before {
  background: rgba(0,0,0,.4);
}
.overlayImg:hover:after {
  color: var(--primaryDark);
}
.item .overlayImg {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 120%;
  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 -----------*/
/*------------------------------------*/
.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);
  background: var(--bgColor);
  max-width: 500px;
  padding: 20px;

}
.enquiryForm .enqHeader {
  font-size: 1.6em;
  font-family: var(--headingFont);
  font-weight: var(--headingWeight);
  padding: 0 0.5em 1em;
  text-align: left;
  width: 100%;
  color: var(--headingColor);
  border-bottom: 1px solid rgba(0,0,0,.2);
  margin-bottom: 1.5em;
}
.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 .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;
}
.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(--cta);
}
.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(var(--opacityColor),.2);
  background: var(--inputBG);
  transition: all 0.3s ease;
  margin-right: .5em;
}
.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(--cta);
  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: var(--inputBG);
  color: var(--inputColor);
  outline: none;
  border: 1px solid rgba(var(--opacityColor),.2);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  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),.6);
}
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),1);
}

/* 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%;
  background: var(--footerBG);
  color: var(--footerColor);
  font-size: .8em;
  position: relative;
}

footer:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 40%;

  background: url('/files/logoIcon-white.png') center right no-repeat;
  background-size: cover;
  opacity: .1;
  z-index: 3;
}

footer .container {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding: 3em 20px;
}

/*-------- 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: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
footer nav li {
  list-style: none;
  float: left;
  display: inline-block;
}
footer nav li a {
  text-decoration: none;
  padding: 5px 10px;
  display: inline-block;
}

.footerRight {
  text-align: right;
  margin-right: 10px;
}

/* ---------------------------------- */
/* ---------- CUSTOM FOOTER --------- */
/* ---------------------------------- */
#footerTop h3 {
  color: white;
}

#footerTop .phone {
  margin-bottom: 1em;
  padding: 0;
}

#footerTop .phone:before {
  display: none;
}

#footerTop h5 {
  margin-bottom: 1em;
  
}
/* ---------------------------------- */
/* ------------- TO TOP ------------- */
/* ---------------------------------- */
#toTop {
  position: fixed;
  bottom: 70px;
  left: 20px;
  z-index: 900;
  outline: none;
  color: var(--white);
  background: var(--primaryLight);
  border: 1px solid var(--primaryLight);
}
#toTop:before {
  content: "\f077";
}

/* ---------------------------------- */
/* ---------  list styling  --------- */
/* ---------------------------------- */
.siteBottom .siteContent ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 2em;
}
.siteBottom .siteContent ul li {
  margin-bottom: 0.5em;
  position: relative;
}
.siteBottom .siteContent ul li:before {
  content: "\f111";
  /* dots */
  content: "\f054";
  /* chevron-right */
/*   content: "\f0da"; */
  /* caret-right */
/*   content: "\f00c"; */
  font-family: FontAwesome;
  font-size: 0.8em;
  margin-right: 10px;
  color: var(--cta);
  position: absolute;
  top: 0;
  left: -20px;
}

.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: 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 {
  width: 50%;
  width: calc(50% - var(--gridSpacing));
}

.col-3, .cartThumb.category {
  width: 33.33333%;
  width: calc(33.33333% - var(--gridSpacing));
}

.col-3x2 {
  width: 66.66%;
  width: calc(66.66% - var(--gridSpacing));
}

.col-4,
.contentImgRow .item,
.cartThumb.item,
.blog-widget .blog-widget-article {
  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-6x5 {
  width: 83.33%;
  width: calc(83.33% - var(--gridSpacing));
}

/* ---------------------------------- */
/* -------- GRAPHICAL BUTTONS ------- */
/* ---------------------------------- */
.button,
.blog-widget-article-content-button,
.paraBtn a,
h6 a {
  display: inline-block;
  cursor: pointer;
  line-height: 1em;
  padding: 0.8em 1.6em;
  outline: none;
  border-radius: var(--buttonBorderRadius);
  text-decoration: none;
  text-align: center;
  font-weight: normal;
  transition: all .3s ease;
}

* a.iconOnly {
  padding: 0.8em 0em;
  width: 2.8em;
}
* a.iconOnly:before {
  margin-right: 0;
}

/*cta button*/
.-ctaBtn-,
.paraBtn a[href*="contact"],
h6 a[href*="contact"] {
  outline: none;
  transition: var(--transition);
  color: var(--white);
  background: var(--cta);
  border: var(--buttonBorderWidth) solid var(--cta);
}
.-ctaBtn-:hover,
.paraBtn a[href*="contact"]:hover,
h6 a[href*="contact"]:hover {
  color: var(--cta);
  background: transparent;
  border-color: var(--cta);
}

/*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,
.paraBtn a,
h6 a,
.cartThumbs .cartThumb .info:after {
  outline: none;
  background: var(--primary);
  border: var(--buttonBorderWidth) solid transparent;
  color: var(--white);
}
.-secondaryBtn-:hover,
.blog-widget-article-content-button:hover,
.paraBtn a: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);
  box-shadow: var(--cardShadow);
}
.butFrame:hover {
  box-shadow: var(--cardShadowHover);
  transform: var(--cardTransformHover);
  background: var(--cardBGHover);
  color: var(--cardTextColor);
}

.butFrame .butHeading {
  line-height: 1em;
  padding: .5em;
  color: var(--cardHeadingColor);
  font-family: var(--cardHeadingFont);
  font-weight: var(--cardHeadingWeight);
}
.butFrame .butImage {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.butFrame .butTextWrap {
  padding: 1em .5em 1.5em;
}
.butFrame .butReadmore {
  position: absolute;
  bottom: 1em;
  left: 1em;
  right: 1em;
  margin: auto;
  max-width: 10em;
}

/* ---------------------------------- */
/* ---------- VIEW CART BTN --------- */
/* ---------------------------------- */
#banner #viewCart {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  z-index: 1000;
}

#viewCart:before {
  content: "\f290";
  /*bag*/
  content: "\f07a";
  /*cart*/
  font-family: fontAwesome;
  margin-right: .5em;
}

/* ---------------------------------- */
/* ---------- FIXED TO TOP ---------- */
/* ---------------------------------- */

.fixedTopWrap {
  color: var(--fontColor);
}

/* ---------------------------------- */
/* ------------- BANNER ------------- */
/* ---------------------------------- */

#banner {
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.2);
}

#banner .container {
  display:flex;
  justify-content: space-between;
  align-items: center;
  max-width: calc(100% - 4em);
}

.bannerLeft,
.bannerRight {
  width: 25%;
}

.bannerCenter {
  width: 50%;
}

.bannerRight {
  text-align: right;
}

.logo {
  position: relative;
  display: block;
  width: 250px;
  padding: 15px 5px;
}

.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;
}

.contactContainer > *:not(.-ctaBtn-):not(.-primaryBtn-):not(.-secondaryBtn-):not(.-invertedBtn-) {color: inherit;}

.contactContainer > a:not(.-ctaBtn-):not(.-primaryBtn-):not(.-secondaryBtn-):not(.-invertedBtn-):hover {color: var(--cta);}

.contactContainer .phone {display: inline-block;}

.contactContainer div {padding: 0.8em 1em;}

/* 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;
}



/* ---------------------------------- */
/* ----------- SUB BANNERS ---------- */
/* ---------------------------------- */

#subBannerHome {
/*   margin: 0em 0 4em; */
}
#subBanner{
  margin: var(--gridSpacing) 0;
}

/* ---------------------------------- */
/* ------ HOME/CONTACT STYLES ------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* -------- SLIDESHOW STYLES -------- */
/* ---------------------------------- */
#subBannerHome .container[style*=".gif"] {
  position: relative;
  max-width: 100%;
}

#subBannerHome .container.hasImage {
  position:relative;
  background-size: cover !important;
  background-position: center center !important;
  padding-bottom: 580px;
}

#subBanner .container.hasImage {
  background-size: cover !important;
  background-position: center center !important;
  padding-bottom: 300px;
  border-radius: 10px;
}

.subBannerImage {
position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background: url(/thumbnaillarge/subBanner.jpg) center center no-repeat !important;
    background-size: auto;
  background-size: cover !important;
}

.subBannerImage:after {
  content:"";
  position:absolute;
  inset:0;
  background: rgb(51,51,51);
  background: linear-gradient(90deg, rgba(41,41,41,0.4) 0%, rgba(41,41,41,0.4) 49%, rgba(41,41,41,0.4) 70%);
  opacity:0.9;
  z-index:1;
}

.subBannerText {
 position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  bottom: 0;
  max-width:100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3em;
  margin:0 auto;

}

.textWrap {
   position: absolute;
  z-index:100;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  padding: 3em;
  margin:0 auto;
}

.textWrap h5 {
  color:#fff;
}

.tableWrap {
  background: var(--primaryDark);
  padding: 3em 2em;
  border-radius: 10px;
}

.tableWrap .table-to-div div {
  padding: 15px 10px;
  background: white;
  border-radius: 5px;
  color: var(--fontColor);
}

.tableWrap .table-to-div div:first-child {
  background: transparent;
  --headingColor: white;
}

.tableWrap .-ctaBtn- {
  text-align: center;
  width: 100%;

  margin-top: 1em;
}

.textWrap {
  padding: 0 2em;
}



@media(max-width: 1000px) {
  .subBannerText {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  
.tableWrap {
  background: var(--primaryDark);
  padding: 2em;
 }
}


/* ----------- TABS ---------- */

.tabContainer0 {
  background:#f7f7f7;
}

#tab0-1C, #tab0-2C, #tab0-3C, #tab0-4C, #tab0-5C{
  padding:2em;
}

.siteBottom .siteContent .tabs {
  width: 100%;
  padding: 0;
  margin: 2em 0 1em;
  margin-bottom:0;
  display: flex;

  justify-content: flex-start;
  align-items: center;
}



.tabs a {
  cursor:pointer;
}
.tabContainer .tabs li {
  margin: 0;
  list-style:none;
    flex:1;
  text-align:center;
}
.tabs li:before {
  display: none;
}
.tabs li a {
  color: var(--white);
  border: solid var(--buttonBorderWidth) var(--primary);
  padding: 0.5em 1em;
  display:block;
  text-decoration:none;
  transition: 0.3s;
  background: var(--primary);
  font-weight: 600;
  font-size:0.9em;
  border-radius: 3px;
}


.tabs li:not(:last-child) a {
  margin-right: 1px;
}
.tabs li a.inactiveTab {
  color: var(--black);
  border: solid var(--buttonBorderWidth) transparent;
  background: rgba(var(--opacityColor),.07);
}


.tabs li a p strong {
  color:var(--white);
}


.tabs li a.inactiveTab p strong {
  color:var(--headingColor);
}
.tabs li a.inactiveTab:hover {
  color: var(--white);
  border: solid var(--buttonBorderWidth) transparent;
  background: var(--cta);
}
.locationsTable tbody tr td {
  vertical-align: middle !important;
  height: 70px !important;
}

li a#tab0-1:before {
  font-family:"fa";
  content:"\f236";
}

.link15 li a#tab0-1:before {
  font-family:"fa";
  content:"\f14a";
}

.link15 li a#tab0-2:before {
  font-family:"fa";
  content:"\f1ad";
}

li a#tab0-2:before{
  font-family:"fa";
  content:"\e06d";
}


li a#tab0-3:before  {
  font-family:"fa";
  content:"\f2cd";
}


li a#tab0-4:before {
  font-family:"fa";
  content:"\f6c0";
}

.link11 li a#tab0-4:before  {
    font-family:"fontAwesome";
  content:"\f108";
}

li a#tab0-5:before{
  font-family:"fa";
  content:"\f4b8";
}

li a#tab0-6:before, .link11 li a#tab0-1:before {
  font-family:"fa";
  content:"\f109";
}

li a#tab0-7:before {
  font-family:"fa";
  content:"\e05e";
}

li a#tab0-8:before {
  font-family:"fa";
  content:"\f560";
}

/* ---------------------------------- */
/* ----------- CUSTOM CSS ----------- */
/* ---------------------------------- */
.buttonsTable > div  img {
  min-height: 350px !important;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1em;
}

.buttonsTable table td {
  padding: 0 .5em;
}

.buttonsTable table p {
  margin-top: .3em;
}

.buttonsTable table a {
  text-decoration: none;
}
.buttonsTable table a strong {
  color: var(--cta) !important;
}
.buttonsTable table a:hover {
  text-decoration: underline;
}

.table-to-div:first-of-type:not(.subBannerText .table-to-div) {
  margin-top: 2em;
}
.table-to-div div:not(.buttonsTable div):not(.tableWrap div) {
  padding: 2em;
  border: 1px solid rgba(0,0,0,.2);
}


.customTable div:first-child {
  background:var(--cta);
  border-color:var(--cta)!important;
}

.customTable div:first-child * {
  color:#fff;
}

.customTable div:first-child li:before {
  color:var(--primary);
}

.table-to-div div:has(.colorBG) {
  padding: 0;
  background: var(--primary);
  border-radius: 5px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
}

.colorBG,
.colorBG tbody,
.colorBG tr,
.colorBG td {
  width: 100%;
  height: 100%;
}

.colorBG td {
  padding: 0;
}


.colorBG td a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 3em 1em;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 1.1em;
}

.table-to-div div:has(.colorBG):hover {
  background:  var(--cta);
}

/* ----------- GROW TO FRAME ---------- */

td, div[class*="col-"] {
  position: relative;
}

.moduleImageWrap {
  position: relative;
  width: 100%;
}

.moduleImageWrap img {
  display: block;
}

.moduleImageWrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 70%;
  background: linear-gradient(to left, rgba(var(--overlayRGB2),0) 0%,rgba(var(--overlayRGB2),0.6) 100%);
}

@media (min-width:700px) {

.growToFrame,
.moduleImageWrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

section .moduleTable .growToFrame img,
.growToFrame img,
section .moduleTable .moduleImageWrap img,
.moduleImageWrap 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;
}

}


.twoColumn.image-bg-table {
  position: relative;
  background: rgba(43,69,137,.7);
  color: white;
  --headingColor: white;
  border-radius: var(--cardBorderRadius);
  border-radius: 10px;
}

.moduleTable.twoColumn.image-bg-table td {
  position: static;
  padding: 4em;
}

.twoColumn.image-bg-table td > *:not(img):first-child{
  margin-top: 40px;
}

.twoColumn.image-bg-table td > *:not(img):last-child{
  margin-bottom: 40px;
}

.moduleTable.twoColumn.image-bg-table > tbody > tr > td img {
  position: absolute;
  inset: 0;
  display: block;
  height: 100% !important;
  width: 100% !important;
  z-index: -1;

  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 10px;
}
/*------------------------------------*/
/*---------- MEDIA QUERIES -----------*/
/*------------------------------------*/
