@charset "UTF-8";
.noDesktop {
  display: none !important;
}

@media only screen and (max-width: 1100px) {
  .noDesktop {
    display: block !important;
  }
  .noLaptop {
    display: none !important;
  }
}
@media only screen and (max-width: 900px) {
  .noDesktop, .noLaptop {
    display: block !important;
  }
  .noBigTablet {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .noDesktop, .noLaptop, .noBigTablet {
    display: block !important;
  }
  .noTablet {
    display: none !important;
  }
}
@media only screen and (max-width: 650px) {
  .noDesktop, .noLaptop, .noBigTablet, .noTablet {
    display: block !important;
  }
  .noBigPhone {
    display: none !important;
  }
}
@media only screen and (max-width: 450px) {
  .noDesktop, .noLaptop, .noBigTablet, .noTablet, .noBigPhone {
    display: block !important;
  }
  .noPhone {
    display: none !important;
  }
}
.smoothPX {
  transition: all 0.25s linear;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
/* Safari, Chrome and Opera > 12.1 */
/* Internet Explorer */
/* Opera < 12.1 */
:root {
  --kc-color-black: #000;
  --kc-color-black-rgb: 0, 0, 0;
  --kc-color-white: #FFF;
  --kc-color-white-rgb: 255, 255, 255;
  --kc-color-grey: #606060;
  --kc-color-grey-rgb: 96, 96, 96;
  --kc-color-red: #D9000D;
  --kc-color-red-rgb: 217, 0, 13;
  --kc-color-magenta: #eb1a74;
  --kc-color-magenta-rgb: 235, 26, 116;
  --kc-color-green: #74af26;
  --kc-color-green-rgb: 116, 175, 38;
  --kc-color-blue: #007ac1;
  --kc-color-blue-rgb: 0, 122, 193;
  --kc-color-blue-dark: #2c6ada;
  --kc-color-blue-dark-rgb: 44, 106, 218;
  --kc-color-yellow: #fcd623;
  --kc-color-yellow-rgb: 252, 214, 35;
  --kc-color-purple: #9685c5;
  --kc-color-purple-rgb: 150, 133, 197;
  --kc-color-dark-grey: #333333;
  --kc-color-dark-grey-rgb: 51, 51, 51;
  --kc-color-light-grey: #cccccc;
  --kc-color-light-grey-rgb: 204, 204, 204;
  --kc-color-lighter-grey: #F0F0F0;
  --kc-color-lighter-grey-rgb: 240, 240, 240;
  --kc-color-facebook: #486099;
  --kc-color-facebook-rgb: 72, 96, 153;
  --kc-color-primary: #ffd600;
  --kc-color-primary-rgb: 255, 214, 0;
  --kc-color-secondary: #000000;
  --kc-color-secondary-rgb: 0, 0, 0;
  --kc-color-border-colour: #D5D5D5;
  --kc-color-border-colour-rgb: 213, 213, 213;
  --kc-color-box-grey: #EDEEED;
  --kc-color-box-grey-rgb: 237, 238, 237;
  --kc-color-block-link-bg: var(--kc-color-primary);
  --kc-color-block-link-bg-rgb: var(--kc-color-primary-rgb);
  --kc-color-block-link-text: var(--kc-color-black);
  --kc-color-block-link-text-rgb: var(--kc-color-black-rgb);
  --kc-color-block-link-2-bg: var(--kc-color-secondary);
  --kc-color-block-link-2-bg-rgb: var(--kc-color-secondary-rgb);
  --kc-color-block-link-2-text: var(--kc-color-white);
  --kc-color-block-link-2-text-rgb: var(--kc-color-white-rgb);
  --kc-color-menu-colour: var(--kc-color-primary);
  --kc-color-menu-colour: var(--kc-color-primary-rgb);
  --kc-color-text-colour: var(--kc-color-grey);
  --kc-color-text-colour-rgb: var(--kc-color-grey-rgb);
  --kc-color--box-back: rgba(var(--kc-color-primary-rgb),0.65);
}

/** Light color-scheme **/
:root {
  --cc-bg: #fff;
  --cc-text: var(--kc-color-black);
  --cc-btn-primary-bg: var(--kc-color-primary);
  --cc-btn-primary-text: var(--kc-color-black);
  --cc-btn-primary-hover-bg: var(--kc-color-primary);
  --cc-btn-secondary-bg: #eaeff2;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #d8e0e6;
  --cc-toggle-bg-off: #919ea6;
  --cc-toggle-bg-on: var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly: #d5dee2;
  --cc-toggle-knob-bg: #fff;
  --cc-toggle-knob-icon-color: #ecf2fa;
  --cc-block-text: var(--cc-text);
  --cc-cookie-category-block-bg: #f0f4f7;
  --cc-cookie-category-block-bg-hover: #e9eff4;
  --cc-section-border: #f1f3f5;
  --cc-cookie-table-border: #e9edf2;
  --cc-overlay-bg: rgba(4, 6, 8, .85);
  --cc-webkit-scrollbar-bg: #cfd5db;
  --cc-webkit-scrollbar-bg-hover: #9199a0;
}

/** Dark color-scheme **/
.c_darkmode {
  --cc-bg: #181b1d;
  --cc-text: #d8e5ea;
  --cc-btn-primary-bg: #a6c4dd;
  --cc-btn-primary-text: #000;
  --cc-btn-primary-hover-bg: #c2dff7;
  --cc-btn-secondary-bg: #33383c;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #3e454a;
  --cc-toggle-bg-off: #667481;
  --cc-toggle-bg-on: var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly: #454c54;
  --cc-toggle-knob-bg: var(--cc-cookie-category-block-bg);
  --cc-toggle-knob-icon-color: var(--cc-bg);
  --cc-block-text: #b3bfc5;
  --cc-cookie-category-block-bg: #23272a;
  --cc-cookie-category-block-bg-hover: #2b3035;
  --cc-section-border: #292d31;
  --cc-cookie-table-border: #2b3035;
  --cc-webkit-scrollbar-bg: #667481;
  --cc-webkit-scrollbar-bg-hover: #9199a0;
}

:root {
  --kc-body-font: "Lato", "Helvetica", "Arial", sans-serif;
  --kc-body-font-weight: 400;
  --kc-body-font-line-height: 1.6em;
  --kc-header-font: "Raleway", "Helvetica", "Arial", sans-serif;
  --kc-header-font-weight: 800;
  --kc-header-font-line-height: 1.2em;
  --kc-banner-header-font: var(--kc-banner-header-font);
  --kc-banner-header-font-weight: 300;
  --kc-banner-header-font-weight-strong: 700;
  --kc-menu-font: var(--kc-banner-header-font);
  --kc-menu-font-weight: 600;
  --kc-flooring-menu-font: var(--kc-banner-header-font);
  --kc-flooring-menu-font-weight: 800;
  --kc-h1-size: 48px;
  --kc-h1-size-clamp: clamp(30px, 4.5vw, 64px);
  --kc-h1-size: 48px;
  --kc-h1-size-clamp: clamp(36px, 4.5vw, 68px);
  --kc-h2-size: 40px;
  --kc-h2-size-clamp: clamp(24px, 3.2vw, 52px);
  --kc-h3-size: 36px;
  --kc-h3-size-clamp: clamp(22px, 2.8vw, 38px);
  --kc-h4-size: 28px;
  --kc-h4-size-clamp: clamp(18px, 2.4vw, 26px);
  --kc-h5-size: 24px;
  --kc-h5-size-clamp: clamp(16px, 2.2vw, 22px);
  --kc-h6-size: 22px;
  --kc-h6-size-clamp: clamp(14px, 2vw, 18px);
  --kc-body-font-size: 16px;
  --kc-body-font-size-clamp: clamp(14px, 1.8vw, 16px);
  --kc-menu-font-size: 14px;
  --kc-menu-font-size-clamp: clamp(14px, 1.8vw, 16px);
  --kc-small-font-size: 12px;
  --kc-small-font-size-clamp: clamp(12px, 1.2vw, 14px);
  --kc-credit-font-size: 10px;
  --kc-credit-font-size-clamp: clamp(9px, 1vw, 11px);
}

body {
  font-size: 62.5%;
}

p, ul, ol, table {
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
  margin-bottom: 1.2em;
  color: var(--kc-color-text-colour);
}
p u, p span, ul u, ul span, ol u, ol span, table u, table span {
  text-decoration-color: var(--kc-color-primary);
}

p {
  margin-bottom: 1.1em;
}

a {
  color: var(--kc-color-blue);
  text-decoration: none;
}

sup {
  font-size: 0.5em !important;
}

strong {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6, p, span {
  text-underline-offset: 0.15em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--kc-header-font);
  font-weight: var(--kc-header-font-weight);
  line-height: var(--kc-header-font-line-height);
  margin-bottom: 0.5em;
  color: var(--kc-color-black);
  width: 100%;
}
h1 u, h1 span, h2 u, h2 span, h3 u, h3 span, h4 u, h4 span, h5 u, h5 span, h6 u, h6 span {
  text-decoration-color: var(--kc-color-primary);
}
h1 strong, h1 b, h2 strong, h2 b, h3 strong, h3 b, h4 strong, h4 b, h5 strong, h5 b, h6 strong, h6 b {
  font-weight: 900;
}
h1.magenta, h2.magenta, h3.magenta, h4.magenta, h5.magenta, h6.magenta {
  color: var(--kc-color-magenta);
}
h1.green, h2.green, h3.green, h4.green, h5.green, h6.green {
  color: var(--kc-color-green);
}
h1.blue, h2.blue, h3.blue, h4.blue, h5.blue, h6.blue {
  color: var(--kc-color-blue);
}
h1.yellow, h2.yellow, h3.yellow, h4.yellow, h5.yellow, h6.yellow {
  color: var(--kc-color-yellow);
}
h1.purple, h2.purple, h3.purple, h4.purple, h5.purple, h6.purple {
  color: var(--kc-color-purple);
}
h1.plumHeader, h2.plumHeader, h3.plumHeader, h4.plumHeader, h5.plumHeader, h6.plumHeader {
  color: var(--kc-color-secondary);
}

h1 {
  font-size: var(--kc-h1-size) 48px;
  font-size: var(--kc-h1-size-clamp);
  line-height: 1em;
  margin-bottom: 0.5em;
}

h2 {
  font-size: var(--kc-h2-size) 40px;
  font-size: var(--kc-h2-size-clamp);
  line-height: 1.1em;
}

h3 {
  font-size: var(--kc-h3-size) 36px;
  font-size: var(--kc-h3-size-clamp);
  line-height: 1.2em;
}

h4 {
  font-size: var(--kc-h4-size) 28px;
  font-size: var(--kc-h4-size-clamp);
  margin-bottom: 0.75em;
}

h5 {
  font-size: var(--kc-h5-size) 24px;
  font-size: var(--kc-h5-size-clamp);
  margin-bottom: 0.8em;
}

h6 {
  font-size: var(--kc-h6-size) 22px;
  font-size: var(--kc-h6-size-clamp);
  margin-bottom: 0.9em;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

* {
  padding: 0;
  margin: 0;
  position: relative;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
}

.clearit {
  height: 0px;
  overflow: hidden;
  clear: both;
  width: 100%;
  display: block;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  width: 100%;
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  scroll-padding-top: 120px;
}

.page {
  overflow: hidden;
  z-index: 2;
  width: 100%;
}

.section {
  width: 100%;
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.wrapper {
  width: calc(100% - (calc((calc(24px + 2vw)) * 2)));
  display: block;
  margin: 0 auto;
  max-width: 1400px;
  clear: both;
}

.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.flexer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.flexer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.bg > a {
  display: block;
  float: left;
  width: 100%;
}
.bg span {
  float: left;
  width: 100%;
  display: block;
}

.widthInd {
  display: none;
}

p, ul, ol, table, blockquote {
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
  padding: 0;
}

@media only screen and (max-width: 900px) {
  .wrapper {
    width: calc(100% - (calc(24px + 2vw)));
  }
}
.logo {
  width: 100%;
  display: block;
  padding: 0;
}
.logo span {
  background-image: url("/wp-content/themes/kingsford/img/kingsford-carpets-logo.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 99%;
  width: 100%;
  display: block;
  float: left;
  padding-top: 33%;
}
.logo:after {
  content: "";
  display: table;
  clear: both;
  opacity: 0;
}
.logo p {
  opacity: 0;
  position: absolute;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  font-size: 1px;
}

.noSpace {
  margin-bottom: 0;
}

.image img {
  display: block;
  height: auto;
}
.image.leftTop img {
  -o-object-position: top left;
     object-position: top left;
}
.image.centerTop img {
  -o-object-position: top center;
     object-position: top center;
}
.image.rightTop img {
  -o-object-position: top right;
     object-position: top right;
}
.image.leftCentre img {
  -o-object-position: center left;
     object-position: center left;
}
.image.centreCentre img {
  -o-object-position: center center;
     object-position: center center;
}
.image.rightCentre img {
  -o-object-position: center right;
     object-position: center right;
}
.image.leftBottom img {
  -o-object-position: bottom left;
     object-position: bottom left;
}
.image.centreBottom img {
  -o-object-position: bottom center;
     object-position: bottom center;
}
.image.rightBottom img {
  -o-object-position: bottom right;
     object-position: bottom right;
}
.image.imgContain img {
  -o-object-fit: contain;
     object-fit: contain;
}
.image.imgCover img {
  -o-object-fit: cover;
     object-fit: cover;
}
.image a {
  display: block;
  width: 100%;
}

.dimImage:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-black-rgb), 0.25);
  pointer-events: none;
}
img {
  display: block;
}
img.leftTop {
  -o-object-position: top left !important;
     object-position: top left !important;
}
img.centerTop {
  -o-object-position: top center !important;
     object-position: top center !important;
}
img.rightTop {
  -o-object-position: top right !important;
     object-position: top right !important;
}
img.leftCentre {
  -o-object-position: center left !important;
     object-position: center left !important;
}
img.centreCentre {
  -o-object-position: center center !important;
     object-position: center center !important;
}
img.rightCentre {
  -o-object-position: center right !important;
     object-position: center right !important;
}
img.leftBottom {
  -o-object-position: bottom left !important;
     object-position: bottom left !important;
}
img.centreBottom {
  -o-object-position: bottom center !important;
     object-position: bottom center !important;
}
img.rightBottom {
  -o-object-position: bottom right !important;
     object-position: bottom right !important;
}
img.imgContain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
img.imgCover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.imageHolder {
  width: 100%;
}
.imageHolder.leftTop img {
  -o-object-position: top left;
     object-position: top left;
}
.imageHolder.centerTop img {
  -o-object-position: top center;
     object-position: top center;
}
.imageHolder.rightTop img {
  -o-object-position: top right;
     object-position: top right;
}
.imageHolder.leftCentre img {
  -o-object-position: center left;
     object-position: center left;
}
.imageHolder.centreCentre img {
  -o-object-position: center center;
     object-position: center center;
}
.imageHolder.rightCentre img {
  -o-object-position: center right;
     object-position: center right;
}
.imageHolder.leftBottom img {
  -o-object-position: bottom left;
     object-position: bottom left;
}
.imageHolder.centreBottom img {
  -o-object-position: bottom center;
     object-position: bottom center;
}
.imageHolder.rightBottom img {
  -o-object-position: bottom right;
     object-position: bottom right;
}
.imageHolder.imgContain img {
  -o-object-fit: contain;
     object-fit: contain;
}
.imageHolder.imgCover img {
  -o-object-fit: cover;
     object-fit: cover;
}
.imageHolder img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.imageHolder .frame, .imageHolder a {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.imageHolder .missingImage {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  background-color: rgba(var(--kc-color-box-grey), 5);
}
.imageHolder span {
  display: block;
  width: 100%;
  padding-top: 100%;
  z-index: 1;
  pointer-events: none;
}
.imageHolder.compat-object-fit {
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.imageHolder.compat-object-fit img {
  opacity: 0;
}

.image.natural,
.natural .image {
  padding: 0;
}
.image.natural .imageHolder,
.natural .image .imageHolder {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  height: auto;
}
.image.natural .imageHolder img, .image.natural .imageHolder a,
.natural .image .imageHolder img,
.natural .image .imageHolder a {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  height: auto;
}
.image.natural .imageHolder span,
.natural .image .imageHolder span {
  display: none;
}

.image.inline,
.inline .image {
  display: inline-block;
  float: right;
  margin-left: calc((calc(24px + 2vw)) / 2);
  margin-bottom: 12px;
}

.bgImage {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bgImage.fullWidth {
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  transform: translateX(-50vw);
}
.bgImage.leftTop img {
  -o-object-position: top left;
     object-position: top left;
}
.bgImage.centerTop img {
  -o-object-position: top center;
     object-position: top center;
}
.bgImage.rightTop img {
  -o-object-position: top right;
     object-position: top right;
}
.bgImage.leftCentre img {
  -o-object-position: center left;
     object-position: center left;
}
.bgImage.centreCentre img {
  -o-object-position: center center;
     object-position: center center;
}
.bgImage.rightCentre img {
  -o-object-position: center right;
     object-position: center right;
}
.bgImage.leftBottom img {
  -o-object-position: bottom left;
     object-position: bottom left;
}
.bgImage.centreBottom img {
  -o-object-position: bottom center;
     object-position: bottom center;
}
.bgImage.rightBottom img {
  -o-object-position: bottom right;
     object-position: bottom right;
}
.bgImage.BGopacity10 {
  opacity: 0.1;
}
.bgImage.BGopacity20 {
  opacity: 0.2;
}
.bgImage.BGopacity30 {
  opacity: 0.3;
}
.bgImage.BGopacity40 {
  opacity: 0.4;
}
.bgImage.BGopacity50 {
  opacity: 0.5;
}
.bgImage.BGopacity60 {
  opacity: 0.6;
}
.bgImage.BGopacity70 {
  opacity: 0.7;
}
.bgImage.BGopacity80 {
  opacity: 0.8;
}
.bgImage.BGopacity90 {
  opacity: 0.9;
}
.bgImage.opacity10 img {
  opacity: 0.1;
}
.bgImage.opacity20 img {
  opacity: 0.2;
}
.bgImage.opacity30 img {
  opacity: 0.3;
}
.bgImage.opacity40 img {
  opacity: 0.4;
}
.bgImage.opacity50 img {
  opacity: 0.5;
}
.bgImage.opacity60 img {
  opacity: 0.6;
}
.bgImage.opacity70 img {
  opacity: 0.7;
}
.bgImage.opacity80 img {
  opacity: 0.8;
}
.bgImage.opacity90 img {
  opacity: 0.9;
}
.bgImage.desaturate img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}
.bgImage.blendedNormal img {
  mix-blend-mode: normal;
}
.bgImage.blendedMultiply img {
  mix-blend-mode: multiply;
}
.bgImage.blendedScreen img {
  mix-blend-mode: screen;
}
.bgImage.blendedOverlay img {
  mix-blend-mode: overlay;
}
.bgImage.blendedLighten img {
  mix-blend-mode: lighten;
}
.bgImage.blendedColorDodge img {
  mix-blend-mode: colordodge;
}
.bgImage.blendedColorBurn img {
  mix-blend-mode: colorburn;
}
.bgImage.blendedHardLight img {
  mix-blend-mode: hardlight;
}
.bgImage.blendedSoftLight img {
  mix-blend-mode: softlight;
}
.bgImage.blendedDifference img {
  mix-blend-mode: difference;
}
.bgImage.blendedExclusion img {
  mix-blend-mode: exclusion;
}
.bgImage.blendedSaturation img {
  mix-blend-mode: saturation;
}
.bgImage.blendedColor img {
  mix-blend-mode: color;
}
.bgImage.blendedLuminosity img {
  mix-blend-mode: luminosity;
}

.bigList {
  font-family: var(--kc-header-font);
  font-weight: var(--kc-header-font-weight);
  line-height: var(--kc-header-font-line-height);
  margin-bottom: 0.5em;
  font-size: var(--kc-h6-size) 22px;
  font-size: var(--kc-h6-size-clamp);
}

a.blockLink, .blockLink, input[type=submit], button, .button, blockLink {
  cursor: pointer;
  padding: 0.75em 1.25em;
  display: inline-block;
  text-decoration: none;
  color: var(--kc-color-block-link-text);
  background-color: var(--kc-color-block-link-bg);
  white-space: nowrap;
  margin-top: 1.2em;
  line-height: 1.2em;
  transition: background-color 350ms ease-in;
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
  font-weight: 700;
  transition: all 0.35s ease;
}
a.blockLink:after, .blockLink:after, input[type=submit]:after, button:after, .button:after, blockLink:after {
  content: "";
  background-color: var(--kc-color-block-link-bg);
  z-index: 0;
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  right: auto;
  bottom: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  height: 100%;
  width: 0;
  opacity: 1;
  transition: all 0.35s ease;
}
a.blockLink:hover:after, .blockLink:hover:after, input[type=submit]:hover:after, button:hover:after, .button:hover:after, blockLink:hover:after {
  width: 18px;
  opacity: 1;
}
a.blockLink.secondaryStyle, .blockLink.secondaryStyle, input.secondaryStyle[type=submit], button.secondaryStyle, .secondaryStyle.button, blockLink.secondaryStyle {
  color: var(--kc-color-block-link-2-text);
  background-color: var(--kc-color-block-link-2-bg);
}
a.blockLink.secondaryStyle:after, .blockLink.secondaryStyle:after, input.secondaryStyle[type=submit]:after, button.secondaryStyle:after, .secondaryStyle.button:after, blockLink.secondaryStyle:after {
  content: "";
  background-color: var(--kc-color-block-link-2-bg);
}

.blockLink a, input[type=submit] a, button a, .button a {
  color: var(--kc-color-block-link-text);
  font-weight: 700;
}

.addCorners {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.addCorners:after, .addCorners:before {
  pointer-events: none;
  position: absolute;
  width: 15%;
  padding-top: 15%;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url("/wp-content/themes/kingsford/img/corner-br.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  transform: translateX(23%) translateY(23%);
}
.addCorners:before {
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  width: 10%;
  height: 10%;
  transform: translateX(-23%) translateY(-10.25%) rotate(180deg);
}

input[type=submit], button, .button {
  border: 0;
  border-radius: 0;
  padding: 1.25em 1.5em;
  font-weight: 700;
}
input[type=submit]:after, button:after, .button:after {
  display: none;
}

.smallPrint {
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
}

.socials {
  width: auto;
  list-style-type: none;
}
.socials li {
  width: 38px;
  height: 38px;
  display: inline-block;
  margin: 0;
  padding: 0;
  z-index: 1;
  transition: all 0.35s ease;
  background-color: var(--kc-color-primary);
  margin-left: 12px;
}
.socials:hover li div {
  opacity: 1;
}
.socials a {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.35s ease;
}
.socials a div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-position: center center;
  background-size: 55% 55%;
  background-repeat: no-repeat;
}
.socials a div p {
  opacity: 0;
  font-size: 1px;
}
.socials a div.connect {
  background-image: url("/wp-content/themes/kingsford/img/socials/connect-black.svg");
}
.socials a div.fb {
  background-image: url("/wp-content/themes/kingsford/img/socials/facebook-black.svg");
}
.socials a div.tw {
  background-image: url("/wp-content/themes/kingsford/img/socials/twitter-black.svg");
}
.socials a div.li {
  background-image: url("/wp-content/themes/kingsford/img/socials/linkedin-black.svg");
}
.socials a div.wp {
  background-image: url("/wp-content/themes/kingsford/img/socials/wordpress-black.svg");
}
.socials a div.pt {
  background-image: url("/wp-content/themes/kingsford/img/socials/pinterest-black.svg");
}
.socials a div.ig {
  background-image: url("/wp-content/themes/kingsford/img/socials/instagram-black.svg");
}

.text ul, .additionalText ul {
  list-style-type: none;
}
.text ul li, .additionalText ul li {
  padding-left: 1.4em;
  margin-bottom: 0.4em;
}
.text ul li:before, .additionalText ul li:before {
  position: absolute;
  left: 0;
  top: 0.6em;
  right: auto;
  bottom: auto;
  width: 0.6em;
  height: 0.6em;
  content: "";
  display: block;
  background-color: var(--kc-color-primary);
}
.text ol, .additionalText ol {
  list-style: none;
  counter-reset: item;
}
.text ol li, .additionalText ol li {
  counter-increment: item;
  margin-bottom: 0.6em;
}
.text ol li:before, .additionalText ol li:before {
  font-family: var(--kc-header-font);
  font-weight: var(--kc-header-font-weight);
  font-size: var(--kc-h6-size) 22px;
  font-size: var(--kc-h6-size-clamp);
  color: var(--kc-color-primary);
  margin-right: 0.6em;
  content: counter(item) ". ";
  text-align: center;
  display: inline-block;
  margin-bottom: 0;
}
.text *:last-child, .additionalText *:last-child {
  margin-bottom: 0;
}

.introText + div {
  margin-top: calc(24px + 2vw);
}

.textHeading {
  padding-bottom: calc((calc(24px + 2vw)) / 4);
}

@media only screen and (max-width: 650px) {
  .textHeading.hasColour + .flexer .hasColour {
    margin-top: 0;
  }
} /*$bigPhone ends*/
:root {
  --kc-color-skip-bg: var(--kc-color-primary);
  --kc-color-skip-link: var(--kc-color-black);
  --kc-color-header-bg: var(--kc-color-white);
  --kc-color-header-link: var(--kc-color-black);
  --kc-color-addressBar-bg: var(--kc-color-lighter-grey);
  --kc-color-addressBar-link: var(--kc-color-black);
  --kc-color-quoteBlock-bg: var(--kc-color-primary);
  --kc-color-quoteBlock-link: var(--kc-color-black);
}

#headerNav {
  background-color: var(--kc-color-header-bg);
  position: sticky;
  top: 0;
  z-index: 10;
  overflow: visible;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
#headerNav a.skip-to-content-link {
  position: absolute;
  transform: translateY(-100%);
  z-index: 11;
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
  color: var(--kc-color-black);
}
#headerNav a.skip-to-content-link {
  background: var(--kc-color-skip-bg);
  color: var(--kc-color-skip-link);
  padding: calc((calc(24px + 2vw)) / 4);
  position: absolute;
  transform: translateY(-100%);
  transition: transform 0.3s;
}
#headerNav a.skip-to-content-link:focus {
  transform: translateY(0%);
}
#headerNav .addressBar {
  width: 100%;
  order: 0;
  background-color: var(--kc-color-address-bar-bg);
}
#headerNav .addressBar ul {
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  font-size: var(--kc-small-font-size);
}
#headerNav .addressBar ul a {
  font-size: var(--kc-small-font-size);
  color: var(--kc-color-address-bar-link);
  text-decoration: none;
}
#headerNav .addressBar li {
  padding: calc((calc(24px + 2vw)) / 4);
}
#headerNav .mainNav {
  width: 100%;
  order: 1;
}
#headerNav .wrapper {
  overflow: visible;
}
#headerNav .flexer {
  align-items: stretch;
  flex-wrap: nowrap;
}
#headerNav .brand {
  min-width: 170px;
  max-width: 220px;
  width: 20%;
  padding: calc((calc(24px + 2vw)) / 4);
  padding-left: 0px;
  padding-bottom: calc((calc(24px + 2vw)) / 4);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}
