/* ---------------------------------- */
/* ------ MAIN BODY OF WEBSITE ------ */
/* ---------------------------------- */
html {
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bgColor);
  font: 16px/1.6em BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--fontColor);
}

/* body:after{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--white);  
  transition: var(--transition);
  pointer-events: none;
}

body.loaded:after {
  opacity: 0;
} */

a {
  color: var(--primaryDark);
}

a:hover {
  color: var(--primaryLight);
}

p {
  margin: 1em 0;
}

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);
  text-transform: uppercase;
}

h1 {
  font-size: 2.5em;
  margin: .3em 0;
}

h2 {
  font-size: 2em;
  margin: .3em 0;
}

h3 {
  font-size: 1.2em;
  margin: .3em 0;
  color: var(--cta);
}

#section1 h3 {
  color: var(--ctaB);
}

h4 {
  font-size: 1.1em;
  margin: .3em 0;
  color: var(--cta);
}

h5 {
  font-size: 1.1em;
  margin: .2em 0;
  color: var(--cta);
}

h6 {
  font-size: 1em;
  margin: .2em 0;
}

h6 a {
  margin-bottom: 0.2em;
}

section {
  width: 100%;
}

.container {
  max-width: var(--containerWidth);
  width: 100%;
  margin: auto;
  position: relative;
}

.textSection .siteContent, .categorySection .siteContent, .viewCart .siteContent {
  padding: 6em 0;
}
.textSection .siteContent img, .categorySection .siteContent img, .viewCart .siteContent img {
  height: auto !important;
  max-width: 100%;
}

.contentWrap section:last-of-type > div:last-of-type .siteContent {
  padding-bottom: 6em;
}

.textSection + .photoSection .siteContent {padding-bottom:6em;}

/* ---------------------------------- */
/* ---------- CONTENT AREA ---------- */
/* ---------------------------------- */
.outerWrap {overflow: hidden;}

.fixedTopWrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;  
  z-index: 101;
  transition: 0.3s;
}

.siteTop {
  min-height: 150px;
}

.siteBottom .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch;
  padding: 0 10px;
}

.textSection .container  {
  padding: 0 10px;
}

.siteContent, .searchContent {
  width: 100%;
  -ms-flex: 1 1 auto;
}

.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(--opacity05);
}

/*
.textSection .sidebar, .photoSection .sidebar {
	display: none;
}
*/
.sidebar .item, #outerSidebar .item {
  width: 100%;
  margin-top: 15px;
}
.sidebar .item .contentImg, #outerSidebar .item .contentImg {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.sidebar .item .caption, #outerSidebar .item .caption {
  font-size: .9em;
}

#outerSidebar {
  display: none;
}

#cartContent .sidebar {
  display: none;
}

/*
@media (min-width:600px){
	.siteBottom {
		width: 100%;
		max-width: 1100px;
		margin: auto;
		display: flex;
		justify-content: space-between;
    }

	.sidebar {
		display: none;
	}

	#outerSidebar {
		width: 200px;
		padding: 0 15px;
		flex-shrink: 0;
		background: rgba(0,0,0,0.1);
		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(--opacity20);
    display: inline-block;
  }

.activeOuterSidebar .contentWrap {
    width: 100%;
    -ms-flex:0 1 auto;
  }

/* ---------------------------------- */
/* ------- BLOG SHOP SIDEBAR -------- */
/* ---------------------------------- */

.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: "\f003";
  /*envelope in square*/
  content: "\f0e0";
  /*empty envelope*/
  content: "\f199";
  /*solid envelope*/
  content: "\f2b6";
  /*envelope open solid*/
}

.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: var(--opacity10);
  width: 100%;
}

/* ---------------------------------- */
/* ----------- NAVIGATION ----------- */
/* ---------------------------------- */
#menu {
  position: absolute;
  z-index: 100;
  top: 3.5em;
  background: rgba(255,255,255,.9);
  transition: var(--transition);
  box-shadow: 0 0px 10px 0px var(--opacity05);
}

#menu nav {
  max-width: var(--containerWidth);
  width: 100%;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 10px;
}

#menu nav li {
  list-style: none;
  float: left;
  display: inline-block;
  margin: 0;
}

#menu nav li a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  color: var(--primary);
  font-size: .9em;  
  font-weight: bold;
  transition: var(--transition);
  text-transform: uppercase;
}

#menu nav>li>a {
  margin: 2em 0;
}

#menu nav li a:hover, #menu nav .parent:hover > a {
  color: var(--ctaP);
}

#menu nav .current > a {
  color: var(--cta);
}

#menu nav .parent > a:after {
  font-family: FontAwesome;
  margin-left: 8px;
  content: "\f107";
  line-height: 1em;
}



.scrollStart #menu {
  top: 0;
  background: rgba(255,255,255,.95);
}

.scrollStart #menu nav>li>a {
  margin: 1.5em 0;
}


#mobileMenu, #navToggleWrap {
  display: none;
}

