@charset "UTF-8";
:root {
  --kc-color-primary: #000000;
  --kc-color-primary-rgb: 0, 0, 0;
  --kc-color-primary-dark: #000000;
  --kc-color-primary-dark-rgb: 0, 0, 0;
  --kc-color-secondary: #F2F2F2;
  --kc-color-secondary-rgb: 242, 242, 242;
  --kc-color-light-grey: #F2F2F2;
  --kc-color-light-grey-rgb: 242, 242, 242;
  --kc-color-border-colour: var(--kc-color-primary);
  --kc-color-border-colour-rgb: var(--kc-color-primary-rgb);
  --kc-color-box-grey: var(--kc-color-secondary);
  --kc-color-box-grey-rgb: var(--kc-color-secondary-rgb);
  --kc-color-block-link: var(--kc-color-primary);
  --kc-color-block-link-rgb: var(--kc-color-primary-rgb);
  --kc-color-block-link-text: var(--kc-color-white);
  --kc-color-block-link-text-rgb: var(--kc-color-white-rgb);
  --kc-color-block-link-bg: var(--kc-color-primary);
  --kc-color-block-link-bg-rgb: var(--kc-color-primary-rgb);
  --kc-color-header-color-bg: var(--kc-color-primary);
  --kc-color-header-color-bg-rgb: var(--kc-color-primary-rgb);
  --kc-color-menu-colour: var(--kc-color-white);
  --kc-color-menu-colour-rgb: var(--kc-color-white-rgb);
  --kc-color-address-bar: var(--kc-color-secondary);
  --kc-color-address-bar-rgb: var(--kc-color-secondary-rgb);
  --kc-color-text-colour: #707070;
  --kc-color-text-colour-rgb: 112, 112, 112;
  --kc-color-hr-colour: var(--kc-color-secondary);
  --kc-color-hr-colour-rgb: var(--kc-color-secondary-rgb);
  --kc-color-box-back: var(--kc-color-primary);
}

/** Light color-scheme **/
:root {
  --cc-text: var(--kc-color-grey);
  --cc-btn-primary-bg: var(--kc-color-primary-dark);
  --cc-btn-primary-text: var(--kc-color-white);
  --cc-btn-primary-hover-bg: var(--kc-color-primary);
}

/*
font-family: 'Lato', sans-serif; 400/700
font-family: 'Nunito', sans-serif; 600/800
font-family: 'Square Peg', cursive; 400
*/
:root {
  --kc-body-font: "montserrat", "Helvetica", "Arial", sans-serif;
  --kc-body-font-weight: 500;
  --kc-body-font-line-height: 1.6em;
  --kc-header-font: "montserrat", "Helvetica", "Arial", sans-serif;
  --kc-header-font-weight: 400;
  --kc-header-font-line-height: 1.3em;
  --kc-banner-header-font: var(--kc-header-font);
  --kc-banner-header-font-weight: var(--kc-header-font-weight);
  --kc-banner-header-font-weight-strong: var(--kc-header-font-weight);
  --kc-menu-font: var(--kc-banner-header-font);
  --kc-menu-font-weight: var(--kc-header-font-weight);
  --kc-flooring-menu-font: var(--kc-header-font);
  --kc-flooring-menu-font-weight: var(--kc-header-font-weight);
  --kc-h1-size: 48px;
  --kc-h1-size-clamp: clamp(30px, 4.5vw, 50px);
  --kc-h1-size-large: 68px;
  --kc-h1-size-large-clamp: clamp(36px, 6vw, 60px);
  --kc-h2-size: 40px;
  --kc-h2-size-clamp: clamp(36px, 3.2vw, 40px);
  --kc-h3-size: 36px;
  --kc-h3-size-clamp: clamp(26px, 2.8vw, 34px);
  --kc-h4-size: 28px;
  --kc-h4-size-clamp: clamp(22px, 2.4vw, 26px);
  --kc-h5-size: 24px;
  --kc-h5-size-clamp: clamp(18px, 2.2vw, 22px);
  --kc-h6-size: 22px;
  --kc-h6-size-clamp: clamp(16px, 2vw, 18px);
  --kc-body-font-size: 16px;
  --kc-body-font-size-clamp: clamp(14px, 1.6vw, 16px);
  --kc-menu-font-size: 16px;
  --kc-menu-font-size-clamp: clamp(14px, 1.6vw, 16px);
  --kc-small-font-size: 12px;
  --kc-small-font-size-clamp: clamp(10px, 1.2vw, 12px);
  --kc-credit-font-size: 10px;
  --kc-credit-font-size-clamp: clamp(8px, 1vw, 10px);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--kc-color-primary);
  line-height: var(--kc-header-font-line-height);
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 700;
}

.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 */
.logo span {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/monarch-carpets-logo.svg");
  background-position: left center;
  background-size: contain;
  padding-top: 83%;
}
.logo.onDark span {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/monarch-carpets-logo-white.svg");
}

a.blockLink, .blockLink, blockLink {
  font-family: var(--kc-header-font);
  text-transform: none;
  background-repeat: no-repeat;
  background-size: 1.4em;
  background-position: right 0.5em center;
  margin-top: calc((calc(24px + 2vw)) * 0.5);
  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);
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  a.blockLink, .blockLink, blockLink {
    font-size: var(--kc-body-font-size-clamp);
  }
}
a.blockLink::after, .blockLink::after, blockLink::after {
  display: none;
}

.hasColour.primaryBack a.blockLink, .hasColour.primaryBack .blockLink, .hasColour.primaryBack blockLink,
.hasColour.secondaryBack a.blockLink,
.hasColour.secondaryBack .blockLink,
.hasColour.secondaryBack blockLink {
  background-color: rgba(var(--kc-color-primary-dark-rgb), 0.85);
  border: solid 1px var(--kc-color-white);
}

.hasColour.lightText a.blockLink, .hasColour.lightText .blockLink, .hasColour.lightText blockLink {
  background-color: var(--kc-color-white);
  color: var(--kc-color-black);
}
.hasColour.lightText a:not(.blockLink) {
  color: var(--kc-color-white);
  text-decoration: underline;
}

.socials a div.connect {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/connect.svg");
}
.socials a div.fb {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/facebook.svg");
}
.socials a div.tw {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/twitter.svg");
}
.socials a div.li {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/linkedin.svg");
}
.socials a div.wp {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/wordpress.svg");
}
.socials a div.pt {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/pinterest.svg");
}
.socials a div.ig {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/instagram.svg");
}

/*--!Add Corners*/
.addCorners::after, .addCorners::before {
  display: none;
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/corner-br.svg");
}

:root {
  --kc-color-skip-bg: var(--kc-color-primary);
  --kc-color-skip-link: var(--kc-color-black);
  --kc-color-header-bg: white;
  --kc-color-header-link: var(--kc-color-primary);
  --kc-color-menu-colour: var(--kc-color-primary);
  --kc-color-address-bar-bg: var(--kc-color-white);
  --kc-color-address-bar-link: var(--kc-color-primary);
  --kc-color-quote-block-bg: var(--kc-color-primary);
  --kc-color-quote-block-link: var(--kc-color-white);
}

#headerNav + .notification {
  margin-top: calc(0px - ((calc(24px + 2vw)) * 0.5 + (calc(24px + 2vw)) * 0.25));
}

#headerNav {
  margin-bottom: calc((calc(24px + 2vw)) * 0.5);
}
#headerNav.shadow {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.1));
}

#headerNav .flexer {
  display: grid;
  grid-template-areas: "brand addressBar" "brand middle";
  grid-template-columns: clamp(70px, 12%, 150px) 1fr;
}
#headerNav .brand {
  grid-area: brand;
  width: 100%;
  max-width: 150px;
  min-width: 0;
  justify-content: flex-end;
}
#headerNav .middle {
  grid-area: middle;
  padding: 0;
}
#headerNav .menuHolder {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  width: 100%;
  padding: calc((calc(24px + 2vw)) * 0.25);
  padding-right: 0;
  padding-bottom: calc(calc((calc(24px + 2vw)) * 0.25) - 4px);
}
#headerNav .menuHolder .menu {
  order: 0;
  min-width: 0;
  flex-grow: 1;
  flex-wrap: wrap;
}
#headerNav .menuHolder .menu ul#flooringMenu,
#headerNav .menuHolder .menu ul#headerMenu {
  width: 100%;
  list-style-type: none;
}
#headerNav .menuHolder .menu ul#flooringMenu + ul#headerMenu {
  margin-top: calc((calc(24px + 2vw)) * 0.25 / 2);
}
#headerNav .menuHolder .quickQuote {
  order: 1;
}
#headerNav .menuHolder .quickQuote .quoteBlock {
  all: unset;
  font-family: var(--kc-menu-font);
  font-weight: var(--kc-menu-font-weight);
  font-size: var(--kc-menu-font-size);
  font-size: var(--kc-body-font-size);
  color: var(--kc-color-white);
  padding: calc((calc(24px + 2vw)) * 0.25);
  display: block;
  background-color: var(--kc-color-black);
  white-space: nowrap;
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  #headerNav .menuHolder .quickQuote .quoteBlock {
    font-size: var(--kc-menu-font-size-clamp);
  }
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  #headerNav .menuHolder .quickQuote .quoteBlock {
    font-size: var(--kc-body-font-size-clamp);
  }
}
#headerNav .menuHolder .quickQuote .quoteBlock::after {
  display: none;
}
#headerNav .addressBar {
  grid-area: addressBar;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
}
#headerNav .addressBar ul {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: solid 1px var(--kc-color-light-grey);
}