#headerNav .quoteBlock,
#headerNav .quoteBlockMobile {
  background-color: var(--kc-color-quote-block-bg);
  max-width: calc(110px + 2vw);
  margin-right: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-end;
  padding: calc((calc(24px + 2vw)) / 2) calc((calc(24px + 2vw)) / 4);
  padding-top: calc(calc((calc(24px + 2vw)) / 2) + 12px);
  color: var(--kc-color-quote-block-link);
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  margin: 0;
  font-family: var(--kc-menu-font);
  font-weight: var(--kc-menu-font-weight);
  font-size: var(--kc-menu-font-size);
  font-size: var(--kc-menu-font-size-clamp);
  font-weight: 800;
}
#headerNav .quoteBlock span,
#headerNav .quoteBlockMobile span {
  transition: all 0.35s ease;
  display: inline-block;
  width: 100%;
}
#headerNav .quoteBlock:after,
#headerNav .quoteBlockMobile:after {
  transition: all 0.35s ease;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  right: 0;
  bottom: auto;
  width: 100%;
  height: calc((calc(24px + 2vw)) / 2);
  background-color: var(--kc-color-quote-block-bg);
  clip-path: polygon(100% 0%, 0 0, 50% 85%);
}
#headerNav .quoteBlock:hover span,
#headerNav .quoteBlockMobile:hover span {
  transition: all 0.35s ease;
  transform: translateY(-10%);
}
#headerNav .quoteBlock:hover:after,
#headerNav .quoteBlockMobile:hover:after {
  clip-path: polygon(100% 0%, 0 0, 50% 100%);
}
#headerNav .quoteBlockMobile {
  display: none;
  padding: calc((calc(24px + 2vw)) / 4);
}
#headerNav .quoteBlockMobile span {
  padding-bottom: 12px;
}
#headerNav .middle {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
  padding: calc((calc(24px + 2vw)) / 4);
  padding-bottom: 0px;
}
#headerNav .menuBar {
  margin-top: calc((calc(24px + 2vw)) / 4);
}
#headerNav .menu {
  order: 2;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

ul#headerMenu {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  margin: 0;
  padding-bottom: calc((calc(24px + 2vw)) / 2);
}
ul#headerMenu li {
  display: inline-block;
  padding: 0 calc((calc(24px + 2vw)) / 4);
}
ul#headerMenu a {
  color: var(--kc-color-header-link);
  display: inline-block;
  font-family: var(--kc-menu-font);
  font-weight: var(--kc-menu-font-weight);
  font-size: var(--kc-menu-font-size);
  font-size: var(--kc-menu-font-size-clamp);
  margin-top: 4px;
}
ul#headerMenu a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  right: 0;
  bottom: auto;
  width: 100%;
  height: 2px;
  background-color: var(--kc-color-primary);
  transform: scaleX(0);
  transform-origin: center center;
  opacity: 0;
  transition: all 0.35s ease;
}
ul#headerMenu a:hover:after {
  opacity: 1;
  transition: all 0.35s ease;
  transform: scaleX(1);
}
ul#headerMenu a.allFlooringLink {
  font-family: var(--kc-flooring-menu-font);
  font-weight: var(--kc-flooring-menu-font-weight);
  font-size: var(--kc-menu-font-size);
  font-size: var(--kc-menu-font-size-clamp);
}

nav#mainNavID.compact .middle {
  justify-content: center;
  align-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
}
nav#mainNavID.compact .menu {
  width: 100%;
}
nav#mainNavID.compact .menu ul#headerMenu {
  opacity: 0;
  position: absolute;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  pointer-events: none;
}
nav#mainNavID.compact .brand {
  padding-top: 22px;
}
nav#mainNavID.compact .menuBar {
  background-color: var(--kc-color-lighter-grey);
  padding: calc((calc(24px + 2vw)) / 2) 0;
}
nav#mainNavID.compact .menuHandle {
  display: flex;
}

.mobContact {
  cursor: pointer;
  color: var(--kc-color-header-link);
  font-family: var(--kc-menu-font);
  font-weight: var(--kc-menu-font-weight);
  font-size: var(--kc-menu-font-size);
  font-size: var(--kc-menu-font-size-clamp);
  text-transform: uppercase;
  font-weight: 800;
  display: inline-block;
}

#headerNav .menuHandle {
  display: none;
  font-family: var(--kc-menu-font);
  font-weight: var(--kc-menu-font-weight);
  font-size: var(--kc-menu-font-size);
  font-size: var(--kc-menu-font-size-clamp);
  cursor: pointer;
  color: var(--kc-color-header-link);
  margin-right: calc((calc(24px + 2vw)) / 2);
  font-family: var(--kc-menu-font);
  font-weight: var(--kc-menu-font-weight);
  font-size: var(--kc-menu-font-size);
  font-size: var(--kc-menu-font-size-clamp);
  text-transform: uppercase;
  font-weight: 800;
  /* Icon 1 */
}
#headerNav .menuHandle .flexer {
  margin-right: calc((calc(24px + 2vw)) / 2);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}
#headerNav .menuHandle #indicator {
  width: 20px;
  height: 15px;
  margin-right: 9px;
  cursor: pointer;
}
#headerNav .menuHandle #indicator span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--kc-color-header-link);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#headerNav .menuHandle #indicator span:nth-child(1) {
  top: 0px;
  transform-origin: center center;
}
#headerNav .menuHandle #indicator span:nth-child(2) {
  top: calc(50% - 1px);
  transform-origin: left center;
}
#headerNav .menuHandle #indicator span:nth-child(3) {
  top: auto;
  bottom: 0;
  transform-origin: center center;
}

.menuHandle.active #indicator span:nth-child(2) {
  opacity: 0;
}
.menuHandle.active #indicator span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.menuHandle.active #indicator span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

@media only screen and (max-width: 900px) {
  #headerNav .wrapper {
    width: 100%;
    padding-left: calc((calc(24px + 2vw)) / 2);
  }
}
@media only screen and (max-width: 768px) {
  #headerNav .brand {
    min-width: 150px;
    max-width: 190px;
  }
} /*$bigPhone ends*/
@media only screen and (max-width: 1100px) {
  nav#mainNavID .middle {
    justify-content: center;
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  nav#mainNavID .menu {
    width: 100%;
  }
  nav#mainNavID .menu ul#headerMenu {
    opacity: 0;
    position: absolute;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    pointer-events: none;
  }
  nav#mainNavID .brand {
    padding-top: 22px;
  }
  nav#mainNavID .menuBar {
    background-color: var(--kc-color-lighter-grey);
    padding: calc((calc(24px + 2vw)) / 2) 0;
  }
  nav#mainNavID .menuHandle {
    display: flex;
  }
} /*$smallTablet ends*/
@media only screen and (max-width: 650px) {
  #headerNav .brand {
    min-width: 130px;
    max-width: 170px;
  }
  #headerNav .middle {
    padding-right: 0;
  }
  #headerNav .menuHandle .flexer {
    margin-right: 0;
  }
  #headerNav .menuHandle .mobContact {
    display: none;
  }
} /*$bigPhone ends*/
@media only screen and (max-width: 450px) {
  #headerNav .addressbar {
    display: none;
  }
  #headerNav .addressbar .topEmail {
    display: none;
  }
  #headerNav .brand {
    min-width: 110px;
    max-width: 150px;
  }
  #headerNav .quoteBlockMobile {
    display: flex;
  }
  #headerNav .quoteBlock {
    display: none;
  }
} /*$phone ends*/
body.dormant {
  overflow: hidden;
}

.menuOverlay {
  z-index: 9;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: stretch;
  align-content: stretch;
  align-items: stretch;
  overflow: hidden;
  font-family: var(--kc-menu-font);
  font-weight: var(--kc-menu-font-weight);
  font-size: var(--kc-menu-font-size);
  font-size: var(--kc-menu-font-size-clamp);
  pointer-events: none;
  background-color: var(--kc-color-primary);
  background-image: linear-gradient(to bottom, var(--kc-color-primary), var(--kc-color-primary));
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.2);
  transform-origin: center center;
  transition: all 0.35s ease;
}
.menuOverlay nav {
  overflow: hidden;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.menuOverlay nav .floorTilesOverlay,
.menuOverlay nav #overlayMenu {
  pointer-events: all;
}
.menuOverlay .wrapper {
  text-align: center;
}
.menuOverlay p.closeMenu {
  z-index: 2;
  pointer-events: all;
  font-family: var(--kc-menu-font);
  font-weight: var(--kc-menu-font-weight);
  font-size: var(--kc-menu-font-size);
  font-size: var(--kc-menu-font-size-clamp);
  display: inline-block;
  white-space: nowrap;
  width: auto;
  color: var(--kc-color-black);
  margin: 18px auto;
  cursor: pointer;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}