/* ---------------------------------- */
/* ------------ SUB MENU ------------ */
/* ---------------------------------- */
#menu nav ul {
  position: absolute;
  width: 150px;
  margin: 0;
  padding: 0;
  display: none;
  font-size: .85em;
}
#menu nav ul li {
  width: 100%;
  display: inline-block;
}
#menu nav ul li a {
  padding: 5px 10px;
  line-height: 1.1em;
  color: #fff;
}
#menu nav ul li a:hover,
#menu nav ul .current a {
  background: #fff;
}
#menu .subContainer {
  background: var(--ctaB);
  position: relative;
  display: inline-block;
  padding: 10px;
  width: 100%;
}

/* ---------------------------------- */
/* --------- PHOTO SECTION ---------- */
/* ---------------------------------- */
.contentImgRow {
  justify-content: center;
}

.contentImgRow .item {
  display: inline-block;
}
.contentImgRow .contentImg {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  image-rendering: auto;
  margin: 0;
}
.contentImgRow .caption {
  font-size: .9em;
  margin-top: 5px;
}
.contentImgRow .caption:empty {
  display: none;
}
.contentImgRow.imgTag .item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.contentImgRow.imgTag .item .overlayImg {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.contentImgRow.imgTag .item .overlayImg .contentImg {
  padding: 0;
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.overlayImg {
  cursor: pointer;
}

/*------------------------------------*/
/*----------- ENQUIRY FORM -----------*/
/*------------------------------------*/
.enquiryForm {
  width: 100%;
  max-width: 500px;
  background: var(--bgColorDark);
  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;
  border-radius: var(--buttonBorderRadius);
  position: relative;
  z-index: 1;
}
.link21 #section1 .enquiryForm {
  max-width: 900px;
}
.link21 #section1 .enquiryForm textarea {
  height: 106px;
}
.link21 #section1 strong {
  text-transform: uppercase;
  color: var(--primary);
}
.enquiryBackground {
  width: 100%;
  padding: 1em;
  background: var(--bgColorDark)
}
.enquiryForm h2 {
  color: var(--primary);
  text-align: center;
  width: 100%;
}
.enquiryForm .enqHeader {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 1em .5em;
  margin-bottom: 1em;
  font-size: 1.3em;
}
.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;
flex-wrap: wrap;
      align-items: center;
}
.enqLine {
  border-top: 1px solid var(--opacity10);
  margin-top: .9em;
}
.enquiryForm .enqRow.textarea {
  -ms-flex-align: start;
      align-items: flex-start;
}
.enquiryForm .enqRow.half {
  width: 50%;
  display: inline-block;
}
.enquiryForm .enqLeft {
  padding: 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 var(--opacity20);
  background: var(--white);
  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 var(--opacity20);
  background: var(--white);
  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;
}

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(--white);
  color: var(--black);
  outline: none;
  border: 1px solid var(--opacity20);
  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: var(--opacity60);
}
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: var(--opacity100);
}

/* Custom styling for <select> */
.select {
  position: relative;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: var(--white);
  color: var(--black);
  outline: none;
  border: 1px solid var(--opacity20);
  border-radius: var(--borderRadius);
  width: 100%;
}
.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(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
}
.select select {
  -webkit-appearance: none;
  background: 0;
  border: 0;
  line-height: 1em;
  display: inline-block;
  width: 100%;
  padding: var(--inputPadding);
  outline: 0;
  font-size: 1em;
}
.select:hover {
  outline: none;
  border-color: var(--opacity60);
}
.select:hover::after {
  background: var(--primaryDark);
  border-color: var(--primaryDark);
}
.select:active:after {
  background: var(--primaryDark);
  border-color: var(--primaryDark);
}
.select:focus {
  border-color: var(--primaryDark);
}
.select:focus:after {
  background: var(--primaryDark);
  border-color: var(--primaryDark);
}

/*-----Placeholder Styles-----*/
::-webkit-input-placeholder {
  color: var(--black);
  opacity: 0.6;
}

:-moz-placeholder {
  color: var(--black);
  opacity: 0.6;
}

::-moz-placeholder {
  color: var(--black);
  opacity: 0.6;
}

:-ms-input-placeholder {
  color: var(--black);
  opacity: 0.6;
}

/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */
footer {
  position: relative;
  width: 100%;
  background: #256468;
  color: var(--white);
  margin-top: 1.5em;
}
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: 2em 0;
}

/*-------- 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: inline-block;
}
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 .col-3:nth-child(2) {text-align: center;}

#footerTop .col-3:nth-child(3) {text-align: right;}

#footerTop .logo {margin: 1em auto;}

#footerBottom {
  background: #004A4E;
  font-size: .8em;
}


footer:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 40px;
  transform: skewY(-1deg);
  background: #256468;
}

.dropContact h2 {
  color: #fff;
}

/* ---------------------------------- */
/* ------------- TO TOP ------------- */
/* ---------------------------------- */
#toTop {
  position: fixed;
  bottom: 70px;
  left: 20px;
  z-index: 900;
  outline: none;
  color: var(--white);
  background: #004A4E;
  border: 1px solid #004A4E;
}
#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(--primary);
  position: absolute;
  top: 0;
  left: -20px;
}

.siteBottom .siteContent ul[style="list-style-type: none;"] {padding-left: 1em;}

.siteBottom .siteContent ul[style="list-style-type: none;"] .fontAwesomeIcon {margin-right: 0.5em;}

.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 .M_full_img-fullColour .siteContent ul li:before {
  color: var(--cta);
}