@media only screen and (max-width: 900px) {
  #headerNav .addressBar .county,
  #headerNav .addressBar .postcode {
    display: none;
  }
} /*$bigTablet ends*/
@media only screen and (max-width: 650px) {
  #headerNav .addressBar {
    display: none;
  }
  #headerNav .flexer {
    grid-template-areas: "brand middle";
  }
  #headerNav .menuHandle .flexer {
    margin-right: calc((24px + 2vw) / 2);
  }
  #headerNav .menuHandle .mobContact {
    display: inline-block;
  }
} /*$bigPhone ends*/
@media only screen and (max-width: 450px) {
  #headerNav .menuHolder .quickQuote .quoteBlockMobile {
    display: none;
  }
  #headerNav .menuHandle .flexer {
    margin-right: 0;
  }
  #headerNav .menuHandle .mobContact {
    display: none;
  }
} /*$phone ends*/
.menuOverlay {
  background-color: rgba(var(--kc-color-white-rgb), 0.95);
  background-image: none;
}
.menuOverlay .brand {
  width: 30%;
  min-width: 140px;
  max-width: 270px;
  margin: 0 auto calc((calc(24px + 2vw)) * 0.5) auto;
}
.menuOverlay .floorTilesOverlay a.flooringTile .text .positioner h6 {
  color: var(--kc-color-white);
}
.menuOverlay .floorTilesOverlay a.flooringTile .text .positioner p, .menuOverlay .floorTilesOverlay a.flooringTile .text .positioner .blockLink {
  display: none;
}
.menuOverlay .floorTilesOverlay a.flooringTile .text .bgIMG {
  display: none;
}
.menuOverlay .floorTilesOverlay a.flooringTile .image span {
  padding-top: 50%;
}
.menuOverlay .floorTilesOverlay a.flooringTile:hover .text .positioner {
  padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .menuOverlay .floorTilesOverlay a.flooringTile {
    width: 33%;
  }
} /*$tablet ends*/
@media only screen and (max-width: 650px) {
  .menuOverlay .floorTilesOverlay {
    max-width: 85%;
  }
  .menuOverlay .floorTilesOverlay a.flooringTile {
    width: 50%;
  }
} /*$bigPhone ends*/
@media only screen and (max-width: 450px) {
  .menuOverlay .floorTilesOverlay a.flooringTile {
    width: 100%;
  }
} /*$bigPhone ends*/
.footer {
  background-color: var(--kc-color-primary-dark);
  padding: 0;
}
.footer .flexer {
  align-items: stretch;
  flex-wrap: nowrap;
}
.footer *, .footer a {
  color: var(--kc-color-white);
}
.footer .brandHolder {
  width: 100%;
  padding: calc((calc(24px + 2vw)) * 0.25) 0;
}
.footer .brandHolder .brand {
  width: clamp(50px, 10%, 102px);
}
.footer address {
  padding: calc(24px + 2vw);
  padding-top: 0px;
  padding-left: 0px;
  margin: 0;
  max-width: 550px;
}
.footer address .brand {
  width: 75%;
  max-width: 145px;
  margin-bottom: 12px;
  margin-top: -8px;
}
.footer .openingHours {
  width: 320px;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .footMenu {
  background-color: var(--kc-color-primary);
  padding: calc((calc(24px + 2vw)) * 0.5) calc(24px + 2vw);
  padding-top: 0px;
  flex-grow: 0;
}
.footer .footMenu ul {
  margin-top: 0;
}
.footer .footMenu::after {
  content: "";
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  right: auto;
  bottom: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  background-color: var(--kc-color-primary);
}
.footer .socialHolder .socials {
  width: auto;
  list-style-type: none;
  margin: 0;
}
.footer .socialHolder .socials li {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin: 0;
  padding: 0;
  z-index: 1;
  transition: all 0.35s ease;
  background-color: var(--kc-color-primary);
  margin-right: 12px;
}
.footer .socialHolder .socials:hover li div {
  opacity: 1;
}
.footer .socialHolder .socials a {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.35s ease;
}
.footer .socialHolder .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;
  background-color: var(--kc-color-white);
}
.footer .socialHolder .socials a div p {
  opacity: 0;
  font-size: 1px;
}
.footer .socialHolder .socials a div.connect {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/connect-primary.svg");
}
.footer .socialHolder .socials a div.fb {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/facebook-primary.svg");
}
.footer .socialHolder .socials a div.tw {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/twitter-primary.svg");
}
.footer .socialHolder .socials a div.li {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/linkedin-primary.svg");
}
.footer .socialHolder .socials a div.wp {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/wordpress-primary.svg");
}
.footer .socialHolder .socials a div.pt {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/pinterest-primary.svg");
}
.footer .socialHolder .socials a div.ig {
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/socials/instagram-primary.svg");
}

.areasMenu {
  background-color: var(--kc-color-lighter-grey);
  padding: calc((calc(24px + 2vw)) * 0.5) 0;
}
.areasMenu h6 {
  margin-bottom: 6px;
}
.areasMenu ul {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  list-style-type: none;
}
.areasMenu ul li {
  width: 50%;
  min-width: 300px;
  padding-right: 12px;
}
.areasMenu ul a {
  font-size: var(--kc-small-font-size);
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  .areasMenu ul a {
    font-size: var(--kc-small-font-size-clamp);
  }
}

.smallLinks ul li {
  display: inline-block;
  padding-right: 18px;
}

@media only screen and (max-width: 900px) {
  .footer {
    background-color: var(--kc-color-primary-dark);
    padding: 0;
  }
  .footer .flexer {
    align-items: stretch;
    flex-wrap: wrap;
  }
  .footer .footMenu {
    width: 100%;
    padding-left: 0px;
  }
  .footer .footMenu::before {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--kc-color-primary);
  }
} /*$bigTablet ends*/
@media only screen and (max-width: 700px) {
  .footer address {
    max-width: 100%;
  }
} /*$bigPhone ends*/
.inlineFloorMenu .introText {
  margin-left: auto;
  margin-right: auto;
  max-width: 1050px;
  text-align: center;
}

.flooringTiles .tileTrack {
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
}
.flooringTiles .tileTrack > a {
  padding-bottom: 0;
}
.flooringTiles .text + .tileTrack {
  margin-top: calc(24px + 2vw);
}
.flooringTiles .tileTrack.flickity-enabled .flickity-page-dots li.dot {
  background-color: var(--kc-color-light-grey);
}
.flooringTiles .tileTrack.flickity-enabled .flickity-page-dots li.dot.is-selected {
  background-color: var(--kc-color-black);
}
.flooringTiles .flooringTile {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  align-self: stretch;
  width: 33.3333333333%;
}
.flooringTiles .flooringTile:hover .text .positioner {
  padding-bottom: 0;
}
.flooringTiles .flooringTile .text {
  width: 100%;
  padding: calc((calc(24px + 2vw)) * 0.5);
  margin-bottom: 0;
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  flex-grow: 1;
  background-color: var(--kc-color-primary);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: stretch;
}
.flooringTiles .flooringTile .text .positioner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-grow: 1;
  z-index: 2;
}
.flooringTiles .flooringTile .text .blockLink {
  margin-top: auto;
  margin-bottom: 0;
  z-index: 2;
  font-size: var(--kc-small-font-size);
  border: 0;
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  .flooringTiles .flooringTile .text .blockLink {
    font-size: var(--kc-small-font-size-clamp);
  }
}
.flooringTiles .flooringTile .text img.bgIMG {
  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;
  z-index: 1;
  filter: none;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  mix-blend-mode: multiply;
  opacity: 0.25;
}
.flooringTiles .flooringTile .text * {
  text-align: center;
  color: var(--kc-color-white);
}
.flooringTiles .flooringTile .text * h6 {
  font-size: var(--kc-h4-size);
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  .flooringTiles .flooringTile .text * h6 {
    font-size: var(--kc-h4-size-clamp);
  }
}
.flooringTiles .flooringTile .text * p, .flooringTiles .flooringTile .text * ul, .flooringTiles .flooringTile .text * ol, .flooringTiles .flooringTile .text * table, .flooringTiles .flooringTile .text * blockquote,
.flooringTiles .flooringTile .text * h1, .flooringTiles .flooringTile .text * h2, .flooringTiles .flooringTile .text * h3, .flooringTiles .flooringTile .text * h4, .flooringTiles .flooringTile .text * h5, .flooringTiles .flooringTile .text * h6 {
  color: var(--kc-color-white);
}
.flooringTiles .flooringTile .text * p span, .flooringTiles .flooringTile .text * ul span, .flooringTiles .flooringTile .text * ol span, .flooringTiles .flooringTile .text * table span, .flooringTiles .flooringTile .text * blockquote span,
.flooringTiles .flooringTile .text * h1 span, .flooringTiles .flooringTile .text * h2 span, .flooringTiles .flooringTile .text * h3 span, .flooringTiles .flooringTile .text * h4 span, .flooringTiles .flooringTile .text * h5 span, .flooringTiles .flooringTile .text * h6 span {
  text-decoration-color: var(--kc-color-white);
}
.flooringTiles .flooringTile .text * ul li::before {
  background-color: var(--kc-color-white);
}
.flooringTiles .flooringTile .text * ol li:before {
  color: var(--kc-color-white);
}

@media only screen and (max-width: 768px) {
  .flooringTiles .flooringTile {
    width: 50%;
  }
  .flooringTiles .flooringTile .image span {
    padding-top: 75%;
  }
} /*$tablet ends*/
@media only screen and (max-width: 650px) {
  .flooringTiles .flooringTile {
    width: 100%;
  }
} /*$bigPhone ends*/
.bannerHolder .flexer {
  align-items: center;
}
.bannerHolder .bannerTrack, .bannerHolder .banner {
  background-color: var(--kc-color-white) !important;
}
.bannerHolder .headIcon {
  max-width: 300px;
  margin-left: 0;
  margin-right: auto;
  padding-bottom: calc((calc(24px + 2vw)) * 0.75);
  margin-bottom: calc((calc(24px + 2vw)) * 0.75);
}
.bannerHolder .headIcon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  right: auto;
  bottom: auto;
  width: 30%;
  height: 2px;
  background-color: var(--kc-color-white);
}
.bannerHolder h1.smallSize {
  font-size: var(--kc-h4-size);
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  .bannerHolder h1.smallSize {
    font-size: var(--kc-h4-size-clamp);
  }
}
.bannerHolder h1.largeSize {
  font-size: var(--kc-h1-size);
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  .bannerHolder h1.largeSize {
    font-size: var(--kc-h1-size-large-clamp);
  }
}
.bannerHolder h1::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background-color: var(--kc-color-white);
  margin-top: 18px;
}
.bannerHolder h2 {
  font-size: var(--kc-h4-size);
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  .bannerHolder h2 {
    font-size: var(--kc-h4-size-clamp);
  }
}
.bannerHolder.narrowBox .bannerText {
  width: 50%;
  max-width: 450px;
}
.bannerHolder.wideBox .bannerText {
  width: 75%;
  max-width: 750px;
}

.bannerHolder.textCentre .bannerText {
  margin-left: auto;
  margin-right: auto;
}
.bannerHolder.textCentre .backgroundImage.doubleImage .image {
  width: calc(50% - (calc((calc(24px + 2vw)) * 0.25)/2));
}
.bannerHolder.textCentre .backgroundImage.doubleImage .secondImage {
  right: 0;
  left: auto;
}

.bannerHolder.textLeft .bannerText {
  margin-left: 0;
  margin-right: auto;
}
.bannerHolder.textLeft .backgroundImage.doubleImage .image {
  width: calc(40% - (calc((calc(24px + 2vw)) * 0.25)/2));
}
.bannerHolder.textLeft .backgroundImage.doubleImage .secondImage {
  width: calc(60% - (calc((calc(24px + 2vw)) * 0.25)/2));
  right: 0;
  left: auto;
}

.bannerHolder.textRight .bannerText {
  margin-left: auto;
  margin-right: 0;
}
.bannerHolder.textRight .backgroundImage.doubleImage .image {
  width: calc(60% - (calc((calc(24px + 2vw)) * 0.25)/2));
}
.bannerHolder.textRight .backgroundImage.doubleImage .secondImage {
  width: calc(40% - (calc((calc(24px + 2vw)) * 0.25)/2));
  right: 0;
  left: auto;
}