.menuOverlay p.closeMenu:before {
  content: "";
  margin-right: 0.5em;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("/wp-content/themes/kingsford/img/close.svg");
  background-image: url("/wp-content/themes/kingsford/img/close-black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.menuOverlay h6 {
  margin: 0;
}
.menuOverlay .flexer.menuFlex {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  width: auto;
  padding-right: 50px;
  width: calc(100% + 50px);
  scrollbar-width: none;
  z-index: 3;
  max-height: 100%;
}
.menuOverlay .flexer::-webkit-scrollbar {
  display: none;
}
.menuOverlay .menuScroller {
  height: auto;
  min-height: 100%;
  width: 100%;
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: calc((calc(24px + 2vw)) * 2) 0;
}
.menuOverlay ul#overlayMenu {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.menuOverlay ul#overlayMenu li {
  width: 50%;
  max-width: 50%;
  padding: calc((calc(24px + 2vw)) / 4);
  min-width: 250px;
  flex-grow: 1;
  display: inline-block;
}
.menuOverlay ul#overlayMenu li a {
  width: 100%;
  display: block;
  padding: calc((calc(24px + 2vw)) / 4);
  border-bottom: solid 1px var(--kc-color-black);
  color: var(--kc-color-black);
  transition: all 0.35s ease;
}
.menuOverlay ul#overlayMenu li a:hover {
  background-color: rgba(var(--color-white-rgb), 1);
}
.menuOverlay .flooringTiles {
  margin: 0;
}
.menuOverlay .flooringTiles .wrapper {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.menuOverlay .flooringTiles .tileTrack {
  width: 100%;
  margin-left: 0;
  overflow: visible;
}
.menuOverlay .flooringTiles .flooringTile p.readMore {
  display: none;
}
.menuOverlay .backer {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 0.25;
  -o-object-fit: cover;
     object-fit: cover;
}

.menuOverlay.active {
  pointer-events: all;
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

@media only screen and (max-width: 768px) {
  .menuOverlay .wrapper {
    width: 100%;
    padding: calc((calc(24px + 2vw)) / 4);
  }
} /*$tablet ends*/
.floorTilesOverlay {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}
.floorTilesOverlay .flooringTile {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  width: 25%;
  min-width: 175px;
  padding: calc((calc(24px + 2vw)) / 4);
}
.floorTilesOverlay .flooringTile .positioner {
  width: 100%;
  transition: padding-bottom 0.25s ease-out;
}
.floorTilesOverlay .flooringTile .positioner * {
  text-align: left;
  color: var(--kc-color-black);
}
.floorTilesOverlay .flooringTile .positioner h6 {
  margin-bottom: 0;
}
.floorTilesOverlay .flooringTile .positioner h6 + p {
  margin-top: 4px;
}
.floorTilesOverlay .flooringTile .positioner p {
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
}
.floorTilesOverlay .flooringTile .positioner .viewMore {
  position: absolute;
  left: auto;
  top: auto;
  right: auto;
  bottom: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  transition-delay: 0.125s;
}
.floorTilesOverlay .flooringTile:hover .text .positioner {
  padding-bottom: 1.4em;
}
.floorTilesOverlay .flooringTile:hover .text .positioner .viewMore {
  opacity: 1;
}

.pageHeading {
  margin: calc(24px + 2vw) 0 0 0;
}
.pageHeading h1 {
  font-size: var(--kc-h1-size) 48px;
  font-size: var(--kc-h1-size-clamp);
}
.pageHeading *:last-child {
  margin-bottom: 0;
}

.notification.block {
  margin-top: 0;
}
.notification.block.noBack, .notification.block.hasColour {
  padding: calc((calc(24px + 2vw)) / 2);
}

.bannerHolder {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.bannerHolder img {
  width: 100%;
  display: block;
}
.bannerHolder .bannerText {
  background-color: var(--kc-color--box-back);
  padding: calc(24px + 2vw);
  width: 65%;
  max-width: 550px;
  min-width: 280px;
  pointer-events: all;
}
.bannerHolder .flexer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
  z-index: 2;
  width: 100%;
  padding: calc((calc(24px + 2vw)) * 2) 0;
  pointer-events: none;
}
.bannerHolder .flexer .stilt {
  width: 1px;
  height: clamp(500px, 80vh, 700px);
  display: block;
}
.bannerHolder .bannerTrack.flickity-enabled .carousel-cell, .bannerHolder .bannerTrack.flickity-enabled .banner {
  display: flex;
  transition: opacity 1s ease !important;
}
.bannerHolder .bannerTrack.flickity-enabled .carousel-cell.is-selected, .bannerHolder .bannerTrack.flickity-enabled .banner.is-selected {
  opacity: 1 !important;
}
.bannerHolder .bannerTrack.flickity-enabled .flickity-slider {
  width: 100%;
}
.bannerHolder .bannerTrack.flickity-enabled .flickity-viewport {
  overflow: visible;
}
.bannerHolder .bannerTrack.flickity-enabled .flickity-page-dots {
  position: absolute;
  width: clamp(18px, 2vw, 24px);
  top: calc(24px + 2vw);
  bottom: auto;
  right: calc(24px + 2vw);
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  max-width: none;
  margin: auto;
  margin-bottom: 0;
  z-index: 4;
}
.bannerHolder .bannerTrack.flickity-enabled .flickity-page-dots li {
  display: block;
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  margin-top: clamp(9px, 0.5vw, 12px);
  border-radius: 0;
  background-color: var(--kc-color-white);
  opacity: 0.8;
}
.bannerHolder .bannerTrack.flickity-enabled .flickity-page-dots li.is-selected {
  background-color: var(--kc-color-primary);
  opacity: 1;
}

.bannerStyle1 {
  width: 100%;
}
.bannerStyle1 .bannerTrack {
  z-index: 1;
  position: absolute;
  left: 0;
  top: auto;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--kc-color-lighter-grey);
}
.bannerStyle1 .bannerTrack .image, .bannerStyle1 .bannerTrack img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerStyle1 .bannerTrack .banner {
  display: none;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  background-color: var(--kc-color-lighter-grey);
}
.bannerStyle1 .bannerTrack .banner:first-child {
  display: flex;
}
.bannerStyle1 .bannerTrack.flickity-enabled .flickity-viewport {
  max-height: 100%;
  min-height: 100%;
}

.bannerStyle2 {
  text-align: center;
  padding: calc(24px + 2vw) 0 0 0;
}
.bannerStyle2 h1 {
  margin: calc((calc(24px + 2vw)) / 2) 0;
  font-size: var(--kc-h1-size) 48px;
  font-size: var(--kc-h1-size-clamp);
}
.bannerStyle2 h2 {
  font-size: var(--kc-h4-size) 28px;
  font-size: var(--kc-h4-size-clamp);
}

.bannerStyle3 .bannerTrack {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
.bannerStyle3 .bannerTrack .banner {
  width: 100%;
  min-height: 100%;
  display: none;
}
.bannerStyle3 .bannerTrack .banner .stilt {
  width: 1px;
  height: clamp(500px, 80vh, 700px);
  display: block;
}
.bannerStyle3 .bannerTrack .banner .wrapper {
  padding-right: calc(24px + 2vw);
}
.bannerStyle3 .bannerTrack .banner:first-child {
  display: flex;
}
.bannerStyle3 .bannerTrack .banner .flexer {
  z-index: 1;
  width: 100%;
}
.bannerStyle3 .bannerTrack .image, .bannerStyle3 .bannerTrack img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerStyle3 .bannerTrack .banner.textRight .bannerText {
  margin-left: auto;
  margin-right: 0;
}
.bannerStyle3 .bannerTrack .banner.textCentre .bannerText {
  margin-left: auto;
  margin-right: auto;
}
.bannerStyle3 .bannerTrack.flickity-enabled .flickity-viewport {
  width: 100%;
}

@media only screen and (max-width: 650px) {
  .bannerHolder .bannerTrack .bannerText {
    width: 85%;
  }
  .bannerStyle3 .bannerTrack .banner.textRight .bannerText,
  .bannerStyle3 .bannerTrack .banner.textCentre .bannerText {
    margin-left: 0;
    margin-right: auto;
  }
} /*$bigPhone ends*/
.block {
  margin-top: calc(24px + 4vw);
}
.block.noSpace {
  margin-top: 0;
}
.block.quarterSpace {
  margin-top: calc((calc(24px + 2vw)) / 4);
}
.block.halfSpace {
  margin-top: calc((calc(24px + 2vw)) / 2);
}
.block.doubleSpace {
  margin-top: calc((calc(24px + 2vw)) * 2);
}
.block.minusHalfSpace {
  margin-top: calc(0px - calc((calc(24px + 2vw)) / 2));
  z-index: 3;
}
.block.minusDoubleSpace {
  margin-top: calc(0px - calc((calc(24px + 2vw)) * 2));
  z-index: 3;
}
.block.minusTrebleSpace {
  margin-top: calc(0px - 3 * (calc(24px + 4vw)));
  z-index: 3;
}

.block * {
  z-index: 1;
}
.block .bgImage {
  z-index: 0;
}
.block .bgImage img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.block.vertAlignCentre .flexer {
  align-items: center;
}

.block.vertAlignBottom .flexer {
  align-items: flex-end;
}

.positioner {
  width: 100%;
}
.positioner > *:last-child {
  margin-bottom: 0;
}
.positioner.fullWidth {
  max-width: none;
}
.positioner .hasColour *:last-child {
  margin-bottom: 0;
}

.textAlignCentre .positioner {
  max-width: var(1050px);
  margin-left: auto;
  margin-right: auto;
}

.fullWidth {
  width: 100%;
  max-width: 100%;
}

html body .pageContent .blackText .text p, html body .pageContent .blackText .text ul, html body .pageContent .blackText .text ol, html body .pageContent .blackText .text table, html body .pageContent .blackText .text blockquote,
html body .pageContent .blackText .text h1, html body .pageContent .blackText .text h2, html body .pageContent .blackText .text h3, html body .pageContent .blackText .text h4, html body .pageContent .blackText .text h5, html body .pageContent .blackText .text h6 {
  color: var(--kc-color-black);
}
html body .pageContent .blackText .text p span, html body .pageContent .blackText .text ul span, html body .pageContent .blackText .text ol span, html body .pageContent .blackText .text table span, html body .pageContent .blackText .text blockquote span,
html body .pageContent .blackText .text h1 span, html body .pageContent .blackText .text h2 span, html body .pageContent .blackText .text h3 span, html body .pageContent .blackText .text h4 span, html body .pageContent .blackText .text h5 span, html body .pageContent .blackText .text h6 span {
  text-decoration-color: var(--kc-color-white);
}
html body .pageContent .blackText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-black);
}

html body .pageContent .lightText .text p, html body .pageContent .lightText .text ul, html body .pageContent .lightText .text ol, html body .pageContent .lightText .text table, html body .pageContent .lightText .text blockquote,
html body .pageContent .lightText .text h1, html body .pageContent .lightText .text h2, html body .pageContent .lightText .text h3, html body .pageContent .lightText .text h4, html body .pageContent .lightText .text h5, html body .pageContent .lightText .text h6 {
  color: var(--kc-color-white);
}
html body .pageContent .lightText .text p span, html body .pageContent .lightText .text ul span, html body .pageContent .lightText .text ol span, html body .pageContent .lightText .text table span, html body .pageContent .lightText .text blockquote span,
html body .pageContent .lightText .text h1 span, html body .pageContent .lightText .text h2 span, html body .pageContent .lightText .text h3 span, html body .pageContent .lightText .text h4 span, html body .pageContent .lightText .text h5 span, html body .pageContent .lightText .text h6 span {
  text-decoration-color: var(--kc-color-white);
}
html body .pageContent .lightText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-white);
}

html body .pageContent .normalText .text p, html body .pageContent .normalText .text ul, html body .pageContent .normalText .text ol, html body .pageContent .normalText .text table, html body .pageContent .normalText .text blockquote,
html body .pageContent .normalText .text h1, html body .pageContent .normalText .text h2, html body .pageContent .normalText .text h3, html body .pageContent .normalText .text h4, html body .pageContent .normalText .text h5, html body .pageContent .normalText .text h6 {
  color: var(--kc-color-text-colour);
}
html body .pageContent .normalText .text p span, html body .pageContent .normalText .text ul span, html body .pageContent .normalText .text ol span, html body .pageContent .normalText .text table span, html body .pageContent .normalText .text blockquote span,
html body .pageContent .normalText .text h1 span, html body .pageContent .normalText .text h2 span, html body .pageContent .normalText .text h3 span, html body .pageContent .normalText .text h4 span, html body .pageContent .normalText .text h5 span, html body .pageContent .normalText .text h6 span {
  text-decoration-color: var(--kc-color-text-colour);
}
html body .pageContent .normalText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-black);
}

html body .pageContent .whiteText .text p, html body .pageContent .whiteText .text ul, html body .pageContent .whiteText .text ol, html body .pageContent .whiteText .text table, html body .pageContent .whiteText .text blockquote,
html body .pageContent .whiteText .text h1, html body .pageContent .whiteText .text h2, html body .pageContent .whiteText .text h3, html body .pageContent .whiteText .text h4, html body .pageContent .whiteText .text h5, html body .pageContent .whiteText .text h6 {
  color: var(--kc-color-white);
}
html body .pageContent .whiteText .text p span, html body .pageContent .whiteText .text ul span, html body .pageContent .whiteText .text ol span, html body .pageContent .whiteText .text table span, html body .pageContent .whiteText .text blockquote span,
html body .pageContent .whiteText .text h1 span, html body .pageContent .whiteText .text h2 span, html body .pageContent .whiteText .text h3 span, html body .pageContent .whiteText .text h4 span, html body .pageContent .whiteText .text h5 span, html body .pageContent .whiteText .text h6 span {
  text-decoration-color: var(--kc-color-white);
}
html body .pageContent .whiteText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-white);
}

html body .pageContent .primaryText .text p, html body .pageContent .primaryText .text ul, html body .pageContent .primaryText .text ol, html body .pageContent .primaryText .text table, html body .pageContent .primaryText .text blockquote,
html body .pageContent .primaryText .text h1, html body .pageContent .primaryText .text h2, html body .pageContent .primaryText .text h3, html body .pageContent .primaryText .text h4, html body .pageContent .primaryText .text h5, html body .pageContent .primaryText .text h6 {
  color: var(--kc-color-primary);
}
html body .pageContent .primaryText .text p span, html body .pageContent .primaryText .text ul span, html body .pageContent .primaryText .text ol span, html body .pageContent .primaryText .text table span, html body .pageContent .primaryText .text blockquote span,
html body .pageContent .primaryText .text h1 span, html body .pageContent .primaryText .text h2 span, html body .pageContent .primaryText .text h3 span, html body .pageContent .primaryText .text h4 span, html body .pageContent .primaryText .text h5 span, html body .pageContent .primaryText .text h6 span {
  text-decoration-color: var(--kc-color-primary);
}
html body .pageContent .primaryText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-primary);
}

html body .pageContent .secondaryText .text p, html body .pageContent .secondaryText .text ul, html body .pageContent .secondaryText .text ol, html body .pageContent .secondaryText .text table, html body .pageContent .secondaryText .text blockquote,
html body .pageContent .secondaryText .text h1, html body .pageContent .secondaryText .text h2, html body .pageContent .secondaryText .text h3, html body .pageContent .secondaryText .text h4, html body .pageContent .secondaryText .text h5, html body .pageContent .secondaryText .text h6 {
  color: var(--kc-color-secondary);
}
html body .pageContent .secondaryText .text p span, html body .pageContent .secondaryText .text ul span, html body .pageContent .secondaryText .text ol span, html body .pageContent .secondaryText .text table span, html body .pageContent .secondaryText .text blockquote span,
html body .pageContent .secondaryText .text h1 span, html body .pageContent .secondaryText .text h2 span, html body .pageContent .secondaryText .text h3 span, html body .pageContent .secondaryText .text h4 span, html body .pageContent .secondaryText .text h5 span, html body .pageContent .secondaryText .text h6 span {
  text-decoration-color: var(--kc-color-secondary);
}
html body .pageContent .secondaryText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-secondary);
}

html body .pageContent .greyText .text p, html body .pageContent .greyText .text ul, html body .pageContent .greyText .text ol, html body .pageContent .greyText .text table, html body .pageContent .greyText .text blockquote,
html body .pageContent .greyText .text h1, html body .pageContent .greyText .text h2, html body .pageContent .greyText .text h3, html body .pageContent .greyText .text h4, html body .pageContent .greyText .text h5, html body .pageContent .greyText .text h6 {
  color: var(--kc-color-grey);
}
html body .pageContent .greyText .text p span, html body .pageContent .greyText .text ul span, html body .pageContent .greyText .text ol span, html body .pageContent .greyText .text table span, html body .pageContent .greyText .text blockquote span,
html body .pageContent .greyText .text h1 span, html body .pageContent .greyText .text h2 span, html body .pageContent .greyText .text h3 span, html body .pageContent .greyText .text h4 span, html body .pageContent .greyText .text h5 span, html body .pageContent .greyText .text h6 span {
  text-decoration-color: var(--kc-color-grey);
}
html body .pageContent .greyText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-grey);
}

html body .pageContent .darkGreyText .text p, html body .pageContent .darkGreyText .text ul, html body .pageContent .darkGreyText .text ol, html body .pageContent .darkGreyText .text table, html body .pageContent .darkGreyText .text blockquote,
html body .pageContent .darkGreyText .text h1, html body .pageContent .darkGreyText .text h2, html body .pageContent .darkGreyText .text h3, html body .pageContent .darkGreyText .text h4, html body .pageContent .darkGreyText .text h5, html body .pageContent .darkGreyText .text h6 {
  color: var(--kc-color-dark-grey);
}
html body .pageContent .darkGreyText .text p span, html body .pageContent .darkGreyText .text ul span, html body .pageContent .darkGreyText .text ol span, html body .pageContent .darkGreyText .text table span, html body .pageContent .darkGreyText .text blockquote span,
html body .pageContent .darkGreyText .text h1 span, html body .pageContent .darkGreyText .text h2 span, html body .pageContent .darkGreyText .text h3 span, html body .pageContent .darkGreyText .text h4 span, html body .pageContent .darkGreyText .text h5 span, html body .pageContent .darkGreyText .text h6 span {
  text-decoration-color: var(--kc-color-dark-grey);
}
html body .pageContent .darkGreyText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-dark-grey);
}

html body .pageContent .blackText .text p, html body .pageContent .blackText .text ul, html body .pageContent .blackText .text ol, html body .pageContent .blackText .text table, html body .pageContent .blackText .text blockquote,
html body .pageContent .blackText .text h1, html body .pageContent .blackText .text h2, html body .pageContent .blackText .text h3, html body .pageContent .blackText .text h4, html body .pageContent .blackText .text h5, html body .pageContent .blackText .text h6 {
  color: var(--kc-color-black);
}
html body .pageContent .blackText .text p span, html body .pageContent .blackText .text ul span, html body .pageContent .blackText .text ol span, html body .pageContent .blackText .text table span, html body .pageContent .blackText .text blockquote span,
html body .pageContent .blackText .text h1 span, html body .pageContent .blackText .text h2 span, html body .pageContent .blackText .text h3 span, html body .pageContent .blackText .text h4 span, html body .pageContent .blackText .text h5 span, html body .pageContent .blackText .text h6 span {
  text-decoration-color: var(--kc-color-black);
}
html body .pageContent .blackText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-black);
}

html body .pageContent .redText .text p, html body .pageContent .redText .text ul, html body .pageContent .redText .text ol, html body .pageContent .redText .text table, html body .pageContent .redText .text blockquote,
html body .pageContent .redText .text h1, html body .pageContent .redText .text h2, html body .pageContent .redText .text h3, html body .pageContent .redText .text h4, html body .pageContent .redText .text h5, html body .pageContent .redText .text h6 {
  color: var(--kc-color-red);
}
html body .pageContent .redText .text p span, html body .pageContent .redText .text ul span, html body .pageContent .redText .text ol span, html body .pageContent .redText .text table span, html body .pageContent .redText .text blockquote span,
html body .pageContent .redText .text h1 span, html body .pageContent .redText .text h2 span, html body .pageContent .redText .text h3 span, html body .pageContent .redText .text h4 span, html body .pageContent .redText .text h5 span, html body .pageContent .redText .text h6 span {
  text-decoration-color: var(--kc-color-red);
}
html body .pageContent .redText .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-red);
}

.hasBackground {
  padding: calc(24px + 2vw);
}
.hasBackground.borderBreak {
  padding-top: 0;
}
.hasBackground.borderBreak .bgImage {
  top: calc((calc(24px + 2vw)) * 2);
  height: calc(100% - (calc((calc(24px + 2vw)) * 2)));
}

.bgColour.hasColour {
  padding: 0;
}

