@font-face {
  font-family: "Fa brands 400";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 100";
  src: url('../fonts/fa-thin-100.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa duotone 900";
  src: url('../fonts/fa-duotone-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa sharp solid 900";
  src: url('../fonts/fa-sharp-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 300";
  src: url('../fonts/fa-light-300.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Brands 400";
  src: url('../fonts/Brands-Regular-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --black: #1c1c1e;
  --bergundy: #7a2d36;
  --grey: #eae6e1;
  --transparent: #fff0;
  --90-black: #1c1c1ee6;
  --brown\<deleted\|variable-65357064-f66b-a601-6777-d02db73911c0\>: #3c1612;
  --secondary\<deleted\|variable-33243070-f891-84a2-329d-a9320d4915c9\>: #d36948;
  --dark-transparent: #0009;
  --light-grey\<deleted\|variable-da8cb8ee-7eed-2331-5dd1-6b19af47bfe4\>: #ccc;
  --dark-grey: #2e2e31;
  --light-bergundy: #bc969a;
  --90-grey: #2e2e31e6;
  --leaf-green\<deleted\|variable-6a639ec4-2a76-083e-28e9-0ece8181fba8\>: #747766;
  --10-grey: #2e2e311a;
  --finch-neck\<deleted\|variable-45a5b82e-e116-72e3-8d41-a71bc6fbcbe7\>: #d6a6a0;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.body {
  background-color: var(--white);
  color: var(--black);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.container {
  flex-direction: column;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.container.centred {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container.vertical {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.navbar {
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  display: flex;
}

.dd-menu-link {
  background-color: var(--white);
  border-left: 5px solid #0000;
  margin-bottom: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  transition: all .2s ease-in-out;
}

.dd-menu-link:hover {
  border-left: 5px solid var(--bergundy);
  background-color: var(--bergundy);
  color: var(--white);
}

.dd-menu-link.w--current {
  color: var(--bergundy);
}

.dd-menu-link.w--current:hover {
  color: var(--white);
}

.co-logo-link {
  color: #fff;
  align-items: center;
  font-size: 2em;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.co-logo-link.footer {
  width: 100%;
  max-width: 180px;
  margin-bottom: 20px;
}

.dropdown-list {
  border-radius: 6px;
  width: 300px;
}

.dropdown-list.w--open {
  background-color: var(--grey);
  border-radius: 6px;
  width: auto;
  margin-top: 34px;
  overflow: visible;
}

.nav-link {
  border-bottom: 1px solid var(--transparent);
  margin-left: 15px;
  margin-right: 15px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  transition: all .3s ease-in-out;
}

.nav-link:hover {
  border-bottom-color: var(--bergundy);
}

.nav-link.w--current {
  border-bottom-color: var(--bergundy);
  color: var(--black);
}

.nav-link.contact {
  border: 1px solid var(--bergundy);
  text-align: center;
  width: auto;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  line-height: 25px;
}

.nav-link.contact:hover {
  background-color: var(--grey);
}

.dropdown {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.dropdown:hover {
  color: var(--bergundy);
  background-color: #0000;
}

.nav {
  margin-left: auto;
  margin-right: auto;
}

.navbar-div {
  background-color: #0000;
  justify-content: space-between;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar-section {
  background-color: var(--white);
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 1px 3px #0003;
}

.button {
  border: 1px solid var(--bergundy);
  background-color: var(--bergundy);
  color: var(--white);
  letter-spacing: .5px;
  border-radius: 4px;
  margin-right: 20px;
  padding: 15px 40px;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.button:hover {
  background-color: var(--90-black);
}

.button.clear {
  border-color: var(--white);
  background-color: var(--transparent);
  color: var(--white);
}

.button.clear:hover {
  background-color: var(--90-black);
}

.hero-section {
  background-image: linear-gradient(90deg, var(--90-black) 30%, var(--transparent) 70%), url('../images/drive_554638118.webp');
  background-position: 0 0, 100% 80%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: flex-start;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.bullet-block-title {
  color: var(--bergundy);
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Playfair, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
}

.bullet-list-services {
  border-top: 2px solid var(--bergundy);
  background-color: var(--white);
  padding-top: 100px;
  padding-bottom: 100px;
}

.services-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.list-item {
  align-items: center;
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 500;
  list-style-type: none;
  display: flex;
}

.bullet-heading {
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: flex;
}

.section-2 {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-section {
  border-top: 2px solid var(--bergundy);
  background-color: var(--bergundy);
  padding-top: 100px;
  padding-bottom: 100px;
}

.h3 {
  color: var(--bergundy);
  text-align: center;
  margin-bottom: 0;
  padding-right: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}

.footer-col {
  width: 100%;
}

.contact-block {
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  text-decoration: none;
  display: flex;
}

.footer-mid-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .75fr 1fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.footer-section {
  background-color: var(--bergundy);
  padding-top: 0;
  padding-bottom: 0;
}

.footer-menu-text {
  color: var(--grey);
  letter-spacing: -1px;
  margin-bottom: 10px;
  font-family: Playfair, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 30px;
}

.contact-type-title {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.footer-contact-info {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1fr .75fr .3fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.contact-icon {
  color: #fff;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.contact-icon.ct-us {
  background-color: var(--black);
  border-radius: 50px;
  width: 45px;
  min-width: 45px;
  height: 45px;
  min-height: 45px;
  padding-top: 2px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  line-height: 20px;
}

.contact-info-link {
  color: var(--white);
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  display: inline-block;
}

.footer-div {
  background-color: var(--black);
  border-top: 1px solid #ffffff17;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-copy-link {
  color: var(--white);
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.scroll-up {
  z-index: 1000;
  background-color: var(--bergundy);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 10px 10px auto;
  box-shadow: 0 2px 5px #00000080;
}

.scroll-arrow-up {
  color: var(--white);
  justify-content: center;
  align-items: center;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1.5em;
  font-style: normal;
  line-height: 1;
  text-decoration: none;
}

.services-section {
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
}

._3col-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.services-box {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  justify-content: center;
  align-items: flex-end;
  min-height: 300px;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.services-box._1 {
  background-image: url('../images/Brick-Driveways_2084690143.webp');
}

.services-box._2 {
  background-image: url('../images/new-resin-driveways_1326640876.webp');
}

.services-box._3 {
  background-image: url('../images/vartical-tarmac-image_2076137181.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-box._4 {
  background-image: url('../images/driveway-repairs_1938241622.webp');
}

.services-box._5 {
  background-image: url('../images/Hero-banner_1626211252.webp');
}

.service-box-title {
  background-color: var(--white);
  color: var(--brown\<deleted\|variable-65357064-f66b-a601-6777-d02db73911c0\>);
  border-radius: 1px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  text-decoration: none;
}

.contact-div {
  width: 48.5%;
}

.box-heading {
  color: var(--bergundy);
  text-align: left;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Playfair, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 28px;
}

.box-heading._10b {
  margin-bottom: 10px;
}

.co-logo {
  width: 200px;
  margin-left: auto;
}

.co-logo._500 {
  width: 100%;
  margin-left: 0;
}

.p {
  width: 100%;
  color: var(--black);
}

.p.white {
  color: var(--white);
}

.p.white._0b {
  margin-bottom: 0;
}

.p.white.small {
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 24px;
}

.p.centre {
  text-align: center;
}

.p.left {
  text-align: left;
}

.p.left.topp {
  margin-top: 20px;
}

.p.left._30b {
  margin-bottom: 30px;
}

.p._0b {
  margin-bottom: 0;
}

.p._30b {
  margin-bottom: 30px;
}

.h2 {
  width: 100%;
  color: var(--white);
  text-align: left;
  letter-spacing: -1px;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Playfair, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
}

.h2.red {
  color: var(--bergundy);
  text-transform: none;
}

.h2.red.centre {
  text-align: center;
}

.h2.red._30b {
  margin-bottom: 30px;
}

.h2.small {
  font-size: 36px;
  line-height: 43px;
}

.footer-list {
  border-top: 1px solid var(--brown\<deleted\|variable-65357064-f66b-a601-6777-d02db73911c0\>);
  color: var(--white);
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0;
  padding-top: 20px;
  font-size: 14px;
  line-height: 24px;
}

.service-box-heading-container {
  display: flex;
}

.backtotop {
  height: 0;
}

.dropdown-toggle {
  border-bottom: 1px solid var(--transparent);
  margin-top: 0;
  margin-left: 15px;
  margin-right: 15px;
  padding: 10px 20px 10px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  transition: all .3s;
}

.dropdown-toggle:hover {
  border-bottom-color: var(--bergundy);
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-prefs_button {
  border: 2px solid var(--bergundy);
  background-color: var(--bergundy);
  border-radius: 500px;
  margin-right: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: var(--bergundy);
  background-color: var(--white);
  color: var(--bergundy);
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999px;
  width: 44px;
  height: 24px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_text {
  color: var(--secondary\<deleted\|variable-33243070-f891-84a2-329d-a9320d4915c9\>);
  margin-right: 24px;
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: var(--white);
  border-top: 1px solid #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-prefs_label {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-prefs_text {
  color: var(--black);
  font-size: 12px;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  flex-direction: column;
  padding: 10px;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 16px;
  padding-bottom: 16px;
}

.fs-cc-prefs_close-icon {
  width: 16px;
  height: 16px;
  color: var(--bergundy);
  line-height: 20px;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 40px 32px;
  overflow: scroll;
}

.fs-cc-prefs_title {
  color: var(--bergundy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  padding: 10px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: -12px -12px auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-banner_text-link {
  border-bottom: 2px solid var(--bergundy);
  color: var(--bergundy);
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 576px;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_submit-hide, .fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: var(--dark-transparent);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_buttons-wrapper {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.fs-cc-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 20px 20px;
}

.fs-cc-banner_button {
  border: 2px solid var(--bergundy);
  background-color: var(--bergundy);
  min-width: 140px;
  color: var(--white);
  text-align: center;
  border-radius: 500px;
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 16px;
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--bergundy);
  color: var(--black);
  background-color: #f5f5f5;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 32px;
  margin-right: -8px;
  display: flex;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 40px;
}

.fs-cc-prefs_space-small {
  margin-bottom: 12px;
}

.bottom-link {
  color: var(--white);
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.bottom-link.w--current {
  color: var(--white);
}

.live-chat-top-text {
  color: var(--white);
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  position: static;
}

.live-chat-top-text.block {
  color: #494949;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
  display: none;
  position: fixed;
  inset: auto 0% 0% auto;
}

.live-chat-bottom-text {
  color: var(--light-grey\<deleted\|variable-da8cb8ee-7eed-2331-5dd1-6b19af47bfe4\>);
  font-size: 10px;
}

.live-chat-bottom-text.block {
  color: var(--secondary\<deleted\|variable-33243070-f891-84a2-329d-a9320d4915c9\>);
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 24px;
}

.live-chat-bottom-text.bold {
  color: var(--secondary\<deleted\|variable-33243070-f891-84a2-329d-a9320d4915c9\>);
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}

.chat-section {
  background-color: var(--light-grey\<deleted\|variable-da8cb8ee-7eed-2331-5dd1-6b19af47bfe4\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

.small-whatsapp-icon {
  margin-right: 10px;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.chat-block {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 15px;
}

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: #494949;
  transform: scale(1.05);
}

.whatsapp-chat {
  background-color: var(--white);
  border: 1px solid #00000029;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 300px;
  max-width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.livechat-button {
  background-color: var(--black);
  cursor: pointer;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.livechat-button:hover {
  background-color: var(--bergundy);
}

.top-section-2 {
  background-color: var(--black);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-icon-chat {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.service-box-link {
  background-color: var(--bergundy);
  color: var(--white);
  border-radius: 1px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  text-decoration: none;
}

.contact-form {
  width: 48.5%;
}

.bottom-container {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.bottom-container.left {
  justify-content: flex-start;
  align-items: center;
}

._2-col-div {
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.mini-gallery {
  padding-top: 0;
  padding-bottom: 0;
}

.body-div {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.body-div.centre {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

._4x1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.lightbox-link {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 300px;
  display: flex;
}

.lightbox-link._4 {
  background-image: url('../images/AdobeStock_1913878333.webp');
}

.lightbox-link._3 {
  background-image: url('../images/drive_297870202.webp');
}

.lightbox-link._2 {
  background-image: url('../images/AdobeStock_2084781925.webp');
}

.lightbox-link._1 {
  background-image: url('../images/drive_1960207111.webp');
}

.sub-title {
  width: 200px;
  color: var(--bergundy);
  text-align: center;
  letter-spacing: -1px;
  text-transform: capitalize;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  font-family: Playfair, sans-serif;
  font-size: 29px;
  line-height: 39px;
  display: flex;
}

.title-dib {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.line {
  background-color: var(--bergundy);
  width: 200px;
  height: 2px;
  margin-left: 0;
}

.line.left {
  margin-right: 0;
}

.img-bkgrd-section {
  background-color: var(--dark-grey);
  color: var(--black);
  background-image: url('../images/jumper.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.bullet-block-button {
  background-color: var(--bergundy);
  color: #fff;
  border-radius: 4px;
  margin-top: auto;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.bullet-block-button:hover {
  background-color: var(--dark-grey);
}

.bullet-tick {
  color: var(--bergundy);
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  font-family: "Fa solid 900", sans-serif;
  display: flex;
}

.bullet-block {
  border: 1px solid var(--bergundy);
  background-color: var(--white);
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 30px 30px;
  transition: all .2s ease-in-out;
  display: flex;
}

.bullet-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 20px;
  padding-left: 0;
  display: grid;
}

.bullet-list._2col {
  grid-template-columns: 1fr 1fr;
}

.bullet-list._2col._0b {
  margin-bottom: 0;
}

.bullet-list.white {
  color: var(--white);
}

.bullet-list.white._2col._10b {
  margin-bottom: 10px;
}

.bullet-list._3col {
  grid-template-columns: 1fr 1fr 1fr;
}

.bullet-list._3col._0b, .bullet-list._0b {
  margin-bottom: 0;
}

.bullet-list._10b {
  margin-bottom: 10px;
}

.bullet-list.areas {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.white-section {
  border-top: 2px solid var(--bergundy);
  padding-top: 100px;
  padding-bottom: 100px;
}

.white-section.top, .white-section._0t {
  border-top-width: 0;
}

.white-section._0t {
  padding-top: 0;
}

.white-section.no-border {
  border-top-width: 0;
}

._3x1 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: var(--light-bergundy);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 20px;
}

._3x1._30b {
  margin-top: 0;
  margin-bottom: 30px;
}

._3x1._0t {
  margin-top: 0;
}

._3x1._30p {
  margin-top: 30px;
  margin-bottom: 30px;
}

.divgrid {
  background-color: var(--white);
  padding: 30px;
}

.divgrid.img {
  background-image: url('../images/drive_554638118.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

._60-div {
  width: 100%;
  max-width: 620px;
}

._60-div._800 {
  background-color: var(--90-grey);
  max-width: 800px;
  padding: 40px;
  box-shadow: 0 8px 12px #00000080;
}

.finch-icon {
  width: 50px;
  margin-bottom: 5px;
}

.hero-div {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.home-h1 {
  width: 100%;
  max-width: 500px;
  color: var(--white);
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 3px 3px 3px #00000080;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Playfair, sans-serif;
  font-size: 66px;
  font-weight: 300;
  line-height: 56px;
}

.hero-text {
  width: 100%;
  max-width: 450px;
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.hyperlink {
  box-shadow: inset 0 -1px 0 0 var(--bergundy);
  color: var(--bergundy);
  margin-left: -2px;
  margin-right: -2px;
  padding-left: 2px;
  padding-right: 2px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}

.hyperlink:hover {
  box-shadow: inset 0 -30px 0 0 var(--bergundy);
  color: var(--white);
}

.hyperlink.white {
  box-shadow: inset 0 -1px 0 0 var(--grey);
  color: var(--white);
}

.hyperlink.white:hover {
  box-shadow: inset 0 -30px 0 0 var(--bergundy);
  color: var(--white);
}

.cookies {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
}

.home-h1-small {
  width: 100%;
  max-width: 500px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: none;
  text-shadow: 3px 3px 3px #00000080;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Manrope, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}

.h1-grey {
  color: var(--dark-grey);
}

.buttons-div {
  width: 100%;
  max-width: 500px;
  margin-top: 30px;
}

.white-button {
  border: 1px solid var(--bergundy);
  background-color: var(--white);
  color: var(--bergundy);
  letter-spacing: .5px;
  border-radius: 4px;
  margin-right: 20px;
  padding: 10px 60px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.white-button:hover {
  border-color: var(--leaf-green\<deleted\|variable-6a639ec4-2a76-083e-28e9-0ece8181fba8\>);
  background-color: var(--leaf-green\<deleted\|variable-6a639ec4-2a76-083e-28e9-0ece8181fba8\>);
}

.bottom-section {
  background-color: var(--bergundy);
  padding-top: 60px;
  padding-bottom: 60px;
}

.stars {
  width: 100%;
  color: var(--white);
  letter-spacing: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 22px;
  line-height: 22px;
}

.city-guilds {
  width: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.social-media-div {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.sm-link {
  color: var(--white);
  margin-bottom: 0;
  margin-left: 10px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
}

.icon {
  margin-right: 0;
}

.h3-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.h3-link {
  color: var(--bergundy);
  font-weight: 800;
  text-decoration: none;
}

.strapline {
  color: var(--dark-grey);
  text-align: center;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Playfair, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
}

.house-bg-img {
  background-color: var(--dark-grey);
  color: var(--black);
  background-image: url('../images/drive_2113806096.webp');
  background-position: 100% 100%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.h1 {
  width: 100%;
  color: var(--bergundy);
  text-align: left;
  letter-spacing: -1px;
  text-transform: uppercase;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Playfair, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 45px;
}

.h1._40b {
  margin-bottom: 40px;
}

.grey-section {
  background-color: var(--10-grey);
  padding-top: 100px;
  padding-bottom: 100px;
}

.filler-img {
  background-color: var(--finch-neck\<deleted\|variable-45a5b82e-e116-72e3-8d41-a71bc6fbcbe7\>);
  width: 100%;
  height: 10px;
}

.site-map-link {
  color: var(--black);
  text-decoration: none;
}

.h1-black {
  color: var(--dark-grey);
}

._2x1 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: var(--light-bergundy);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

._2x1._0t {
  margin-top: 0;
}

._2x1._30b {
  margin-bottom: 30px;
}

.faq-div {
  border: 1px solid var(--grey);
  width: 100%;
}

.tab-dropdown {
  border-bottom: 1px solid var(--grey);
  width: 100%;
}

.tab-toggle {
  width: 100%;
}

.faq-title {
  white-space: pre-wrap;
  font-weight: 700;
}

.tab-dropdown-container.w--open {
  background-color: var(--grey);
  padding: 20px;
  position: relative;
}

.tab-text {
  margin-bottom: 0;
}

.tab-text._20b {
  margin-bottom: 20px;
}

.tab-text._20t {
  margin-top: 20px;
}

.tab-text._10b {
  margin-bottom: 10px;
}

.heading {
  color: var(--90-grey);
}

.lightbox-link-2 {
  width: 200px;
  height: 200px;
}

.h2-copy {
  width: 100%;
  color: var(--white);
  text-align: left;
  letter-spacing: -1px;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Playfair, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
}

.h2-copy.red {
  color: var(--bergundy);
  text-transform: none;
}

.h2-copy.red.centre {
  text-align: center;
}

.h2-copy.red._30b {
  margin-bottom: 30px;
}

.h2-copy.small {
  font-size: 36px;
  line-height: 43px;
}

.subheading {
  color: var(--dark-grey);
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 22px;
}

.subheading._10b {
  margin-bottom: 10px;
}

.gallery-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.lb-img {
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
}

.white-box-filler {
  background-color: var(--white);
  padding: 30px;
}

.white-box-filler.img {
  background-image: url('../images/drive_554638118.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.h1-element {
  margin-top: 0;
}

@media screen and (min-width: 1920px) {
  .whatsapp-chat {
    display: none;
  }

  .livechat-button {
    transition: all .2s;
  }

  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

@media screen and (max-width: 991px) {
  .navbar {
    background-color: var(--white);
    width: 100%;
    color: var(--black);
    margin-top: 11px;
  }

  .dd-menu-link {
    color: var(--black);
    background-color: #0000;
    border-left-width: 0;
  }

  .dd-menu-link:hover {
    border-left-width: 0;
  }

  .co-logo-link.footer {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .dropdown-list.w--open {
    background-color: var(--white);
    color: var(--white);
    margin-top: 0;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 20px;
  }

  .nav-link:hover {
    background-color: var(--bergundy);
    color: var(--white);
    border-radius: 0;
  }

  .nav-link.w--current {
    border-bottom-width: 0;
  }

  .nav-link.contact {
    text-align: left;
    margin: 10px;
  }

  .nav-link.contact:hover {
    background-color: var(--bergundy);
  }

  .dropdown {
    background-color: var(--white);
    color: #fff;
    width: 100%;
  }

  .dropdown:hover {
    color: #fff;
  }

  .dropdown.w--open {
    color: #fff;
    background-color: #ef233c;
  }

  .nav-toggle {
    border-radius: 6px;
    margin-left: auto;
  }

  .nav-toggle.w--open {
    background-color: var(--white);
    color: var(--bergundy);
  }

  .nav {
    height: 100%;
    margin-bottom: auto;
  }

  .navbar-div {
    justify-content: space-between;
    align-items: center;
  }

  .hero-section {
    background-image: linear-gradient(#00000080, #00000080), url('../images/drive_554638118.webp');
    background-position: 0 0, 100% 80%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: auto;
  }

  .bullet-list-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .h3 {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
  }

  .contact-block {
    border-bottom: 1px #8a8a8a;
    border-right-style: none;
    justify-content: flex-start;
    width: 100%;
  }

  .footer-mid-content {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-type-title {
    margin-bottom: 5px;
  }

  .scroll-up {
    z-index: 1;
  }

  ._3col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-box {
    min-height: 300px;
  }

  .contact-div {
    width: 100%;
    margin-bottom: 30px;
  }

  .h2 {
    font-size: 34px;
  }

  .dropdown-toggle {
    width: 100%;
    color: var(--black);
    border-bottom-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 20px;
  }

  .dropdown-toggle:hover {
    background-color: var(--bergundy);
    color: var(--white);
  }

  .whatsapp-icon {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
  }

  .whatsapp-block {
    margin-bottom: 10px;
    margin-right: 60px;
    display: flex;
  }

  .whatsapp-container {
    border-radius: 6px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .whatsapp-chat {
    display: none;
  }

  .contact-form {
    width: 100%;
  }

  .bottom-container {
    border-bottom: 1px #8a8a8a;
    border-right-style: none;
    justify-content: flex-start;
  }

  ._2-col-div {
    flex-flow: column;
    align-items: flex-start;
  }

  .mini-gallery {
    padding-bottom: 60px;
  }

  .lightbox-link {
    height: 220px;
  }

  .title-dib {
    width: 100%;
  }

  .line {
    width: 50%;
    max-width: 200px;
  }

  .img-bkgrd-section {
    background-image: linear-gradient(#00000080, #00000080), url('../images/jumper.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bullet-block-button {
    margin-top: 10px;
  }

  .bullet-block {
    padding: 20px;
  }

  .bullet-block:hover {
    transform: none;
  }

  .bullet-list._3col {
    grid-template-columns: 1fr 1fr;
  }

  .bullet-list.areas {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .white-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  ._3x1 {
    grid-template-columns: 1fr;
  }

  .divgrid.img {
    display: none;
  }

  .divgrid._0t {
    padding-top: 0;
  }

  .divgrid._0b {
    padding-bottom: 0;
  }

  ._60-div {
    max-width: 100%;
  }

  .home-h1 {
    max-width: 550px;
    margin-bottom: 10px;
    font-size: 55px;
    line-height: 50px;
  }

  .home-h1-small {
    margin-bottom: 10px;
  }

  .bottom-section {
    padding-top: 60px;
  }

  .icon {
    margin-right: 20px;
  }

  .house-bg-img, .grey-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  ._2x1 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .lb-img {
    height: 230px;
  }

  .white-box-filler, .white-box-filler.img {
    display: none;
  }

  .white-box-filler._0t {
    padding-top: 0;
  }

  .white-box-filler._0b {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .co-logo-link.footer {
    max-width: 170px;
  }

  .navbar-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 25px;
    display: flex;
  }

  .hero-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bullet-list-services {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .contact-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-col {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .footer-col._4 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .footer-mid-content {
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
  }

  .footer-section {
    padding-top: 40px;
  }

  .footer-contact-info {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: .6fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .services-section {
    padding-top: 40px;
  }

  ._3col-grid {
    grid-template-columns: 1fr;
  }

  .box-heading {
    margin-bottom: 10px;
  }

  .p.white.small {
    text-align: center;
  }

  .h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 20px;
  }

  .fs-cc-banner_text-link {
    margin-right: 8px;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 12px;
  }

  .fs-cc-banner_button {
    margin-left: 0;
    margin-right: 8px;
  }

  .bottom-container {
    justify-content: center;
    align-items: center;
  }

  .mini-gallery {
    padding-bottom: 40px;
  }

  .lightbox-link {
    height: 150px;
  }

  .line {
    width: 45%;
  }

  .img-bkgrd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .bullet-list.white._2col {
    grid-template-columns: 1fr;
  }

  .bullet-list.areas {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .white-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .divgrid {
    padding: 25px;
  }

  ._60-div._800 {
    padding: 30px;
  }

  .buttons-div {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .white-button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 25px;
    display: flex;
  }

  .bottom-section {
    padding-top: 40px;
  }

  .stars {
    text-align: center;
  }

  .social-media-div {
    justify-content: center;
    align-items: center;
  }

  .h3-section, .house-bg-img {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .h1 {
    font-size: 40px;
    line-height: 45px;
  }

  .grey-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .h2-copy {
    font-size: 40px;
    line-height: 45px;
  }

  .subheading {
    margin-bottom: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .white-box-filler {
    padding: 25px;
  }
}

@media screen and (max-width: 479px) {
  .co-logo-link.footer {
    max-width: 150px;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .nav-toggle {
    padding: 12px;
  }

  .button {
    text-align: center;
    width: 100%;
    max-width: 43%;
    margin-left: 0;
    margin-right: 15px;
    font-size: 14px;
    line-height: 23px;
  }

  .hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .bullet-list-services {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .services-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .contact-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-col {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-block {
    margin-top: 10px;
  }

  .footer-mid-content {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .footer-section {
    padding-top: 0;
  }

  .contact-type-title {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-contact-info {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .contact-icon {
    display: none;
  }

  .contact-info-link {
    margin-bottom: 0;
  }

  .services-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .services-box {
    min-height: 280px;
  }

  .service-box-title {
    text-align: center;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    line-height: 16px;
  }

  .contact-div {
    margin-bottom: 20px;
  }

  .box-heading {
    font-size: 24px;
  }

  .p.white.small {
    margin-bottom: 0;
  }

  .p.left._30b {
    margin-bottom: 20px;
  }

  .h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .h2.red {
    margin-bottom: 15px;
  }

  .h2.red.centre {
    font-size: 30px;
    line-height: 34px;
  }

  .h2.small {
    font-size: 32px;
    line-height: 36px;
  }

  .service-box-heading-container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .fs-cc-prefs_button {
    margin-bottom: 8px;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-prefs_content, .fs-cc-prefs_component {
    padding: 24px;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: 10px;
  }

  .bottom-link {
    text-align: center;
    margin-bottom: 5px;
  }

  .whatsapp-block {
    margin-bottom: 10px;
  }

  .whatsapp-chat {
    width: 280px;
    max-width: 280px;
    height: 40vh;
    position: relative;
  }

  .livechat-button {
    width: 90%;
  }

  .service-box-link {
    text-align: center;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 16px;
  }

  .bottom-container {
    margin-top: 2px;
  }

  .bottom-container.left {
    justify-content: center;
    align-items: center;
  }

  ._2-col-div {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .mini-gallery {
    padding-bottom: 30px;
  }

  ._4x1 {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 20px;
  }

  .line {
    width: 40%;
  }

  .img-bkgrd-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .bullet-block-button {
    margin-top: 5px;
  }

  .bullet-list._2col, .bullet-list._3col {
    grid-template-columns: 1fr;
  }

  .bullet-list.areas {
    grid-template-columns: 1fr 1fr;
  }

  .white-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .divgrid, ._60-div._800 {
    padding: 20px;
  }

  .home-h1 {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 37px;
  }

  .hero-text {
    font-size: 18px;
    line-height: 28px;
  }

  .home-h1-small {
    font-size: 18px;
    line-height: 26px;
  }

  .buttons-div {
    margin-top: 20px;
  }

  .white-button {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .bottom-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .stars, .social-media-div {
    margin-top: 10px;
  }

  .sm-link {
    margin-bottom: 0;
  }

  .h3-section, .house-bg-img {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .grey-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .h2-copy {
    font-size: 32px;
    line-height: 36px;
  }

  .h2-copy.red {
    margin-bottom: 15px;
  }

  .h2-copy.red.centre {
    font-size: 30px;
    line-height: 34px;
  }

  .h2-copy.small {
    font-size: 32px;
    line-height: 36px;
  }

  .subheading {
    font-size: 24px;
  }

  .gallery-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .lb-img {
    height: 180px;
  }

  .white-box-filler {
    padding: 20px;
  }
}

#w-node-d4cfa3ce-90fc-4f46-dfba-4b32c68b8bbf-bf523739 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-adbea63c-d41c-c327-4198-4a5a8d58accf-bf523739 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_5a1d9f18-e588-56e6-d6ed-7ae3c4649e06-bf523739, #w-node-_2ee52069-c011-2593-2af0-b82ee0617beb-bf523739, #w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-bf523739 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7cd9e128-bdcc-7c02-0b02-aa9f4ebe0513-bf523739, #w-node-_7cd9e128-bdcc-7c02-0b02-aa9f4ebe0530-bf523739, #w-node-_7cd9e128-bdcc-7c02-0b02-aa9f4ebe054d-bf523739 {
  place-self: auto;
}

#w-node-_605ae644-920c-6673-9c39-9f9e1363a84e-bf523739, #w-node-_605ae644-920c-6673-9c39-9f9e1363a84e-185508b9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_01680031-42f7-d69c-b98b-9b7d22d40c93-50ca0c31 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-adbea63c-d41c-c327-4198-4a5a8d58accf-bf523739 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-bf523739 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_52308c73-b58a-c554-fc2a-1685c4bacc1e-c4bacc1b {
    order: -9999;
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-bf523739 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_52308c73-b58a-c554-fc2a-1685c4bacc1e-c4bacc1b {
    order: -9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_52308c73-b58a-c554-fc2a-1685c4bacc4b-c4bacc1b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_01680031-42f7-d69c-b98b-9b7d22d40c93-50ca0c31 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_52308c73-b58a-c554-fc2a-1685c4bacc1e-c4bacc1b {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_52308c73-b58a-c554-fc2a-1685c4bacc4b-c4bacc1b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa duotone 900';
  src: url('../fonts/fa-duotone-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa sharp solid 900';
  src: url('../fonts/fa-sharp-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brands 400';
  src: url('../fonts/Brands-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}