.bannerHolder.textAlignCentre .headIcon {
  margin-left: auto;
  margin-right: auto;
}
.bannerHolder.textAlignCentre .headIcon::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.bannerHolder.textAlignCentre h1::after {
  margin-left: auto;
  margin-right: auto;
}

.bannerHolder.textAlignRight .headIcon {
  margin-left: auto;
  margin-right: 0;
}
.bannerHolder.textAlignRight .headIcon::after {
  left: auto;
  right: 0;
}

@media only screen and (min-width: 1400px) {
  .bannerHolder.textLeft .backgroundImage.doubleImage .image {
    width: calc(33% - (calc((calc(24px + 2vw)) * 0.25)/2));
  }
  .bannerHolder.textLeft .backgroundImage.doubleImage .secondImage {
    width: calc(67% - (calc((calc(24px + 2vw)) * 0.25)/2));
  }
  .bannerHolder.textRight .backgroundImage.doubleImage .image {
    width: calc(67% - (calc((calc(24px + 2vw)) * 0.25)/2));
  }
  .bannerHolder.textRight .backgroundImage.doubleImage .secondImage {
    width: calc(33% - (calc((calc(24px + 2vw)) * 0.25)/2));
    right: 0;
    left: auto;
  }
} /*maxWidth ends*/
@media only screen and (max-width: 650px) {
  .bannerHolder.textCentre .bannerText,
  .bannerHolder.textLeft .bannerText,
  .bannerHolder.textRight .bannerText {
    margin-left: auto;
    margin-right: auto;
    min-width: 80%;
  }
  .bannerHolder.textCentre .backgroundImage.doubleImage .image,
  .bannerHolder.textLeft .backgroundImage.doubleImage .image,
  .bannerHolder.textRight .backgroundImage.doubleImage .image {
    height: calc(50% - (calc((calc(24px + 2vw)) * 0.25)/2));
    min-height: calc(50% - (calc((calc(24px + 2vw)) * 0.25)/2));
    width: 100%;
    right: 0;
    left: 0;
    bottom: auto;
    top: 0;
  }
  .bannerHolder.textCentre .backgroundImage.doubleImage .secondImage,
  .bannerHolder.textLeft .backgroundImage.doubleImage .secondImage,
  .bannerHolder.textRight .backgroundImage.doubleImage .secondImage {
    bottom: 0;
    top: auto;
  }
} /*$bigPhone ends*/
.gridLayout {
  display: grid;
  width: calc(100% + 0px);
  margin-left: calc(0px - 0px / 2);
}
.gridLayout .gridSection {
  padding: 0 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
.gridLayout .gridSection > div {
  width: 100%;
}

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

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

.hasColour {
  padding: calc(24px + 2vw);
}
.hasColour.primaryBack {
  background-color: var(--kc-color-primary);
}
.hasColour.primaryBack * p, .hasColour.primaryBack * ul, .hasColour.primaryBack * ol, .hasColour.primaryBack * table, .hasColour.primaryBack * blockquote,
.hasColour.primaryBack * h1, .hasColour.primaryBack * h2, .hasColour.primaryBack * h3, .hasColour.primaryBack * h4, .hasColour.primaryBack * h5, .hasColour.primaryBack * h6, .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 * p span, .hasColour.primaryBack * ul span, .hasColour.primaryBack * ol span, .hasColour.primaryBack * table span, .hasColour.primaryBack * blockquote span,
.hasColour.primaryBack * h1 span, .hasColour.primaryBack * h2 span, .hasColour.primaryBack * h3 span, .hasColour.primaryBack * h4 span, .hasColour.primaryBack * h5 span, .hasColour.primaryBack * h6 span, .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.tertiaryBack {
  background-color: var(--kc-color-tertiary);
}
.hasColour.tertiaryBack * p, .hasColour.tertiaryBack * ul, .hasColour.tertiaryBack * ol, .hasColour.tertiaryBack * table, .hasColour.tertiaryBack * blockquote,
.hasColour.tertiaryBack * h1, .hasColour.tertiaryBack * h2, .hasColour.tertiaryBack * h3, .hasColour.tertiaryBack * h4, .hasColour.tertiaryBack * h5, .hasColour.tertiaryBack * h6, .hasColour.tertiaryBack .text p, .hasColour.tertiaryBack .text ul, .hasColour.tertiaryBack .text ol, .hasColour.tertiaryBack .text table, .hasColour.tertiaryBack .text blockquote,
.hasColour.tertiaryBack .text h1, .hasColour.tertiaryBack .text h2, .hasColour.tertiaryBack .text h3, .hasColour.tertiaryBack .text h4, .hasColour.tertiaryBack .text h5, .hasColour.tertiaryBack .text h6 {
  color: var(--kc-color-white);
}
.hasColour.tertiaryBack * p span, .hasColour.tertiaryBack * ul span, .hasColour.tertiaryBack * ol span, .hasColour.tertiaryBack * table span, .hasColour.tertiaryBack * blockquote span,
.hasColour.tertiaryBack * h1 span, .hasColour.tertiaryBack * h2 span, .hasColour.tertiaryBack * h3 span, .hasColour.tertiaryBack * h4 span, .hasColour.tertiaryBack * h5 span, .hasColour.tertiaryBack * h6 span, .hasColour.tertiaryBack .text p span, .hasColour.tertiaryBack .text ul span, .hasColour.tertiaryBack .text ol span, .hasColour.tertiaryBack .text table span, .hasColour.tertiaryBack .text blockquote span,
.hasColour.tertiaryBack .text h1 span, .hasColour.tertiaryBack .text h2 span, .hasColour.tertiaryBack .text h3 span, .hasColour.tertiaryBack .text h4 span, .hasColour.tertiaryBack .text h5 span, .hasColour.tertiaryBack .text h6 span {
  text-decoration-color: var(--kc-color-white);
}
.hasColour.tertiaryBack .flickity-enabled .flickity-button-icon {
  fill: var(--kc-color-white);
}
.hasColour.tertiaryBack .blockLink {
  background-color: var(--kc-color-primary);
}

.textContent.noBack .text {
  padding: calc(24px + 2vw) !important;
}
.textContent .gridLayout {
  grid-template-areas: "text sideContent";
  grid-template-columns: 1fr 1fr;
}
.textContent .textHolder {
  grid-area: text;
}
.textContent .sideHolder {
  grid-area: sideContent;
}
.textContent.text33 .gridLayout {
  grid-template-columns: 33.3333fr 66.6666fr;
}
.textContent.text40 .gridLayout {
  grid-template-columns: 40fr 60fr;
}
.textContent.text50 .gridLayout {
  grid-template-columns: 50fr 50fr;
}
.textContent.text66 .gridLayout {
  grid-template-columns: 66.6666fr 33.3333fr;
}
.textContent.text75 .gridLayout {
  grid-template-columns: 75fr 25fr;
}
.textContent.text80 .gridLayout {
  grid-template-columns: 80fr 20fr;
}
.textContent.imageSide .sideContent {
  min-height: 100%;
}
.textContent.imageSide .sideContent .image {
  min-height: 100%;
}
.textContent.imageSide.imgCropVert .image img {
  min-height: 100%;
}
.textContent.text33 .sideContent,
.textContent.text33 .text, .textContent.text40 .sideContent,
.textContent.text40 .text, .textContent.text50 .sideContent,
.textContent.text50 .text, .textContent.text66 .sideContent,
.textContent.text66 .text, .textContent.text75 .sideContent,
.textContent.text75 .text, .textContent.text80 .sideContent,
.textContent.text80 .text {
  width: 100%;
}
.textContent.textRight .gridLayout {
  grid-template-areas: "sideContent text";
}
.textContent.textRight.text33 .gridLayout {
  grid-template-columns: 66.6666fr 33.3333fr;
}
.textContent.textRight.text40 .gridLayout {
  grid-template-columns: 40fr 60fr;
}
.textContent.textRight.text50 .gridLayout {
  grid-template-columns: 50fr 50fr;
}
.textContent.textRight.text66 .gridLayout {
  grid-template-columns: 33.3333fr 66.6666fr;
}
.textContent.textRight.text75 .gridLayout {
  grid-template-columns: 25fr 75fr;
}
.textContent.textRight.text80 .gridLayout {
  grid-template-columns: 20fr 80fr;
}
.textContent .text {
  width: unset;
  grid-area: text;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.textContent .sideContent {
  width: unset;
  grid-area: sideContent;
}
.textContent.vertAlignCentre .sideContent .image {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
}
.textContent.vertAlignTop .sideContent .image {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.textContent.vertAlignBottom .sideContent .image {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-end;
}

.textContent.testimonialSide .testimonials {
  margin: 0;
  width: 100%;
  padding: 0;
  background-color: transparent;
}

.immediateBreak .textContent .gridLayout {
  grid-template-areas: "text" "sideContent";
  grid-template-columns: 1fr;
  margin-top: calc(0px - 0px);
}
.immediateBreak .textContent .gridLayout .text {
  margin-bottom: 0;
}
.immediateBreak .textContent .gridLayout .textHolder,
.immediateBreak .textContent .gridLayout .sideHolder {
  margin-top: 0px;
}
.immediateBreak .textContent.imageSide .sideContent .image {
  min-height: 1px;
}
.immediateBreak .textContent.textLeft .text,
.immediateBreak .textContent.textLeft .sideContent, .immediateBreak .textContent.textRight .text,
.immediateBreak .textContent.textRight .sideContent {
  margin: 0;
}
.immediateBreak .textContent.textLeft.text33 .gridLayout, .immediateBreak .textContent.textLeft.text40 .gridLayout, .immediateBreak .textContent.textLeft.text50 .gridLayout, .immediateBreak .textContent.textLeft.text66 .gridLayout, .immediateBreak .textContent.textLeft.text75 .gridLayout, .immediateBreak .textContent.textLeft.text80 .gridLayout, .immediateBreak .textContent.textRight.text33 .gridLayout, .immediateBreak .textContent.textRight.text40 .gridLayout, .immediateBreak .textContent.textRight.text50 .gridLayout, .immediateBreak .textContent.textRight.text66 .gridLayout, .immediateBreak .textContent.textRight.text75 .gridLayout, .immediateBreak .textContent.textRight.text80 .gridLayout {
  grid-template-columns: 1fr;
}
.immediateBreak .textContent.textRight .gridLayout {
  grid-template-areas: "sideContent" "text";
  grid-template-columns: 1fr;
}

@media only screen and (max-width: 1100px) {
  .laptopBreak .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .laptopBreak .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .laptopBreak .textContent .gridLayout .textHolder,
  .laptopBreak .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .laptopBreak .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .laptopBreak .textContent.textLeft .text,
  .laptopBreak .textContent.textLeft .sideContent, .laptopBreak .textContent.textRight .text,
  .laptopBreak .textContent.textRight .sideContent {
    margin: 0;
  }
  .laptopBreak .textContent.textLeft.text33 .gridLayout, .laptopBreak .textContent.textLeft.text40 .gridLayout, .laptopBreak .textContent.textLeft.text50 .gridLayout, .laptopBreak .textContent.textLeft.text66 .gridLayout, .laptopBreak .textContent.textLeft.text75 .gridLayout, .laptopBreak .textContent.textLeft.text80 .gridLayout, .laptopBreak .textContent.textRight.text33 .gridLayout, .laptopBreak .textContent.textRight.text40 .gridLayout, .laptopBreak .textContent.textRight.text50 .gridLayout, .laptopBreak .textContent.textRight.text66 .gridLayout, .laptopBreak .textContent.textRight.text75 .gridLayout, .laptopBreak .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .laptopBreak .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
} /*$laptop ends*/
@media only screen and (max-width: 900px) {
  .bigTabletBreak .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .bigTabletBreak .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .bigTabletBreak .textContent .gridLayout .textHolder,
  .bigTabletBreak .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .bigTabletBreak .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .bigTabletBreak .textContent.textLeft .text,
  .bigTabletBreak .textContent.textLeft .sideContent, .bigTabletBreak .textContent.textRight .text,
  .bigTabletBreak .textContent.textRight .sideContent {
    margin: 0;
  }
  .bigTabletBreak .textContent.textLeft.text33 .gridLayout, .bigTabletBreak .textContent.textLeft.text40 .gridLayout, .bigTabletBreak .textContent.textLeft.text50 .gridLayout, .bigTabletBreak .textContent.textLeft.text66 .gridLayout, .bigTabletBreak .textContent.textLeft.text75 .gridLayout, .bigTabletBreak .textContent.textLeft.text80 .gridLayout, .bigTabletBreak .textContent.textRight.text33 .gridLayout, .bigTabletBreak .textContent.textRight.text40 .gridLayout, .bigTabletBreak .textContent.textRight.text50 .gridLayout, .bigTabletBreak .textContent.textRight.text66 .gridLayout, .bigTabletBreak .textContent.textRight.text75 .gridLayout, .bigTabletBreak .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .bigTabletBreak .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
} /*$bigTablet ends*/
@media only screen and (max-width: 768px) {
  .tabletBreak .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .tabletBreak .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .tabletBreak .textContent .gridLayout .textHolder,
  .tabletBreak .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .tabletBreak .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .tabletBreak .textContent.textLeft .text,
  .tabletBreak .textContent.textLeft .sideContent, .tabletBreak .textContent.textRight .text,
  .tabletBreak .textContent.textRight .sideContent {
    margin: 0;
  }
  .tabletBreak .textContent.textLeft.text33 .gridLayout, .tabletBreak .textContent.textLeft.text40 .gridLayout, .tabletBreak .textContent.textLeft.text50 .gridLayout, .tabletBreak .textContent.textLeft.text66 .gridLayout, .tabletBreak .textContent.textLeft.text75 .gridLayout, .tabletBreak .textContent.textLeft.text80 .gridLayout, .tabletBreak .textContent.textRight.text33 .gridLayout, .tabletBreak .textContent.textRight.text40 .gridLayout, .tabletBreak .textContent.textRight.text50 .gridLayout, .tabletBreak .textContent.textRight.text66 .gridLayout, .tabletBreak .textContent.textRight.text75 .gridLayout, .tabletBreak .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .tabletBreak .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
  .hideOnTablet .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .hideOnTablet .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .hideOnTablet .textContent .gridLayout .textHolder,
  .hideOnTablet .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .hideOnTablet .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .hideOnTablet .textContent.textLeft .text,
  .hideOnTablet .textContent.textLeft .sideContent, .hideOnTablet .textContent.textRight .text,
  .hideOnTablet .textContent.textRight .sideContent {
    margin: 0;
  }
  .hideOnTablet .textContent.textLeft.text33 .gridLayout, .hideOnTablet .textContent.textLeft.text40 .gridLayout, .hideOnTablet .textContent.textLeft.text50 .gridLayout, .hideOnTablet .textContent.textLeft.text66 .gridLayout, .hideOnTablet .textContent.textLeft.text75 .gridLayout, .hideOnTablet .textContent.textLeft.text80 .gridLayout, .hideOnTablet .textContent.textRight.text33 .gridLayout, .hideOnTablet .textContent.textRight.text40 .gridLayout, .hideOnTablet .textContent.textRight.text50 .gridLayout, .hideOnTablet .textContent.textRight.text66 .gridLayout, .hideOnTablet .textContent.textRight.text75 .gridLayout, .hideOnTablet .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .hideOnTablet .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
  .hideOnTablet .textContent .sideContent {
    display: none;
  }
} /*$tablet ends*/
@media only screen and (max-width: 700px) {
  .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .textContent .gridLayout .textHolder,
  .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .textContent.textLeft .text,
  .textContent.textLeft .sideContent, .textContent.textRight .text,
  .textContent.textRight .sideContent {
    margin: 0;
  }
  .textContent.textLeft.text33 .gridLayout, .textContent.textLeft.text40 .gridLayout, .textContent.textLeft.text50 .gridLayout, .textContent.textLeft.text66 .gridLayout, .textContent.textLeft.text75 .gridLayout, .textContent.textLeft.text80 .gridLayout, .textContent.textRight.text33 .gridLayout, .textContent.textRight.text40 .gridLayout, .textContent.textRight.text50 .gridLayout, .textContent.textRight.text66 .gridLayout, .textContent.textRight.text75 .gridLayout, .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
  .smallTabletBreak .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .smallTabletBreak .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .smallTabletBreak .textContent .gridLayout .textHolder,
  .smallTabletBreak .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .smallTabletBreak .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .smallTabletBreak .textContent.textLeft .text,
  .smallTabletBreak .textContent.textLeft .sideContent, .smallTabletBreak .textContent.textRight .text,
  .smallTabletBreak .textContent.textRight .sideContent {
    margin: 0;
  }
  .smallTabletBreak .textContent.textLeft.text33 .gridLayout, .smallTabletBreak .textContent.textLeft.text40 .gridLayout, .smallTabletBreak .textContent.textLeft.text50 .gridLayout, .smallTabletBreak .textContent.textLeft.text66 .gridLayout, .smallTabletBreak .textContent.textLeft.text75 .gridLayout, .smallTabletBreak .textContent.textLeft.text80 .gridLayout, .smallTabletBreak .textContent.textRight.text33 .gridLayout, .smallTabletBreak .textContent.textRight.text40 .gridLayout, .smallTabletBreak .textContent.textRight.text50 .gridLayout, .smallTabletBreak .textContent.textRight.text66 .gridLayout, .smallTabletBreak .textContent.textRight.text75 .gridLayout, .smallTabletBreak .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .smallTabletBreak .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
} /*$smallTablet ends*/
@media only screen and (max-width: 650px) {
  .bigPhoneBreak .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .bigPhoneBreak .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .bigPhoneBreak .textContent .gridLayout .textHolder,
  .bigPhoneBreak .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .bigPhoneBreak .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .bigPhoneBreak .textContent.textLeft .text,
  .bigPhoneBreak .textContent.textLeft .sideContent, .bigPhoneBreak .textContent.textRight .text,
  .bigPhoneBreak .textContent.textRight .sideContent {
    margin: 0;
  }
  .bigPhoneBreak .textContent.textLeft.text33 .gridLayout, .bigPhoneBreak .textContent.textLeft.text40 .gridLayout, .bigPhoneBreak .textContent.textLeft.text50 .gridLayout, .bigPhoneBreak .textContent.textLeft.text66 .gridLayout, .bigPhoneBreak .textContent.textLeft.text75 .gridLayout, .bigPhoneBreak .textContent.textLeft.text80 .gridLayout, .bigPhoneBreak .textContent.textRight.text33 .gridLayout, .bigPhoneBreak .textContent.textRight.text40 .gridLayout, .bigPhoneBreak .textContent.textRight.text50 .gridLayout, .bigPhoneBreak .textContent.textRight.text66 .gridLayout, .bigPhoneBreak .textContent.textRight.text75 .gridLayout, .bigPhoneBreak .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .bigPhoneBreak .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
  .hideOnMobile .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .hideOnMobile .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .hideOnMobile .textContent .gridLayout .textHolder,
  .hideOnMobile .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .hideOnMobile .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .hideOnMobile .textContent.textLeft .text,
  .hideOnMobile .textContent.textLeft .sideContent, .hideOnMobile .textContent.textRight .text,
  .hideOnMobile .textContent.textRight .sideContent {
    margin: 0;
  }
  .hideOnMobile .textContent.textLeft.text33 .gridLayout, .hideOnMobile .textContent.textLeft.text40 .gridLayout, .hideOnMobile .textContent.textLeft.text50 .gridLayout, .hideOnMobile .textContent.textLeft.text66 .gridLayout, .hideOnMobile .textContent.textLeft.text75 .gridLayout, .hideOnMobile .textContent.textLeft.text80 .gridLayout, .hideOnMobile .textContent.textRight.text33 .gridLayout, .hideOnMobile .textContent.textRight.text40 .gridLayout, .hideOnMobile .textContent.textRight.text50 .gridLayout, .hideOnMobile .textContent.textRight.text66 .gridLayout, .hideOnMobile .textContent.textRight.text75 .gridLayout, .hideOnMobile .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .hideOnMobile .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
  .hideOnMobile .textContent .sideContent {
    display: none;
  }
} /*$bigPhone ends*/
@media only screen and (max-width: 450px) {
  .phoneBreak .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .phoneBreak .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .phoneBreak .textContent .gridLayout .textHolder,
  .phoneBreak .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .phoneBreak .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .phoneBreak .textContent.textLeft .text,
  .phoneBreak .textContent.textLeft .sideContent, .phoneBreak .textContent.textRight .text,
  .phoneBreak .textContent.textRight .sideContent {
    margin: 0;
  }
  .phoneBreak .textContent.textLeft.text33 .gridLayout, .phoneBreak .textContent.textLeft.text40 .gridLayout, .phoneBreak .textContent.textLeft.text50 .gridLayout, .phoneBreak .textContent.textLeft.text66 .gridLayout, .phoneBreak .textContent.textLeft.text75 .gridLayout, .phoneBreak .textContent.textLeft.text80 .gridLayout, .phoneBreak .textContent.textRight.text33 .gridLayout, .phoneBreak .textContent.textRight.text40 .gridLayout, .phoneBreak .textContent.textRight.text50 .gridLayout, .phoneBreak .textContent.textRight.text66 .gridLayout, .phoneBreak .textContent.textRight.text75 .gridLayout, .phoneBreak .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .phoneBreak .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
} /*$phone ends*/
@media only screen and (max-width: 350px) {
  .smallPhoneBreak .textContent .gridLayout {
    grid-template-areas: "text" "sideContent";
    grid-template-columns: 1fr;
    margin-top: calc(0px - 0px);
  }
  .smallPhoneBreak .textContent .gridLayout .text {
    margin-bottom: 0;
  }
  .smallPhoneBreak .textContent .gridLayout .textHolder,
  .smallPhoneBreak .textContent .gridLayout .sideHolder {
    margin-top: 0px;
  }
  .smallPhoneBreak .textContent.imageSide .sideContent .image {
    min-height: 1px;
  }
  .smallPhoneBreak .textContent.textLeft .text,
  .smallPhoneBreak .textContent.textLeft .sideContent, .smallPhoneBreak .textContent.textRight .text,
  .smallPhoneBreak .textContent.textRight .sideContent {
    margin: 0;
  }
  .smallPhoneBreak .textContent.textLeft.text33 .gridLayout, .smallPhoneBreak .textContent.textLeft.text40 .gridLayout, .smallPhoneBreak .textContent.textLeft.text50 .gridLayout, .smallPhoneBreak .textContent.textLeft.text66 .gridLayout, .smallPhoneBreak .textContent.textLeft.text75 .gridLayout, .smallPhoneBreak .textContent.textLeft.text80 .gridLayout, .smallPhoneBreak .textContent.textRight.text33 .gridLayout, .smallPhoneBreak .textContent.textRight.text40 .gridLayout, .smallPhoneBreak .textContent.textRight.text50 .gridLayout, .smallPhoneBreak .textContent.textRight.text66 .gridLayout, .smallPhoneBreak .textContent.textRight.text75 .gridLayout, .smallPhoneBreak .textContent.textRight.text80 .gridLayout {
    grid-template-columns: 1fr;
  }
  .smallPhoneBreak .textContent.textRight .gridLayout {
    grid-template-areas: "sideContent" "text";
    grid-template-columns: 1fr;
  }
} /*$smallPhone ends*/
.keyPoints .text {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
.keyPoints.hasBackground {
  padding-bottom: 0;
}
.keyPoints .points h2::after {
  display: none;
}
.keyPoints .points .point:last-child .text:after,
.keyPoints .points .point:first-child .iconHolder:before {
  display: none;
}
.keyPoints .points .point {
  max-width: calc(100% - (calc(24px + 2vw)) * 2);
}
.keyPoints .points .point .text {
  padding-left: calc((calc(24px + 2vw)) * 0.5);
  padding-right: calc((calc(24px + 2vw)) * 0.5);
}
.keyPoints .points .point.hasColour {
  padding: 0;
}
.keyPoints .points .point-noBack::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  right: auto;
  bottom: auto;
  width: 1px;
  height: 50%;
  max-height: 100px;
  background-color: var(--kc-color-primary);
  transform: translateY(-50%);
  z-index: 2;
}
.keyPoints .points .point-noBack:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: 50%;
  right: 0;
  bottom: auto;
  width: 1px;
  height: 50%;
  max-height: 100px;
  background-color: var(--kc-color-primary);
  transform: translateY(-50%);
  z-index: 2;
}
.keyPoints .points .pointHolder .iconHolder .keyPointIcon {
  border-radius: 0;
}
.keyPoints .points .pointHolder .iconHolder::after {
  display: none;
}
.keyPoints.smallIcon .points .point .keyPointIcon {
  width: 20%;
  max-width: 150px;
}
.keyPoints.mediumIcon .points .point .keyPointIcon {
  width: 40%;
  max-width: 200px;
}
.keyPoints.largeIcon .points .point .keyPointIcon {
  width: 60%;
  max-width: 250px;
}

.keyPointIcon.roundel {
  border-radius: 2em;
}

.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: 100%;
  margin-bottom: 0;
}
.imageGallery .thumbs .image {
  width: 33.3333333333%;
  padding: 0;
}

.wrapper[data-block=testimonials] {
  margin-top: calc((calc(24px + 2vw)) * 0.5);
}

.lightText .testimonials {
  border-color: var(--kc-color-white);
}

.testimonials {
  overflow: visible;
  width: 80%;
  max-width: 1050px;
  padding: 0 calc(24px + 2vw) calc(24px + 2vw) calc(24px + 2vw);
  display: block;
  text-align: center;
  border: solid 1px currentColor;
  margin-bottom: calc((calc(24px + 2vw)) * 0.5);
}
.testimonials::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  right: auto;
  bottom: auto;
  width: 20%;
  max-width: 80px;
  aspect-ratio: 1/0.7;
  background-color: var(--kc-color-white);
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/monarch-carpets-logo-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateX(-50%) translateY(-50%);
}
.testimonials::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.testimonials .testimonialsHeader {
  display: inline-block;
  width: auto;
  padding: 0 24px;
  background-color: var(--kc-color-white);
  color: var(--kc-color-primary);
  text-align: center;
  transform: translateY(-50%);
  width: 60%;
  margin-bottom: 0;
}
.testimonials .testimonialsHeader h3 {
  margin: 0;
}
.testimonials .testimonialsHeader span {
  width: 100%;
  display: block;
  padding-top: 11%;
  background-image: url("/wp-content/themes/kc_monarch_carpets/img/what-our-customers-think-wide.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  color: rgba(0, 0, 0, 0);
  font-size: 1px;
  line-height: 1px;
}
.testimonials .text {
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
}
.testimonials .testimonial {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.testimonials .testimonial blockquote {
  max-width: 600px;
}
.testimonials .testimonial blockquote *:last-child:after,
.testimonials .testimonial blockquote *:first-child:before {
  opacity: 1;
  content: "“";
  font-size: 1em;
  line-height: normal;
  display: inline;
  margin-right: 0em;
  vertical-align: 0em;
}
.testimonials .testimonial blockquote *:last-child:after {
  content: "”";
}
.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);
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  .testimonials .testimonial blockquote * {
    font-size: var(--kc-body-font-size-clamp);
  }
}
.testimonials .testimonial p.customerName,
.testimonials .testimonial p.source {
  margin: 0;
}
.testimonials .testimonial p.customerName {
  font-weight: 600;
}

