@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 Sharp 400";
  src: url('../fonts/fa-sharp-regular-400.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 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 100";
  src: url('../fonts/fa-sharp-thin-100.ttf') format("truetype");
  font-weight: 100;
  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: "Fa V 4 Compatibility";
  src: url('../fonts/fa-v4compatibility.ttf') format("truetype");
  font-weight: 400;
  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 Sharp 300";
  src: url('../fonts/fa-sharp-light-300.ttf') format("truetype");
  font-weight: 300;
  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 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --tan: #d6b38a;
  --tan-2: #cfa97b;
  --white: white;
  --grey: #888;
  --black: black;
  --peru: #99774f;
}

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

.header-section {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.menu-link {
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s;
}

.menu-link:hover {
  color: var(--tan);
  border-bottom: 0 solid #000;
}

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

.menu-link.contact {
  background-color: var(--tan-2);
  color: var(--white);
  border: 1px solid #000;
}

.section {
  z-index: 50;
  border-bottom: 1px solid var(--tan);
  position: fixed;
  inset: 0% 0% auto;
}

.logo {
  height: auto;
}

.header-div {
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding: 10px;
  display: flex;
}

.contact-info-div {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 26px;
  display: flex;
}

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

.email-link {
  text-align: center;
  font-weight: 500;
}

.email-link.int-link-header {
  color: #000;
  text-align: left;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.tel-link {
  text-align: center;
  padding-left: 15px;
  font-weight: 700;
}

.navbar {
  background-color: #0000;
}

.menu-button-group-div {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  display: flex;
}

.black-int-link {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.menu-label-div {
  background-color: #fffc;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-top: -66px;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: background-color .2s;
  display: flex;
}

.menu-label-div:hover {
  background-color: #d6b38acc;
}

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

.menu-img.refurb {
  background-image: url('../images/kitchen_182437059.webp');
  background-position: 20%;
  background-size: cover;
}

.menu-img.carpentry {
  background-image: url('../images/carpentry_251127632.webp');
  background-position: 50%;
  background-size: cover;
}

.menu-img.building {
  background-image: url('../images/builder_88564350.webp');
  background-position: 50%;
  background-size: cover;
}

.menu-img.reno {
  background-image: url('../images/kitchen_270646737.webp');
}

.menu-button-div {
  width: 24%;
}

.menu-button-section {
  z-index: 10;
  background-color: #ebebeb;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.content-section {
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.double-content-div {
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  display: flex;
}

.basic-p-block {
  width: 48%;
}

.basic-p-block._100 {
  width: 100%;
}

.basic-p-block._100.pad {
  margin-bottom: 40px;
}

.h1 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-weight: 300;
  line-height: 46px;
  display: flex;
}

.coloured-underline {
  background-color: var(--tan);
  width: 80px;
  height: 4px;
  margin-bottom: 20px;
}

.p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 26px;
}

.p._1 {
  padding-top: 0;
}

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

.p.contact {
  font-size: 22px;
  line-height: 40px;
}

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

.contact-us-button {
  border: 2px solid var(--tan);
  color: var(--tan);
  background-color: #0000;
  border-radius: 2px;
  margin-top: 20px;
  font-weight: 700;
  transition: background-color .2s;
}

.contact-us-button:hover {
  background-color: var(--tan);
  color: var(--white);
}

.contact-us-button.side-button {
  margin-left: 10px;
}

.contact-us-button.w {
  background-color: var(--tan-2);
  color: var(--white);
  margin-left: 20px;
}

.h1-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  width: 48%;
}

.h1-img.building {
  background-image: url('../images/builder_88564350.webp');
  background-position: 50%;
  background-size: cover;
}

.h1-img.kitchen {
  background-image: url('../images/kitchen_574005186.webp');
  background-position: 50%;
  background-size: cover;
}

.h1-img.carpentry {
  background-image: url('../images/cupboard_1262553194.webp');
  background-position: 50%;
  background-size: cover;
}

.h1-img._5 {
  background-image: url('../images/kitchen_673925703.webp');
  background-position: 0 0;
  background-size: cover;
}

.h1-img.home {
  background-image: url('../images/kitchen_473211716.webp');
  background-position: 80%;
}

.large-image-section {
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 60px;
  display: flex;
}

.large-image-section.no-bottom-pad {
  padding-bottom: 0;
}

.pinned-content-div {
  z-index: 5;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  padding-right: 2%;
  display: flex;
  position: absolute;
  right: 0;
}

.large-p-block {
  background-color: #ffffffe6;
  border-radius: 4px;
  padding: 30px;
}

.h2 {
  color: var(--grey);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
}

.h2.black {
  color: var(--black);
}

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

.h2.w {
  color: var(--white);
}

.lrg-img-div {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  height: 800px;
  display: flex;
}

.lrg-img-div.building {
  background-image: url('../images/builder_1394840377.webp');
  background-position: 50%;
  background-size: cover;
  height: 700px;
}

.lrg-img-div.kitchen {
  background-image: url('../images/kitchen_1046423041.webp');
  background-position: 50%;
  background-size: cover;
  height: 600px;
}

.lrg-img-div.carpentry {
  background-image: url('../images/cupboard_1186633523.webp');
  background-position: 50%;
  background-size: cover;
  height: 700px;
}

.lrg-img-div._5 {
  background-image: url('../images/kitchen_483854461.webp');
  background-position: 50%;
  background-size: cover;
  height: 750px;
}

.lrg-img-div.home {
  background-image: url('../images/kitchen-renovations.webp');
  height: 600px;
}

.contact-form-section {
  background-color: var(--tan);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.form-div {
  width: 90%;
  max-width: 960px;
}

.h3 {
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

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

.grey-content-section {
  background-color: #ebebeb;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.double-p-block {
  width: 100%;
}

.footer-div {
  justify-content: space-around;
  width: 90%;
  max-width: 1300px;
  display: flex;
}

.footer-p {
  color: #fff;
  text-align: center;
}

.footerlink-div {
  width: 90%;
  max-width: 1300px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 0;
}

.footer-info-div {
  border: 1px solid var(--tan);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34%;
  padding: 60px;
  display: flex;
}

.footer-info-div._1 {
  border-width: 1px 0;
  flex-direction: row;
  align-items: center;
}

.footer-info-div._2 {
  flex-direction: column;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}

.footerlinks {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
}

.footer-section {
  background-color: #161616;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  display: flex;
}

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

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

.black-link.peach {
  transition: color .2s;
}

.black-link.peach:hover {
  color: var(--tan);
}

.menu-link-dropdown {
  color: var(--black);
  padding: 10px 30px 10px 10px;
  font-size: 14px;
  font-weight: 700;
}

.menu-link-dropdown:hover {
  color: var(--tan);
  border-bottom: 0 solid #000;
}

.menu-link-dropdown:focus {
  border-bottom: 1px solid #000;
}

.menu-link-dropdown.services {
  color: var(--tan);
  padding-right: 30px;
}

.dropdown-list {
  background-color: #b8acac;
}

.dropdown-list.w--open {
  background-color: #fffc;
}

.small {
  color: var(--grey);
  margin-top: 10px;
  font-size: 22px;
  line-height: 32px;
}

.list-div {
  display: flex;
}

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

.list._2col {
  grid-column-gap: 20px;
  grid-row-gap: 2px;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

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

.list._3col {
  grid-column-gap: 20px;
  grid-row-gap: 2px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 20px;
}

.list-item {
  padding-bottom: 2px;
}

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

.white-link.hover-peach {
  transition: color .2s;
}

.white-link.hover-peach:hover {
  color: var(--tan);
}

.static-header {
  z-index: 10;
  border-bottom: 1px solid var(--tan);
  position: static;
  inset: 0% 0% auto;
}

.int-link {
  color: var(--black);
  font-weight: 700;
}

.map {
  border-radius: 4px;
  width: 48%;
}

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

.map-section {
  justify-content: center;
  align-items: center;
  display: flex;
}

.html-embed, .checkatrade-reviews {
  width: 100%;
}

.hp-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  margin-top: 30px;
}

.hp-image {
  background-image: url('../images/kitchen_639364308.webp');
  background-position: 60%;
  background-size: cover;
}

.social-media-div-2 {
  width: auto;
  margin-top: 20px;
}

.insta-link {
  margin-left: 10px;
}

.insta {
  width: 45px;
  margin-top: 10px;
}

.insta:hover {
  transform: scale(1.1);
}

.slider-3 {
  background-color: var(--black);
  height: 100vh;
}

.slide-nav {
  display: none;
}

.slide-1 {
  background-image: url('../images/kitchen_511578708.webp');
  background-position: 50% 75%;
  background-size: cover;
  position: static;
}

.mask {
  position: static;
}

.slide-2 {
  background-image: url('../images/kitchen_483833794.webp');
  background-position: 50%;
  background-size: cover;
}

.right-arrow-2, .left-arrow-2 {
  margin-top: 100px;
}

.brown-section {
  background-color: var(--tan);
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.kitchen-grid {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  margin-bottom: 40px;
}

.kitchen-image-1 {
  background-image: url('../images/kitchen1.jpg');
  background-position: 50%;
  background-size: cover;
}

.kitchen-image-2 {
  background-image: url('../images/kitchen_635696737.webp');
  background-position: 50%;
  background-size: cover;
}

.kitchen-image-3 {
  background-image: url('../images/cupboard_1491082703.webp');
  background-position: 50%;
  background-size: cover;
}

.h3list {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.social-banner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--peru);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: grid;
}

.link-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.link-block.non {
  font-family: "Fa Brands 400", sans-serif;
}

.text-block {
  background-color: var(--tan);
  color: #000;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 20px;
  text-decoration: none;
  display: flex;
}

.text-block.non {
  background-color: var(--tan);
  font-family: "Fa Brands 400", sans-serif;
}

.socials {
  z-index: 99;
  background-color: var(--peru);
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 120px;
  font-family: "Fa Brands 400", sans-serif;
  display: flex;
  position: fixed;
  inset: 300px 0% 0% auto;
}

.social-button {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.social-button:hover {
  border-bottom: 2px solid var(--white);
  background-color: var(--tan);
}

.social-button.non {
  color: var(--white);
  font-family: "Fa Sharp Solid 900", sans-serif;
}

.social-button.non:hover {
  border-bottom: 2px solid var(--white);
  background-color: var(--tan);
}

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

.fs-cc-banner_trigger {
  display: 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 {
  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-prefs_overlay {
  z-index: -1;
  background-color: #03052499;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_component {
  z-index: 2147483647;
  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_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

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

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

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

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

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

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

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

.fs-cc-prefs_button {
  border: 2px solid var(--peru);
  background-color: var(--peru);
  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(--tan-2);
  color: var(--tan);
  background-color: #fff;
}

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

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

.fs-cc-prefs_close-icon {
  color: #021a7c;
  width: 16px;
  height: 16px;
}

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

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

.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: #616161;
  margin-right: 24px;
}

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

.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_content {
  height: 100%;
  padding: 40px 32px;
  overflow: scroll;
}

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

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

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

.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_component {
  z-index: 2147483647;
  background-color: #f5f6ff;
  border-top: 1px solid #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.bold-text {
  color: var(--tan-2);
}

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

.areas-list._0b {
  margin-bottom: 0;
}

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

.dd-icon {
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
  .menu-link {
    text-align: right;
    position: static;
  }

  .menu-link:hover, .menu-link:focus {
    background-color: var(--tan);
    color: #fff;
  }

  .menu-link.w--current:focus {
    background-color: var(--tan);
  }

  .header-div {
    width: 100%;
  }

  .menu-button:hover {
    background-color: #ebebeb;
  }

  .menu-button.w--open {
    color: #929292;
    text-align: right;
    background-color: #ebebeb;
  }

  .logo-div {
    justify-content: flex-start;
    width: 58%;
  }

  .menu-div {
    width: 40%;
  }

  .navbar {
    width: 100%;
  }

  .nav-menu {
    background-color: #ebebebf2;
  }

  .menu-img {
    height: 160px;
  }

  .menu-button-section {
    display: none;
  }

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

  .double-content-div {
    flex-direction: column;
    align-items: center;
  }

  .basic-p-block {
    width: 100%;
    padding-bottom: 30px;
  }

  .h1-img {
    width: 100%;
    height: 400px;
  }

  .h1-img.kitchen {
    background-position: 50% 60%;
  }

  .h1-img._5, .h1-img.home {
    background-position: 50%;
  }

  .large-image-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pinned-content-div {
    justify-content: center;
    width: 100%;
    padding-right: 0%;
  }

  .large-p-block {
    width: 90%;
  }

  .lrg-img-div {
    width: 100%;
    height: 540px;
  }

  .lrg-img-div.building {
    height: 600px;
  }

  .lrg-img-div.kitchen {
    height: 500px;
  }

  .lrg-img-div.carpentry {
    background-position: 0%;
    height: 600px;
  }

  .lrg-img-div._5 {
    height: 650px;
  }

  .lrg-img-div.home {
    height: 450px;
  }

  .footer-info-div, .footer-info-div._1, .footer-info-div._2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-link-dropdown {
    text-align: right;
    padding-right: 10px;
    position: static;
  }

  .menu-link-dropdown:hover, .menu-link-dropdown:focus {
    background-color: var(--tan);
    color: #fff;
  }

  .menu-link-dropdown.services {
    padding-right: 10px;
  }

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

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

  .icon {
    color: var(--tan);
    display: block;
  }

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

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

  .map {
    width: 100%;
    height: 400px;
  }

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

  .hp-image {
    background-position: 50%;
    height: 450px;
  }

  .social-media-div-2 {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .slider-3 {
    height: 500px;
  }

  .right-arrow-2, .left-arrow-2 {
    margin-top: 100px;
  }

  .kitchen-image-1, .kitchen-image-2 {
    height: 400px;
  }

  .kitchen-image-3 {
    height: 450px;
  }

  .socials {
    flex-flow: column;
    inset: 34% 0% 0% auto;
  }

  .lb-img {
    height: 180px;
  }
}

@media screen and (max-width: 767px) {
  .menu-link, .menu-link.w--current {
    text-align: center;
  }

  .section {
    position: static;
  }

  .header-div {
    flex-direction: column;
  }

  .contact-info-div {
    align-items: center;
    padding-top: 5px;
  }

  .logo-div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .email-link.int-link-header {
    padding-left: 0;
  }

  .menu-div {
    width: 70%;
  }

  .navbar {
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

  .h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .h1-img {
    height: 350px;
  }

  .lrg-img-div {
    height: 550px;
  }

  .lrg-img-div.building {
    height: 800px;
  }

  .lrg-img-div.kitchen {
    height: 550px;
  }

  .lrg-img-div.carpentry {
    background-position: 20%;
    height: 650px;
  }

  .lrg-img-div._5 {
    height: 850px;
  }

  .lrg-img-div.home {
    height: 550px;
  }

  .contact-form-section, .grey-content-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-div {
    flex-direction: column;
  }

  .footerlink-div {
    padding-bottom: 80px;
  }

  .footer-info-div {
    justify-content: flex-start;
    width: 100%;
  }

  .footer-info-div._1 {
    border-width: 0 1px;
    justify-content: center;
  }

  .footer-info-div._2 {
    justify-content: center;
  }

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

  .menu-link-dropdown {
    text-align: center;
  }

  .small {
    margin-top: 5px;
  }

  .list-div {
    flex-direction: column;
  }

  .list {
    margin-bottom: 0;
  }

  .static-header {
    position: static;
  }

  .map {
    height: 250px;
  }

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

  .dropdown {
    text-align: center;
  }

  .hp-image {
    height: 400px;
  }

  .social-media-div-2 {
    text-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .slider-3 {
    height: 350px;
  }

  .right-arrow-2 {
    justify-content: flex-end;
    align-items: flex-end;
    width: 50px;
  }

  .left-arrow-2 {
    width: 50px;
  }

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

  .kitchen-image-1, .kitchen-image-2 {
    height: 350px;
  }

  .kitchen-image-3 {
    height: 375px;
  }

  .socials {
    top: 210px;
  }

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

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

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

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

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

  .icon-3, .icon-4 {
    font-size: 30px;
  }

  .areas-list {
    margin-bottom: 0;
  }

  .lb-img {
    height: 160px;
  }
}

@media screen and (max-width: 479px) {
  .menu-link {
    text-align: center;
  }

  .header-div {
    flex-direction: column;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-button {
    background-color: var(--white);
    padding-top: 3px;
    padding-bottom: 3px;
    display: flex;
  }

  .contact-info-div, .logo-div {
    align-items: center;
    width: 100%;
  }

  .email-link.int-link-header {
    text-align: center;
    font-size: 14px;
  }

  .menu-div {
    text-align: center;
    width: 100%;
  }

  .navbar {
    background-color: var(--tan);
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .menu-button-section {
    display: none;
  }

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

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

  .p.contact {
    font-size: 15px;
  }

  .contact-us-button {
    margin-top: 10px;
    margin-right: 20px;
  }

  .contact-us-button.side-button {
    margin-left: 0;
    margin-right: 10px;
  }

  .contact-us-button.w {
    margin-left: 0;
  }

  .h1-img {
    height: 250px;
  }

  .large-image-section {
    flex-direction: column;
  }

  .pinned-content-div {
    position: static;
  }

  .large-p-block {
    padding: 0;
  }

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

  .lrg-img-div {
    border-radius: 4px;
    width: 90%;
    height: 250px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 0;
  }

  .lrg-img-div.building {
    height: 250px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

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

  .lrg-img-div.carpentry {
    background-position: 50%;
    height: 250px;
    margin-top: 30px;
  }

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

  .lrg-img-div.home {
    height: 250px;
  }

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

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

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

  .footer-div {
    flex-direction: column;
    align-items: center;
  }

  .footer-info-div {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer-info-div._1 {
    border-width: 0 1px;
  }

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

  .menu-link-dropdown {
    text-align: center;
  }

  .small {
    font-size: 20px;
    line-height: 28px;
  }

  .map {
    height: auto;
  }

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

  .hp-image {
    height: 250px;
  }

  .social-media-div-2 {
    flex-direction: row;
    margin-top: 0;
  }

  .slide-nav {
    display: block;
  }

  .right-arrow-2, .left-arrow-2 {
    display: none;
  }

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

  .kitchen-grid {
    margin-bottom: 0;
  }

  .kitchen-image-1 {
    height: 250px;
    margin-bottom: 30px;
  }

  .kitchen-image-2 {
    height: 250px;
  }

  .kitchen-image-3 {
    height: 250px;
    margin-bottom: 30px;
  }

  .socials {
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    inset: 26% 0% 0% auto;
  }

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

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

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

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

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

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

  .lb-img {
    height: 150px;
  }
}

#w-node-_6f6c7e99-fe37-ae4a-5614-ced35b21a292-30157ead, #w-node-_6f6c7e99-fe37-ae4a-5614-ced35b21a293-30157ead, #w-node-c03cee40-df7f-95c4-1b64-a2a4ae22171e-30157ead, #w-node-c03cee40-df7f-95c4-1b64-a2a4ae22171f-30157ead, #w-node-_6f6c7e99-fe37-ae4a-5614-ced35b21a298-30157ead, #w-node-_6f6c7e99-fe37-ae4a-5614-ced35b21a299-30157ead, #w-node-e4b7556d-bdcf-990b-17e6-9be4d0c47f42-30157ead, #w-node-_561afc0d-62b8-673a-074a-b32f5ba383fc-30157ead, #w-node-fb772f17-dcab-7177-a615-1d84226662dc-30157ead, #w-node-_937e3162-c252-ae3a-445d-4be2ae82cb45-d6fed567, #w-node-_5e0d207b-636e-fe85-7601-009445c63ab0-d6fed567, #w-node-c2058ef6-fedb-4cfb-0837-0aaf2eacf492-db0597b3, #w-node-dff280d1-bac5-4569-7f3d-ac1afc0eaefe-db0597b3, #w-node-_58eacb17-e16a-1372-218a-9d90fa28abb6-7394084b, #w-node-_0508aa93-16da-b25c-e6a3-b0817b08e24a-7394084b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-e4b7556d-bdcf-990b-17e6-9be4d0c47f42-30157ead, #w-node-_561afc0d-62b8-673a-074a-b32f5ba383fc-30157ead, #w-node-_8341a17f-cccd-6eb2-dd52-d64fe4c2e238-30157ead, #w-node-_937e3162-c252-ae3a-445d-4be2ae82cb45-d6fed567, #w-node-_5e0d207b-636e-fe85-7601-009445c63ab0-d6fed567, #w-node-c2058ef6-fedb-4cfb-0837-0aaf2eacf492-db0597b3, #w-node-dff280d1-bac5-4569-7f3d-ac1afc0eaefe-db0597b3, #w-node-_58eacb17-e16a-1372-218a-9d90fa28abb6-7394084b, #w-node-_0508aa93-16da-b25c-e6a3-b0817b08e24a-7394084b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e4b7556d-bdcf-990b-17e6-9be4d0c47f42-30157ead, #w-node-_8341a17f-cccd-6eb2-dd52-d64fe4c2e238-30157ead {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-e4b7556d-bdcf-990b-17e6-9be4d0c47f42-30157ead, #w-node-_561afc0d-62b8-673a-074a-b32f5ba383fc-30157ead, #w-node-_8341a17f-cccd-6eb2-dd52-d64fe4c2e238-30157ead {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@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 Sharp 400';
  src: url('../fonts/fa-sharp-regular-400.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 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 100';
  src: url('../fonts/fa-sharp-thin-100.ttf') format('truetype');
  font-weight: 100;
  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: 'Fa V 4 Compatibility';
  src: url('../fonts/fa-v4compatibility.ttf') format('truetype');
  font-weight: 400;
  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 Sharp 300';
  src: url('../fonts/fa-sharp-light-300.ttf') format('truetype');
  font-weight: 300;
  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 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}