/*-----------------------------------*/
/*-------------- 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 {
  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));
}

/* ---------------------------------- */
/* ------- DYNAMIC BACKGROUNDS ------ */
/* ---------------------------------- */

.siteBottom section * {
  box-sizing: border-box;
}

.siteBottom section {
  position: relative;
}

.backgroundImage {
  position: absolute;
  background-size: cover;
  background-position: center center;
}

section .backgroundImage:after {
  content:"";
  position:absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

section[class*="M_full"] .backgroundImage[style*="-dark"]:after {  
  background: var(--primaryDark);
  opacity: 0.95;
}

section[class*="M_full"] .backgroundImage[style*="-light"]:after {  
  background: #fff;
  opacity: 0.1;
}

section[class*="M_left"] .backgroundImage[style*="-dark"]:after {  
  background: linear-gradient(to right, rgba(var(--darkRGB),0) 0%,rgba(var(--darkRGB),.95) 60%,rgba(var(--darkRGB),0.95) 100%);
}

section[class*="M_right"] .backgroundImage[style*="-dark"]:after {  
  background: linear-gradient(to left, rgba(var(--darkRGB),0) 0%,rgba(var(--darkRGB),.95) 60%,rgba(var(--darkRGB),0.95) 100%);
}

section[class*="M_left"] .backgroundImage[style*="-light"]:after {  
  background: linear-gradient(to right, rgba(var(--lightRGB),0) 0%,rgba(var(--lightRGB),.95) 60%,rgba(var(--lightRGB),0.95) 100%);
}

section[class*="M_right"] .backgroundImage[style*="-light"]:after {  
  background: linear-gradient(to left, rgba(var(--lightRGB),0) 0%,rgba(var(--lightRGB),.95) 60%,rgba(var(--lightRGB),0.95) 100%);
}

section[class*="-dark"] h1,
section[class*="-dark"] h2,
section[class*="-dark"] h3,
section[class*="-dark"] h4,
section[class*="-dark"] h5,
section[class*="-dark"] h6,
.M_full_img-fullColour h1,
.M_full_img-fullColour h2,
.M_full_img-fullColour h3,
.M_full_img-fullColour h4,
.M_full_img-fullColour h5,
.M_full_img-fullColour h6 {
  color: #fff;
}

section[class*="-dark"] p,
section[class*="-dark"] li,
section[class*="-dark"] *:not(h6) > a,
.M_full_img-fullColour p,
.M_full_img-fullColour  li,
.M_full_img-fullColour *:not(h6) > a {
  color: #ccc;
}

section[class*="-dark"] *:not(h6) > a,
.M_full_img-fullColour *:not(h6) > a {
  color: var(--cta);
}

.M_right_img .backgroundImage,
.M_left_img .backgroundImage {
  z-index: 1;
}

.M_right_img .backgroundImage:after,
.M_left_img .backgroundImage:after {
  top: auto;
  height: 20px;
  background: var(--bgColor);
  transform: skewY(-1deg);
  bottom: -10px;
  left: -20px
}
.M_right_img .backgroundImage:before,
.M_left_img .backgroundImage:before {
  content: "";
  position: absolute;
  bottom: auto;
  height: 20px;
  background: var(--bgColor);
  transform: skewY(-1deg);
  top: -10px;
  left: -20px;
  z-index: 1;
  right: 0;
}

.M_right_img .textSection .siteContent,
.M_left_img .textSection .siteContent {
  min-height: 30em;
  padding-top: 1.1em;
}

#section1.M_right_img,
#section1.M_left_img {
  margin-top: 3em;
}


.M_full_img-fullColour .sidebarLeft h1,
.M_full_img-fullColour .sidebarLeft h2,
.M_full_img-fullColour .sidebarLeft h3,
.M_full_img-fullColour .sidebarLeft h4,
.M_full_img-fullColour .sidebarLeft h5,
.M_full_img-fullColour .sidebarLeft h6 {
  color: var(--headingColor);
}
.M_full_img-fullColour .sidebarLeft p,
.M_full_img-fullColour .sidebarLeft li {
  color: var(--fontColor);
}

/*-- full width image --*/

.M_full_img .backgroundImage {
  top: 0; left: 0; right: 0; bottom: 0;
}

.M_full_img[class*="-light"] .textSection .container {
  max-width: 950px;
}

.M_full_img[class*="-light"] .textSection .siteContent {
  background: rgba(241, 241, 241, .95);
  margin-top: 20em;
  padding: 1em;
  z-index: 2;
  position: relative;
}


/*-- full width colour strip --*/

.M_full_img-fullColour:before,
.M_full_img-fullColourLight:before {
  content: "";
  position: absolute;
  top: -1em;
  bottom: -1em;
  left: 0;
  right: 0;
  background: #114F6D;
  transform: skewY(-1deg);
  z-index: -1;
}
.M_full_img-fullColourLight:before {
  background: var(--bgColorDark)
}

.M_right_img + .M_full_img-fullColour:before,
.M_right_img + .M_full_img-fullColourLight:before {
  top: -3em;
}

.M_right_img + .M_full_img-fullColour .textSection .siteContent,
.M_right_img + .M_full_img-fullColourLight .textSection .siteContent{
  padding-bottom: 7em
}