.hasColour {
  padding: calc(24px + 2vw);
}
.hasColour.primaryBack {
  background-color: var(--kc-color-primary);
}
.hasColour.primaryBack .text p, .hasColour.primaryBack .text ul, .hasColour.primaryBack .text ol, .hasColour.primaryBack .text table, .hasColour.primaryBack .text blockquote,
.hasColour.primaryBack .text h1, .hasColour.primaryBack .text h2, .hasColour.primaryBack .text h3, .hasColour.primaryBack .text h4, .hasColour.primaryBack .text h5, .hasColour.primaryBack .text h6 {
  color: var(--kc-color-white);
}
.hasColour.primaryBack .text p span, .hasColour.primaryBack .text ul span, .hasColour.primaryBack .text ol span, .hasColour.primaryBack .text table span, .hasColour.primaryBack .text blockquote span,
.hasColour.primaryBack .text h1 span, .hasColour.primaryBack .text h2 span, .hasColour.primaryBack .text h3 span, .hasColour.primaryBack .text h4 span, .hasColour.primaryBack .text h5 span, .hasColour.primaryBack .text h6 span {
  text-decoration-color: var(--kc-color-white);
}
.hasColour.primaryBack .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-white);
}
.hasColour.secondaryBack {
  background-color: var(--kc-color-secondary);
}
.hasColour.greyBack {
  background-color: var(--kc-color-lighter-grey);
}
.hasColour.darkGreyBack {
  background-color: var(--kc-color-grey);
}
.hasColour.darkGreyBack .text p, .hasColour.darkGreyBack .text ul, .hasColour.darkGreyBack .text ol, .hasColour.darkGreyBack .text table, .hasColour.darkGreyBack .text blockquote,
.hasColour.darkGreyBack .text h1, .hasColour.darkGreyBack .text h2, .hasColour.darkGreyBack .text h3, .hasColour.darkGreyBack .text h4, .hasColour.darkGreyBack .text h5, .hasColour.darkGreyBack .text h6 {
  color: var(--kc-color-white);
}
.hasColour.darkGreyBack .text p span, .hasColour.darkGreyBack .text ul span, .hasColour.darkGreyBack .text ol span, .hasColour.darkGreyBack .text table span, .hasColour.darkGreyBack .text blockquote span,
.hasColour.darkGreyBack .text h1 span, .hasColour.darkGreyBack .text h2 span, .hasColour.darkGreyBack .text h3 span, .hasColour.darkGreyBack .text h4 span, .hasColour.darkGreyBack .text h5 span, .hasColour.darkGreyBack .text h6 span {
  text-decoration-color: var(--kc-color-white);
}
.hasColour.darkGreyBack .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-white);
}
.hasColour.blackBack {
  background-color: var(--kc-color-black);
}
.hasColour.blackBack .text p, .hasColour.blackBack .text ul, .hasColour.blackBack .text ol, .hasColour.blackBack .text table, .hasColour.blackBack .text blockquote,
.hasColour.blackBack .text h1, .hasColour.blackBack .text h2, .hasColour.blackBack .text h3, .hasColour.blackBack .text h4, .hasColour.blackBack .text h5, .hasColour.blackBack .text h6 {
  color: var(--kc-color-white);
}
.hasColour.blackBack .text p span, .hasColour.blackBack .text ul span, .hasColour.blackBack .text ol span, .hasColour.blackBack .text table span, .hasColour.blackBack .text blockquote span,
.hasColour.blackBack .text h1 span, .hasColour.blackBack .text h2 span, .hasColour.blackBack .text h3 span, .hasColour.blackBack .text h4 span, .hasColour.blackBack .text h5 span, .hasColour.blackBack .text h6 span {
  text-decoration-color: var(--kc-color-white);
}
.hasColour.blackBack .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-white);
}
.hasColour.whiteBack {
  background-color: var(--kc-color-white);
}
.hasColour.whiteBack .text p, .hasColour.whiteBack .text ul, .hasColour.whiteBack .text ol, .hasColour.whiteBack .text table, .hasColour.whiteBack .text blockquote,
.hasColour.whiteBack .text h1, .hasColour.whiteBack .text h2, .hasColour.whiteBack .text h3, .hasColour.whiteBack .text h4, .hasColour.whiteBack .text h5, .hasColour.whiteBack .text h6 {
  color: var(--kc-color-black);
}
.hasColour.whiteBack .text p span, .hasColour.whiteBack .text ul span, .hasColour.whiteBack .text ol span, .hasColour.whiteBack .text table span, .hasColour.whiteBack .text blockquote span,
.hasColour.whiteBack .text h1 span, .hasColour.whiteBack .text h2 span, .hasColour.whiteBack .text h3 span, .hasColour.whiteBack .text h4 span, .hasColour.whiteBack .text h5 span, .hasColour.whiteBack .text h6 span {
  text-decoration-color: var(--kc-color-primary);
}
.hasColour.whiteBack .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-black);
}
.hasColour.redBack {
  background-color: var(--kc-color-red);
}
.hasColour.redBack .text p, .hasColour.redBack .text ul, .hasColour.redBack .text ol, .hasColour.redBack .text table, .hasColour.redBack .text blockquote,
.hasColour.redBack .text h1, .hasColour.redBack .text h2, .hasColour.redBack .text h3, .hasColour.redBack .text h4, .hasColour.redBack .text h5, .hasColour.redBack .text h6 {
  color: var(--kc-color-white);
}
.hasColour.redBack .text p span, .hasColour.redBack .text ul span, .hasColour.redBack .text ol span, .hasColour.redBack .text table span, .hasColour.redBack .text blockquote span,
.hasColour.redBack .text h1 span, .hasColour.redBack .text h2 span, .hasColour.redBack .text h3 span, .hasColour.redBack .text h4 span, .hasColour.redBack .text h5 span, .hasColour.redBack .text h6 span {
  text-decoration-color: var(--kc-color-white);
}
.hasColour.redBack .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-white);
}
.hasColour.noPadTop {
  padding-top: 0;
}
.hasColour.halfPadTop {
  padding-top: calc((calc(24px + 2vw)) / 2);
}
.hasColour.doublePadTop {
  padding-top: calc((calc(24px + 2vw)) * 2);
}

.textAlignCentre .text * {
  text-align: center;
}
.textAlignCentre .text li {
  text-align: left;
}
.textAlignCentre .text h1, .textAlignCentre .text h2, .textAlignCentre .text h3, .textAlignCentre .text h4, .textAlignCentre .text h5, .textAlignCentre .text h6 {
  text-align: center;
  width: 100%;
  display: inline-block;
}

.textAlignRight .text * {
  text-align: right;
}
.textAlignRight .text li {
  text-align: left;
}
.textAlignRight .text h1, .textAlignRight .text h2, .textAlignRight .text h3, .textAlignRight .text h4, .textAlignRight .text h5, .textAlignRight .text h6 {
  text-align: right;
  width: 100%;
  display: inline-block;
}

/*Mac Image Width Only*/
.image.max150px {
  max-width: 150px;
}

.image.max300px {
  max-width: 300px;
}

.image.max450px {
  max-width: 450px;
}

.image.max600px {
  max-width: 600px;
}

