@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 {
  --90-black: #080808e6;
  --yond-grey: #cbc4b7;
  --bee-brown: #bc8b57;
  --white: #fff;
  --black: #080808;
  --grey: #96928d;
  --transparent: #fff0;
  --50-brown: #bc8b5780;
  --light-brown: #ecc193;
  --20-grey: #96928d33;
  --cookies-bg: #0009;
  --20-gold: #bc8b5733;
}

.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;
}

.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;
}

.body {
  background-image: linear-gradient(to bottom, var(--90-black), var(--90-black)), url('../images/wood-bg.webp');
  color: var(--yond-grey);
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  font-family: League Spartan, sans-serif;
  font-size: 17px;
  line-height: 27px;
}

.call-now {
  background-color: var(--bee-brown);
  color: var(--white);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.call-now:hover {
  color: #212529;
}

.opening {
  color: var(--yond-grey);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.top-section {
  z-index: 99;
  background-color: var(--black);
  color: var(--grey);
  position: sticky;
  inset: 0% 0% auto;
}

.top-link {
  color: var(--yond-grey);
  justify-content: flex-start;
  align-items: center;
  margin-left: 10px;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.top-link:hover {
  color: var(--bee-brown);
}

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

.container.announcement-container {
  width: 90%;
  max-width: none;
}

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

.top-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  color: var(--yond-grey);
  justify-content: center;
  align-items: center;
  font-family: "Fa 300", sans-serif;
  font-weight: 300;
  display: flex;
}

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

.top-link-div.margin-right-20 {
  margin-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.top-container, .sm-div {
  display: flex;
}

.navbar {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  margin-left: auto;
  display: flex;
}

.navbar.margin-auto {
  justify-content: space-between;
  width: 100%;
}

.dropdown-menu-link {
  background-color: var(--90-black);
  color: var(--yond-grey);
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 400;
  transition: all .2s ease-in-out;
}

.dropdown-menu-link:hover {
  color: var(--white);
}

.dropdown-menu-link.w--current {
  background-color: var(--black);
  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 {
  margin-bottom: 20px;
}

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

.dropdown-list.w--open {
  background-color: #fff;
  border-radius: 6px;
  width: auto;
  margin-top: 19px;
  overflow: visible;
}

.nav-link {
  color: var(--yond-grey);
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  transition: all .3s ease-in-out;
}

.nav-link:hover {
  color: var(--bee-brown);
  background-color: #0000;
  border-radius: 6px;
}

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

.social-icon {
  width: 35px;
  height: 35px;
  color: var(--bee-brown);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-family: "Brands 400", Arial, sans-serif;
  font-size: 1.2em;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.social-icon:hover {
  background-color: var(--bee-brown);
  color: var(--white);
}

.social-icon._0r {
  margin-right: 0;
}

.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(--bee-brown);
  background-color: #0000;
}

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

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

.navbar-section {
  z-index: 1000;
  border-bottom: 1px solid var(--50-brown);
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

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

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

.button.white:hover {
  background-color: var(--yond-grey);
}

.button.small {
  margin-top: auto;
  padding: 15px 25px 12px;
}

.hero-section {
  height: 100%;
  position: relative;
}

.black-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.black-section._0b {
  padding-bottom: 0;
}

.black-section._20b {
  padding-bottom: 20px;
}

.black-section.top-line {
  border-top: 1px solid var(--50-brown);
}

.black-section.bottom-line {
  border-bottom: 1px solid var(--50-brown);
}

.left-section {
  flex: 0 auto;
  width: 48.5%;
}

.left-section._100 {
  width: 100%;
}

.left-section.vertical {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.img-div {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  align-self: stretch;
  align-items: stretch;
  width: 48.5%;
  display: flex;
}

.img-div.home {
  background-image: url('../images/beeyond-2708-11.webp');
  background-position: 50% 100%;
}

.img-div.svs {
  background-image: url('../images/beeyond-2708-24.webp');
}

.img-div.kitchen {
  background-image: url('../images/beeyond-2708-48.webp');
  background-position: 50% 80%;
}

.img-div.media {
  background-image: url('../images/media-walls_1001457342.webp');
  background-position: 50%;
}

.img-div.floor {
  background-image: url('../images/beeyond-2708-10.webp');
  background-position: 50% 100%;
}

.img-div.furniture {
  background-image: url('../images/beeyond-2708-34.webp');
  background-position: 50% 100%;
}

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

.list._10t {
  margin-top: 10px;
}

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

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

.list._3col._0p {
  margin-top: 0;
  margin-bottom: 0;
}

.list._10p {
  margin-top: 10px;
  margin-bottom: 10px;
}

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

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

.bullet-icon {
  text-align: left;
  background-image: url('../images/brickwall_1brickwall.webp');
  background-position: 50%;
  background-size: cover;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Fa solid 900", sans-serif;
  font-size: 4em;
  line-height: 1.5;
  display: inline-block;
}

.bullet-icon.plastering {
  background-image: url('../images/trowel_1trowel.webp');
}

.bullet-icon.kitchen {
  background-image: url('../images/plumbing_1plumbing.webp');
}

.bullet-block-title {
  width: 100%;
  color: var(--light-brown);
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Playfair Display, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 36px;
}

.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;
}

.services-grid._20t {
  margin-top: 20px;
}

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

.bullet-block-btn {
  background-color: var(--bee-brown);
  color: var(--white);
  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-btn:hover {
  transform: scale(.95);
}

.bullet-block {
  border: 1px solid var(--50-brown);
  text-align: left;
  border-radius: 4px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 30px;
  display: flex;
}

.bullet-block._30b {
  margin-bottom: 20px;
}

.bullet-block._20p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.bullet-heading {
  color: var(--white);
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  display: flex;
}

.container-fluid.display-flex {
  display: flex;
}

.full-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  min-height: 500px;
}

.full-img.home {
  background-image: url('../images/beeyond-2708-15.webp');
}

.full-img.svs {
  background-image: url('../images/beeyond-2708-35.webp');
}

.full-img.kitchen {
  background-image: url('../images/beeyond-2708-29.webp');
  background-position: 50% 60%;
}

.full-img.media {
  background-image: url('../images/media-walls_997876581.webp');
}

.full-img.floor {
  background-image: url('../images/beeyond-2708-7.webp');
  background-position: 50% 100%;
}

.full-img.furniture {
  background-image: url('../images/beeyond-2708-40.webp');
}

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

.section-2-text-content {
  background-color: var(--20-grey);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

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

.contact-section.contactform {
  background-color: var(--grey);
}

.h3-wrapper {
  align-items: center;
  display: flex;
}

.content-h3-box {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.h3 {
  color: var(--yond-grey);
  text-align: center;
  text-shadow: 0 4px 8px var(--black);
  padding-right: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 65px;
}

.h3-cta-btns {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 34%;
  display: flex;
}

.h3-button {
  background-color: var(--white);
  color: var(--bee-brown);
  margin-right: 20px;
  padding: 15px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline;
}

.h3-button._2 {
  border: 1px solid var(--yond-grey);
  color: var(--white);
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.h3-button._2:hover {
  color: var(--bee-brown);
  background-color: #fdfdfd;
}

.brand-div {
  background-color: var(--light-brown);
  padding-top: 40px;
  padding-bottom: 40px;
}

.brand-band-wrapper {
  justify-content: space-between;
  display: flex;
}

.brand-icon {
  color: #bdbdbd;
  font-family: "Fa brands 400", sans-serif;
  font-size: 5em;
  line-height: 1;
  display: inline-block;
}

.footer-col {
  width: 30%;
}

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

.contact-block.border-none {
  border-right-style: none;
  align-items: center;
}

.contact-block._100 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.contact-block._100.nobord {
  border-right-style: none;
  padding-top: 0;
  padding-bottom: 20px;
}

.footer-social-media {
  background-color: var(--bee-brown);
  color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  font-family: "Brands 400", Arial, sans-serif;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.footer-social-media:hover {
  background-color: var(--yond-grey);
  color: var(--bee-brown);
}

.footer-social-media.margin-right-none {
  margin-right: 0;
}

.footer-mid-content {
  justify-content: space-between;
  padding-top: 60px;
  display: flex;
}

.contact-info-text {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

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

.footer-menu-text {
  color: var(--yond-grey);
  margin-bottom: 20px;
  font-family: Playfair Display, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.contact-type-title {
  color: var(--yond-grey);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: Playfair Display, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.footer-contact-info {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--50-brown);
  background-color: var(--90-black);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1.25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  display: grid;
}

.footer-contact-info.vert {
  flex-flow: column;
}

.footer-contact-info.vert.contact {
  border-style: none;
  margin-top: 40px;
  padding-left: 0;
  padding-right: 0;
}

.contact-icon {
  border: 2px solid var(--yond-grey);
  background-color: var(--90-black);
  width: 60px;
  height: 60px;
  color: var(--white);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 22px;
  line-height: 22px;
  text-decoration: none;
  display: flex;
}

.contact-icon.ct-us {
  background-color: var(--black);
}

.contact-info-link {
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

.footer-div {
  border-top: 1px solid var(--50-brown);
  margin-top: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-social-media-block {
  justify-content: flex-start;
  padding-top: 20px;
  display: flex;
}

.footer-copy-link {
  color: var(--yond-grey);
  cursor: pointer;
  font-weight: 300;
  transition: all .2s ease-in-out;
}

.scroll-up {
  z-index: 1000;
  background-color: var(--bee-brown);
  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;
}

.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 {
  border-top: 1px solid var(--50-brown);
  padding-top: 60px;
  padding-bottom: 0;
}

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

.services-box {
  border: 1px solid var(--50-brown);
  background-color: var(--90-black);
  color: var(--light-brown);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 20px;
  text-decoration: none;
  display: flex;
}

.mask {
  height: auto;
  min-height: 250px;
}

.who-made-comment {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.quote-symbol {
  color: var(--bee-brown);
  justify-content: flex-end;
  margin-left: auto;
  padding-bottom: 40px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 60px;
  display: flex;
  position: relative;
}

.underline {
  background-color: #fb6749;
  border-radius: 6px;
  width: 60%;
  height: 5px;
  line-height: 30px;
  position: absolute;
  inset: 15px 0 auto auto;
}

.underline.testemonials-underline {
  flex: 0 auto;
  width: 20%;
  position: relative;
  left: 0%;
  right: 0;
}

.underline.testemonials-underline.orange {
  background-color: var(--bee-brown);
  width: 30%;
  position: absolute;
  top: 0;
}

.underline.testemonials-underline.gray {
  background-color: var(--yond-grey);
  width: 100%;
}

.contact-div {
  width: 48.5%;
}

.left-arrow {
  background-color: var(--light-brown);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 25%;
  transition: all .3s ease-in-out;
  display: flex;
  inset: auto auto 0% 0%;
}

.left-arrow:hover {
  background-color: var(--bee-brown);
  transform: scale(.95);
}

.customer-title {
  color: var(--grey);
}

.testemonial-content-everything {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.testimonials-grid {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.right-arrow {
  background-color: var(--light-brown);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 25%;
  margin-left: 100px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: auto auto 0% 0%;
}

.right-arrow:hover {
  background-color: var(--bee-brown);
  color: #fff;
  transform: scale(.95);
}

.slide-nav {
  display: block;
  position: absolute;
}

.slide-3 {
  background-color: var(--white);
  height: auto;
  padding: 15px;
}

.testemonials {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-block-3 {
  color: var(--grey);
  flex: none;
  margin-top: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 26px;
  display: block;
  position: static;
  inset: 0%;
}

.test-slider {
  position: static;
}

.sub-heading {
  color: var(--bee-brown);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.sub-heading.white {
  color: var(--white);
}

.block-quote {
  border-left-style: none;
  margin-bottom: 0;
  padding: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 28px;
}

.heading-2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  padding-right: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.heading-2.black {
  color: var(--black);
}

.slider-2 {
  background-color: var(--white);
  height: auto;
  position: static;
}

.customer-img {
  background-image: url('../images/vicky-hladynets-C8Ta0gwPbQg-unsplash_1vicky-hladynets-C8Ta0gwPbQg-unsplash.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  min-width: 80px;
  min-height: 80px;
  margin-right: 10px;
}

.co-logo {
  width: 120px;
}

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

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

.p.white._20b {
  margin-bottom: 20px;
}

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

.p.centre._900 {
  max-width: 900px;
}

.p.centre._20b {
  margin-bottom: 20px;
}

.p.centre._20t {
  margin-top: 20px;
  margin-bottom: 0;
}

.p.centre._20t-10b {
  margin-top: 20px;
  margin-bottom: 10px;
}

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

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

.p._20b {
  margin-bottom: 20px;
}

.main-heading {
  width: 100%;
  color: var(--bee-brown);
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Playfair Display, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
}

.main-heading.centre {
  text-align: center;
}

.main-heading.white {
  color: var(--white);
}

.main-heading.small {
  font-size: 40px;
  line-height: 50px;
}

.sub-head {
  width: 100%;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 30px;
}

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

.container-block {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.footer-list {
  color: var(--bee-brown);
  font-weight: 300;
}

.backtotop {
  height: 0;
}

.dropdown-toggle {
  color: var(--yond-grey);
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  transition: all .3s;
}

.dropdown-toggle:hover {
  color: var(--bee-brown);
}

.co-desc {
  color: var(--white);
}

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

.fs-cc-prefs_button {
  border: 2px solid var(--bee-brown);
  background-color: var(--bee-brown);
  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(--bee-brown);
  background-color: var(--white);
  color: var(--bee-brown);
}

.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(--grey);
  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 {
  background-color: var(--yond-grey);
  color: #333;
  cursor: pointer;
  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(--bee-brown);
}

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

.fs-cc-manager_icon {
  width: 32px;
  height: 32px;
}

.fs-cc-prefs_title {
  color: var(--bee-brown);
  font-family: Playfair Display, sans-serif;
  font-size: 27px;
  font-weight: 500;
  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(--bee-brown);
  color: var(--bee-brown);
  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(--cookies-bg);
  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(--bee-brown);
  background-color: var(--bee-brown);
  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(--bee-brown);
  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: 5px;
  text-decoration: none;
  display: block;
}

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

.contactform {
  width: 100%;
  color: var(--white);
}

.lottie {
  width: 150px;
  display: inline-flex;
}

.contact-right {
  position: static;
}

.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(--yond-grey);
  font-size: 10px;
}

.live-chat-bottom-text.block {
  color: var(--grey);
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 24px;
}

.live-chat-bottom-text.bold {
  color: var(--grey);
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}

.chat-section {
  background-color: var(--yond-grey);
  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(--bee-brown);
}

.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;
}

.hyperlink {
  box-shadow: inset 0 -.5px 0 0 var(--light-brown);
  color: var(--light-brown);
  padding-left: 2px;
  padding-right: 2px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}

.hyperlink:hover {
  box-shadow: inset 0 -50px 0 0 var(--light-brown);
  color: var(--black);
}

.top-div {
  flex-direction: column;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

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

.contact-form {
  width: 48.5%;
}

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

._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;
}

.hero-section {
  background-image: radial-gradient(circle farthest-side at 100% 100%, var(--transparent) 30%, var(--black) 70%), url('../images/carpenter_268204723.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 82vh;
  min-height: 720px;
}

.hero-div {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 95%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  display: flex;
}

.hero-h1 {
  width: 100%;
  max-width: 700px;
  color: var(--bee-brown);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Playfair Display, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 70px;
}

.h1-grey {
  color: var(--yond-grey);
  font-size: 50px;
  line-height: 60px;
}

.thin-line {
  background-color: var(--bee-brown);
  width: 100px;
  height: 2px;
  margin-bottom: 30px;
}

.svs-box-title {
  text-align: center;
  width: 100%;
  max-width: 100px;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.svs-box-title.wide {
  max-width: 180px;
}

.svs-box-img {
  border-bottom: 1px solid var(--50-brown);
  width: 100%;
  margin-bottom: 20px;
}

.pale-grey-section {
  border-top: 1px solid var(--50-brown);
  border-bottom: 1px solid var(--50-brown);
  background-image: linear-gradient(to bottom, var(--20-grey), var(--20-grey)), linear-gradient(to bottom, var(--90-black), var(--90-black)), url('../images/wood-bg.webp');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.pale-grey-section._0b {
  padding-bottom: 0;
}

.pale-grey-section._20b {
  padding-bottom: 20px;
}

.h3-link {
  color: var(--light-brown);
  text-decoration: none;
}

.h1-brown {
  color: var(--light-brown);
}

.main-heading-light {
  color: var(--yond-grey);
}

.gold-section {
  border-bottom: 1px solid var(--50-brown);
  background-color: var(--20-gold);
  padding-top: 100px;
  padding-bottom: 100px;
}

.gold-section._0b {
  padding-bottom: 0;
}

.gold-section._20b {
  padding-bottom: 20px;
}

.gold-section.top-line {
  border-top: 1px solid var(--50-brown);
}

.gold-section.bottom-line {
  border-bottom: 1px solid var(--50-brown);
}

.sub-heading {
  width: 100%;
}

.faq-div {
  z-index: 1;
  border-style: solid;
  border-width: 1px 1px 0;
  border-color: var(--yond-grey);
  width: 100%;
  position: relative;
}

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

.tab-toggle {
  background-color: var(--90-black);
  width: 100%;
}

.faq-arrow {
  color: var(--yond-grey);
}

.faq-title {
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: pre-wrap;
  font-weight: 400;
}

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

.tab-text {
  color: var(--white);
  margin-bottom: 0;
}

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

.site-map-link {
  color: var(--white);
  margin-bottom: 3px;
  text-decoration: none;
}

.site-map-link.white {
  color: var(--white);
}

.site-map-link.white._20b {
  margin-bottom: 20px;
}

.site-map-link.centre {
  text-align: center;
}

.site-map-link.centre._900 {
  max-width: 900px;
}

.site-map-link.centre._20b {
  margin-bottom: 20px;
}

.site-map-link.centre._20t {
  margin-top: 20px;
  margin-bottom: 0;
}

.site-map-link.centre._20t-10b {
  margin-top: 20px;
  margin-bottom: 10px;
}

.site-map-link._30b {
  margin-bottom: 30px;
}

.site-map-link._0b {
  margin-bottom: 0;
}

.site-map-link._20b {
  margin-bottom: 20px;
}

.checkatrade {
  width: 100%;
  max-width: 200px;
}

.footer-co-logo {
  width: 200px;
}

.testimonial-title {
  width: 100%;
  color: var(--light-brown);
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Playfair Display, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.check-score {
  width: 100%;
  color: var(--white);
  font-weight: 700;
}

.check-score.white {
  color: var(--white);
}

.check-score.white._20b {
  margin-bottom: 20px;
}

.check-score.centre {
  text-align: center;
}

.check-score.centre._900 {
  max-width: 900px;
}

.check-score.centre._20b {
  margin-bottom: 20px;
}

.check-score.centre._20t {
  margin-top: 20px;
  margin-bottom: 0;
}

.check-score.centre._20t-10b {
  margin-top: 20px;
  margin-bottom: 10px;
}

.check-score._30b {
  margin-bottom: 30px;
}

.check-score._0b {
  margin-bottom: 0;
}

.check-score._20b {
  margin-bottom: 20px;
}

.name {
  width: 100%;
  color: var(--light-brown);
  margin-bottom: 0;
}

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

.name.white._20b {
  margin-bottom: 20px;
}

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

.name.centre._900 {
  max-width: 900px;
}

.name.centre._20b {
  margin-bottom: 20px;
}

.name.centre._20t {
  margin-top: 20px;
  margin-bottom: 0;
}

.name.centre._20t-10b {
  margin-top: 20px;
  margin-bottom: 10px;
}

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

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

.name._20b {
  margin-bottom: 20px;
}

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

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

.lb-img, .lb-link {
  width: 100%;
}

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

@media screen and (min-width: 1920px) {
  .mask {
    width: 100%;
  }

  .who-made-comment {
    position: relative;
  }

  .test-slider {
    position: static;
  }

  .block-quote {
    font-size: 1.15rem;
  }

  .heading-2 {
    font-size: 2.5rem;
  }

  .slider-2 {
    width: 100%;
  }

  .contact-right {
    position: static;
  }

  .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) {
  .opening {
    display: none;
  }

  .container.announcement-container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container.nav-fluid {
    width: 100%;
    padding: 0;
  }

  .top-link-div.margin-right-20 {
    flex: none;
  }

  .top-link-div.margin-right-20.mobile-display-none {
    display: none;
  }

  .top-container {
    flex-direction: row;
  }

  .sm-div {
    justify-content: space-around;
  }

  .navbar {
    background-color: #fff;
    width: 100%;
    margin-top: 20px;
  }

  .navbar.margin-auto {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    margin-top: 0;
  }

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

  .dropdown-menu-link:hover {
    background-color: var(--black);
    color: var(--white);
    border-left-width: 0;
  }

  .dropdown-list.w--open {
    background-color: var(--bee-brown);
    border-radius: 0;
    margin-top: 0;
    position: relative;
  }

  .nav-link {
    background-color: var(--bee-brown);
    color: var(--white);
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .social-icon {
    background-color: var(--white);
    width: 33.3%;
    height: auto;
    color: var(--black);
    border-right: 1px solid #3535353d;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 22px;
  }

  .social-icon:hover {
    color: var(--white);
  }

  .social-icon._0r {
    background-color: var(--white);
    text-align: left;
    font-size: 22px;
  }

  .social-icon._0r:hover {
    background-color: var(--bee-brown);
    color: var(--white);
  }

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

  .dropdown:hover {
    color: #fff;
  }

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

  .dropdown.no-border {
    background-color: var(--bee-brown);
    color: var(--white);
    border-bottom-style: none;
  }

  .dropdown.no-border:hover {
    background-color: var(--grey);
  }

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

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

  .nav {
    background-color: var(--bee-brown);
    height: 100%;
    margin-bottom: auto;
  }

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

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

  .left-section {
    width: 100%;
  }

  .img-div {
    width: 100%;
    height: 500px;
    margin-top: 40px;
  }

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

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

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

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

  .bullet-block {
    padding: 20px;
  }

  .bullet-heading {
    line-height: 25px;
  }

  .container-fluid.display-flex {
    flex-direction: column;
  }

  .full-img {
    width: 100%;
  }

  .section-2-text-content {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

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

  .h3-wrapper {
    flex-direction: column;
  }

  .content-h3-box {
    width: 100%;
  }

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

  .h3-cta-btns {
    justify-content: center;
    width: 60%;
    padding-top: 20px;
    display: flex;
  }

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

  .contact-block.border-none {
    border-bottom-style: none;
  }

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

  .footer-contact-info {
    flex-direction: column;
    grid-template-columns: 1.25fr 1fr;
  }

  .footer-div {
    margin-top: 60px;
  }

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

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

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

  .left-arrow {
    background-color: var(--bee-brown);
    color: #fff;
    bottom: -25%;
    left: auto;
    right: 15%;
  }

  .testimonials-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .right-arrow {
    background-color: var(--bee-brown);
    inset: auto 0% -25% auto;
  }

  .testemonials {
    padding-top: 60px;
  }

  .text-block-3 {
    color: var(--white);
  }

  .block-quote {
    font-size: 16px;
  }

  .heading-2 {
    padding-right: 0;
  }

  .slider-2 {
    position: relative;
  }

  .co-logo {
    width: 100px;
  }

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

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

  .dropdown-toggle:hover {
    background-color: var(--black);
    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;
  }

  .hero-text {
    margin-bottom: 20px;
  }

  .contact-form {
    width: 100%;
  }

  .bottom-container {
    border-bottom: 1px #8a8a8a;
    border-right-style: none;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

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

  .hero-section {
    height: auto;
    min-height: auto;
  }

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

  .hero-h1 {
    max-width: 550px;
    font-size: 50px;
    line-height: 60px;
  }

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

  .pale-grey-section, .gold-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-co-logo {
    width: 100%;
    max-width: 200px;
  }

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

@media screen and (max-width: 767px) {
  .call-now {
    justify-content: center;
    align-items: center;
  }

  .top-section {
    position: static;
  }

  .container.announcement-container {
    padding-top: 0;
    padding-bottom: 0;
    position: static;
  }

  .container.nav-fluid {
    padding-top: 0;
  }

  .top-link-div.margin-right-20 {
    margin-right: 0;
  }

  .top-link-div.margin-right-20.mobile-display-none {
    margin-right: 10px;
  }

  .top-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
  }

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

  .button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 14px;
    display: flex;
  }

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

  .img-div {
    height: 350px;
  }

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

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

  .full-img {
    min-height: 350px;
  }

  .section-2-text-content, .contact-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .h3-cta-btns {
    width: 100%;
  }

  .brand-band-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .footer-col {
    width: 100%;
    margin-top: 20px;
  }

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

  .footer-mid-content {
    flex-direction: column;
    padding-top: 0;
  }

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

  .footer-contact-info {
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

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

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

  .quote-symbol {
    margin-left: 0;
    padding-bottom: 10px;
    padding-right: 0;
    line-height: 1;
    position: static;
  }

  .underline {
    width: 50%;
  }

  .left-arrow {
    width: 80px;
    height: 80px;
    margin-top: 20px;
    margin-left: auto;
    padding-top: 0;
    bottom: -5%;
    right: 20%;
  }

  .testimonials-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .right-arrow {
    width: 80px;
    height: 80px;
    bottom: -5%;
  }

  .slide-3 {
    margin-left: auto;
    margin-right: auto;
  }

  .test-slider {
    width: 95%;
    position: static;
  }

  .sub-heading {
    margin-bottom: 5px;
  }

  .sub-heading.white {
    font-size: 18px;
    line-height: 28px;
  }

  .heading-2 {
    font-size: 24px;
    line-height: 34px;
  }

  .slider-2 {
    justify-content: center;
    align-items: center;
    display: block;
    position: static;
  }

  .main-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .main-heading.small {
    font-size: 35px;
    line-height: 45px;
  }

  .button-div {
    width: 100%;
    display: flex;
  }

  .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;
  }

  .contact-right {
    width: 95%;
    position: static;
  }

  .hero-text {
    max-width: 350px;
    margin-bottom: 20px;
  }

  .hero-h1 {
    max-width: 450px;
    font-size: 40px;
    line-height: 45px;
  }

  .h1-grey {
    font-size: 30px;
    line-height: 35px;
  }

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

  .checkatrade, .footer-co-logo {
    max-width: 150px;
  }

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

@media screen and (max-width: 479px) {
  .call-now {
    width: 100%;
    margin-top: 10px;
  }

  .top-link {
    font-size: 15px;
  }

  .container.announcement-container {
    padding-top: 1px;
  }

  .top-icon {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }

  .top-link-div.margin-right-20 {
    text-align: center;
    font-size: 14px;
  }

  .top-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    line-height: 17px;
  }

  .navbar.margin-auto {
    border-top: 1px solid #0000000d;
    width: 100%;
  }

  .dropdown-menu-link, .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .button {
    text-align: center;
    min-width: 150px;
    padding-top: 15px;
    padding-bottom: 12px;
    font-size: 12px;
    line-height: 12px;
    display: block;
  }

  .button.white {
    margin-top: 10px;
  }

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

  .img-div {
    height: 250px;
    margin-top: 30px;
  }

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

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

  .bullet-block-title {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 30px;
  }

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

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

  .full-img {
    min-height: 250px;
  }

  .section-2-text-content {
    flex-direction: row;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
  }

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

  .h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .h3-cta-btns {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .h3-button {
    text-align: center;
    flex: none;
    width: 100%;
    margin-right: 0;
  }

  .h3-button._2 {
    flex: none;
  }

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

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

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

  .footer-menu-text {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
  }

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

  .footer-contact-info {
    grid-column-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 20px;
    padding: 20px 20px 30px;
  }

  .contact-icon {
    display: none;
  }

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

  .footer-div {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .footer-social-media-block {
    margin-bottom: 10px;
    padding-top: 0;
  }

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

  ._3col-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .services-box {
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
  }

  .quote-symbol {
    padding-bottom: 10px;
    padding-right: 0;
    font-size: 2rem;
  }

  .underline {
    width: 30%;
  }

  .contact-div {
    margin-bottom: 0;
  }

  .left-arrow {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    bottom: -10%;
  }

  .testemonial-content-everything {
    padding-right: 0;
  }

  .testimonials-grid {
    grid-column-gap: 0px;
    grid-row-gap: 35px;
  }

  .right-arrow {
    width: 60px;
    height: 60px;
    bottom: -10%;
  }

  .slide-3 {
    padding: 0;
  }

  .testemonials {
    padding-top: 40px;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .text-block-3 {
    font-size: 22px;
  }

  .sub-heading {
    font-size: 1.125rem;
  }

  .sub-heading.white {
    line-height: 26px;
  }

  .block-quote {
    font-size: 14px;
    line-height: 24px;
  }

  .heading-2 {
    font-size: 18px;
    line-height: 28px;
  }

  .slider-2 {
    width: 100%;
  }

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

  .main-heading {
    margin-top: 0;
    font-size: 28px;
    line-height: 34px;
  }

  .main-heading.centre {
    margin-bottom: 20px;
  }

  .main-heading.small {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 40px;
  }

  .button-div {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
  }

  .footer-list {
    margin-bottom: 30px;
  }

  .dropdown-toggle {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .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 {
    margin-bottom: 5px;
  }

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

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

  .whatsapp-container {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

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

  .livechat-button {
    width: 90%;
  }

  .top-div {
    width: 100%;
  }

  .contact-form {
    margin-top: 20px;
  }

  .bottom-container {
    margin-bottom: -10px;
  }

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

  .hero-section {
    background-position: 0 0, 30%;
  }

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

  .hero-h1 {
    max-width: 100%;
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 38px;
  }

  .h1-grey {
    font-size: 25px;
    line-height: 30px;
  }

  .thin-line {
    margin-bottom: 15px;
  }

  .svs-box-title {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 18px;
    line-height: 24px;
  }

  .svs-box-img {
    margin-bottom: 10px;
  }

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

  .site-map-link._30b, .site-map-link._20b, .check-score._30b, .check-score._20b, .name._30b, .name._20b {
    margin-bottom: 20px;
  }

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

#w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-1d8f5838, #w-node-b5026366-b218-664c-23d9-b9513e9479d8-1d8f5838, #w-node-ed24adcf-274f-afd9-45c8-ef4235af3162-1d8f5838, #w-node-_283ea0ab-2ab7-baf9-2cc6-234d108b703d-1d8f5838, #w-node-_58d4bcd0-de85-a694-a0bb-dc3a6c770032-1d8f5838, #w-node-_68f37416-f06e-052e-e3a0-1117f4d0e813-1d8f5838 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d6413dd0-3c87-6e39-046e-f27dfe230065-1d8f5838, #w-node-d6413dd0-3c87-6e39-046e-f27dfe230082-1d8f5838, #w-node-d6413dd0-3c87-6e39-046e-f27dfe23009f-1d8f5838 {
  place-self: auto;
}

#w-node-c6745380-7233-e55b-2c1c-545e910dcfea-7079b699 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: auto;
}

#w-node-af7f70cd-19f8-98d8-cc44-04f3c0a00286-7079b699, #w-node-d6413dd0-3c87-6e39-046e-f27dfe230065-d2c316e4, #w-node-e1ed53a7-7a52-e31f-e16a-42a395d52f98-d2c316e4, #w-node-cd70abe7-fa00-f35b-ba4d-749b25fee8d6-d2c316e4, #w-node-_303dca2a-458c-39e2-bc6a-ee86c39607fb-d2c316e4, #w-node-_8eec68ad-2335-9670-892f-c4166bb87f00-d2c316e4 {
  place-self: auto;
}

#w-node-_5a0ea5e3-7e8c-a15c-99f5-b641c19fdf57-c94b0dbb, #w-node-_2dae8a3d-847f-e679-1f5e-42c81ae5c7d2-c94b0dbb, #w-node-b3ebec4a-bd03-af7e-3faf-3db66cfcd8d6-c94b0dbb, #w-node-f0cdbcde-8bdc-0e22-2305-c125c81ddd3b-c94b0dbb, #w-node-_05f6e1c5-2ab2-176e-aff7-9b64799c27a6-c94b0dbb, #w-node-eb193c07-6eac-3ec5-880c-3c1fb4d7ec4e-c94b0dbb, #w-node-_70855435-7ba5-fb34-1327-c899e8bce4cf-c94b0dbb, #w-node-f7f566ec-8a8a-b8d4-4cf7-973727814668-c94b0dbb, #w-node-c07f1c3d-3d62-51f2-b2ac-0c75aa11a71e-c94b0dbb, #w-node-d14bad4e-1dc3-4b13-af83-0ba163d72ade-c94b0dbb, #w-node-_8146d72c-e8c9-8db5-94cd-1b3a90a9b9a4-c94b0dbb, #w-node-_020afd3e-1b1d-4e02-16c9-72398fb3ce75-c94b0dbb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

@media screen and (max-width: 991px) {
  #w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-1d8f5838, #w-node-b5026366-b218-664c-23d9-b9513e9479d8-1d8f5838, #w-node-ed24adcf-274f-afd9-45c8-ef4235af3162-1d8f5838, #w-node-_283ea0ab-2ab7-baf9-2cc6-234d108b703d-1d8f5838, #w-node-_58d4bcd0-de85-a694-a0bb-dc3a6c770032-1d8f5838, #w-node-_68f37416-f06e-052e-e3a0-1117f4d0e813-1d8f5838 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c6745380-7233-e55b-2c1c-545e910dcfea-7079b699, #w-node-_5a0ea5e3-7e8c-a15c-99f5-b641c19fdf57-c94b0dbb, #w-node-_2dae8a3d-847f-e679-1f5e-42c81ae5c7d2-c94b0dbb, #w-node-b3ebec4a-bd03-af7e-3faf-3db66cfcd8d6-c94b0dbb, #w-node-f0cdbcde-8bdc-0e22-2305-c125c81ddd3b-c94b0dbb, #w-node-_05f6e1c5-2ab2-176e-aff7-9b64799c27a6-c94b0dbb, #w-node-eb193c07-6eac-3ec5-880c-3c1fb4d7ec4e-c94b0dbb, #w-node-_70855435-7ba5-fb34-1327-c899e8bce4cf-c94b0dbb, #w-node-f7f566ec-8a8a-b8d4-4cf7-973727814668-c94b0dbb, #w-node-c07f1c3d-3d62-51f2-b2ac-0c75aa11a71e-c94b0dbb, #w-node-d14bad4e-1dc3-4b13-af83-0ba163d72ade-c94b0dbb, #w-node-_8146d72c-e8c9-8db5-94cd-1b3a90a9b9a4-c94b0dbb, #w-node-_020afd3e-1b1d-4e02-16c9-72398fb3ce75-c94b0dbb {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-1d8f5838, #w-node-b5026366-b218-664c-23d9-b9513e9479d8-1d8f5838, #w-node-ed24adcf-274f-afd9-45c8-ef4235af3162-1d8f5838, #w-node-_283ea0ab-2ab7-baf9-2cc6-234d108b703d-1d8f5838, #w-node-_58d4bcd0-de85-a694-a0bb-dc3a6c770032-1d8f5838, #w-node-_68f37416-f06e-052e-e3a0-1117f4d0e813-1d8f5838 {
    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;
}