.M_full_img-fullColour .container,
.M_full_img-fullColourLight .container {
  max-width: 950px;
}

.M_full_img-fullColourLight .twoColumn {
  background: var(--bgColor);
  border-radius: var(--buttonBorderRadius);
  position: relative;
}
.M_full_img-fullColourLight .twoColumn td,
.M_full_img-fullColourLight .threeColumn td {
  padding: 1.5em;
}
.M_full_img-fullColourLight .twoColumn>tbody>tr>td:first-of-type,
.M_full_img-fullColourLight .threeColumn>tbody>tr>td:not(:last-child) {
  border-right: 1px solid var(--opacity10)
}

/*-- image left --*/

.M_left_img .backgroundImage {
  top: 0; left: 0; bottom: 0; 
  width: 50%;
}

.M_left_img .siteContent {
  width: 45%;
  margin: 0 0 0 auto;
}

/*-- image right --*/

.M_right_img .backgroundImage {
  top: 0; right: 0; bottom: 0; 
  width: 50%;
  border-left: 20px solid var(--bgColor)
}

.M_right_img .siteContent {
  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 {
  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 {
  width: 45%;
  margin: 0 auto 0 0;
}

@media all and (max-width: 900px){
  
  section[class*="M_left"] .backgroundImage[style*="-dark"]:after {  
    background: linear-gradient(to right, rgba(var(--darkRGB),.8) 0%,rgba(var(--darkRGB),.95) 60%,rgba(var(--darkRGB),0.95) 100%);
  }

  section[class*="M_right"] .backgroundImage[style*="-dark"]:after {  
    background: linear-gradient(to left, rgba(var(--darkRGB),0.8) 0%,rgba(var(--darkRGB),.95) 60%,rgba(var(--darkRGB),0.95) 100%);
  }

  section[class*="M_left"] .backgroundImage[style*="-light"]:after {  
    background: linear-gradient(to right, rgba(var(--lightRGB),.8) 0%,rgba(var(--lightRGB),.95) 60%,rgba(var(--lightRGB),0.95) 100%);
  }

  section[class*="M_right"] .backgroundImage[style*="-light"]:after {  
    background: linear-gradient(to left, rgba(var(--lightRGB),.8) 0%,rgba(var(--lightRGB),.95) 60%,rgba(var(--lightRGB),0.95) 100%);
  } 

  .M_left_img, .M_right_img {
      padding: 0;
  }
  #section1.M_right_img,
  #section1.M_left_img {
    margin-top: .5em
  }
  .M_right_img .backgroundImage {
    border-left: none
  }
  .M_right_img .textSection .siteContent,
  .M_left_img .textSection .siteContent {
    min-height: 0;
    padding: 3em 0;
  }

  .siteBottom section .siteContent {
    width: 100%;
  }

  .M_left_img .backgroundImage, .M_right_img .backgroundImage,.M_full_img[class*="-light"] .backgroundImage {   
      position: relative;
      width: 100%;
      height: 250px;
  }
  
  .M_full_img[class*="-light"] .textSection .siteContent {
    margin-top: 0em;
  }

  .M_left_imgC .backgroundImage {
      background-position: 90% 50%;
  }  
  
  .M_right_imgC .backgroundImage {
      background-position: 10% 50%;
  }
  
  .M_right_img + .M_full_img-fullColour:before,
  .M_right_img + .M_full_img-fullColourLight:before {
    top: 0;
  }
  .M_right_img + .M_full_img-fullColour .textSection .siteContent,
  .M_right_img + .M_full_img-fullColourLight .textSection .siteContent{
    padding: 3em 0;
  }
  
  .link0 #section1 .backgroundImage {
    height: 85vw;
  }
  
}

/* ---------------------------------- */
/* -------- GRAPHICAL BUTTONS ------- */
/* ---------------------------------- */
.button,
.blog-widget-article-content-button,
h6 a,
.basicFrame,
.contact 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: var(--transition);
  font-weight: bold;
  text-transform: uppercase;
}

* a.iconOnly {
  padding: 0.8em 0em;
  width: 2.8em;
}
* a.iconOnly:before {
  margin-right: 0;
}

/*cta button*/
.-ctaBtn-,
h6 a[href*="contact"] {
  outline: none;
  transition: var(--transition);
  color: var(--white);
  background: #1AA4C1;
  border: var(--buttonBorderWidth) solid #1AA4C1;
}
.-ctaBtn-:hover,
h6 a[href*="contact"]:hover {
  color: var(--cta);
  background: transparent;
  border-color: #1AA4C1;
}

/*primary button*/
.-primaryBtn-,
h6 a,
.basicFrame{
  outline: none;
  transition: var(--transition);
  color: var(--white);
  background: var(--ctaP);
  border: var(--buttonBorderWidth) solid var(--ctaP);
}
.-primaryBtn-:hover,
h6 a:hover,
.basicFrame:hover{
  color: var(--cta);
  background: transparent;
  border-color: var(--ctaP);
}

/*secondary button*/
.-secondaryBtn-,
.blog-widget-article-content-button {
  outline: none;
  background: var(--opacity20);
  border: var(--buttonBorderWidth) solid var(--opacity00);
  color: var(--white);
}
.-secondaryBtn-:hover,
.blog-widget-article-content-button:hover {
  color: var(--white);
  background: var(--cta);
  border-color: var(--cta);
}