.max500px {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.max750px {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.max950px {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.max1050px {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.max1100px {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.textContent {
  overflow: hidden;
  width: 100%;
  display: block;
}
.textContent .flexer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  padding: 0;
  z-index: 2;
}
.textContent .noBack {
  padding-left: 0;
  padding-right: calc(24px + 2vw);
}
.textContent .positioner {
  margin-left: 0;
}
.textContent .text {
  width: calc(50% - (calc((calc(24px + 2vw)) / 2)));
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}
.textContent.noImagePad {
  padding: 0;
}
.textContent.noImagePad.hasColour .text {
  padding: calc(24px + 2vw);
  padding-right: 0px;
}
.textContent.imgCrop .sideContent, .textContent.imgSquare .sideContent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  align-self: stretch;
}
.textContent.imgCrop .image, .textContent.imgSquare .image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.textContent.imgCrop .image img, .textContent.imgCrop .image a, .textContent.imgSquare .image img, .textContent.imgSquare .image a {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.textContent.imgNatural .image img, .textContent.imgNatural .image a {
  -o-object-fit: contain;
     object-fit: contain;
}
.textContent.imgSquare .sideContent {
  align-self: flex-start;
}
.textContent.imgSquare .sideContent .image {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  height: auto;
}
.textContent.imgSquare .sideContent .image img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.textContent.imgSquare .sideContent .image span {
  display: block;
  width: 100%;
  padding-top: 100%;
}
.textContent.imgCropVert .sideContent {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
.textContent.imgCropVert .image, .textContent.imgCropVert .image a {
  width: 100%;
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  display: block;
  background-color: var(--kc-color-lighter-grey);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
.textContent.imgCropVert img {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
}
.textContent.noBack.textLeft .text {
  padding-right: calc((calc(24px + 2vw)) / 2);
}
.textContent.noBack.textRight .text {
  padding-left: calc((calc(24px + 2vw)) / 2);
}
.textContent .sideContent {
  width: calc(50% - (calc((calc(24px + 2vw)) / 2)));
  z-index: 2;
}
.textContent .sideContent .additionalText {
  width: 100%;
}
.textContent .sideContent.hideOnMobile {
  display: none !important;
}

.textContent.text33 .text {
  width: calc(33% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text33 .sideContent {
  width: calc(67% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text33 .sideContent .text {
  width: 100%;
}

.textContent.text40 .text {
  width: calc(40% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text40 .sideContent {
  width: calc(60% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text40 .sideContent .text {
  width: 100%;
}

.textContent.text50 .text {
  width: calc(50% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text50 .sideContent {
  width: calc(50% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text50 .sideContent .text {
  width: 100%;
}

.textContent.text66 .text {
  width: calc(66% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text66 .sideContent {
  width: calc(34% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text66 .sideContent .text {
  width: 100%;
}

.textContent.text75 .text {
  width: calc(75% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text75 .sideContent {
  width: calc(25% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text75 .sideContent .text {
  width: 100%;
}

.textContent.text80 .text {
  width: calc(80% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text80 .sideContent {
  width: calc(5% - (calc((calc(24px + 2vw)) / 2)));
}
.textContent.text80 .sideContent .text {
  width: 100%;
}

.textContent.vertAlignTop .positioner {
  margin-top: 0;
  margin-bottom: auto;
}

.textContent.vertAlignCentre .positioner {
  margin-top: auto;
  margin-bottom: auto;
}

.textContent.vertAlignBottom .positioner {
  margin-top: auto;
  margin-bottom: 0;
}

.textContent.textLeft.noBack .text {
  padding-right: calc(24px + 2vw);
  padding-left: 0;
}

.textContent.textRight.noBack {
  border-bottom-right-radius: 0;
}
.textContent.textRight .sideContent {
  order: 1;
}
.textContent.textRight .text {
  order: 2;
}
.textContent.textRight.hasColour .text {
  padding-left: 0px;
}
.textContent.textRight.noBack .text {
  padding-right: 0;
}

.textContent.borderBreak {
  overflow: visible;
}
.textContent.borderBreak:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  right: auto;
  bottom: auto;
  width: 100vw;
  transform: translateX(-50%);
  height: calc((calc(24px + 2vw)) * 2);
  background-color: var(--kc-color-white);
  z-index: 1;
}
.textContent.borderBreak .text {
  margin-top: calc((calc(24px + 2vw)) * 2);
}

/*$tablet ends*/
@media only screen and (max-width: 700px) {
  .textContent .text,
  .textContent.text33 .text,
  .textContent.text40 .text,
  .textContent.text50 .text,
  .textContent.text66 .text,
  .textContent.text75 .text,
  .textContent.text80 .text {
    width: 100%;
  }
  .textContent .sideContent,
  .textContent.text33 .sideContent,
  .textContent.text40 .sideContent,
  .textContent.text50 .sideContent,
  .textContent.text66 .sideContent,
  .textContent.text75 .sideContent,
  .textContent.text80 .sideContent {
    width: 100%;
  }
  .textContent .sideContent .image,
  .textContent.text33 .sideContent .image,
  .textContent.text40 .sideContent .image,
  .textContent.text50 .sideContent .image,
  .textContent.text66 .sideContent .image,
  .textContent.text75 .sideContent .image,
  .textContent.text80 .sideContent .image {
    width: 100%;
  }
  .textContent.imgCrop .image {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
  }
  .textContent.imgCrop .image img, .textContent.imgCrop .image a {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
  }
  .textContent.textLeft .text {
    margin-bottom: calc(24px + 2vw);
  }
  .textContent.textLeft.noBack .text {
    padding-right: 0;
    padding-left: 0;
  }
  .textContent.textLeft.hasColour .sideContent {
    margin-bottom: calc(24px + 2vw);
    margin-top: 0;
  }
  .textContent.textRight .sideContent {
    margin-bottom: calc(24px + 2vw);
  }
  .textContent.textRight.noBack .text {
    padding-right: 0;
    padding-left: 0;
  }
  .textContent.textRight.hasColour .sideContent {
    margin-top: calc(24px + 2vw);
    margin-bottom: 0;
  }
  .textContent.noImagePad.hasColour .text {
    padding: calc(24px + 2vw);
    margin: 0;
  }
  .textContent.borderBreak:before {
    display: none;
  }
  .textContent.borderBreak .text {
    margin-top: 0;
  }
} /*$smallTablet ends*/
@media only screen and (max-width: 650px) {
  .textContent .text,
  .textContent.text33 .text,
  .textContent.text40 .text,
  .textContent.text50 .text,
  .textContent.text66 .text,
  .textContent.text75 .text,
  .textContent.text80 .text {
    width: 100%;
  }
  .textContent .sideContent,
  .textContent.text33 .sideContent,
  .textContent.text40 .sideContent,
  .textContent.text50 .sideContent,
  .textContent.text66 .sideContent,
  .textContent.text75 .sideContent,
  .textContent.text80 .sideContent {
    min-width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .textContent.hasColour .sideContent {
    margin-bottom: 0;
    margin-top: 0;
  }
  .textContent.textLeft.hasColour .sideContent {
    margin-bottom: 0;
  }
  .textContent.textRight .sideContent {
    margin-bottom: 0;
  }
} /*$bigPhone ends*/
.keyPoints.overlapped {
  margin-bottom: calc(0px - (calc((calc(24px + 2vw)) * 2)));
  z-index: 2;
}
.keyPoints.vertAlignTop .points .pointHolder {
  justify-content: flex-start;
}
.keyPoints.vertAlignCentre .points .pointHolder .text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.keyPoints .outtro.hasColour {
  background-color: transparent;
  padding-top: calc((calc(24px + 2vw)) / 2);
}
.keyPoints .text + .points {
  margin-top: calc(24px + 2vw);
}
.keyPoints .points {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: stretch;
  width: calc(100% + calc((calc(24px + 2vw)) / 4));
}
.keyPoints .points .point {
  width: calc(25% - (calc((calc(24px + 2vw)) / 4)));
  margin-right: calc((calc(24px + 2vw)) / 4);
  margin-bottom: calc((calc(24px + 2vw)) / 2);
  display: flex;
  align-items: stretch;
}
.keyPoints .points .point .stilt {
  width: 1px;
  display: block;
  padding-top: 75%;
}
.keyPoints .points .point:last-child .text:after,
.keyPoints .points .point:first-child .iconHolder:before {
  pointer-events: none;
  position: absolute;
  width: 15%;
  padding-top: 15%;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 4;
  display: block;
  background-image: url("/wp-content/themes/kingsford/img/corner-br.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  transform: translateX(23%) translateY(23%);
}
.keyPoints .points .point:first-child .iconHolder:before {
  left: 0;
  top: 50%;
  right: auto;
  bottom: auto;
  width: 10%;
  height: 10%;
  transform: translateX(-23%) translateY(-10.25%) rotate(180deg);
}
.keyPoints .points .pointHolder {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: stretch;
  width: 100%;
}
.keyPoints .points .pointHolder .iconHolder {
  display: block;
}
.keyPoints .points .pointHolder .iconHolder.hasColour {
  padding: 0;
}
.keyPoints .points .pointHolder .iconHolder.hasColour.whiteBack {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, var(--kc-color-white) 50%);
}
.keyPoints .points .pointHolder .iconHolder.hasColour.primaryBack {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, var(--kc-color-primary) 50%);
}
.keyPoints .points .pointHolder .iconHolder.hasColour.secondaryBack {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, var(--kc-color-secondary) 50%);
}
.keyPoints .points .pointHolder .iconHolder.hasColour.greyBack {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, var(--kc-color-lighter-grey) 50%);
}
.keyPoints .points .pointHolder .iconHolder.hasColour.darkGreyBack {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, var(--kc-color-grey) 50%);
}
.keyPoints .points .pointHolder .iconHolder.hasColour.blackBack {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, var(--kc-color-black) 50%);
}
.keyPoints .points .pointHolder .iconHolder.hasColour.redBack {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, var(--kc-color-red) 50%);
}
.keyPoints .points .pointHolder .iconHolder.hasColour.noPadTop {
  padding-top: 0;
}
.keyPoints .points .pointHolder .iconHolder.hasColour.halfPadTop {
  padding-top: calc((calc(24px + 2vw)) / 2);
}
.keyPoints .points .pointHolder .iconHolder.hasColour.doublePadTop {
  padding-top: calc((calc(24px + 2vw)) * 2);
}
.keyPoints .points .pointHolder .keyPointIcon {
  margin: auto;
  width: 40%;
  max-width: 200px;
  z-index: 2;
}
.keyPoints .points .pointHolder .text {
  flex-grow: 1;
  /* Removed to allow different coloured points
  background-color: var(--kc-color-lighter-grey);
  */
  padding: calc((calc(24px + 2vw)) / 2);
  margin-top: -1px;
}
.keyPoints .points .pointHolder .text > h4:first-of-type {
  margin-bottom: 0.5em;
}

.keyPoints.keyPointWidth25 .points .point {
  width: calc(25% - (calc((calc(24px + 2vw)) / 2)));
}

.keyPoints.keyPointWidth33 .points .point {
  width: calc(33.333333% - (calc((calc(24px + 2vw)) / 2)));
}

.keyPoints.keyPointWidth50 .points .point {
  width: calc(50% - (calc((calc(24px + 2vw)) / 2)));
}

.keyPoints.keyPointWidth100 .points .point {
  width: calc(100% - (calc((calc(24px + 2vw)) / 2)));
}

.keyPointIcon {
  width: 100%;
  margin-bottom: calc((calc(24px + 2vw)) / 2);
}
.keyPointIcon img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.keyPointIcon span {
  display: block;
  width: 100%;
  padding-top: 66%;
}
.keyPointIcon.roundel {
  border-radius: 50%;
  background-color: var(--kc-color-primary);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.keyPointIcon.roundel img {
  left: 15%;
  top: 15%;
  right: 15%;
  bottom: 15%;
  width: 70%;
  height: 70%;
}
.keyPointIcon.roundel span {
  padding-top: 100%;
}

.primaryBack .keyPointIcon.roundel {
  background-color: var(--kc-color-secondary);
}

.secondaryBack .keyPointIcon.roundel {
  background-color: var(--kc-color-primary);
}

/*$laptop ends*/
@media only screen and (max-width: 700px) {
  .keyPoints.keyPointWidth25 .points .point {
    width: 50%;
  }
} /*$smallTablet ends*/
@media only screen and (max-width: 650px) {
  .keyPoints.keyPointWidth25 .points .point,
  .keyPoints.keyPointWidth33 .points .point,
  .keyPoints.keyPointWidth50 .points .point {
    width: 50%;
  }
} /*$smallTablet ends*/
@media only screen and (max-width: 450px) {
  .keyPoints.keyPointWidth25 .points .point,
  .keyPoints.keyPointWidth33 .points .point,
  .keyPoints.keyPointWidth50 .points .point {
    width: 100%;
  }
} /*$phone ends*/
.customBanner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 0 calc(24px + 2vw);
  width: 100%;
}
.customBanner .badge {
  position: absolute;
  width: 25%;
  display: none;
}
.customBanner .text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  max-width: 33%;
  min-width: 300px;
  margin: calc((calc(24px + 2vw)) * 2) auto;
  width: auto;
  background-color: var(--kc-color--box-back);
  z-index: 3;
}
.customBanner .text .stilt {
  width: 1px;
  padding-top: 75%;
}
.customBanner .text .positioner {
  padding: calc(calc((calc(24px + 2vw)) / 2) + calc((calc(24px + 2vw)) / 4));
}
.customBanner.smallTextBox .text {
  max-width: 33%;
}
.customBanner.mediumTextBox .text {
  max-width: 50%;
}
.customBanner.largeTextBox .text {
  max-width: 66%;
}
.customBanner.vertAlignTop {
  padding-bottom: calc(24px + 2vw);
}
.customBanner.vertAlignTop .text {
  margin-top: calc(24px + 2vw);
  margin-bottom: auto;
}
.customBanner.vertAlignBottom {
  padding-top: calc(24px + 2vw);
}
.customBanner.vertAlignBottom .text {
  margin-bottom: calc(24px + 2vw);
  margin-top: auto;
}
.customBanner.textRight .badge {
  left: calc(24px + 2vw);
  top: 0;
  display: block;
}
.customBanner.textRight .text {
  margin-right: 0;
}
.customBanner.textLeft .badge {
  right: calc(24px + 2vw);
  top: 0;
  display: block;
}
.customBanner.textLeft .text {
  margin-left: 0;
}
.customBanner .flexer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  background-color: var(--kc-color-lighter-grey);
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.customBanner .flexer .image {
  flex-grow: 1;
  flex-basis: 0;
  min-height: 100%;
  height: 100%;
}
.customBanner .flexer .image img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .customBanner {
    flex-direction: column;
    min-height: 80vh;
  }
  .customBanner.oneImage {
    min-height: 120vw;
  }
  .customBanner .text {
    max-width: 66%;
  }
  .customBanner .flexer {
    flex-direction: column;
  }
} /*$smallTablet ends*/
@media only screen and (max-width: 650px) {
  .customBanner .badge {
    display: none;
  }
  .customBanner.textRight .text {
    margin-right: auto;
  }
  .customBanner.textRight .badge {
    display: none;
  }
  .customBanner.textLeft .text {
    margin-left: auto;
  }
  .customBanner.textLeft .badge {
    display: none;
  }
} /*$bigPhone ends*/
@media only screen and (max-width: 450px) {
  .customBanner {
    padding: 0 calc((calc(24px + 2vw)) / 2);
  }
  .customBanner .text {
    min-width: 100%;
  }
} /*$phone ends*/
.handPicked {
  background-color: var(--kc-color-box-grey);
}
.handPicked .flexer {
  align-content: stretch;
  align-items: stretch;
}
.handPicked .left, .handPicked .right {
  width: 50%;
  flex-grow: 1;
}
.handPicked .left {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.handPicked .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
.handPicked .right .image {
  width: 100%;
}
.handPicked .right .image img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.handPicked .right .stilt {
  width: 1px;
  display: block;
  padding-top: 100%;
}
.handPicked .introText {
  width: 100%;
  max-width: 100%;
}
.handPicked .introText .positioner {
  padding-top: calc((calc(24px + 2vw)) / 2);
}
.handPicked .introText .positioner:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  right: auto;
  bottom: auto;
  width: 25%;
  min-width: 120px;
  height: 2px;
  background-color: var(--kc-color-white);
  transform: translateX(-50%);
}
.handPicked .cameos {
  width: 100%;
  margin-top: 0;
  background-color: var(--kc-color-box-grey);
  flex-grow: 1;
  padding: calc(24px + 2vw);
  padding-top: 0px;
  overflow: hidden;
}
.handPicked .cameos .carpetCameos + .blockLink {
  margin-top: calc((calc(24px + 2vw)) / 2);
}
.handPicked .cameos .carpetCameos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  background-color: var(--kc-color-white);
}
.handPicked .cameos .carpetCameos:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border: solid 4px var(--kc-color-white);
}
.handPicked .cameos .carpetCameos .image:first-child:before {
  content: "";
  display: block;
  position: absolute;
  left: -100%;
  top: -2px;
  right: auto;
  bottom: auto;
  width: 200vw;
  height: calc(50% + 2px);
  background-color: var(--kc-color-primary);
  pointer-events: none;
}
.handPicked .cameos .carpetCameos.noRightImage .image {
  width: 25%;
}
.handPicked .cameos .carpetCameos .image {
  width: 50%;
  flex-grow: 1;
}
.handPicked .cameos .carpetCameos .image .stilt {
  display: block;
  width: 1px;
  padding-top: 100%;
}
.handPicked .cameos .carpetCameos .image a {
  border: solid 2px var(--kc-color-white);
}
.handPicked .cameos .carpetCameos .image a, .handPicked .cameos .carpetCameos .image a img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .handPicked .flexer {
    flex-wrap: wrap;
  }
  .handPicked .left, .handPicked .right {
    width: 100%;
  }
  .handPicked .left {
    order: 1;
  }
  .handPicked .right {
    order: 0;
  }
  .handPicked .right .stilt {
    padding-top: 66%;
  }
} /*$tablet ends*/
@media only screen and (max-width: 700px) {
  .handPicked .cameos .carpetCameos.noRightImage .image {
    width: 50%;
  }
} /*$smallTablet ends*/
.keyFeaturesSlider.noImage {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.keyFeaturesSlider.hasColour {
  padding: 0;
}
.keyFeaturesSlider.hasColour .left {
  padding: calc(24px + 2vw);
}
.keyFeaturesSlider.icon20 .featuresTrack .text .imageHolder {
  width: 20%;
  min-width: 80px;
}
.keyFeaturesSlider.icon33 .featuresTrack .text .imageHolder {
  width: 33%;
  min-width: 80px;
}
.keyFeaturesSlider.icon50 .featuresTrack .text .imageHolder {
  width: 50%;
  min-width: 80px;
}
.keyFeaturesSlider.icon75 .featuresTrack .text .imageHolder {
  width: 75%;
  min-width: 80px;
}
.keyFeaturesSlider.icon100 .featuresTrack .text .imageHolder {
  width: 100%;
  min-width: 80px;
}
.keyFeaturesSlider.vertAlignCentre .flexer {
  align-items: center;
}
.keyFeaturesSlider.vertAlignCentre .featuresTrack, .keyFeaturesSlider.vertAlignCentre .hasColour .featuresTrack {
  align-items: center;
}
.keyFeaturesSlider.vertAlignCentre .featuresTrack .flickity-slider, .keyFeaturesSlider.vertAlignCentre .hasColour .featuresTrack .flickity-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}
.keyFeaturesSlider.vertAlignCentre .featuresTrack .feature, .keyFeaturesSlider.vertAlignCentre .hasColour .featuresTrack .feature {
  min-height: 0;
}
.keyFeaturesSlider.vertAlignBottom .flexer {
  align-items: flex-end;
}
.keyFeaturesSlider.vertAlignBottom .featuresTrack, .keyFeaturesSlider.vertAlignBottom .hasColour .featuresTrack {
  align-items: center;
}
.keyFeaturesSlider.vertAlignBottom .featuresTrack .flickity-slider, .keyFeaturesSlider.vertAlignBottom .hasColour .featuresTrack .flickity-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-end;
}
.keyFeaturesSlider.vertAlignBottom .featuresTrack .feature, .keyFeaturesSlider.vertAlignBottom .hasColour .featuresTrack .feature {
  min-height: 0;
}
.keyFeaturesSlider .flexer {
  align-content: stretch;
  align-items: stretch;
}
.keyFeaturesSlider .left, .keyFeaturesSlider .right {
  width: 50%;
  flex-grow: 1;
}
.keyFeaturesSlider .left {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  padding-right: calc(24px + 2vw);
}
.keyFeaturesSlider .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  align-self: stretch;
  min-height: 100%;
}
.keyFeaturesSlider .right .image {
  width: 100%;
  min-width: 100%;
}
.keyFeaturesSlider .right .image img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keyFeaturesSlider .right .stilt {
  width: 1px;
  display: block;
  padding-top: 100%;
}

.featuresTrack, .hasColour .featuresTrack {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.featuresTrack .feature, .hasColour .featuresTrack .feature {
  padding: calc((calc(24px + 2vw)) / 2);
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  min-height: 100%;
}
.featuresTrack .feature .text, .hasColour .featuresTrack .feature .text {
  padding: 0 calc((calc(24px + 2vw)) / 2);
}
.featuresTrack .feature .imageHolder, .hasColour .featuresTrack .feature .imageHolder {
  margin-bottom: calc((calc(24px + 2vw)) / 2);
  /*
  width: 20%;
  min-width: 60px;

  span {
  	display: block;
  	width: 100%;
  	pointer-events: none;
  	padding-top: 100%;
  }
  img {
  	position: absolute;
  	left:   0;
  	top:    0;
  	right:  0;
  	bottom: 0;
  	width: 100%;
  	height: 100%;
  	object-fit: contain;
  	object-position: center bottom;
  }
  */
}
.featuresTrack.flickity-enabled .flickity-viewport,
.featuresTrack.flickity-enabled .flickity-slider, .hasColour .featuresTrack.flickity-enabled .flickity-viewport,
.hasColour .featuresTrack.flickity-enabled .flickity-slider {
  width: 100%;
}
.featuresTrack.flickity-enabled .flickity-prev-next-button.next, .hasColour .featuresTrack.flickity-enabled .flickity-prev-next-button.next {
  left: auto;
  right: 0;
  border-radius: 0;
  background-color: transparent;
}
.featuresTrack.flickity-enabled .flickity-prev-next-button.next .flickity-button-icon, .hasColour .featuresTrack.flickity-enabled .flickity-prev-next-button.next .flickity-button-icon {
  left: auto;
  right: 0;
}
.featuresTrack.flickity-enabled .flickity-prev-next-button.previous, .hasColour .featuresTrack.flickity-enabled .flickity-prev-next-button.previous {
  right: auto;
  left: 0;
  border-radius: 0;
  background-color: transparent;
}
.featuresTrack.flickity-enabled .flickity-prev-next-button.previous .flickity-button-icon, .hasColour .featuresTrack.flickity-enabled .flickity-prev-next-button.previous .flickity-button-icon {
  left: 0;
  right: auto;
}
.featuresTrack.flickity-enabled .flickity-page-dots, .hasColour .featuresTrack.flickity-enabled .flickity-page-dots {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  max-width: none;
  margin: auto;
}
.featuresTrack.flickity-enabled .flickity-page-dots li, .hasColour .featuresTrack.flickity-enabled .flickity-page-dots li {
  display: block;
  width: 1.2em;
  height: 1.2em;
  margin: 0.3em;
  border-radius: 0;
  background-color: var(--kc-color-white);
  opacity: 0.8;
}
.featuresTrack.flickity-enabled .flickity-page-dots li.is-selected, .hasColour .featuresTrack.flickity-enabled .flickity-page-dots li.is-selected {
  background-color: var(--kc-color-primary);
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .keyFeaturesSlider .flexer {
    flex-wrap: wrap;
  }
  .keyFeaturesSlider .left, .keyFeaturesSlider .right {
    width: 100%;
  }
  .keyFeaturesSlider .left {
    order: 1;
  }
  .keyFeaturesSlider .right {
    order: 0;
  }
  .keyFeaturesSlider .right .stilt {
    padding-top: 66%;
  }
} /*$tablet ends*/
/*$bigPhone ends*/
.imageGallery {
  text-align: center;
}
.imageGallery.noBack {
  padding-bottom: 0px;
  padding: 0;
}
.imageGallery.hasBackground {
  padding: calc(24px + 2vw) 0;
}
.imageGallery.hasHeader .wrapper .text {
  padding-bottom: 24px;
}
.imageGallery .text * {
  margin-left: auto;
  margin-right: auto;
}
.imageGallery .text + .thumbs {
  margin-top: calc(24px + 2vw);
}
.imageGallery .thumbs + .outtroText {
  margin-top: calc(24px + 2vw);
}
.imageGallery .thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: center;
  width: calc(100% + calc((calc(24px + 2vw)) / 4));
  margin-bottom: calc(0px - calc((calc(24px + 2vw)) / 4));
}
.imageGallery .thumbs .image {
  width: 33.3333333333%;
  padding: 0 calc(calc((calc(24px + 2vw)) / 4)) calc(calc((calc(24px + 2vw)) / 4)) 0;
}
.imageGallery .thumbs .image img {
  -o-object-position: center bottom;
     object-position: center bottom;
}
.imageGallery .instaLink {
  margin: calc((calc(24px + 2vw)) / 2) 0;
}
.imageGallery .instaLink a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
  align-items: center;
}
.imageGallery .instaLink a p {
  display: block;
  font-family: var(--kc-header-font);
  font-weight: var(--kc-header-font-weight);
  line-height: var(--kc-header-font-line-height);
  margin-bottom: 0.5em;
  font-size: var(--kc-h6-size) 22px;
  font-size: var(--kc-h6-size-clamp);
  padding: 12px 0px;
  margin: 0;
}
.imageGallery .instaLink a .imageHolder {
  width: calc(20px + 2vw);
  max-width: 40px;
  padding: 0;
  margin: 18px;
}

.imageGallery.beigeBack .text h1:after, .imageGallery.beigeBack .text h2:after,
.imageGallery.greyBack .text h1:after,
.imageGallery.greyBack .text h2:after,
.imageGallery.whiteBack .text h1:after,
.imageGallery.whiteBack .text h2:after {
  background-color: var(--kc-color-primary);
}

.imageGallery.thumb50 .thumbs .image {
  width: 50%;
}

.imageGallery.thumb33 .thumbs .image {
  width: 33.3333333333%;
}

.imageGallery.thumb25 .thumbs .image {
  width: 25%;
}

.imageGallery.thumb20 .thumbs .image {
  width: 20%;
}

.imageGallery.thumb12 .thumbs .image {
  width: 12.5%;
}

@media only screen and (max-width: 768px) {
  .imageGallery.thumb50 .thumbs .image {
    width: 50%;
  }
  .imageGallery.thumb33 .thumbs .image {
    width: 33.3333333333%;
  }
  .imageGallery.thumb25 .thumbs .image {
    width: 25%;
  }
  .imageGallery.thumb20 .thumbs .image {
    width: 20%;
  }
}
@media only screen and (max-width: 700px) {
  .imageGallery.thumb50 .thumbs .image {
    width: 50%;
  }
  .imageGallery.thumb33 .thumbs .image {
    width: 33.3333333333%;
  }
  .imageGallery.thumb25 .thumbs .image {
    width: 50%;
  }
  .imageGallery.thumb20 .thumbs .image {
    width: 50%;
  }
  .imageGallery.thumb12 .thumbs .image {
    width: 25%;
  }
}
@media only screen and (max-width: 650px) {
  .imageGallery.thumb50 .thumbs .image {
    width: 50%;
  }
  .imageGallery.thumb33 .thumbs .image {
    width: 50%;
  }
  .imageGallery.thumb25 .thumbs .image {
    width: 50%;
  }
  .imageGallery.thumb20 .thumbs .image {
    width: 50%;
  }
}
.videoBlock .introText * {
  text-align: center;
}
.videoBlock .text + .video_file,
.videoBlock .text + .video_embed_code {
  margin-top: calc((calc(24px + 2vw)) / 2);
}
.videoBlock .video_embed_code {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.videoBlock .video_embed_code .heading {
  text-align: center;
}
.videoBlock .video_embed_code .proportioner {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.videoBlock .video_embed_code .proportioner > div:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 !important;
}
.videoBlock .video_embed_code iframe, .videoBlock .video_embed_code .videoHolder object, .videoBlock .video_embed_code .videoHolder embed, .videoBlock .video_embed_code video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.videoBlock .video_file.portraitVideo .wp-video {
  max-width: 450px;
}
.videoBlock .wp-video {
  margin: auto;
  max-width: 720px;
  /*$tablet ends*/
}
@media only screen and (max-width: 768px) {
  .videoBlock .wp-video {
    max-width: 100%;
  }
}
.videoBlock .mejs-container {
  background-color: transparent;
}
.videoBlock .mejs-container .mejs-mediaelement {
  background-color: var(--kc-color-secondary);
}
.videoBlock .mejs-container.videoSD {
  /*$bigPhone ends*/
}
@media only screen and (min-width: 650px) {
  .videoBlock .mejs-container.videoSD {
    display: none;
  }
}
.videoBlock .mejs-container.videoHD {
  /*$bigPhone ends*/
}
@media only screen and (max-width: 650px) {
  .videoBlock .mejs-container.videoHD {
    display: none;
  }
}
.videoBlock .mejs-controls {
  background-color: var(--kc-color-primary);
}
.videoBlock .mejs-controls.mejs-time-rail.mejs-time-current {
  background-color: var(--kc-color-secondary);
}
.videoBlock .mejs-inner {
  min-height: 100%;
}
.videoBlock .mediaelementwrapper {
  min-height: 100%;
}
.videoBlock .mejs-overlay {
  min-height: 100%;
}
.videoBlock .mejs-layers {
  min-height: 100%;
  position: initial;
}
.videoBlock .mejs-overlay-button {
  opacity: 0.5;
}
.videoBlock .mejs-overlay-button:hover {
  opacity: 1;
}

.testimonials {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.testimonials .testimonial {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}
.testimonials .testimonial blockquote {
  width: 100%;
  padding-top: 0.5em;
  text-align: center;
}
.testimonials .testimonial blockquote * {
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
  font-size: var(--kc-h5-size) 24px;
  font-size: var(--kc-h5-size-clamp);
  font-style: italic;
  line-height: 1.2em;
}
.testimonials .testimonial blockquote *:last-child {
  margin-bottom: 0;
}
.testimonials .testimonial blockquote *:first-child:before {
  opacity: 0.5;
  content: "“";
  font-size: 4em;
  line-height: 0.1em;
  display: inline-block;
  margin-right: 0.15em;
  vertical-align: -0.35em;
}
.testimonials .testimonial .quoteFoot {
  width: 100%;
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
  text-align: center;
  padding-top: 0.75em;
  color: var(--kc-color-primary);
  font-weight: 700;
}

.testimonialTrack {
  width: 100%;
}

.testimonialGrid {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: stretch;
}
.testimonialGrid .testimonial {
  width: 50%;
  padding: 0 calc((calc(24px + 2vw)) / 2);
  margin-bottom: calc((calc(24px + 2vw)) / 2);
}
.testimonialGrid .testimonial blockquote * {
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
}

.testimonialTrack.flickity-enabled .flickity-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}
.testimonialTrack.flickity-enabled .flickity-page-dots {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  margin-top: calc((calc(24px + 2vw)) / 2);
}

.rating {
  width: 40%;
  margin: 1em auto;
  max-width: 180px;
  min-width: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.rating span {
  width: 100%;
  display: block;
  padding-top: 20%;
}
.rating.oneStar {
  background-image: url("/wp-content/themes/kingsford/img/star-rating-1.svg");
}
.rating.twoStar {
  background-image: url("/wp-content/themes/kingsford/img/star-rating-2.svg");
}
.rating.threeStar {
  background-image: url("/wp-content/themes/kingsford/img/star-rating-3.svg");
}
.rating.fourStar {
  background-image: url("/wp-content/themes/kingsford/img/star-rating-4.svg");
}
.rating.fiveStar {
  background-image: url("/wp-content/themes/kingsford/img/star-rating-5.svg");
}

.textContent.testimonialSide .testimonials {
  background-color: var(--kc-color-lighter-grey);
}
.textContent.testimonialSide .testimonials .testimonial {
  padding: calc(24px + 2vw);
}
.textContent.testimonialSide .testimonialTrack.flickity-enabled {
  padding-bottom: calc((calc(24px + 2vw)) / 2);
}
.textContent.testimonialSide .testimonialTrack.flickity-enabled .testimonial {
  padding-bottom: calc((calc(24px + 2vw)) / 2);
}
.textContent.testimonialSide .testimonialTrack.flickity-enabled .flickity-page-dots {
  margin-top: 0;
  margin-bottom: 0;
}

.specialOffers {
  width: calc(100% + calc((calc(24px + 2vw)) / 2));
}
.specialOffers .introText {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((calc(24px + 2vw)) / 2);
}
.specialOffers .introText * {
  text-align: center;
}
.specialOffers .specialOffer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: 33.3333333333%;
  padding-right: calc((calc(24px + 2vw)) / 2);
  margin-bottom: calc(24px + 2vw);
}
.specialOffers .specialOffer .image {
  order: 0;
  width: 100%;
}
.specialOffers .specialOffer .image img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.specialOffers .specialOffer .image span {
  display: block;
  width: 100%;
  padding-top: 100%;
}
.specialOffers .specialOffer .text {
  width: 100%;
  order: 1;
  padding: calc((calc(24px + 2vw)) / 2);
  background-color: var(--kc-color-lighter-grey);
  flex-grow: 1;
}
.specialOffers .specialOffer .text:before {
  content: "Special Offer";
  display: inline-block;
  font-family: var(--kc-header-font);
  font-weight: var(--kc-header-font-weight);
  line-height: var(--kc-header-font-line-height);
  margin-bottom: 0.5em;
  font-size: var(--kc-h6-size) 22px;
  font-size: var(--kc-h6-size-clamp);
  color: var(--kc-color-white);
  background-color: var(--kc-color-red);
  padding: 8px;
  margin-bottom: 12px;
}
.specialOffers .specialOffer .text h3 {
  font-size: var(--kc-h4-size) 28px;
  font-size: var(--kc-h4-size-clamp);
}
.specialOffers .specialOffer .price {
  padding: calc((calc(24px + 2vw)) / 2);
  order: 2;
  background-color: var(--kc-color-red);
  width: 100%;
}
.specialOffers .specialOffer .price h4 {
  color: var(--kc-color-white);
  margin: 0;
}
.specialOffers .specialOffer .offerLink {
  order: 4;
  width: 100%;
}
.specialOffers .specialOffer .offerLink .blockLink {
  white-space: normal;
  margin: 0;
  width: 100%;
  padding-left: calc((calc(24px + 2vw)) / 2);
  padding-right: calc(calc((calc(24px + 2vw)) / 2) + 2em);
  background-position: right calc((calc(24px + 2vw)) / 2) center;
}

.specialOfferTrack, .specialOfferGrid {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: stretch;
}
.specialOfferTrack.flickity-enabled .flickity-viewport, .specialOfferGrid.flickity-enabled .flickity-viewport {
  width: 100%;
}
.specialOfferTrack.flickity-enabled .soecialOffer, .specialOfferGrid.flickity-enabled .soecialOffer {
  min-height: 100%;
}
.specialOfferTrack.flickity-enabled .flickity-page-dots, .specialOfferGrid.flickity-enabled .flickity-page-dots {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  margin-top: calc((calc(24px + 2vw)) / 2);
}

@media only screen and (max-width: 700px) {
  .specialOffers .specialOffer {
    width: 50%;
  }
  .specialOffers .specialOffer .image span {
    padding-top: 75%;
  }
} /*$smallTablet ends*/
h6.noDeals {
  text-align: center;
  padding-right: calc((calc(24px + 2vw)) / 2);
}

.clearanceDeals {
  width: calc(100% + calc((calc(24px + 2vw)) / 2));
}
.clearanceDeals .introText {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((calc(24px + 2vw)) / 2);
}
.clearanceDeals .introText * {
  text-align: center;
}
.clearanceDeals .clearanceDeal {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: calc(50% - calc((calc(24px + 2vw)) / 2));
  margin-bottom: calc(24px + 2vw);
  margin-right: calc((calc(24px + 2vw)) / 2);
}
.clearanceDeals .clearanceDeal .details {
  width: 66%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
}
.clearanceDeals .clearanceDeal .text {
  width: 100%;
  order: 1;
  padding: calc((calc(24px + 2vw)) / 2);
  background-color: var(--kc-color-lighter-grey);
  flex-grow: 1;
}
.clearanceDeals .clearanceDeal .text:before {
  content: "Clearance";
  display: inline-block;
  font-family: var(--kc-header-font);
  font-weight: var(--kc-header-font-weight);
  line-height: var(--kc-header-font-line-height);
  margin-bottom: 0.5em;
  font-size: var(--kc-h6-size) 22px;
  font-size: var(--kc-h6-size-clamp);
  color: var(--kc-color-white);
  background-color: var(--kc-color-red);
  padding: 8px;
  margin-bottom: 12px;
}
.clearanceDeals .clearanceDeal .text h3 {
  font-size: var(--kc-h4-size) 28px;
  font-size: var(--kc-h4-size-clamp);
  width: 100%;
  display: block;
}
.clearanceDeals .clearanceDeal .price {
  padding: calc((calc(24px + 2vw)) / 2);
  order: 2;
  background-color: var(--kc-color-red);
  width: 100%;
}
.clearanceDeals .clearanceDeal .price h4 {
  color: var(--kc-color-white);
  margin: 0;
}
.clearanceDeals .clearanceDeal .offerLink {
  order: 4;
  width: 100%;
}
.clearanceDeals .clearanceDeal .offerLink .blockLink {
  white-space: normal;
  margin: 0;
  width: 100%;
  padding-left: calc((calc(24px + 2vw)) / 2);
  padding-right: calc(calc((calc(24px + 2vw)) / 2) + 2em);
  background-position: right calc((calc(24px + 2vw)) / 2) center;
}
.clearanceDeals .clearanceDeal .image {
  order: 0;
  width: 34%;
  align-self: stretch;
}
.clearanceDeals .clearanceDeal .image img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clearanceDeals .clearanceDeal .image span {
  display: block;
  width: 100%;
  padding-top: 100%;
}

.clearanceDealTrack, .clearanceDealGrid {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: stretch;
}
.clearanceDealTrack.flickity-enabled .flickity-viewport, .clearanceDealGrid.flickity-enabled .flickity-viewport {
  width: 100%;
}
.clearanceDealTrack.flickity-enabled .flickity-page-dots, .clearanceDealGrid.flickity-enabled .flickity-page-dots {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  margin-top: calc((calc(24px + 2vw)) / 2);
}

@media only screen and (max-width: 768px) {
  .clearanceDeals .clearanceDeal {
    width: 100%;
  }
  .clearanceDeals .clearanceDeal .image span {
    padding-top: 75%;
  }
} /*$tablet ends*/
.faqs {
  text-align: center;
}
.faqs.mainFAQPage {
  padding-top: 0;
}
.faqs .introText + .flexer {
  margin-top: calc((calc(24px + 2vw)) / 4);
}
.faqs .flexer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}
.faqs .faq {
  width: 100%;
  max-width: 850px;
  padding: calc(24px + 2vw);
  border-bottom: solid 1px var(--kc-color-light-grey);
}
.faqs .faq:last-child {
  border: 0;
  padding-bottom: 0px;
}
.faqs .faqSignOff {
  margin: auto;
  margin-top: calc(24px + 2vw);
  background-color: var(--kc-color-secondary);
  padding: calc(24px + 2vw);
  max-width: 850px;
}

@media only screen and (max-width: 900px) {
  .faqs .faq {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .faqs .faq:nth-child(odd):after {
    display: none;
  }
} /*$bigTablet ends*/
.manufacturers {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.manufacturers .text + .flexer {
  margin-top: calc((calc(24px + 2vw)) / 2);
}
.manufacturers .flexer {
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.manufacturers.largeLogos .manufacturer {
  width: 33%;
  max-width: 350px;
}
.manufacturers .manufacturer {
  width: 20%;
  min-width: 145px;
  text-align: center;
  padding: calc((calc(24px + 2vw)) / 2);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.manufacturers .manufacturer a {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: flex-end;
  min-height: 100%;
}
.manufacturers .manufacturer .image {
  width: 100%;
  flex-grow: 1;
  max-height: 70px;
}
.manufacturers .manufacturer .image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.manufacturers .manufacturer .image + p {
  padding-top: calc((calc(24px + 2vw)) / 2);
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
}
.manufacturers .manufacturer p {
  width: 100%;
  margin: auto;
  margin-bottom: 0;
}

.manufacturers.largeLogos .manufacturer {
  width: 33%;
  min-width: 180px;
}

.flooringTypes .text + .floorTypes {
  margin-top: calc((calc(24px + 2vw)) / 2);
}
.flooringTypes .floorTypes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  width: calc(100% + (calc(24px + 2vw)) / 2);
  margin-left: calc(0px - (calc((calc(24px + 2vw)) / 4)));
}
.flooringTypes .floorTypes .floorType {
  width: 25%;
  padding: calc((calc(24px + 2vw)) / 4);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}
.flooringTypes .floorTypes .floorType .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  padding: calc((calc(24px + 2vw)) / 2);
  padding-top: 0px;
}
.flooringTypes .floorTypes .floorType h4 {
  width: auto;
  margin-top: calc(0px - 0.5em - (calc((calc(24px + 2vw)) / 4)));
  display: inline-block;
  padding: calc((calc(24px + 2vw)) / 4);
  background-color: var(--kc-color-primary);
  color: var(--kc-color-black);
}

@media only screen and (max-width: 700px) {
  .flooringTypes .floorTypes .floorType {
    width: 50%;
  }
} /*$smallTablet ends*/
.comparisonTable {
  width: 100%;
}
.comparisonTable .text + .compTable {
  margin-top: calc((calc(24px + 2vw)) / 2);
}
.comparisonTable > .text {
  max-width: var(1050px);
  margin-left: auto;
  margin-right: auto;
}
.comparisonTable .compTable {
  width: 100%;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: 1fr 1fr;
}
.comparisonTable .compTable .compItem {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  margin-bottom: calc((calc(24px + 2vw)) / 2);
}
.comparisonTable .compTable .compItem .imageHolder.imgContain img {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  height: auto;
}
.comparisonTable .compTable .compItem .imageHolder.imgContain span {
  display: none;
}
.comparisonTable .compTable .compItem .text {
  width: 100%;
  padding: calc((calc(24px + 2vw)) / 2);
  flex-grow: 1;
}
.comparisonTable .compTable .compItem .heading {
  width: 100%;
  display: inline-block;
  padding: calc((calc(24px + 2vw)) / 2);
  background-color: var(--kc-color-primary);
  color: var(--kc-color-black);
}
.comparisonTable .compTable .compItem .heading h5 {
  text-align: left;
  margin-bottom: 0;
}
.comparisonTable .compTable .compItem:nth-child(odd) + .compItem .heading:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc((calc(24px + 2vw)) / 4);
  right: auto;
  bottom: calc((calc(24px + 2vw)) / 4);
  width: 1px;
  border-right: solid 1px var(--kc-color-white);
}
.comparisonTable .compTable .compItem + .compItem .text:before,
.comparisonTable .compTable .compItem:nth-child(odd) .text:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc((calc(24px + 2vw)) / 4);
  right: auto;
  bottom: calc((calc(24px + 2vw)) / 4);
  width: 1px;
  border-right: solid 1px var(--kc-color-black);
}
.comparisonTable .compTable .compItem:nth-child(even) .text:after {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: calc((calc(24px + 2vw)) / 4);
  right: 0;
  bottom: calc((calc(24px + 2vw)) / 4);
  width: 1px;
  border-right: solid 1px var(--kc-color-black);
}

@media only screen and (max-width: 700px) {
  .comparisonTable .compTable {
    grid-template-columns: 1fr;
  }
  .comparisonTable .compTable .compItem:nth-child(even) .heading:after,
  .comparisonTable .compTable .compItem:nth-child(odd) .heading:after {
    display: none;
  }
  .comparisonTable .compTable .compItem:nth-child(even) .text:before, .comparisonTable .compTable .compItem:nth-child(even) .text:after,
  .comparisonTable .compTable .compItem:nth-child(odd) .text:before,
  .comparisonTable .compTable .compItem:nth-child(odd) .text:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: calc((calc(24px + 2vw)) / 4);
    right: auto;
    bottom: calc((calc(24px + 2vw)) / 4);
    width: 1px;
    border-right: solid 1px var(--kc-color-black);
  }
  .comparisonTable .compTable .compItem:nth-child(even) .text:after,
  .comparisonTable .compTable .compItem:nth-child(odd) .text:after {
    left: auto;
    right: 0;
  }
} /*$smallTablet ends*/
.socialBlock .introText * {
  text-align: center;
}
.socialBlock .text + .social_embed_code {
  margin-top: calc((calc(24px + 2vw)) / 2);
}
.socialBlock .social_embed_code {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.socialBlock .social_embed_code .heading {
  text-align: center;
}
.socialBlock .social_embed_code iframe {
  margin: calc((calc(24px + 2vw)) / 2) auto;
}

.featureImage {
  text-align: center;
}
.featureImage img {
  margin-left: auto;
  margin-right: auto;
}
.featureImage.leftTop .image img {
  -o-object-position: left top;
     object-position: left top;
}
.featureImage.centreTop .image img {
  -o-object-position: center top;
     object-position: center top;
}
.featureImage.rightTop .image img {
  -o-object-position: right top;
     object-position: right top;
}
.featureImage.leftCentre .image img {
  -o-object-position: left centre;
     object-position: left centre;
}
.featureImage.centreCentre .image img {
  -o-object-position: centre centre;
     object-position: centre centre;
}
.featureImage.rightCentre .image img {
  -o-object-position: right centre;
     object-position: right centre;
}
.featureImage.leftBottom .image img {
  -o-object-position: left bottom;
     object-position: left bottom;
}
.featureImage.centreBottom .image img {
  -o-object-position: centre bottom;
     object-position: centre bottom;
}
.featureImage.rightBottom .image img {
  -o-object-position: right bottom;
     object-position: right bottom;
}
.featureImage.imageFit .wrapper {
  max-width: 100%;
  padding: 0;
}

.featureImage.cropAsBanner .image img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featureImage.cropAsBanner .stilt {
  width: 1px;
  display: block;
  height: 80vh;
  max-height: 750px;
}

.featureImage.fitToPage .image {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.divider {
  display: block;
  width: 100%;
  border-top: solid 1px var(--kc-color-light-grey);
} /*$phone ends*/
/*

*/
.mapBlock .introText {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((calc(24px + 2vw)) / 2);
}
.mapBlock .introText * {
  text-align: center;
}

.contactView {
  padding: 0;
}
.contactView .flexer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
.contactView .map {
  width: calc(100% - 420px);
  order: 1;
  background-color: var(--kc-color-lighter-grey);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
.contactView .storeImage .image img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.contactView .storeImage .image span {
  display: block;
  width: 100%;
  padding-top: 75%;
}
.contactView .contactDetails {
  width: 420px;
  order: 2;
}
.contactView .contactDetails ul.telNos {
  color: var(--kc-color-black);
}
.contactView .contactDetails p.regNo {
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
  margin-bottom: 0;
}
.contactView .contactDetails ul, .contactView .contactDetails .openingHours, .contactView .contactDetails p.regNo {
  color: var(--kc-color-black);
}
.contactView .contactDetails ul *, .contactView .contactDetails .openingHours *, .contactView .contactDetails p.regNo * {
  color: var(--kc-color-black);
}
.contactView .contactDetails .details {
  padding: calc(24px + 2vw);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  background-color: var(--kc-color-lighter-grey);
}
.contactView .contactDetails .details address {
  font-style: normal;
  color: var(--kc-color-black);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.contactView .contactDetails .details address .postal, .contactView .contactDetails .details address .contacts {
  width: 100%;
  flex-grow: 1;
  min-width: 350px;
}
.contactView .contactDetails .details ul.socials li {
  margin: 0;
  margin-right: 12px;
  background-color: var(--kc-color-primary);
}
.contactView .contactDetails ul {
  list-style-type: none;
}
.contactView .contactDetails .quickAddress {
  flex: 1;
  min-width: 40%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.contactView .contactDetails .quickAddress address, .contactView .contactDetails .quickAddress opening, .contactView .contactDetails .quickAddress .socials {
  width: 100%;
}
.contactView .contactDetails .quickNumbers {
  flex-grow: 1;
}
.contactView .contactDetails .quickNumbers .number {
  background-color: var(--kc-color-secondary);
  padding: 18px;
  margin-bottom: 18px;
}
.contactView .contactDetails .quickNumbers .number * {
  margin-bottom: 6px;
  color: var(--kc-color-black);
}
.contactView .map {
  align-self: stretch;
}
.contactView .mapHolder {
  width: 100%;
  min-height: 100%;
}
.contactView .mapHolder span {
  display: block;
  min-height: 400px;
}
.contactView .mapHolder iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 700px) {
  .contactView .map {
    width: 100%;
  }
  .contactView .contactDetails {
    width: 100%;
  }
} /*$smallTablet ends*/
#quickEnquiry, #homeVisitEnquiry {
  margin-top: calc(24px + 2vw);
  order: 3;
  padding-bottom: 0px;
}
#quickEnquiry .keyPointIcon, #homeVisitEnquiry .keyPointIcon {
  width: 20%;
  max-width: 140px;
  min-width: 70px;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}
#quickEnquiry .keyPointIcon:after, #homeVisitEnquiry .keyPointIcon:after {
  max-width: var(1050px);
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  width: 100vw;
  height: 50%;
  background-color: var(--kc-color-lighter-grey);
  z-index: -1;
  transform: translateX(-50%);
}
#quickEnquiry .keyPointIcon + .contactForm, #homeVisitEnquiry .keyPointIcon + .contactForm {
  padding-top: calc((calc(24px + 2vw)) / 2);
}
#quickEnquiry .formHead, #homeVisitEnquiry .formHead {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-end;
  padding: calc((calc(24px + 2vw)) / 2);
  padding-top: 0px;
  padding-bottom: 0;
}
#quickEnquiry .formHead h3, #homeVisitEnquiry .formHead h3 {
  margin-bottom: 0em;
  text-align: center;
}
#quickEnquiry .formBody, #homeVisitEnquiry .formBody {
  padding: calc((calc(24px + 2vw)) / 2);
  padding-bottom: 0;
}
#quickEnquiry .formBody > p, #homeVisitEnquiry .formBody > p {
  text-align: center;
}

.grecaptcha-badge {
  opacity: 0;
  pointer-events: none;
}

.contactForm {
  max-width: var(1050px);
  margin: auto;
  padding: calc(24px + 2vw);
  background-color: var(--kc-color-lighter-grey);
  z-index: 2;
}
.contactForm form {
  width: 100%;
  display: block;
}
.contactForm form * {
  box-sizing: border-box;
}
.contactForm form input[type=text],
.contactForm form input[type=email],
.contactForm form input[type=tel] {
  border: solid 1px rgba(var(--kc-color-grey-rgb), 0.7);
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
}
.contactForm form input#surname {
  display: none;
}
.contactForm form textarea {
  height: 100px;
  border: solid 1px rgba(var(--kc-color-grey-rgb), 0.7);
  padding: 9px;
  width: 100%;
  color: var(--kc-color-text-colour);
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
}
.contactForm form h6, .contactForm form span {
  text-align: left;
}
.contactForm form #postCode {
  width: 50%;
  max-width: 200px;
}
.contactForm form .form-group {
  font-weight: 400;
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 9px;
}
.contactForm form .form-group .textInputArea, .contactForm form .form-group select {
  width: 100%;
}
.contactForm form .form-group input, .contactForm form .form-group .textInputArea, .contactForm form .form-group select {
  display: block;
  padding: 9px;
  color: var(--kc-color-text-colour);
}
.contactForm form .form-group label {
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
  width: 100%;
  display: block;
  color: var(--kc-color-black);
  margin: 0;
  margin-bottom: 8px;
  color: var(--kc-color-black);
  text-transform: none;
  text-align: left;
  font-weight: 400;
}
.contactForm form .form-group input {
  clear: left;
  font-weight: 400;
  width: 100%;
  margin-bottom: 12px;
  padding: 9px;
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
}
.contactForm form .form-group.shortSpace {
  padding-bottom: 0;
}
.contactForm form .form-group.shortSpace input {
  margin-bottom: 6px;
}
.contactForm form .form-group.has-danger label, .contactForm form .form-group.has-danger .pristine-error {
  color: var(--kc-color-red);
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
}
.contactForm form .form-group.has-danger input {
  border-color: var(--kc-color-red);
}
.contactForm form .textFields {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
.contactForm form .textFields .form-group {
  width: calc(33.33% - 18px);
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;
  _height: 50px;
  min-height: 50px;
}
.contactForm form .textFields .form-group.hidden {
  display: none;
}
.contactForm form .form-group.hidden {
  display: none;
}
.contactForm form .checkList {
  width: 100%;
  padding: 0;
}
.contactForm form .checkList .flexer {
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.contactForm form .checkList .column {
  width: calc(33.33% - 18px);
}
.contactForm form .checkList .column h6, .contactForm form .checkList .column span {
  margin-bottom: 8px;
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
}
.contactForm form .checkList .column span {
  display: block;
  margin: 0;
  margin-bottom: 8px;
  text-transform: none;
  text-align: left;
  font-weight: 400;
}
.contactForm form .checkList .column.stretched {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}
.contactForm form .checkList .column.stretched .form-group {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  padding-bottom: 0;
  padding-top: 0;
  flex-grow: 1;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contactForm form .checkList .column.stretched .form-group textarea {
  flex-grow: 1;
}
.contactForm form .checkList .optionList {
  background-color: rgba(var(--kc-color-white-rgb), 0.75);
  padding: calc(calc((calc(24px + 2vw)) / 2) / 2) calc(calc((calc(24px + 2vw)) / 2));
  flex-grow: 1;
}
.contactForm form .checkList .checkOption {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}
.contactForm form .checkList .checkOption:last-child .form-group {
  margin-bottom: 0;
}
.contactForm form .checkList .checkOption input[type=checkbox] {
  display: none;
  margin-bottom: 8px;
}
.contactForm form .checkList .checkOption input[type=checkbox] + label {
  cursor: pointer;
  padding-left: 36px;
  margin: 8px 0;
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
}
.contactForm form .checkList .checkOption input[type=checkbox] + label:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0px;
  right: auto;
  bottom: auto;
  width: 24px;
  height: 24px;
  border: solid 1px var(--kc-color-grey);
  background-color: var(--kc-color-white);
}
.contactForm form .checkList .checkOption input[type=checkbox] + label:after {
  position: absolute;
  content: "";
  display: block;
  left: 6px;
  top: 50%;
  right: auto;
  bottom: auto;
  width: 14px;
  height: 14px;
  background-color: var(--kc-color-primary);
  transform: scale(0.25) translateY(-50%);
  transform-origin: center center;
  opacity: 0;
  transition: all 0.35s ease;
}
.contactForm form .checkList .checkOption input[type=checkbox]:checked + label:after {
  transform: scale(1) translateY(-50%);
  opacity: 1;
}
.contactForm form input.checkbox {
  vertical-align: middle;
  margin-top: 9px;
}
.contactForm form .checkbox {
  width: auto;
  display: inline;
  clear: none;
}
.contactForm form p {
  clear: left;
}
.contactForm form .submitArea {
  padding-top: 20px;
  width: 100%;
  display: block;
}
.contactForm form .buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: center;
  font-family: var(--kc-body-font);
  font-weight: var(--kc-body-font-weight);
  line-height: var(--kc-body-font-line-height);
  font-size: var(--kc-body-font-size);
  font-size: var(--kc-body-font-size-clamp);
}
.contactForm .button {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 900px) {
  .contactForm {
    width: 100%;
  }
  .contactForm form .checkList .column:first-child {
    width: 100%;
    margin-bottom: 12px;
  }
  .contactForm form .checkList .column {
    width: calc(50% - 12px);
  }
  .contactForm form .buttons {
    justify-content: flex-start;
  }
  .contactForm form .buttons .captchaNote {
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .contactForm form .textFields .form-group {
    width: 100%;
  }
} /*$tablet ends*/
@media only screen and (max-width: 650px) {
  #quickEnquiry {
    padding-top: 0;
  }
  #quickEnquiry .formHead {
    flex-wrap: wrap;
    padding-left: 0px;
    padding-right: 0px;
  }
  #quickEnquiry .formHead h3 {
    margin-bottom: 8px;
  }
  #quickEnquiry .formHead h3, #quickEnquiry .formHead h6, #quickEnquiry .formHead a {
    width: 100%;
  }
  #quickEnquiry .formHead h6, #quickEnquiry .formHead span {
    font-size: var(--kc-body-font-size);
    font-size: var(--kc-body-font-size-clamp);
  }
  .contactForm {
    padding: calc((calc(24px + 2vw)) / 2);
  }
  .contactForm form .textFields .form-group {
    width: 100%;
    padding-bottom: 0;
  }
  .contactForm form .checkList .column:first-child,
  .contactForm form .checkList .column {
    width: 100%;
    margin-bottom: 12px;
  }
}
#homeVisitEnquiry {
  background-color: var(--kc-color-lighter-grey);
  padding: calc(24px + 2vw);
}
#homeVisitEnquiry .text {
  padding: 0 0 calc(24px + 2vw) 0;
  max-width: var(1050px);
  margin: auto;
}
#homeVisitEnquiry .text ul {
  -moz-column-count: 2;
       column-count: 2;
}
#homeVisitEnquiry .text ul li {
  font-family: var(--kc-header-font);
  font-weight: var(--kc-header-font-weight);
  line-height: var(--kc-header-font-line-height);
  margin-bottom: 0.5em;
  font-size: var(--kc-h5-size) 24px;
  font-size: var(--kc-h5-size-clamp);
}
#homeVisitEnquiry .contactForm {
  background-color: var(--kc-color-white);
}
#homeVisitEnquiry .contactForm .optionList {
  background-color: var(--kc-color-lighter-grey);
}