.testimonials .testimonialGrid {
  max-width: 100vw;
}
.testimonials .testimonialGrid .testimonial {
  width: 50%;
}
.testimonials .testimonialGrid.count1 .testimonial {
  width: 100%;
}
.testimonials .testimonialTrack.flickity-enabled {
  padding-left: calc(24px + 2vw);
  padding-right: calc(24px + 2vw);
}
.testimonials .testimonialTrack.flickity-enabled .flickity-page-dots li {
  border-radius: 0;
  background-color: var(--kc-color-grey);
  width: 18px;
  height: 18px;
}
.testimonials .testimonialTrack.flickity-enabled .flickity-page-dots li.is-selected {
  background-color: var(--kc-color-black);
}

@media only screen and (max-width: 700px) {
  .testimonials .testimonialGrid .testimonial {
    width: 100%;
  }
} /*$smallTablet ends*/
@media only screen and (max-width: 650px) {
  .testimonials .testimonialsHeader {
    transform: translateY(-25%);
  }
  .testimonials .testimonialsHeader span {
    background-image: url("/wp-content/themes/kc_monarch_carpets/img/what-our-customers-think-stacked.svg");
    padding-top: 40%;
  }
} /*$bigPhone ends*/
.flooringTypes .text {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
.flooringTypes .text + .floorTypesWrapper {
  margin-top: 0;
}
.flooringTypes .floorTypesWrapper + .outtro {
  margin-top: calc(24px + 2vw);
}
.flooringTypes .floorTypesWrapper {
  padding-top: calc(24px + 2vw);
}
.flooringTypes .floorTypesWrapper .outtro {
  padding-bottom: calc(24px + 2vw);
}
.flooringTypes .floorTypes {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
  padding: 0 calc(24px + 2vw);
}
.flooringTypes .floorTypes .floorType {
  padding: calc((calc(24px + 2vw)) * 0.25 / 2);
  width: 25%;
}
.flooringTypes .floorTypes .floorType .text {
  background-color: var(--kc-color-white);
  padding: calc((calc(24px + 2vw)) * 0.5);
  flex-grow: 1;
}
.flooringTypes .floorTypes .floorType .text img.bgIMG {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.flooringTypes .floorTypes .floorType h4 {
  display: block;
  margin-top: 0;
  margin-bottom: 0.25em;
  padding: 0;
  background-color: transparent;
  color: var(--kc-color-primary);
}
.flooringTypes .floorTypes .flickity-viewport {
  width: 100%;
  margin-bottom: calc(24px + 2vw);
}
.flooringTypes .floorTypes .flickity-viewport .flickity-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
.flooringTypes .floorTypes .flickity-viewport .flickity-slider .floorType {
  min-height: 100%;
}
@media only screen and (max-width: 900px) {
  .flooringTypes.floorTypeWidth25 .floorTypes .floorType,
  .flooringTypes.floorTypeWidth33 .floorTypes .floorType,
  .flooringTypes.floorTypeWidth50 .floorTypes .floorType,
  .flooringTypes.floorTypeWidth100 .floorTypes .floorType,
  .flooringTypes .floorTypes .floorType {
    width: 33.3333333333%;
  }
} /*$bigTablet ends*/
@media only screen and (max-width: 650px) {
  .flooringTypes.floorTypeWidth25 .floorTypes .floorType,
  .flooringTypes.floorTypeWidth33 .floorTypes .floorType,
  .flooringTypes.floorTypeWidth50 .floorTypes .floorType,
  .flooringTypes.floorTypeWidth100 .floorTypes .floorType,
  .flooringTypes .floorTypes .floorType {
    width: 50%;
  }
} /*$bigPhone ends*/
@media only screen and (max-width: 450px) {
  .flooringTypes.floorTypeWidth25 .floorTypes .floorType,
  .flooringTypes.floorTypeWidth33 .floorTypes .floorType,
  .flooringTypes.floorTypeWidth50 .floorTypes .floorType,
  .flooringTypes.floorTypeWidth100 .floorTypes .floorType,
  .flooringTypes .floorTypes .floorType {
    width: 100%;
  }
  .flooringTypes.floorTypeWidth25 .floorTypes .floorType .imageHolder,
  .flooringTypes.floorTypeWidth33 .floorTypes .floorType .imageHolder,
  .flooringTypes.floorTypeWidth50 .floorTypes .floorType .imageHolder,
  .flooringTypes.floorTypeWidth100 .floorTypes .floorType .imageHolder,
  .flooringTypes .floorTypes .floorType .imageHolder {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .flooringTypes.floorTypeWidth25 .floorTypes .floorType + .floorType,
  .flooringTypes.floorTypeWidth33 .floorTypes .floorType + .floorType,
  .flooringTypes.floorTypeWidth50 .floorTypes .floorType + .floorType,
  .flooringTypes.floorTypeWidth100 .floorTypes .floorType + .floorType,
  .flooringTypes .floorTypes .floorType + .floorType {
    margin-top: calc(24px + 2vw);
  }
} /*$phone ends*/
.customBanner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  min-height: 0;
  padding: calc(24px + 2vw);
}
.customBanner.oneImage {
  min-height: 0;
}
.customBanner.vertAlignBottom {
  padding-bottom: 0;
  padding-top: 0;
}
.customBanner.vertAlignBottom .text {
  margin-bottom: 0;
  margin-top: 0;
}
.customBanner.vertAlignTop {
  padding-bottom: 0;
  padding-top: 0;
}
.customBanner.vertAlignTop .text {
  margin-bottom: 0;
  margin-top: 0;
}
.customBanner .text {
  margin-bottom: 0;
  margin-top: 0;
}
.customBanner .text p .blockLink {
  margin-top: 0;
}
.customBanner .image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.customBanner .image img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.customBanner .bgImage {
  display: none;
}
.customBanner.textRight .text {
  order: 1;
}
.customBanner.textRight .flexer {
  order: 0;
}
.customBanner.textCentre {
  justify-content: center;
}
.customBanner.textRight {
  justify-content: flex-end;
}

.immediateBreak .customBanner,
.immediateBreak .customBanner.smallTextBox,
.immediateBreak .customBanner.mediumTextBox,
.immediateBreak .customBanner.largeTextBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  padding: 0;
  padding-top: calc(24px + 2vw);
}
.immediateBreak .customBanner .image, .immediateBreak .customBanner .image img,
.immediateBreak .customBanner.smallTextBox .image,
.immediateBreak .customBanner.smallTextBox .image img,
.immediateBreak .customBanner.mediumTextBox .image,
.immediateBreak .customBanner.mediumTextBox .image img,
.immediateBreak .customBanner.largeTextBox .image,
.immediateBreak .customBanner.largeTextBox .image img {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  order: 1;
}
.immediateBreak .customBanner .text,
.immediateBreak .customBanner.smallTextBox .text,
.immediateBreak .customBanner.mediumTextBox .text,
.immediateBreak .customBanner.largeTextBox .text {
  min-width: 0;
  width: calc(100% - (calc(24px + 2vw)) * 2);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(0px - (calc(24px + 2vw)) * 2);
  order: 0;
}
.immediateBreak .customBanner .text .stilt,
.immediateBreak .customBanner.smallTextBox .text .stilt,
.immediateBreak .customBanner.mediumTextBox .text .stilt,
.immediateBreak .customBanner.largeTextBox .text .stilt {
  display: none;
}
.immediateBreak .customBanner.textRight,
.immediateBreak .customBanner.smallTextBox.textRight,
.immediateBreak .customBanner.mediumTextBox.textRight,
.immediateBreak .customBanner.largeTextBox.textRight {
  padding: 0;
  padding-bottom: calc(24px + 2vw);
}
.immediateBreak .customBanner.textRight .image,
.immediateBreak .customBanner.smallTextBox.textRight .image,
.immediateBreak .customBanner.mediumTextBox.textRight .image,
.immediateBreak .customBanner.largeTextBox.textRight .image {
  order: 0;
}
.immediateBreak .customBanner.textRight .text,
.immediateBreak .customBanner.smallTextBox.textRight .text,
.immediateBreak .customBanner.mediumTextBox.textRight .text,
.immediateBreak .customBanner.largeTextBox.textRight .text {
  order: 1;
}
.immediateBreak .customBanner .bgImage,
.immediateBreak .customBanner.smallTextBox .bgImage,
.immediateBreak .customBanner.mediumTextBox .bgImage,
.immediateBreak .customBanner.largeTextBox .bgImage {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.immediateBreak .customBanner .bgImage img,
.immediateBreak .customBanner.smallTextBox .bgImage img,
.immediateBreak .customBanner.mediumTextBox .bgImage img,
.immediateBreak .customBanner.largeTextBox .bgImage img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1100px) {
  .laptopBreak .customBanner,
  .laptopBreak .customBanner.smallTextBox,
  .laptopBreak .customBanner.mediumTextBox,
  .laptopBreak .customBanner.largeTextBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 0;
    padding-top: calc(24px + 2vw);
  }
  .laptopBreak .customBanner .image, .laptopBreak .customBanner .image img,
  .laptopBreak .customBanner.smallTextBox .image,
  .laptopBreak .customBanner.smallTextBox .image img,
  .laptopBreak .customBanner.mediumTextBox .image,
  .laptopBreak .customBanner.mediumTextBox .image img,
  .laptopBreak .customBanner.largeTextBox .image,
  .laptopBreak .customBanner.largeTextBox .image img {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
  }
  .laptopBreak .customBanner .text,
  .laptopBreak .customBanner.smallTextBox .text,
  .laptopBreak .customBanner.mediumTextBox .text,
  .laptopBreak .customBanner.largeTextBox .text {
    min-width: 0;
    width: calc(100% - (calc(24px + 2vw)) * 2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(0px - (calc(24px + 2vw)) * 2);
    order: 0;
  }
  .laptopBreak .customBanner .text .stilt,
  .laptopBreak .customBanner.smallTextBox .text .stilt,
  .laptopBreak .customBanner.mediumTextBox .text .stilt,
  .laptopBreak .customBanner.largeTextBox .text .stilt {
    display: none;
  }
  .laptopBreak .customBanner.textRight,
  .laptopBreak .customBanner.smallTextBox.textRight,
  .laptopBreak .customBanner.mediumTextBox.textRight,
  .laptopBreak .customBanner.largeTextBox.textRight {
    padding: 0;
    padding-bottom: calc(24px + 2vw);
  }
  .laptopBreak .customBanner.textRight .image,
  .laptopBreak .customBanner.smallTextBox.textRight .image,
  .laptopBreak .customBanner.mediumTextBox.textRight .image,
  .laptopBreak .customBanner.largeTextBox.textRight .image {
    order: 0;
  }
  .laptopBreak .customBanner.textRight .text,
  .laptopBreak .customBanner.smallTextBox.textRight .text,
  .laptopBreak .customBanner.mediumTextBox.textRight .text,
  .laptopBreak .customBanner.largeTextBox.textRight .text {
    order: 1;
  }
  .laptopBreak .customBanner .bgImage,
  .laptopBreak .customBanner.smallTextBox .bgImage,
  .laptopBreak .customBanner.mediumTextBox .bgImage,
  .laptopBreak .customBanner.largeTextBox .bgImage {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  .laptopBreak .customBanner .bgImage img,
  .laptopBreak .customBanner.smallTextBox .bgImage img,
  .laptopBreak .customBanner.mediumTextBox .bgImage img,
  .laptopBreak .customBanner.largeTextBox .bgImage img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
} /*$laptop ends*/
@media only screen and (max-width: 900px) {
  .bigTabletBreak .customBanner,
  .bigTabletBreak .customBanner.smallTextBox,
  .bigTabletBreak .customBanner.mediumTextBox,
  .bigTabletBreak .customBanner.largeTextBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 0;
    padding-top: calc(24px + 2vw);
  }
  .bigTabletBreak .customBanner .image, .bigTabletBreak .customBanner .image img,
  .bigTabletBreak .customBanner.smallTextBox .image,
  .bigTabletBreak .customBanner.smallTextBox .image img,
  .bigTabletBreak .customBanner.mediumTextBox .image,
  .bigTabletBreak .customBanner.mediumTextBox .image img,
  .bigTabletBreak .customBanner.largeTextBox .image,
  .bigTabletBreak .customBanner.largeTextBox .image img {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
  }
  .bigTabletBreak .customBanner .text,
  .bigTabletBreak .customBanner.smallTextBox .text,
  .bigTabletBreak .customBanner.mediumTextBox .text,
  .bigTabletBreak .customBanner.largeTextBox .text {
    min-width: 0;
    width: calc(100% - (calc(24px + 2vw)) * 2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(0px - (calc(24px + 2vw)) * 2);
    order: 0;
  }
  .bigTabletBreak .customBanner .text .stilt,
  .bigTabletBreak .customBanner.smallTextBox .text .stilt,
  .bigTabletBreak .customBanner.mediumTextBox .text .stilt,
  .bigTabletBreak .customBanner.largeTextBox .text .stilt {
    display: none;
  }
  .bigTabletBreak .customBanner.textRight,
  .bigTabletBreak .customBanner.smallTextBox.textRight,
  .bigTabletBreak .customBanner.mediumTextBox.textRight,
  .bigTabletBreak .customBanner.largeTextBox.textRight {
    padding: 0;
    padding-bottom: calc(24px + 2vw);
  }
  .bigTabletBreak .customBanner.textRight .image,
  .bigTabletBreak .customBanner.smallTextBox.textRight .image,
  .bigTabletBreak .customBanner.mediumTextBox.textRight .image,
  .bigTabletBreak .customBanner.largeTextBox.textRight .image {
    order: 0;
  }
  .bigTabletBreak .customBanner.textRight .text,
  .bigTabletBreak .customBanner.smallTextBox.textRight .text,
  .bigTabletBreak .customBanner.mediumTextBox.textRight .text,
  .bigTabletBreak .customBanner.largeTextBox.textRight .text {
    order: 1;
  }
  .bigTabletBreak .customBanner .bgImage,
  .bigTabletBreak .customBanner.smallTextBox .bgImage,
  .bigTabletBreak .customBanner.mediumTextBox .bgImage,
  .bigTabletBreak .customBanner.largeTextBox .bgImage {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  .bigTabletBreak .customBanner .bgImage img,
  .bigTabletBreak .customBanner.smallTextBox .bgImage img,
  .bigTabletBreak .customBanner.mediumTextBox .bgImage img,
  .bigTabletBreak .customBanner.largeTextBox .bgImage img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
} /*$bigTablet ends*/
@media only screen and (max-width: 768px) {
  .tabletBreak .customBanner,
  .tabletBreak .customBanner.smallTextBox,
  .tabletBreak .customBanner.mediumTextBox,
  .tabletBreak .customBanner.largeTextBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 0;
    padding-top: calc(24px + 2vw);
  }
  .tabletBreak .customBanner .image, .tabletBreak .customBanner .image img,
  .tabletBreak .customBanner.smallTextBox .image,
  .tabletBreak .customBanner.smallTextBox .image img,
  .tabletBreak .customBanner.mediumTextBox .image,
  .tabletBreak .customBanner.mediumTextBox .image img,
  .tabletBreak .customBanner.largeTextBox .image,
  .tabletBreak .customBanner.largeTextBox .image img {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
  }
  .tabletBreak .customBanner .text,
  .tabletBreak .customBanner.smallTextBox .text,
  .tabletBreak .customBanner.mediumTextBox .text,
  .tabletBreak .customBanner.largeTextBox .text {
    min-width: 0;
    width: calc(100% - (calc(24px + 2vw)) * 2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(0px - (calc(24px + 2vw)) * 2);
    order: 0;
  }
  .tabletBreak .customBanner .text .stilt,
  .tabletBreak .customBanner.smallTextBox .text .stilt,
  .tabletBreak .customBanner.mediumTextBox .text .stilt,
  .tabletBreak .customBanner.largeTextBox .text .stilt {
    display: none;
  }
  .tabletBreak .customBanner.textRight,
  .tabletBreak .customBanner.smallTextBox.textRight,
  .tabletBreak .customBanner.mediumTextBox.textRight,
  .tabletBreak .customBanner.largeTextBox.textRight {
    padding: 0;
    padding-bottom: calc(24px + 2vw);
  }
  .tabletBreak .customBanner.textRight .image,
  .tabletBreak .customBanner.smallTextBox.textRight .image,
  .tabletBreak .customBanner.mediumTextBox.textRight .image,
  .tabletBreak .customBanner.largeTextBox.textRight .image {
    order: 0;
  }
  .tabletBreak .customBanner.textRight .text,
  .tabletBreak .customBanner.smallTextBox.textRight .text,
  .tabletBreak .customBanner.mediumTextBox.textRight .text,
  .tabletBreak .customBanner.largeTextBox.textRight .text {
    order: 1;
  }
  .tabletBreak .customBanner .bgImage,
  .tabletBreak .customBanner.smallTextBox .bgImage,
  .tabletBreak .customBanner.mediumTextBox .bgImage,
  .tabletBreak .customBanner.largeTextBox .bgImage {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  .tabletBreak .customBanner .bgImage img,
  .tabletBreak .customBanner.smallTextBox .bgImage img,
  .tabletBreak .customBanner.mediumTextBox .bgImage img,
  .tabletBreak .customBanner.largeTextBox .bgImage img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
} /*$tablet ends*/
@media only screen and (max-width: 700px) {
  .customBanner,
  .customBanner.smallTextBox,
  .customBanner.mediumTextBox,
  .customBanner.largeTextBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 0;
    padding-top: calc(24px + 2vw);
  }
  .customBanner .image, .customBanner .image img,
  .customBanner.smallTextBox .image,
  .customBanner.smallTextBox .image img,
  .customBanner.mediumTextBox .image,
  .customBanner.mediumTextBox .image img,
  .customBanner.largeTextBox .image,
  .customBanner.largeTextBox .image img {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
  }
  .customBanner .text,
  .customBanner.smallTextBox .text,
  .customBanner.mediumTextBox .text,
  .customBanner.largeTextBox .text {
    min-width: 0;
    width: calc(100% - (calc(24px + 2vw)) * 2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(0px - (calc(24px + 2vw)) * 2);
    order: 0;
  }
  .customBanner .text .stilt,
  .customBanner.smallTextBox .text .stilt,
  .customBanner.mediumTextBox .text .stilt,
  .customBanner.largeTextBox .text .stilt {
    display: none;
  }
  .customBanner.textRight,
  .customBanner.smallTextBox.textRight,
  .customBanner.mediumTextBox.textRight,
  .customBanner.largeTextBox.textRight {
    padding: 0;
    padding-bottom: calc(24px + 2vw);
  }
  .customBanner.textRight .image,
  .customBanner.smallTextBox.textRight .image,
  .customBanner.mediumTextBox.textRight .image,
  .customBanner.largeTextBox.textRight .image {
    order: 0;
  }
  .customBanner.textRight .text,
  .customBanner.smallTextBox.textRight .text,
  .customBanner.mediumTextBox.textRight .text,
  .customBanner.largeTextBox.textRight .text {
    order: 1;
  }
  .customBanner .bgImage,
  .customBanner.smallTextBox .bgImage,
  .customBanner.mediumTextBox .bgImage,
  .customBanner.largeTextBox .bgImage {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  .customBanner .bgImage img,
  .customBanner.smallTextBox .bgImage img,
  .customBanner.mediumTextBox .bgImage img,
  .customBanner.largeTextBox .bgImage img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .smallTabletBreak .customBanner,
  .smallTabletBreak .customBanner.smallTextBox,
  .smallTabletBreak .customBanner.mediumTextBox,
  .smallTabletBreak .customBanner.largeTextBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 0;
    padding-top: calc(24px + 2vw);
  }
  .smallTabletBreak .customBanner .image, .smallTabletBreak .customBanner .image img,
  .smallTabletBreak .customBanner.smallTextBox .image,
  .smallTabletBreak .customBanner.smallTextBox .image img,
  .smallTabletBreak .customBanner.mediumTextBox .image,
  .smallTabletBreak .customBanner.mediumTextBox .image img,
  .smallTabletBreak .customBanner.largeTextBox .image,
  .smallTabletBreak .customBanner.largeTextBox .image img {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
  }
  .smallTabletBreak .customBanner .text,
  .smallTabletBreak .customBanner.smallTextBox .text,
  .smallTabletBreak .customBanner.mediumTextBox .text,
  .smallTabletBreak .customBanner.largeTextBox .text {
    min-width: 0;
    width: calc(100% - (calc(24px + 2vw)) * 2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(0px - (calc(24px + 2vw)) * 2);
    order: 0;
  }
  .smallTabletBreak .customBanner .text .stilt,
  .smallTabletBreak .customBanner.smallTextBox .text .stilt,
  .smallTabletBreak .customBanner.mediumTextBox .text .stilt,
  .smallTabletBreak .customBanner.largeTextBox .text .stilt {
    display: none;
  }
  .smallTabletBreak .customBanner.textRight,
  .smallTabletBreak .customBanner.smallTextBox.textRight,
  .smallTabletBreak .customBanner.mediumTextBox.textRight,
  .smallTabletBreak .customBanner.largeTextBox.textRight {
    padding: 0;
    padding-bottom: calc(24px + 2vw);
  }
  .smallTabletBreak .customBanner.textRight .image,
  .smallTabletBreak .customBanner.smallTextBox.textRight .image,
  .smallTabletBreak .customBanner.mediumTextBox.textRight .image,
  .smallTabletBreak .customBanner.largeTextBox.textRight .image {
    order: 0;
  }
  .smallTabletBreak .customBanner.textRight .text,
  .smallTabletBreak .customBanner.smallTextBox.textRight .text,
  .smallTabletBreak .customBanner.mediumTextBox.textRight .text,
  .smallTabletBreak .customBanner.largeTextBox.textRight .text {
    order: 1;
  }
  .smallTabletBreak .customBanner .bgImage,
  .smallTabletBreak .customBanner.smallTextBox .bgImage,
  .smallTabletBreak .customBanner.mediumTextBox .bgImage,
  .smallTabletBreak .customBanner.largeTextBox .bgImage {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  .smallTabletBreak .customBanner .bgImage img,
  .smallTabletBreak .customBanner.smallTextBox .bgImage img,
  .smallTabletBreak .customBanner.mediumTextBox .bgImage img,
  .smallTabletBreak .customBanner.largeTextBox .bgImage img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
} /*$smallTablet ends*/
@media only screen and (max-width: 650px) {
  .bigPhoneBreak .customBanner,
  .bigPhoneBreak .customBanner.smallTextBox,
  .bigPhoneBreak .customBanner.mediumTextBox,
  .bigPhoneBreak .customBanner.largeTextBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 0;
    padding-top: calc(24px + 2vw);
  }
  .bigPhoneBreak .customBanner .image, .bigPhoneBreak .customBanner .image img,
  .bigPhoneBreak .customBanner.smallTextBox .image,
  .bigPhoneBreak .customBanner.smallTextBox .image img,
  .bigPhoneBreak .customBanner.mediumTextBox .image,
  .bigPhoneBreak .customBanner.mediumTextBox .image img,
  .bigPhoneBreak .customBanner.largeTextBox .image,
  .bigPhoneBreak .customBanner.largeTextBox .image img {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
  }
  .bigPhoneBreak .customBanner .text,
  .bigPhoneBreak .customBanner.smallTextBox .text,
  .bigPhoneBreak .customBanner.mediumTextBox .text,
  .bigPhoneBreak .customBanner.largeTextBox .text {
    min-width: 0;
    width: calc(100% - (calc(24px + 2vw)) * 2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(0px - (calc(24px + 2vw)) * 2);
    order: 0;
  }
  .bigPhoneBreak .customBanner .text .stilt,
  .bigPhoneBreak .customBanner.smallTextBox .text .stilt,
  .bigPhoneBreak .customBanner.mediumTextBox .text .stilt,
  .bigPhoneBreak .customBanner.largeTextBox .text .stilt {
    display: none;
  }
  .bigPhoneBreak .customBanner.textRight,
  .bigPhoneBreak .customBanner.smallTextBox.textRight,
  .bigPhoneBreak .customBanner.mediumTextBox.textRight,
  .bigPhoneBreak .customBanner.largeTextBox.textRight {
    padding: 0;
    padding-bottom: calc(24px + 2vw);
  }
  .bigPhoneBreak .customBanner.textRight .image,
  .bigPhoneBreak .customBanner.smallTextBox.textRight .image,
  .bigPhoneBreak .customBanner.mediumTextBox.textRight .image,
  .bigPhoneBreak .customBanner.largeTextBox.textRight .image {
    order: 0;
  }
  .bigPhoneBreak .customBanner.textRight .text,
  .bigPhoneBreak .customBanner.smallTextBox.textRight .text,
  .bigPhoneBreak .customBanner.mediumTextBox.textRight .text,
  .bigPhoneBreak .customBanner.largeTextBox.textRight .text {
    order: 1;
  }
  .bigPhoneBreak .customBanner .bgImage,
  .bigPhoneBreak .customBanner.smallTextBox .bgImage,
  .bigPhoneBreak .customBanner.mediumTextBox .bgImage,
  .bigPhoneBreak .customBanner.largeTextBox .bgImage {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  .bigPhoneBreak .customBanner .bgImage img,
  .bigPhoneBreak .customBanner.smallTextBox .bgImage img,
  .bigPhoneBreak .customBanner.mediumTextBox .bgImage img,
  .bigPhoneBreak .customBanner.largeTextBox .bgImage img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
} /*$bigPhone ends*/
@media only screen and (max-width: 450px) {
  .phoneBreak .customBanner,
  .phoneBreak .customBanner.smallTextBox,
  .phoneBreak .customBanner.mediumTextBox,
  .phoneBreak .customBanner.largeTextBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 0;
    padding-top: calc(24px + 2vw);
  }
  .phoneBreak .customBanner .image, .phoneBreak .customBanner .image img,
  .phoneBreak .customBanner.smallTextBox .image,
  .phoneBreak .customBanner.smallTextBox .image img,
  .phoneBreak .customBanner.mediumTextBox .image,
  .phoneBreak .customBanner.mediumTextBox .image img,
  .phoneBreak .customBanner.largeTextBox .image,
  .phoneBreak .customBanner.largeTextBox .image img {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
  }
  .phoneBreak .customBanner .text,
  .phoneBreak .customBanner.smallTextBox .text,
  .phoneBreak .customBanner.mediumTextBox .text,
  .phoneBreak .customBanner.largeTextBox .text {
    min-width: 0;
    width: calc(100% - (calc(24px + 2vw)) * 2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(0px - (calc(24px + 2vw)) * 2);
    order: 0;
  }
  .phoneBreak .customBanner .text .stilt,
  .phoneBreak .customBanner.smallTextBox .text .stilt,
  .phoneBreak .customBanner.mediumTextBox .text .stilt,
  .phoneBreak .customBanner.largeTextBox .text .stilt {
    display: none;
  }
  .phoneBreak .customBanner.textRight,
  .phoneBreak .customBanner.smallTextBox.textRight,
  .phoneBreak .customBanner.mediumTextBox.textRight,
  .phoneBreak .customBanner.largeTextBox.textRight {
    padding: 0;
    padding-bottom: calc(24px + 2vw);
  }
  .phoneBreak .customBanner.textRight .image,
  .phoneBreak .customBanner.smallTextBox.textRight .image,
  .phoneBreak .customBanner.mediumTextBox.textRight .image,
  .phoneBreak .customBanner.largeTextBox.textRight .image {
    order: 0;
  }
  .phoneBreak .customBanner.textRight .text,
  .phoneBreak .customBanner.smallTextBox.textRight .text,
  .phoneBreak .customBanner.mediumTextBox.textRight .text,
  .phoneBreak .customBanner.largeTextBox.textRight .text {
    order: 1;
  }
  .phoneBreak .customBanner .bgImage,
  .phoneBreak .customBanner.smallTextBox .bgImage,
  .phoneBreak .customBanner.mediumTextBox .bgImage,
  .phoneBreak .customBanner.largeTextBox .bgImage {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  .phoneBreak .customBanner .bgImage img,
  .phoneBreak .customBanner.smallTextBox .bgImage img,
  .phoneBreak .customBanner.mediumTextBox .bgImage img,
  .phoneBreak .customBanner.largeTextBox .bgImage img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
} /*$phone ends*/
@media only screen and (max-width: 350px) {
  .smallPhoneBreak .customBanner,
  .smallPhoneBreak .customBanner.smallTextBox,
  .smallPhoneBreak .customBanner.mediumTextBox,
  .smallPhoneBreak .customBanner.largeTextBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 0;
    padding-top: calc(24px + 2vw);
  }
  .smallPhoneBreak .customBanner .image, .smallPhoneBreak .customBanner .image img,
  .smallPhoneBreak .customBanner.smallTextBox .image,
  .smallPhoneBreak .customBanner.smallTextBox .image img,
  .smallPhoneBreak .customBanner.mediumTextBox .image,
  .smallPhoneBreak .customBanner.mediumTextBox .image img,
  .smallPhoneBreak .customBanner.largeTextBox .image,
  .smallPhoneBreak .customBanner.largeTextBox .image img {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    order: 1;
  }
  .smallPhoneBreak .customBanner .text,
  .smallPhoneBreak .customBanner.smallTextBox .text,
  .smallPhoneBreak .customBanner.mediumTextBox .text,
  .smallPhoneBreak .customBanner.largeTextBox .text {
    min-width: 0;
    width: calc(100% - (calc(24px + 2vw)) * 2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(0px - (calc(24px + 2vw)) * 2);
    order: 0;
  }
  .smallPhoneBreak .customBanner .text .stilt,
  .smallPhoneBreak .customBanner.smallTextBox .text .stilt,
  .smallPhoneBreak .customBanner.mediumTextBox .text .stilt,
  .smallPhoneBreak .customBanner.largeTextBox .text .stilt {
    display: none;
  }
  .smallPhoneBreak .customBanner.textRight,
  .smallPhoneBreak .customBanner.smallTextBox.textRight,
  .smallPhoneBreak .customBanner.mediumTextBox.textRight,
  .smallPhoneBreak .customBanner.largeTextBox.textRight {
    padding: 0;
    padding-bottom: calc(24px + 2vw);
  }
  .smallPhoneBreak .customBanner.textRight .image,
  .smallPhoneBreak .customBanner.smallTextBox.textRight .image,
  .smallPhoneBreak .customBanner.mediumTextBox.textRight .image,
  .smallPhoneBreak .customBanner.largeTextBox.textRight .image {
    order: 0;
  }
  .smallPhoneBreak .customBanner.textRight .text,
  .smallPhoneBreak .customBanner.smallTextBox.textRight .text,
  .smallPhoneBreak .customBanner.mediumTextBox.textRight .text,
  .smallPhoneBreak .customBanner.largeTextBox.textRight .text {
    order: 1;
  }
  .smallPhoneBreak .customBanner .bgImage,
  .smallPhoneBreak .customBanner.smallTextBox .bgImage,
  .smallPhoneBreak .customBanner.mediumTextBox .bgImage,
  .smallPhoneBreak .customBanner.largeTextBox .bgImage {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  .smallPhoneBreak .customBanner .bgImage img,
  .smallPhoneBreak .customBanner.smallTextBox .bgImage img,
  .smallPhoneBreak .customBanner.mediumTextBox .bgImage img,
  .smallPhoneBreak .customBanner.largeTextBox .bgImage img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
} /*$smallPhone ends*/
.comparisonTable .compTable {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
}
.comparisonTable .compTable .compItem {
  background-color: var(--kc-color-white);
  width: calc(50% - (calc((calc(24px + 2vw)) * 0.25)));
  margin-bottom: calc((calc(24px + 2vw)) * 0.25);
}
.comparisonTable .compTable .compItem .heading {
  background-color: var(--kc-color-white);
  padding-bottom: 0;
}
.comparisonTable .compTable .compItem .text {
  padding-top: 0px;
}
.comparisonTable .compTable .compItem .text::before {
  display: none !important;
}
.comparisonTable .compTable .compItem .text::after {
  display: none !important;
}

.teamMembers .introText {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.teamMembers .introText .text * {
  text-align: center;
}
.teamMembers .teamGrid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}
.teamMembers .teamMember {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: calc(40% - (24px + 2vw));
  margin: calc((calc(24px + 2vw)) * 0.5);
  align-self: stretch;
  background-image: linear-gradient(to bottom, var(--kc-color-white) 0%, var(--kc-color-white) calc(24px + 2vw), var(--kc-color-lighter-grey) calc(24px + 2vw), var(--kc-color-lighter-grey) 100%);
  overflow: hidden;
}
.teamMembers .teamMember .details {
  order: 1;
  width: 100%;
  padding: calc((calc(24px + 2vw)) * 0.5);
}
.teamMembers .teamMember .details h3.memberName {
  background-color: var(--kc-color-secondary);
  color: var(--kc-color-white);
  padding: calc((calc(24px + 2vw)) * 0.25);
  padding-right: calc((calc(24px + 2vw)) * 0.5);
  padding-left: 0px;
  display: inline-block;
  width: auto;
}
.teamMembers .teamMember .details h3.memberName::before {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--kc-color-secondary);
}
.teamMembers .teamMember .details p.jobTitle {
  font-weight: 700;
  color: var(--kc-color-primary);
  border-bottom: 1px solid rgba(var(--kc-color-grey-rgb), 0.5);
  margin-bottom: calc((calc(24px + 2vw)) * 0.5);
  padding-bottom: calc((calc(24px + 2vw)) * 0.5);
}
.teamMembers .teamMember .details h6 {
  margin-bottom: 0.25em;
}
.teamMembers .teamMember .details p + h6 {
  padding-top: calc((calc(24px + 2vw)) * 0.25);
}
.teamMembers .teamMember .image {
  order: 0;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.teamMembers .teamMember .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 top;
     object-position: center top;
}
.teamMembers .teamMember .image span {
  display: block;
  padding-top: 120%;
}

@media only screen and (max-width: 1100px) {
  .teamMembers .teamMember {
    width: calc(50% - (24px + 2vw));
  }
} /*$laptop ends*/
@media only screen and (max-width: 700px) {
  .teamMembers .teamMember {
    width: calc(80% - (24px + 2vw));
  }
} /*$smallTablet ends*/
@media only screen and (max-width: 450px) {
  .teamMembers .teamMember {
    width: calc(100% - (24px + 2vw));
  }
} /*$phone ends*/
.faqs {
  text-align: center;
}
.faqs.mainFAQPage {
  padding-top: 0;
}
.faqs .introText + .flexer {
  margin-top: calc((calc(24px + 2vw)) * 0.25);
}
.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-lighter-grey);
  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*/
#quickEnquiry, #homeVisitEnquiry {
  overflow: visible;
}
#quickEnquiry .formHead, #homeVisitEnquiry .formHead {
  text-align: center;
  justify-content: center;
}
#quickEnquiry h2, #homeVisitEnquiry h2 {
  text-align: center;
  margin-bottom: 0.5em;
}
#quickEnquiry h6, #homeVisitEnquiry h6 {
  color: var(--kc-color-text-black);
}

#quickEnquiry {
  padding: 0;
  margin-top: calc(24px + 2vw);
}
#quickEnquiry .formBody {
  padding: calc(24px + 2vw);
  padding-bottom: calc((calc(24px + 2vw)) * 0.5);
  padding-top: calc((calc(24px + 2vw)) * 0.5);
}
#quickEnquiry .formHead {
  padding: 0;
}
#quickEnquiry .formHead > * {
  max-width: 80%;
}
#quickEnquiry .formHead > h2:first-child {
  max-width: 100%;
  padding: calc((calc(24px + 2vw)) * 0.5) calc(24px + 2vw);
  background-color: var(--kc-color-black);
  color: var(--kc-color-white);
  margin-bottom: calc(24px + 2vw);
}

#quickEnquiry .contactForm {
  border: 0;
  padding: 0;
}

.mapBlock .introText h2::after {
  margin-left: auto;
  margin-right: auto;
}

.contactView .contactDetails ul.telNos {
  color: var(--kc-color-primary);
}
.contactView .contactDetails p.regNo {
  font-size: var(--kc-small-font-size);
  margin-bottom: 0;
}
@supports (font-size: clamp(1em, 1vw, 2em)) {
  .contactView .contactDetails p.regNo {
    font-size: var(--kc-small-font-size-clamp);
  }
}
.contactView .contactDetails .details {
  background-color: var(--kc-color-lighter-grey);
}
.contactView .contactDetails .details p, .contactView .contactDetails .details ul, .contactView .contactDetails .details ul li {
  color: var(--kc-color-text-colour);
}
.contactView .contactDetails .details p strong, .contactView .contactDetails .details ul strong, .contactView .contactDetails .details ul li strong {
  color: var(--kc-color-black);
}

/*
*/

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