.cartThumbs .cartThumb .info:after {
  display: none;
}

/*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;
  position: relative;
  transition: var(--transition);
  color: var(--cardTextColor);
  border: var(--cardBorder);
  background: transparent;
  box-shadow: none;
}
.butFrame:hover {
  color: var(--cardTextColor);
}
.butFrame .imageFrame {
  margin: auto;
  background-color: var(--bgColor);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.butFrame .imageFrame:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--opacity30), var(--opacity20));
  opacity: 1;
  transition: var(--transition);
}
.butFrame:hover .imageFrame:after {
  opacity: .2;
}
.butFrame:hover .butImage {
  transform: var(--cardTransformHover);
}
.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;
  transition: var(--transition);
}

.butFrame .butTextWrap {
  padding: .5em 1em;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.butFrame .butTextWrap:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ctaB);
  opacity: .7;
  width: 0%;
  transition: var(--transition);
}
.butFrame:hover .butTextWrap:before {
  width: 100%;
}

.butFrame .butHeading {
  line-height: 1em;
  padding: .5em 0;
  font-family: var(--cardHeadingFont);
  font-weight: var(--cardHeadingWeight);
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
  color: #fff;
}
.butHeading:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.2);
  max-width: 50%;
}
.butTextWrap .clickHere {
  opacity: .7;
  padding-top: .3em;
  transition: var(--transition);
  z-index: 1;
  position: relative;
}
.butTextWrap:hover .clickHere {
  opacity: 1;
}


/* ---------------------------------- */
/* ---------- 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;
}

/* ---------------------------------- */
/* ------------- BANNER ------------- */
/* ---------------------------------- */

#banner {
  position: relative;
}

#banner .container {
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5px;
}

.scrollStart #banner .container {
  padding: 5px 5px;
}

.logo {
  position: relative;
  display: block;
  width: 100%;
  max-width: 190px;
  transition: 0.3s;
  z-index: 101;
}
.logo:before {
  content: "";
  position: absolute;
  top: 0em;
  bottom: 0em;
  left: 0em;
  right: 0em;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}

.scrollStart .logo:before {
  opacity: 0;
}

.scrollLogo {
  position: absolute;
  top: .2em;
  left: 0;
  opacity: 0;
}

@media all and (min-width:700px) {

.scrollStart #banner .logo {max-width: 130px;}

.scrollStart #banner .logo img:first-child {opacity: 0;}

.scrollStart #banner .scrollLogo {opacity: 1;}
  
}

.logo object, .logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  transition: 0.2s;
}

.logo:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.contactContainer > *:not(.butS1):not(.butS2):not(.butS3):not([href=""]):not([href="#"]) {
   color: #eee;
   display: block;
}
.contactContainer > a:not(.butS1):not(.butS2):not(.butS3):hover {
   color: var(--primary);
}
.contactContainer .phone {
   transform: rotate(90deg);
  white-space: no-wrap;
}
.contactContainer {
   position: fixed;
   left: -4.1em;
   top: 40%;
}
.contactContainer:before {
   content: "";
   position: absolute;
   top: -3.7em;
   bottom: 0;
   left: 0;
   right: 1px;
   background: var(--secondaryB);
   box-shadow: 5px 5px 10px -5px rgba(0,0,0,0.2);
}
.contactContainer > * {
   display: block;
}
.contactContainer .phone:before {
   display: none;
}
.contactContainer .phone {
   transform: rotate(90deg);
   font-family: var(--headingFont);
   font-weight: 700;
   left: 1.9em;
   position: relative;
   font-size: 1em;
   margin-bottom: 3.5em;
}
.contactContainer a {
   position: relative;
   box-shadow: none;
  transition: 0s;
  left: 4.1em;
  border-radius: 0;
  transition: var(--transition);
}
.contactContainer a:first-of-type {
   margin-top: 3.1em;
}
/*  .contactContainer a.iconOnly:after {
   content: "";
   position: absolute;
   top: -1px;
   left: 10%;
   right: 10%;
   height: 2px;
   background: #fff;
   opacity: .4;
} */
#banner .contactContainer a:hover {
  transform: none;
  opacity: .9;
}

.teamApp:before {
  content: "";
  background: url(/files/TeamAppLogo.svg) no-repeat;
  background-size: contain;
  height: 17px;
  width: 17px;
  transition: 0s;
}

/* contact bar icon background colours */

.contactContainer .facebook {
  background: #49639E;
}
.contactContainer .instagram {
  background: #CD5959;
}
.contactContainer .youTube {
  background: #BF221A;
}
.contactContainer .teamApp {
  background: #7AB00D;
}
.contactContainer .email {
  background: var(--cta);
}


/* removes mobile and tablet phone number link styling */
div.phone a {
  margin: 0;
  padding: 0;
  color: inherit;
  background:none;
  border: none;
  text-decoration: none;
  font-size: 1em;
}

a[href=""], a[href*="$"] {display:none;}



@media all and (max-width: 1100px) {
  #banner .contactContainer {display: none;}
}

/* ---------------------------------- */
/* ----------- SUB BANNERS ---------- */
/* ---------------------------------- */

#subBanner {
  padding-bottom: 0em;
}