/*! Flickity v2.2.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

body .fslightbox-container {
  background: transparent;
  background-color: rgba(var(--kc-color-white-rgb), 0.9);
}
body .fslightbox-container .fslightbox-svg-path {
  fill: var(--kc-color-white);
}
body .fslightbox-container .fslightbox-caption {
  background: rgba(var(--kc-color-black-rgb), 0.65);
}
body .fslightbox-container .fslightbox-caption .fslightbox-caption-inner * {
  color: var(--kc-color-white);
}

#cc--main {
  z-index: 1000000000 !important;
}

.cc_div *,
.cc_div :before,
.cc_div :after {
  box-sizing: border-box;
  float: none;
  font-style: inherit;
  font-variant: normal;
  font-weight: inherit;
  font-family: inherit;
  line-height: 1.2;
  font-size: 1em;
  transition: none;
  animation: none;
  margin: 0;
  padding: 0;
  text-transform: none;
  letter-spacing: unset;
  color: inherit;
  background: none;
  border: none;
  box-shadow: none;
  text-decoration: none;
  text-align: left;
  visibility: unset;
}

.cc_div {
  font-size: 16px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #2d4156;
  color: var(--cc-text);
}

.cc_div .c-bn,
.cc_div .b-tl,
#s-ttl,
#c-ttl,
#s-bl td:before {
  font-weight: 600;
}

#cm,
#s-inr,
.cc_div .c-bl,
.cc_div .b-tl,
#s-bl .act .b-acc {
  border-radius: 0.35em;
}

.cc_div input,
.cc_div button,
.cc_div a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cc_div a {
  border-bottom: 1px solid;
}

.cc_div a:hover {
  text-decoration: none;
  border-color: transparent;
}

/* Make elements "animatable" */
.c--anim #cm,
.c--anim #s-cnt,
.c--anim #s-inr,
#cs-ov,
#cm-ov {
  transition: visibility 0.25s linear, opacity 0.25s ease, transform 0.25s ease !important;
}