#subBanner .container {
  background: var(--secondaryB);
  background-size: cover !important;
  background-position: center center !important;
  padding-bottom: 250px;
  max-width: 100%;
}

#subBanner .container.hasImage {
  padding-bottom: 400px;
}



/* ---------------------------------- */
/* ------ HOME/CONTACT STYLES ------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* -------- SLIDESHOW STYLES -------- */
/* ---------------------------------- */

#subBannerHome > .container {
  max-width:100%;
  position: relative;
}

#subBannerHome {
  background: var(--primaryDark);
}

#subBannerHome > .container:after,
#subBanner > .container:after{
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bgColor);
  transform: skewY(-1deg);
  z-index: 1;
}

/*==============================*/
/*===== FLICKERPLATE STYLES ====*/
/*==============================*/

.flickerplate, .flick-inner {
  /*Adjust This To Suit % Images*/
  /*This can be a pixel height */
  padding-bottom: 96vh; 
  height: 0;
}
.flickerplate {
  position: relative;
  width: 100%;
  background-color: var(--primaryDark);
  overflow: hidden;
}

.flickerplate ul.flicks {
  width: 10000%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  list-style: none
}
.flickerplate li {
  float: left;
  width: 1%;
  height: 100%;
  background-position: center;
  background-size: cover;
  display: table;
}
.flick-inner {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.flick-content {
  position: absolute;
  top: 220px;
  left: 0;
  right: 0;
  width: 100%;  
  bottom: 40px;  
  max-width: 1500px;
  margin: auto;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* ADJUST TEXT POSITION HORIZONTALLY */
  align-items: center; 
  font-size: 1em;
  text-align: center;
}

.flickContainer {
  opacity: 0;
  transition: var(--transition);
}

.loaded .flickContainer {
  opacity: 1;
}

.flickContainer {
  max-width: 650px;

  padding: 1em;
}

.flick-title, .flick-sub-text {
  width: 100%;
  font-family: var(--headingFont);
  font-weight: var(--headingWeight);
  text-transform: uppercase;
  line-height: 1em;
  text-shadow: 0 5px 10px  var(--opacity20);
}

.flick-title {
  font-size: 1.8em;
  color: #fff;
  opacity: .6;
  font-weight: 400;
}

.flick-sub-text {
  font-size: 2.4em;
  color: #fff;
  margin-bottom: 0;
}

.flick-but {
  position: relative;
  z-index: 4;
  width: 11em;
  margin-top: 0.8rem;
}

/* TEXT ANIMATION */

/* .flicks > li[style*="opacity: 0"] .flick-content .flickContainer > *:not(.flick-but)  {
 opacity: 0;
 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 transition: 0.2s ease-out;
 display: block;
 -webkit-transform: translatey(50px);
 transform: translatey(50px);
}

.flicks > li[style*="opacity: 1"] .flick-content .flickContainer > *:not(.flick-but)  {
 opacity: 1;
 transition: 0.6s ease-out;
 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 -webkit-transform: translatey(0%);
 transform: translatey(0%);
  z-index: 1;
}

.flicks > li[style*="opacity: 1"] .flick-content .flickContainer > .flick-title {
  opacity: .6;
} */

/* FLICKER ARROW NAVIGATION */

.flickerplate .arrow-navigation {
  position: absolute;
  height: 80%;
  width: 10%;
  top: 10%;
  z-index: 3;
  cursor: pointer;
  overflow: hidden
}
.flickerplate .arrow-navigation .arrow {
  display: block;
  height: 100%;
  width: 100%;
  transition: opacity 0.2s ease-out;
  position: relative;
  opacity: 0;
}

.flickerplate .arrow-navigation .arrow:hover {
  opacity: 0.8;
}

.flickerplate .arrow-navigation .arrow:before {
  font-size: 3em;
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 100%;
  height: 100%;
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;  
  /* LIGHT THEME ARROW COLOUR */
  color: #fff; 
}

.flickerplate.flicker-theme-dark .arrow-navigation .arrow:before {
  /* DARK THEME ARROW COLOUR */
  color: var(--primary); 
}

.flickerplate .arrow-navigation.left {
  left: 0
}

.flickerplate .arrow-navigation.right {
  right: 0
}

.flickerplate .arrow-navigation.left .arrow:before {
  content: "\f104";
}

.flickerplate .arrow-navigation.right .arrow:before {
  content: "\f105";
}

/* FLICKER DOT NAVIGATION */

.flickerplate .dot-navigation {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  text-align: left;
  z-index: 1;  
}

.flickerplate .dot-navigation ul {
  list-style: none;  
  margin: 1em 0;
  padding: 0px 2em;    
  text-align: left; /* DOT HORIZONTAL POSITION */
  font-size: 0.5em; /* CIRCLE SIZE */
}

.flickerplate .dot-navigation ul li {
  display: inline-block;
  width: auto;
  float: none
}

.flickerplate .dot-navigation .dot {
  width: 8px;
  height: 8px;
  margin: 0px 0.5em;
  cursor: pointer;
  opacity: 0.3;
  border-radius: 50%;
  transition: opacity 0.2s ease-out;
  background-color: #fff; /* LIGHT THEME DOT COLOUR */
}

.flickerplate.flicker-theme-dark .dot-navigation .dot {
  background-color: var(--primary); /* DARK THEME DOT */
}

.flickerplate .dot-navigation .dot:hover {
  opacity: 0.6;
}

.flickerplate .dot-navigation .dot.active {
  opacity: 1;
}

/* 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;}
  .flickContainer {
    max-width: 500px;
  }
}

@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: 96vh;}
  .flickContainer {
    max-width: 400px;
  }
  .flick-content {
    bottom: 100px;
  }
}

@media all and (max-width: 700px) {
  /* SMALL */
  .flick-content, .arrow-navigation, .dot-navigation, .sliderText {font-size: 0.6em;}
  .flickerplate, .flick-inner {padding-bottom: 90vh;}
  .flick-sub-text {line-height: 1.1em;}
  .flick-content {
    top: 90px;
    bottom: 50px;
    text-align: center;
  }
  .flickContainer {
    max-width: 90%;
    margin: auto auto 0;
  }
  .flick-but {
    margin-top: 0;
  }
}