.c--anim .c-bn {
  transition: background-color 0.25s ease !important;
}

/* start transitions */
.c--anim #cm.bar.slide,
.c--anim .bar.slide #s-inr {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

.c--anim #cm.bar.slide + #cm-ov,
.c--anim .bar.slide + #cs-ov {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

#cm.bar.slide,
.cc_div .bar.slide #s-inr {
  transform: translateX(100%);
  opacity: 1;
}

#cm.bar.top.slide,
.cc_div .bar.left.slide #s-inr {
  transform: translateX(-100%);
  opacity: 1;
}

#cm.slide,
.cc_div .slide #s-inr {
  transform: translateY(1.6em);
}

#cm.top.slide {
  transform: translateY(-1.6em);
}

#cm.bar.slide {
  transform: translateY(100%);
}

#cm.bar.top.slide {
  transform: translateY(-100%);
}

/* end transitions */
/* Show modals */
.show--consent .c--anim #cm,
.show--consent .c--anim #cm.bar,
.show--settings .c--anim #s-inr,
.show--settings .c--anim .bar.slide #s-inr {
  opacity: 1;
  transform: scale(1);
  visibility: visible !important;
}

.show--settings .c--anim #s-cnt {
  visibility: visible !important;
}

/* Show overlays */
.force--consent.show--consent .c--anim #cm-ov,
.show--settings .c--anim #cs-ov {
  visibility: visible !important;
  opacity: 1 !important;
}

#cm {
  font-family: inherit;
  padding: 1.05em 2.1em 1.5em 2.1em;
  position: fixed;
  z-index: 1;
  background: #fff;
  background: var(--cc-bg);
  max-width: 25em;
  width: 100%;
  bottom: 1.25em;
  right: 1.25em;
  box-shadow: 0 0.625em 1.875em #000000;
  box-shadow: 0 0.625em 1.875em rgba(2, 2, 3, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  line-height: initial;
}

#c-ttl {
  margin: 0 0 0.7em 0;
  font-size: 1.05em;
}

#c-txt {
  margin-bottom: 1.4em;
  font-size: 0.9em;
  line-height: 1.5em;
}

.cc_div .c-bn {
  color: #40505a;
  color: var(--cc-btn-secondary-text);
  background: #e5ebef;
  background: var(--cc-btn-secondary-bg);
  padding: 1em 1.7em;
  display: inline-block;
  cursor: pointer;
  font-size: 0.82em;
  -moz-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-align: center;
  border-radius: 4px;
}

#cm .c-bn {
  width: 48.5%;
}

#c-bns button + button,
#s-cnt button + button,
#s-c-bn {
  float: right;
}

#s-cnt #s-rall-bn {
  float: none;
  margin-left: 1em;
}

#cm .c_link:hover,
#cm .c_link:active,
#s-cnt button + button:hover,
#s-cnt button + button:active,
#s-c-bn:active,
#s-c-bn:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
}

/**
CookieConsent settings modal
**/
#s-cnt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  display: table;
  height: 100%;
  visibility: hidden;
}

#s-bl {
  outline: none;
}

#s-bl .title {
  margin-top: 1.4em;
}

#s-bl .title:first-child {
  margin-top: 0;
}

#s-bl .b-bn {
  margin-top: 0;
}

#s-bl .b-acc .p {
  margin-top: 0;
  padding: 1em;
}

#s-cnt .b-bn .b-tl {
  display: block;
  font-family: inherit;
  font-size: 0.95em;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding: 1.3em 6.4em 1.3em 2.7em;
  background: none;
  transition: background-color 0.25s ease;
}

#s-cnt .act .b-bn .b-tl {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

#s-cnt .b-bn .b-tl:active,
#s-cnt .b-bn .b-tl:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl .b-bn {
  position: relative;
}

#s-bl .c-bl {
  padding: 1em;
  margin-bottom: 0.5em;
  border: 1px solid #f1f3f5;
  border-color: var(--cc-section-border);
  transition: background-color 0.25s ease;
}

#s-bl .c-bl:hover {
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
}

#s-bl .c-bl:last-child {
  margin-bottom: 0.5em;
}

#s-bl .c-bl:first-child {
  transition: none;
  padding: 0;
  margin-top: 0;
  border: none;
  margin-bottom: 2em;
}

#s-bl .c-bl:first-child:hover {
  background: transparent;
  background: unset;
}

#s-bl .c-bl.b-ex {
  margin-top: 2em;
  padding: 0;
  border: none;
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
  transition: none;
}

#s-bl .c-bl.b-ex + .c-bl {
  margin-top: 2em;
}

#s-bl .c-bl.b-ex + .c-bl.b-ex {
  margin-top: 0;
}

#s-bl .c-bl.b-ex:first-child {
  margin-bottom: 1em;
}

#s-bl .c-bl.b-ex:first-child {
  margin-bottom: 0.5em;
}

#s-bl .b-acc {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  margin-bottom: 0;
  display: none;
}

#s-bl .act .b-acc {
  max-height: 100%;
  display: block;
  overflow: hidden;
}

#s-cnt .p {
  font-size: 0.9em;
  line-height: 1.5em;
  margin-top: 1em;
  color: #2d4156;
  color: var(--cc-block-text);
}

.cc_div .c-tgl:disabled {
  cursor: not-allowed;
}

#c-vln {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

#cs {
  padding: 0 1.7em;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}

#s-inr {
  height: 100%;
  position: relative;
  max-width: 45em;
  margin: 0 auto;
  transform: scale(0.96);
  opacity: 0;
  padding-top: 5.125em;
  padding-bottom: 4.75em;
  position: relative;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  box-shadow: rgba(3, 6, 9, 0.26) 0px 13px 27px -5px;
}

#s-inr,
#s-hdr,
#s-bns {
  background: #fff;
  background: var(--cc-bg);
}

#s-bl {
  overflow-y: auto;
  overflow-y: overlay;
  overflow-x: hidden;
  height: 100%;
  padding: 1.5em 2.5em;
  display: block;
  width: 100%;
}

#s-bns {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em 2.5em;
  border-top: 1px solid #f1f3f5;
  border-color: var(--cc-section-border);
  height: 4.75em;
}

.cc_div .cc-link {
  color: #253b48;
  color: var(--cc-btn-primary-bg);
  border-bottom: 1px solid #253b48;
  border-color: var(--cc-btn-primary-bg);
  display: inline;
  padding-bottom: 0;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}

.cc_div .cc-link:hover,
.cc_div .cc-link:active {
  border-color: transparent;
}

#c-bns button:first-child,
#s-bns button:first-child {
  color: #fff;
  color: var(--cc-btn-primary-text);
  background: #253b48;
  background: var(--cc-btn-primary-bg);
}

.cc_div .c-tgl:checked ~ .c-tg {
  background: #253b48;
  background: var(--cc-toggle-bg-on);
}

#c-bns button:first-child:active,
#c-bns button:first-child:hover,
#s-bns button:first-child:active,
#s-bns button:first-child:hover {
  background: #1d2e38;
  background: var(--cc-btn-primary-hover-bg);
}

#s-hdr {
  position: absolute;
  top: 0;
  width: 100%;
  display: table;
  padding: 0 2.5em;
  height: 5.125em;
  vertical-align: middle;
  z-index: 2;
  border-bottom: 1px solid #f1f3f5;
  border-color: var(--cc-section-border);
}

#s-ttl {
  display: table-cell;
  vertical-align: middle;
  font-size: 1em;
}

#s-c-bn {
  padding: 0;
  width: 1.7em;
  height: 1.7em;
  font-size: 1.515em;
  margin: 0;
  font-weight: initial;
  position: relative;
}

#s-c-bnc {
  display: table-cell;
  vertical-align: middle;
}

.cc_div span.t-lb {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

#c_policy__text {
  height: 31.25em;
  overflow-y: auto;
  margin-top: 1.25em;
}

#c-s-in {
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  height: 100%;
  height: calc(100% - 2.5em);
  max-height: 37.5em;
}

/** works only on webkit-based browsers **/
#s-bl::-webkit-scrollbar {
  width: 0.9em;
  height: 100%;
  background: transparent;
  border-radius: 0 0.25em 0.25em 0;
}

#s-bl::-webkit-scrollbar-thumb {
  border: 0.25em solid var(--cc-bg);
  background: #cfd5db;
  background: var(--cc-webkit-scrollbar-bg);
  border-radius: 100em;
}

#s-bl::-webkit-scrollbar-thumb:hover {
  background: #9199a0;
  background: var(--cc-webkit-scrollbar-bg-hover);
}

#s-bl::-webkit-scrollbar-button {
  width: 10px;
  height: 5px;
}

/** custom checkbox **/
/* The container */
.cc_div .b-tg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  margin: auto;
  right: 1.2em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: middle;
}

/* Hide the browser's default checkbox */
.cc_div .c-tgl {
  position: absolute;
  cursor: pointer;
  display: block;
  top: 0;
  left: 0;
}

/* Create a custom checkbox */
.cc_div .b-tg .c-tg {
  position: absolute;
  overflow: hidden;
  background: #919ea6;
  background: var(--cc-toggle-bg-off);
  transition: background-color 0.25s ease;
  pointer-events: none;
}

.cc_div span.t-lb,
.cc_div .b-tg,
.cc_div .b-tg .c-tg,
.cc_div .c-tgl {
  width: 3.6em;
  height: 1.6em;
  border-radius: 4em;
}

.cc_div .b-tg .c-tg.c-ro {
  cursor: not-allowed;
}