/* ---------------------------------- */
/* ------- PREMIUM/WORKS CSS -------- */
/* ---------------------------------- */

/* Drop Down Enquiry */

.dropContact {
    text-align: center;
    color: #ccc;
    padding: 0 10px;
}

#enquire-dropdown h2 {
    color: #fff;
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
}

#footerTop .enquiryForm input[type="text"],
#footerTop .enquiryForm input[type="email"],
#footerTop .enquiryForm input[type="tel"],
#footerTop .enquiryForm textarea,
#footerTop .enquiryForm select {
    padding-left: 40px;
    -webkit-appearance: none;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.03);
    color: var(--fontColor);
    font-size: 16px;
}
#footerTop .select {
  background: rgba(255, 255, 255, 0.03);
}
#footerTop .enquiryForm select {
  line-height: 1.45em;
  padding: 8px 8px 8px 36px;
}

.required {
    font-size: 0.9em;
  color: var(--fontColor);
}

.closeBtn {
  position: absolute;
  left: 0;
  right: 10px;
  top: 10px;
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 5px 0 auto;
  cursor: pointer;
  transition: 0.5s;
}

.closeBtn:hover {
  opacity: 0.5;
}

.closeBtn:before, .closeBtn:after {
  content: "";
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
}

.closeBtn:before {
  transform: rotate(-45deg);
}
.closeBtn:after {
  transform: rotate(45deg);
}

/*  INPUT ICONS */

#footerTop .enqRow {
    position: relative;
}

#footerTop span {
    font-family: FontAwesome;
    position: absolute;
    top: 14px;
    left: 22px;
    font-size: 0.9em;
    font-weight: normal;
    color: var(--fontColor);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#footerTop .name:before {
    content: "\f007";
}

#footerTop .question:before {
    content: "\f0e6";
}

#footerTop .clock:before {
    content: "\f017";
}

#footerTop .enquireType:before {
  content: "\f03a";
}

.dropContact p a {
  color: #fff;
}

.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 #fff;
  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)}}

/* ---------------------------------- */
/* ----------- PRELOADER  ----------- */
/* ---------------------------------- */

#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: 250px;
  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(--primaryDark);
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -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%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-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%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }



/* ---------------------------------- */
/* ----------- CUSTOM CSS ----------- */
/* ---------------------------------- */

/* ----------- ACCOUNTS TOP BAR & SHOPPING CHECKOUT----------- */

.accountsTopBar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: right;
  z-index: 101;
  transition: var(--transition);
}

.scrollStart .accountsTopBar {
  transform: translateY(-2em)
}

.accountsTopBar a {
  opacity: .9;
}
.accountsTopBar a:hover {
  color: var(--ctaB);
}


#questionsForm .enquiry > .enqRow:last-of-type {
  border-top: 1px solid var(--opacity10);
  margin-top: 1em;
  padding-top: .5em;
}

#questionsForm .enquiry > .enqRow:last-of-type:before {
  content: "I have read the Fee Structure and Terms and Conditions set out and agree to abide by them for the complete time enrolled at ShowBiz Performing Arts Studios. I also agree that all information provided by myself is true. I give permission for my child to be photographed or videoed for promotional purposes and Annual Concert only.";
}

#questionsForm .enquiry > .enqRow:last-of-type .enqLeft {
  font-weight: bold;
}



/* ----------- BIRTHDAYS PAGE ----------- */

.link5 #section2 .textSection {
  position: relative;
}

.link5 #section2 .textSection:before {
  content: "";
  position: absolute;
  bottom: 0em;
  left: -5em;
  width: 80%;
  height: 100%;
  background: url(/files/balloons3.svg) no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: .2;
  z-index: -1;
}

.link5 #section2 .textSection:after {
  content: "";
  position: absolute;
  top: 0em;
  right: -5em;
  width: 40%;
  height: 60%;
  background: url(/files/balloons5.svg) no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: .2;
  z-index: -1;
}



/* ----------- ASSORTED CSS ----------- */

a[id*="anchor"] {
  padding-top: 5em;
}

.grecaptcha-badge {
  z-index: 100;
}

.link18 h1 span {
  text-transform: none;
}

.link18 #section1 .textSection .container {
  position: relative;
}
.link18 #section1 .textSection .container:after {
  content: "";
  position: absolute;
  top: -1.5em;
  left: 50%;
  width: 12em;
  height: 12em;
  background: url(/thumbnaillarge/danceStep.png) no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

/* ----------- CONTACT PAGE ----------- */

.link1 #section1 .contact {
  text-align: right;
}


/* ----------- OUR TEAM PAGE BUTTONS ----------- */

.link7 .siteBottom section:not(:first-of-type) {
  background: var(--bgColorDark)
}

.link7 #section2:before {
  content: "";
  position: absolute;
  top: -3em;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skewY(-1deg);
  background: var(--bgColorDark);
}

.link7 .siteBottom section:last-of-type:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -3em;
  background: var(--bgColorDark);
  z-index: 0
}


/* ----------- INDIVIDUAL SECTION STYLING ----------- */

.link2 #section1 .textSection .siteContent,
.link6 #section1 .textSection .siteContent,
.link4 #section1 .textSection .siteContent,
.link3 #section1 .textSection .siteContent {
  padding-bottom: 2em;
}

.link7 #section2 .photoSection .siteContent {
  padding-top: 6em;
}

.link4 #section1 .photoSection .siteContent {
  padding-bottom: 0;
}

.link37 #section2 .moduleTable img,
.link10 #section2 .moduleTable img {
  max-width: 40%;
}
.link37 .M_full_img-fullColourLight .twoColumn>tbody>tr>td:first-of-type {
  border-right: none;
}


/* ----------- PATTERNED BACKGROUNDS ----------- */

/*

.moduleTable.background >tbody>tr>td:before,
.sidebarRight:before,
.enquiryForm:before,
.M_full_img-fullColourLight .twoColumn:before,
.M_full_img-fullColourLight .threeColumn:before,
.sidebarLeft:before {
  content: "";
  position: absolute;
  top: 2em;
  bottom: -2em;
  left: -2em;
  right: 2em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23455b65' fill-opacity='0.15'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.enquiryForm:before {
}

footer .enquiryForm {
  padding: 1em;
}
footer .enquiryForm:before {
  content: "";
  position: absolute;
  top: 2em;
  bottom: -2em;
  left: -2em;
  right: 2em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

*/


/* ----------- SIDEBAR RIGHT ----------- */

.sidebarRight, .sidebarLeft {
  background: var(--bgColorDark);
  position: relative;
}

.sidebarRight>tbody>tr>td:last-of-type,
.sidebarLeft>tbody>tr>td{
  padding: 1.5em;
}
.sidebarLeft>tbody>tr>td:last-of-type {
  padding-left: 0;
}

.link14 #section2 .sidebarLeft>tbody>tr>td:last-of-type {
  padding: 0;
}

.sidebarRight iframe, .sidebarLeft iframe {
  display: block;
}

.link0 #section3 .sidebarRight >tbody>tr>td:first-of-type {
  padding-right: 0;
}


.twoColumn .sidebarLeft {
  background: none;
}



/* ----------- BACKGROUND SINGLE CELL MODULE ---------- */

.moduleTable.background,
.M_full_img-fullColourLight .twoColumn,
.M_full_img-fullColourLight .threeColumn {
  margin-bottom: 1em;
  position: relative;
  border-radius: var(--buttonBorderRadius);
}

.moduleTable.background >tbody>tr>td {
  padding: 1.5em;
  background: var(--bgColorDark);
  z-index: 1;
}

.M_full_img-fullColourLight .moduleTable.background>tbody>tr>td,
.M_full_img-fullColourLight .threeColumn  {
  background: var(--bgColor);
}



/* ----------- CUSTOM IMAGE LOOK ---------- */

.imageLayout {
  position: relative;
  padding: 4% 0 7%;
}

.imageLayout img:first-child {
  width: 90% !important;
}

.imageLayout img:last-child {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 40% !important;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
}

.imageLayout:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15%;
  width: 30%;
  background: var(--cta);
  opacity: .8;
}

.twoColumn td:first-child .imageLayout img:first-child {
  margin-left: 10%;
}

.twoColumn td:first-child .imageLayout img:last-child {
  left: 0;
  right: auto;
}

.twoColumn td:first-child .imageLayout:before {
  left: 15%;
  right: auto;
}


/* ----------- CLASSICAL BALLET AND ELITE DANCE PAGES ---------- */

.link16 #section2,
.link15 #section2 {
  z-index: 1;
}




/*------------------------------------*/
/*---------- MEDIA QUERIES -----------*/
/*------------------------------------*/

@media all and (max-width: 900px) {
  .logo {
    max-width: 150px
  }
  .scrollStart #banner .logo {
    max-width: 120px;
  }
  #menu {
    top: 2.4em
  }
  #menu nav>li>a {
    margin: 2em 0;
  }
  #menu nav li a {
    font-size: .75em;
    padding: 10px 5px
  }
  #subBanner .container {
    padding-bottom: 200px;
  }
  .M_full_img-fullColourLight .threeColumn td:nth-child(2) {
    border-right: none;
  }
  
  .link18 #section1 .textSection .container:after {
    content: "";
    position: absolute;
    bottom: auto;
    top: -6.5em;
    left: auto;
    right: 1em;
    width: 9em;
    height: 9em;
    background: url(/thumbnaillarge/danceStep.png) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 2;
  }
}