.cc_div .c-tgl ~ .c-tg.c-ro {
  background: #d5dee2;
  background: var(--cc-toggle-bg-readonly);
}

.cc_div .c-tgl ~ .c-tg.c-ro:after {
  box-shadow: none;
}

/* Style the checkmark/indicator */
.cc_div .b-tg .c-tg:after {
  content: "";
  position: absolute;
  left: 0.24em;
  top: 0.25em;
  width: 1.1em;
  height: 1.1em;
  border: none;
  box-sizing: content-box;
  background: #fff;
  background: var(--cc-toggle-knob-bg);
  box-shadow: 0 1px 2px rgba(24, 32, 35, 0.36);
  transition: transform 0.25s ease;
  border-radius: 100%;
}

/* Show the checkmark when checked */
.cc_div .c-tgl:checked ~ .c-tg:after {
  transform: translateX(1.95em);
}

#s-bl table,
#s-bl th,
#s-bl td {
  border: none;
}

#s-bl tbody tr {
  transition: background-color 0.25s ease;
}

#s-bl tbody tr:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl table {
  text-align: left;
  border-collapse: collapse;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#s-bl td,
#s-bl th {
  padding: 0.8em 0.625em;
  text-align: left;
  vertical-align: top;
  font-size: 0.8em;
  padding-left: 1.2em;
}

#s-bl th {
  font-family: inherit;
  padding: 1.2em 1.2em;
}

#s-bl thead tr:first-child {
  border-bottom: 1px solid #e9edf2;
  border-color: var(--cc-cookie-table-border);
}

.force--consent #s-cnt,
.force--consent #cs {
  width: 100vw;
}

#cm-ov,
#cs-ov {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  background: #070707;
  background: rgba(4, 6, 8, 0.85);
  background: var(--cc-overlay-bg);
  display: none;
  transition: none;
}

.show--settings #cs-ov,
.c--anim #cs-ov,
.force--consent .c--anim #cm-ov,
.force--consent.show--consent #cm-ov {
  display: block;
}

#cs-ov {
  z-index: 2;
}

.force--consent .cc_div {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  width: 100vw;
  visibility: hidden;
  transition: visibility 0.25s linear;
}

.force--consent.show--consent .c--anim .cc_div,
.force--consent.show--settings .c--anim .cc_div {
  visibility: visible;
}

.force--consent #cm {
  position: absolute;
}

.force--consent #cm.bar {
  width: 100vw;
  max-width: 100vw;
}

html.force--consent.show--consent,
html.force--consent.show--settings {
  overflow-y: hidden !important;
}

html.force--consent,
html.force--consent body {
  height: auto !important;
  overflow-x: hidden !important;
}

/** END BLOCK PAGE SCROLL */
/** BEGIN ICONS **/
.cc_div .b-bn .b-tl::before,
.cc_div .act .b-bn .b-tl::before {
  border: solid #2d4156;
  border-color: var(--cc-btn-secondary-text);
  border-width: 0 2px 2px 0;
  padding: 0.2em;
  display: inline-block;
  position: absolute;
  content: "";
  margin-right: 15px;
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  left: 1.2em;
  top: 50%;
}

.cc_div .act .b-bn .b-tl::before {
  transform: translateY(-20%) rotate(225deg);
}

.cc_div .on-i::before {
  border: solid #ffffff;
  border-color: var(--cc-toggle-knob-icon-color);
  border-width: 0 2px 2px 0;
  padding: 0.13em;
  display: inline-block;
  padding-bottom: 0.55em;
  content: "";
  margin: 0 auto;
  transform: rotate(45deg);
  margin-top: 0.31em;
  margin-left: 0.1em;
}

#s-c-bn::before,
#s-c-bn::after {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0.82em;
  top: 0.58em;
  height: 0.6em;
  width: 1.5px;
  background: #444d53;
  background: var(--cc-btn-secondary-text);
  transform: rotate(45deg);
  border-radius: 1em;
  margin: 0 auto;
}

#s-c-bn::after {
  transform: rotate(-45deg) !important;
  border-radius: 1em !important;
  clip-path: none !important;
}

.cc_div .off-i,
.cc_div .on-i {
  height: 100%;
  width: 50%;
  position: absolute;
  right: 0;
  display: block;
  text-align: center;
  transition: opacity 0.25s ease;
}

.cc_div .on-i {
  left: 0;
  opacity: 0;
}

.cc_div .off-i::before,
.cc_div .off-i::after {
  right: 0.84em;
  top: 0.4em;
  content: " ";
  height: 0.85em;
  width: 0.09375em;
  display: block;
  background: #cdd6dc;
  background: var(--cc-toggle-knob-icon-color);
  margin: 0 auto;
  position: absolute;
  transform-origin: center;
}

.cc_div .off-i::before {
  transform: rotate(45deg);
}

.cc_div .off-i::after {
  transform: rotate(-45deg);
}

.cc_div .c-tgl:checked ~ .c-tg .on-i {
  opacity: 1;
}

.cc_div .c-tgl:checked ~ .c-tg .off-i {
  opacity: 0;
}

/** END ICONS **/
/* Start cloud layout */
#cm.cloud {
  max-width: 50em;
  margin: 0 auto;
  text-align: center;
  left: 1.25em;
  right: 1.25em;
  overflow: hidden;
  padding: 1.3em 2.4em;
  width: unset;
}

.cc_div .cloud #c-inr {
  display: table;
  width: 100%;
}

.cc_div .cloud #c-inr-i {
  width: 70%;
  display: table-cell;
  vertical-align: top;
  padding-right: 2.4em;
}

.cc_div .cloud #c-txt {
  margin-bottom: 0;
  font-size: 0.85em;
}

.cc_div .cloud #c-bns {
  min-width: 170px;
  display: table-cell;
  vertical-align: middle;
}

#cm.cloud .c-bn {
  margin: 0.625em 0 0 0;
  width: 100%;
}

#cm.cloud .c-bn:first-child {
  margin: 0;
}

#cm.cloud.left {
  margin-right: 1.25em;
}

#cm.cloud.right {
  margin-left: 1.25em;
}

/* End cloud layout */
/* Start bar layout */
#cm.bar {
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  position: fixed;
  padding: 2em;
}

#cm.bar #c-inr {
  max-width: 32em;
  margin: 0 auto;
}

#cm.bar #c-bns {
  max-width: 540px;
}

#cm.bar #cs {
  padding: 0;
}

.cc_div .bar #c-s-in {
  top: 0;
  transform: none;
  height: 100%;
  max-height: 100%;
}

.cc_div .bar #s-hdr,
.cc_div .bar #s-bl,
.cc_div .bar #s-bns {
  padding-left: 1.8em;
  padding-right: 1.8em;
}

.cc_div .bar #cs {
  padding: 0;
}

/* align bar to right by default */
.cc_div .bar #s-inr {
  margin: 0;
  margin-left: auto;
  margin-right: 0;
  border-radius: 0;
  max-width: 32em;
}

.cc_div .bar.left #s-inr {
  margin-left: 0;
  margin-right: auto;
}

/* Force table to not be like tables anymore */
.cc_div .bar #s-bl table,
.cc_div .bar #s-bl thead,
.cc_div .bar #s-bl tbody,
.cc_div .bar #s-bl th,
.cc_div .bar #s-bl td,
.cc_div .bar #s-bl tr,
.cc_div .bar #s-cnt {
  display: block;
}

/* Hide table headers (but not display: none;, for accessibility) */
.cc_div .bar #s-bl thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.cc_div .bar #s-bl tr {
  border-top: 1px solid #e3e7ed;
  border-color: var(--cc-cookie-table-border);
}

.cc_div .bar #s-bl td {
  /* Behave  like a "row" */
  border: none;
  position: relative;
  padding-left: 35%;
}

.cc_div .bar #s-bl td:before {
  position: absolute;
  left: 1em;
  padding-right: 0.625em;
  white-space: nowrap;
  content: attr(data-column);
  color: #000;
  color: var(--cc-text);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* End bar layout */
/* Positions */
#cm.top {
  bottom: auto;
  top: 1.25em;
}

#cm.left {
  right: auto;
  left: 1.25em;
}

#cm.right {
  left: auto;
  right: 1.25em;
}

#cm.bar.left,
#cm.bar.right {
  left: 0;
  right: 0;
}

#cm.bar.top {
  top: 0;
}

/* end positions */
@media screen and (max-width: 688px) {
  #cm,
  #cm.cloud,
  #cm.left,
  #cm.right {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1.6em !important;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 0;
    display: block;
  }
  .force--consent #cm,
  .force--consent #cm.cloud {
    width: 100vw;
    max-width: 100vw;
  }
  #cm.top {
    top: 0;
    bottom: unset;
  }
  #cm.bottom {
    bottom: 0;
    top: unset;
  }
  .cc_div .cloud #c-txt {
    font-size: 0.9em;
  }
  #cm.cloud .c-bn {
    font-size: 0.85em;
  }
  #s-bns,
  .cc_div .bar #s-bns {
    padding: 1em 1.3em;
  }
  .cc_div .bar #s-inr {
    max-width: 100%;
    width: 100%;
  }
  .cc_div .cloud #c-inr-i {
    padding-right: 0;
  }
  #cs {
    border-radius: 0;
    padding: 0;
  }
  #c-s-in {
    max-height: 100%;
    height: 100%;
    top: 0;
    transform: none;
  }
  .cc_div .b-tg {
    font-size: 1.1em;
    right: 0.9em;
  }
  #s-inr {
    margin: 0;
    padding-bottom: 7.9em;
    border-radius: unset;
  }
  #s-bns {
    height: 7.9em;
  }
  #s-bl,
  .cc_div .bar #s-bl {
    padding: 1.3em;
  }
  #s-hdr,
  .cc_div .bar #s-hdr {
    padding: 0 1.3em;
  }
  /** dynamic table layout **/
  #s-bl table {
    width: 100%;
  }
  #s-inr.bns-t {
    padding-bottom: 10.5em;
  }
  .bns-t #s-bns {
    height: 10.5em;
  }
  .cc_div .bns-t .c-bn {
    font-size: 0.83em;
    padding: 0.9em 1.6em;
  }
  #s-cnt .b-bn .b-tl {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
  }
  /* Force table to not be like tables anymore */
  #s-bl table,
  #s-bl thead,
  #s-bl tbody,
  #s-bl th,
  #s-bl td,
  #s-bl tr,
  #s-cnt {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  #s-bl thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #s-bl tr {
    border-top: 1px solid #e3e7ed;
    border-color: var(--cc-cookie-table-border);
  }
  #s-bl td {
    /* Behave  like a "row" */
    border: none;
    position: relative;
    padding-left: 35%;
  }
  #s-bl td:before {
    position: absolute;
    left: 1em;
    padding-right: 0.625em;
    white-space: nowrap;
    content: attr(data-column);
    color: #000;
    color: var(--cc-text);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #cm .c-bn,
  .cc_div .c-bn {
    width: 100%;
    margin-right: 0;
  }
  #s-cnt #s-rall-bn {
    margin-left: 0;
  }
  #c-bns button + button,
  #s-cnt button + button {
    margin-top: 0.625em;
    float: unset;
  }
  #cm.cloud {
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
  }
  #cm.cloud.right,
  #cm.cloud.left {
    margin: 0;
  }
  .cc_div .cloud #c-bns,
  .cc_div .cloud #c-inr,
  .cc_div .cloud #c-inr-i {
    display: block;
    width: auto;
    min-width: unset;
  }
  .cc_div .cloud #c-txt {
    margin-bottom: 1.625em;
  }
}
/* Begin IE fixes */
.cc_div.ie #c-vln {
  height: 100%;
  padding-top: 5.62em;
}

.cc_div.ie .bar #c-vln {
  padding-top: 0;
}

.cc_div.ie #cs {
  max-height: 37.5em;
  position: relative;
  top: 0;
  margin-top: -5.625em;
}

.cc_div.ie .bar #cs {
  margin-top: 0;
  max-height: 100%;
}

.cc_div.ie #cm {
  border: 1px solid #dee6e9;
}

.cc_div.ie #c-s-in {
  top: 0;
}

.cc_div.ie .b-tg {
  padding-left: 1em;
  margin-bottom: 0.7em;
}

.cc_div.ie .c-tgl:checked ~ .c-tg:after {
  left: 1.95em;
}

.cc_div.ie #s-bl table {
  overflow: auto;
}

.cc_div.ie .b-tg .c-tg {
  display: none;
}

.cc_div.ie .c-tgl {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.2em;
  height: auto;
}

.cc_div.ie #s-cnt .b-bn .b-tl {
  padding: 1.3em 6.4em 1.3em 1.4em;
}

.cc_div.ie .bar #s-bl td:before {
  display: none;
}

.cc_div.ie .bar #s-bl td {
  padding: 0.8em 0.625em 0.8em 1.2em;
}

.cc_div.ie .bar #s-bl thead tr {
  position: relative;
}

.cc_div.ie .b-tg .t-lb {
  filter: alpha(opacity=0);
}

.cc_div.ie #cm-ov,
.cc_div.ie #cs-ov {
  filter: alpha(opacity=80);
}

/** END IE FIXES **/
.footer {
  background-color: var(--kc-color-lighter-grey);
  padding-bottom: calc((calc(24px + 2vw)) / 2);
  margin-top: calc(24px + 2vw);
}
.footer * {
  color: var(--kc-color-black);
}
.footer a {
  color: var(--kc-color-black);
}
.footer .flexer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.footer address {
  padding-right: calc((calc(24px + 2vw)) / 2);
  font-style: normal;
  margin-top: calc((calc(24px + 2vw)) / 2);
}
.footer ul {
  list-style-type: none;
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
}
.footer .openingHours *,
.footer .regNo {
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
}
.footer .footMenu {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.footer .footMenu ul {
  margin-top: calc((calc(24px + 2vw)) / 2);
  padding-right: calc((calc(24px + 2vw)) / 2);
  list-style-type: none;
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
}
.footer .footMenu ul:last-child {
  padding-right: 0;
}
.footer .footMenu ul.socials {
  margin-right: 0;
  margin-left: auto;
}

.smallLinks {
  margin-top: calc((calc(24px + 2vw)) / 4);
  margin-bottom: calc((calc(24px + 2vw)) / 4);
  margin-bottom: calc(18px + calc(24px + 2vw));
}
.smallLinks * {
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
}
.smallLinks .flexer {
  flex-wrap: wrap;
}
.smallLinks .menu {
  width: auto;
  order: 0;
  margin-bottom: calc((calc(24px + 2vw)) / 4);
}
.smallLinks ul {
  padding-right: calc(24px + 2vw);
  list-style-type: none;
  width: auto;
}
.smallLinks a {
  color: var(--kc-color-grey);
}
.smallLinks a.kingCredit {
  width: 100%;
  text-align: left;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: calc((calc(24px + 2vw)) / 4);
}

.flooringTiles .tileTrack, .flooringTiles .tileGrid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: center;
  width: calc(100% + (calc(24px + 2vw)) / 2);
  margin-left: calc(0px - (calc((calc(24px + 2vw)) / 4)));
  overflow: hidden;
}

.flooringTile {
  width: 25%;
  padding: calc((calc(24px + 2vw)) / 4);
  padding-bottom: calc((calc(24px + 2vw)) / 2);
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  min-width: 155px;
}
.flooringTile .text {
  order: 1;
  padding: calc((calc(24px + 2vw)) / 4);
  position: absolute;
  left: calc((calc(24px + 2vw)) / 4);
  top: auto;
  right: auto;
  bottom: calc(24px + 2vw);
  z-index: 2;
  background-color: var(--kc-color-white);
}
.flooringTile .text .positioner {
  width: 100%;
  transition: padding-bottom 0.25s ease-out;
}
.flooringTile .text .positioner * {
  text-align: left;
  color: var(--kc-color-black);
}
.flooringTile .text .positioner h6 {
  margin-bottom: 0;
}
.flooringTile .text .positioner h6 + p {
  margin-top: 4px;
}
.flooringTile .text .positioner p {
  font-size: var(--kc-small-font-size);
  font-size: var(--kc-small-font-size-clamp);
}
.flooringTile .text .positioner .viewMore {
  position: absolute;
  left: auto;
  top: auto;
  right: auto;
  bottom: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  transition-delay: 0.125s;
}
.flooringTile:hover .text .positioner {
  padding-bottom: 2.8em;
}
.flooringTile:hover .text .positioner .viewMore {
  opacity: 1;
}
.flooringTile .image {
  order: 0;
  width: 100%;
  background-color: var(--kc-color-lighter-grey);
}
.flooringTile .image img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.flooringTile .image span {
  display: block;
  width: 100%;
  padding-top: 100%;
}

.tileTrack.flickity-enabled {
  /*
  //Fade fix
  .carousel-cell, .flooringTile {
  	display: flex;
  	opacity: 0 !important;
  	transition: opacity 1s ease !important;
  	//min-height: 100%;

  	&.is-selected {
  		opacity: 1 !important;
  	}
  }
  */
}
.tileTrack.flickity-enabled .flickity-slider {
  width: 100%;
}
.tileTrack.flickity-enabled .flickity-viewport {
  overflow: visible;
  width: 100%;
}
.tileTrack.flickity-enabled .flickity-page-dots {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin: auto;
  margin-top: calc((calc(24px + 2vw)) / 4);
}
.tileTrack.flickity-enabled .flickity-page-dots li {
  display: block;
  width: 1.2em;
  height: 1.2em;
  margin-left: 0;
  margin-right: 0.6em;
  border-radius: 0;
  background-color: var(--kc-color-lighter-grey);
  opacity: 0.8;
}
.tileTrack.flickity-enabled .flickity-page-dots li.is-selected {
  background-color: var(--kc-color-secondary);
}

@media only screen and (max-width: 900px) {
  .flooringTiles .flooringTile {
    width: 33.33%;
  }
} /*$bigTablet ends*/
@media only screen and (max-width: 700px) {
  .flooringTiles .flooringTile {
    width: 50%;
  }
} /*$smallTablet ends*/
.footAccreditations .flexer {
  padding: calc(24px + 2vw) 0 0 0;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.footAccreditations .flexer .text * {
  text-align: center;
}
.footAccreditations .flexer .accredLogos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: calc((calc(24px + 2vw)) / 2);
}
.footAccreditations .flexer .accredLogos img {
  max-height: 80px;
  width: auto;
  margin: calc((calc(24px + 2vw)) / 4);
}

.googleReviews .flexer {
  justify-content: center;
  text-align: center;
  margin-bottom: calc((calc(24px + 2vw)) / 2);
}
.googleReviews .rplg-slider .rplg-stars {
  width: 97%;
  margin-bottom: 6px;
}
.googleReviews .rplg-slider .rplg-review-text {
  display: inline-block;
  padding-right: 10px;
}
.googleReviews .rplg-slider .rplgsw-pagination-bullet {
  background-color: var(--kc-color-light-grey);
}
.googleReviews .rplg-slider .rplgsw-pagination-bullet-active {
  background-color: var(--kc-color-primary);
}

/*
@use '_debug/debug';
*/

/*# sourceMappingURL=kingsfordBase.css.map */