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

:root {
  --white: #fff;
  --primary: #000;
  --black: black;
  --light-grey: #ccc;
  --secondary: #474747;
  --50-black: #00000080;
  --transparent: #fff0;
  --pale-grey: #ddd;
}

.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-color: var(--white);
  color: var(--primary);
  font-family: Bitter, serif;
  font-size: 16px;
  line-height: 26px;
}

.announcement-contact {
  background-color: var(--black);
  color: var(--white);
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 5px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.announcement-contact:hover {
  color: var(--light-grey);
}

.announcement-bar {
  z-index: 100;
  background-color: var(--white);
  color: var(--secondary);
  padding-top: 1px;
  padding-bottom: 1px;
  position: sticky;
  inset: 0% 0% auto;
  box-shadow: 0 0 3px #0003;
}

.announcement-link {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.announcement-link:hover {
  color: var(--secondary);
}

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

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

.container._2col {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.announcement-icon {
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-family: "Fa 300", sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
}

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

.announcement-contact-info.margin-right-20 {
  margin-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.top-div {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.nav-menu {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.menu-link {
  background-color: var(--black);
  color: var(--white);
  border-left: 5px solid #0000;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 500;
  transition: all .2s ease-in-out;
}

.menu-link:hover {
  border-left: 5px solid var(--50-black);
  background-color: var(--secondary);
}

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

.brand.w--current {
  z-index: 0;
}

.brand.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: 41px;
  overflow: visible;
}

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

.nav-link:hover {
  border-bottom-color: var(--secondary);
  background-color: #0000;
}

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

.dropdown-link {
  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-link:hover {
  color: var(--primary);
  background-color: #0000;
}

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

.nav {
  margin-left: auto;
}

.nav-bar {
  background-color: #0000;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.navbar {
  z-index: 100;
  background-color: var(--black);
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}

.slider-arrow {
  background-color: var(--black);
  border-radius: 6px;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  transition: all .2s ease-in-out;
  display: none;
}

.slider-arrow:hover {
  background-color: var(--white);
  color: var(--black);
}

.slide {
  background-image: linear-gradient(#00000059, #00000059), url('../images/Main-Banner.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-content {
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.button {
  border: 1px solid var(--secondary);
  background-color: var(--white);
  color: var(--black);
  border-radius: 4px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

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

.button.black {
  border: 1px solid var(--white);
  background-color: var(--primary);
  color: var(--white);
  margin-left: 20px;
}

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

.slider-inner-content {
  z-index: 2;
  background-color: var(--50-black);
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.hero-slider {
  min-height: 80vh;
  position: static;
}

.hero-text {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.arrow-icon {
  font-size: .6em;
}

.top-text {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
}

.btn-wrapper {
  margin-top: 20px;
  padding-top: 0;
}

.list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  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.white {
  color: var(--white);
}

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

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

.list.centred {
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
}

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

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

.heading-2-title {
  margin-top: 0;
  margin-bottom: 0;
}

.heading-2-title.white {
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 400;
}

.bullet-block-title {
  color: #212529;
  text-align: left;
  width: 100%;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.75;
}

.bullet-list-services {
  background-color: var(--pale-grey);
  padding-top: 100px;
  padding-bottom: 100px;
}

.bullet-list-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: 60px;
  display: grid;
}

.list-item {
  align-items: center;
  list-style-type: none;
  display: flex;
}

.bullet-block-btn {
  background-color: var(--black);
  color: var(--white);
  border-radius: 4px;
  margin-top: auto;
  padding: 10px 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.bullet-block-btn:hover {
  background-color: var(--secondary);
}

.bullet-block {
  background-color: var(--white);
  text-align: left;
  border-radius: 10px;
  flex-flow: column;
  align-items: flex-start;
  padding: 30px;
  transition: all .2s ease-in-out;
  display: flex;
  box-shadow: 1px 1px 3px #0000000d;
}

.bullet-block:hover {
  box-shadow: 0 5px 15px 2px #0000004d;
}

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

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

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

.h3-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.h3 {
  color: var(--white);
  padding-right: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
}

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

.h3-cta-call-btn {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  margin-right: 20px;
  padding: 15px 28px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline;
}

.h3-cta-call-btn.btn-outline {
  border: 1px solid var(--light-grey);
  color: var(--white);
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.h3-cta-call-btn.btn-outline:hover {
  color: var(--black);
  background-color: #fdfdfd;
}

.map-section {
  margin-bottom: -10px;
}

.footer-col {
  flex-flow: column;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.bottom-link {
  color: var(--white);
  cursor: pointer;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.bottom-link:hover {
  color: var(--light-grey);
}

.contact-block {
  border-right: 1px solid var(--secondary);
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 33.3333%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.contact-block._1 {
  justify-content: center;
}

.contact-block._2 {
  border-right-width: 0;
  justify-content: center;
}

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

.footer-section {
  border-top: 1px solid var(--secondary);
  background-color: var(--black);
  padding-top: 60px;
  padding-bottom: 0;
}

.footer-menu-text {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

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

.footer-contact-info {
  border: 1px solid var(--secondary);
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  display: flex;
}

.contact-icon {
  background-color: var(--white);
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  font-family: "Fa 400", sans-serif;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1;
  display: flex;
}

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

.contact-info-link.right {
  border-left: 1px solid var(--white);
  margin-left: 10px;
  padding-left: 10px;
}

.footer-copy {
  border-top: 1px solid #ffffff17;
  margin-top: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.scroll-up {
  z-index: 1000;
  border: 1px solid var(--pale-grey);
  background-color: var(--black);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 10px 90px 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 {
  padding-top: 60px;
  padding-bottom: 0;
}

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

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

.img-box._1 {
  background-image: url('../images/maison-google-2.webp');
}

.img-box._2 {
  background-image: url('../images/kitchen_370093579.webp');
}

.img-box._3 {
  background-image: url('../images/kitchen_712462391.webp');
}

.img-box._4 {
  background-image: url('../images/kitchen_447989202.webp');
}

.img-box._5 {
  background-image: url('../images/kitchen_141466055.webp');
}

.service-box-title {
  background-color: var(--white);
  color: var(--primary);
  text-align: center;
  border-radius: 1px;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.service-box-title.link {
  background-color: var(--black);
  color: var(--white);
  width: 120px;
  min-width: 120px;
  transition: all .3s;
}

.service-box-title.link:hover {
  background-color: var(--secondary);
}

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

.container-2 {
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 0;
}

.container-2.test-container {
  max-width: 1400px;
  padding-top: 0;
}

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

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

.test-slider {
  position: static;
}

.sub-heading {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.heading-2 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.co-logo {
  height: 150px;
}

.co-logo.header {
  height: 120px;
}

.h1 {
  color: var(--white);
  align-items: center;
  margin-top: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  display: block;
}

.h2 {
  color: var(--primary);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
}

.sub-head {
  font-size: 18px;
  font-weight: 500;
}

.button-div {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  max-width: 440px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-list {
  color: var(--white);
  text-align: center;
  font-size: 14px;
  line-height: 24px;
}

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

.backtotop {
  height: 0;
}

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

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

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

.section-2-text.grey {
  background-color: var(--secondary);
}

.section-2-text.grey._100 {
  padding-left: 0;
  padding-right: 0;
}

.section-2-text._100 {
  width: 100%;
}

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

.img-div.home1 {
  background-image: url('../images/kitchen_660650533.webp');
}

.img-div.home2 {
  background-image: url('../images/kitchen_646066330.webp');
}

.img-div.commercial {
  background-image: url('../images/commercial_628594069.webp');
}

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

.img-div.carpentry {
  background-image: url('../images/stairs_186425799.webp');
}

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

.container-3 {
  z-index: 1;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.intro-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro-img.home {
  background-image: url('../images/Home-1.webp');
}

.intro-img.domestic {
  background-image: url('../images/kitchen_427117255.webp');
}

.intro-img.commercial {
  background-image: url('../images/office_441997252.webp');
  background-position: 70%;
}

.intro-img.carpentry {
  background-image: url('../images/kitchen_305524509.webp');
}

.h1-light {
  font-weight: 400;
}

.into-content {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.btn {
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

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

.heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
}

.about-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.p {
  width: 100%;
  font-size: 16px;
}

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

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

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

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

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

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

.area-map {
  filter: grayscale(70%);
}

.bg-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 650px;
}

.bg-img.domestic {
  background-image: url('../images/kitchen_326684316.webp');
}

.bg-img.home {
  background-image: url('../images/kitchen_138081021.webp');
}

.bg-img.carpentry {
  background-image: url('../images/kitchen_591311375.webp');
}

.bg-img.comercial {
  background-image: url('../images/commercial_627853212.webp');
}

.icon-2 {
  margin-right: 15px;
}

.hero-text-small {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.hero-div {
  border: 1px solid var(--white);
  padding: 20px;
}

.hero-small {
  color: var(--white);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

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

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

.h2-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

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

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

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

.fs-cc-banner_close-icon {
  width: 24px;
  height: 24px;
}

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

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

.fs-cc-banner_button.fs-cc-button-alt {
  color: #4353ff;
  background-color: #f5f5f5;
  border-color: #4353ff;
}

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

.fs-cc-prefs_title {
  color: #021a69;
  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-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  margin-left: 12px;
  padding: 10px;
  box-shadow: 1px 1px 12px #0000001a;
}

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

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

.fs-cc-prefs_button.fs-cc-button-alt {
  color: #4353ff;
  background-color: #fff;
  border-color: #4353ff;
}

.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: #021a69;
  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: #4353ff;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-banner_text-link {
  color: #4353ff;
  border-bottom: 2px solid #4353ff;
  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: 998;
  background-color: #f5f6ff;
  border-top: 1px solid #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.kitchen-icon {
  width: 60px;
  margin-bottom: 10px;
}

.sticky-block {
  z-index: 10;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  min-height: 200px;
  padding-top: 0;
  display: flex;
  position: fixed;
  inset: 40% 0% 40% auto;
}

.sticky-sm {
  border: 1px solid var(--secondary);
  background-color: var(--white);
  color: var(--black);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 35px;
  min-width: 35px;
  height: 35px;
  min-height: 35px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.sticky-sm:hover {
  background-color: var(--light-grey);
  color: var(--black);
}

.divider {
  width: 400px;
  margin-bottom: 30px;
}

.divider.white {
  width: 200px;
  margin-bottom: 20px;
}

.areas-list {
  padding-left: 0;
}

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

.areas-list-item.areas-list-flex {
  border-bottom: 1px solid #5f5f511f;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.font-icon {
  background-color: var(--primary);
  color: #fff;
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  display: flex;
}

.google-maps {
  width: 100%;
  margin-top: 40px;
}

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

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

.contact-div {
  justify-content: space-between;
  display: flex;
}

.contact-map {
  width: 48.5%;
  height: 100%;
}

.contact-form {
  width: 48.5%;
}

.site-map-link {
  color: var(--primary);
  font-size: 16px;
  text-decoration: none;
}

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

.list-container._350 {
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 350px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.list-container._450 {
  width: auto;
  min-width: 450px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.list-container._300 {
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 300px;
  padding-top: 20px;
  padding-bottom: 20px;
}

._3-col-div {
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  display: flex;
}

._3-col-img {
  border: 2px solid var(--white);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 40%;
  min-height: 250px;
}

._3-col-img.dom1 {
  background-image: url('../images/kitchen_306648162.webp');
}

._3-col-img.dom2 {
  background-image: url('../images/kitchen_652886135.webp');
}

._3-col-img.carpentry1 {
  background-image: url('../images/bookcase_547059431.webp');
  background-position: 0%;
}

._3-col-img.carpentry2 {
  background-image: url('../images/stairs_287868788.webp');
}

._3-col-img.comm1 {
  background-image: url('../images/commercial_55084483.webp');
}

._3-col-img.comm2 {
  background-image: url('../images/commercial_170482288.webp');
}

._3-col-img.camberley {
  background-image: url('../images/kitchen_222925069.webp');
}

._3-col-img.camberley2 {
  background-image: url('../images/kitchen_407894949.webp');
}

._5-col-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 30px;
}

.box-div {
  border: 1px solid var(--secondary);
  background-color: var(--white);
  padding: 30px;
}

.box-div.img {
  background-image: url('../images/kitchen_305524509.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-width: 0;
}

.box-heading {
  text-align: center;
  margin-top: 0;
  font-size: 18px;
  line-height: 28px;
}

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

@media screen and (min-width: 1920px) {
  .test-slider {
    position: static;
  }

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

@media screen and (max-width: 991px) {
  .announcement-contact {
    display: none;
  }

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

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

  .announcement-contact-info.margin-right-20 {
    flex: none;
  }

  .top-div {
    flex-direction: row;
    justify-content: center;
  }

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

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

  .menu-link {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    font-size: 15px;
    line-height: 25px;
  }

  .menu-link:hover {
    border-left-color: var(--secondary);
    background-color: var(--secondary);
    padding-left: 10px;
  }

  .brand.w--current {
    margin-right: auto;
  }

  .dropdown-list.w--open {
    border-radius: 0;
    margin-top: 0;
    position: relative;
  }

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

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

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

  .dropdown-link {
    color: #fff;
    border-bottom: 1px solid #0000000d;
    border-radius: 0;
    width: 100%;
  }

  .dropdown-link:hover {
    color: #fff;
    background-color: #ef233c;
    border-radius: 0;
  }

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

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

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

  .burger-menu {
    color: var(--white);
  }

  .nav-toggle {
    border-radius: 6px;
    flex-flow: column;
    align-items: center;
    margin-right: 10px;
  }

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

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

  .nav-bar {
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-content {
    width: 70%;
  }

  .hero-text {
    font-size: 1.5em;
  }

  .btn-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .heading-2-title.white {
    font-size: 30px;
  }

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

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

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

  .bullet-block {
    padding: 20px;
  }

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

  .container-fluid.rvs {
    flex-flow: column-reverse;
  }

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

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

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

  .h3 {
    text-align: center;
    font-size: 30px;
  }

  .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;
    align-items: center;
    width: 100%;
  }

  .contact-block._1, .contact-block._2 {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-contact-info {
    flex-direction: column;
  }

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

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

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

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

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

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

  .co-logo {
    height: 80px;
  }

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

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

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

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

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

  .dropdown-toggle.w--open {
    background-color: var(--secondary);
  }

  .section-2-text {
    width: 100%;
    padding: 40px;
  }

  .section-2-text.grey {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .img-div.home2 {
    flex: 0 auto;
  }

  .intro-img {
    height: 400px;
  }

  .intro-img.commercial {
    background-position: 50%;
  }

  .into-content {
    margin-left: 0;
  }

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

  .heading {
    font-size: 38px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
  }

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

  .bg-img {
    height: 400px;
  }

  .hero-text-small {
    font-size: 1.5em;
  }

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

  .google-maps {
    width: 100%;
  }

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

  .lb-img {
    height: 180px;
  }

  .contact-div {
    flex-flow: column;
  }

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

  .contact-form {
    width: 100%;
  }

  .list-container._350, .list-container._450, .list-container._300 {
    min-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  ._3-col-div {
    justify-content: space-between;
    align-items: flex-start;
  }

  ._3-col-img {
    display: none;
  }

  ._5-col-grid {
    grid-template-columns: 1fr;
  }

  .box-div.img {
    display: none;
  }

  .box-heading {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .announcement-contact {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    padding: 20px 40px;
    display: none;
  }

  .announcement-bar {
    position: static;
  }

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

  .announcement-icon {
    width: 25px;
    height: 25px;
    display: none;
  }

  .announcement-contact-info.margin-right-20 {
    margin-right: 0;
  }

  .top-div {
    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 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 78%;
    display: flex;
  }

  .button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

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

  .heading-2-title.white {
    font-size: 28px;
    line-height: 34px;
  }

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

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

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

  .h3 {
    font-size: 26px;
    line-height: 36px;
  }

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

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

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

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

  .footer-copy {
    margin-top: 40px;
  }

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

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

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

  .container-2 {
    padding-top: 20px;
  }

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

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

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

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

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

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

  .section-2-text {
    padding: 30px;
  }

  .section-2-text.grey {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .intro-img {
    height: 300px;
  }

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

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

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

  .bg-img {
    background-attachment: scroll;
    height: 300px;
  }

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

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

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

@media screen and (max-width: 479px) {
  .announcement-contact {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: auto;
    padding: 15px 20px;
  }

  .announcement-bar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

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

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

  .announcement-contact-info.margin-right-20 {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
  }

  .top-div {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    align-items: center;
    line-height: 17px;
  }

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

  .menu-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-link.w--current {
    background-color: var(--secondary);
    color: var(--white);
  }

  .brand.w--current {
    margin-left: auto;
  }

  .brand.footer.w--current {
    margin-bottom: 10px;
    margin-left: auto;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-bar {
    flex-flow: column;
  }

  .slider-arrow {
    display: none;
  }

  .hero-content {
    width: 85%;
  }

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

  .button.black {
    margin-bottom: 0;
    margin-left: 0;
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 1.2em;
    line-height: 1.4;
  }

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

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

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

  .heading-2-title.white {
    font-size: 24px;
    line-height: 32px;
  }

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

  .bullet-list-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 30px;
  }

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

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

  .h3 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
  }

  .h3-cta-btns {
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-left: 0;
    display: grid;
  }

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

  .h3-cta-call-btn.btn-outline {
    flex: none;
    margin-top: 10px;
  }

  .footer-col {
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .bottom-link {
    margin-bottom: 5px;
  }

  .contact-block {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .contact-block._2 {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .contact-info-text {
    text-align: center;
    width: 100%;
  }

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

  .footer-menu-text {
    margin-bottom: 10px;
  }

  .contact-type-title {
    width: 100%;
  }

  .footer-contact-info {
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-icon {
    display: none;
  }

  .contact-info-link {
    line-height: 1.4;
  }

  .footer-copy {
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 60px;
  }

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

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

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

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

  .service-box-title {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 18px;
  }

  .service-box-title.link {
    text-align: center;
  }

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

  .testimonial-text {
    line-height: 1;
  }

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

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

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

  .co-logo.header {
    height: 120px;
  }

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

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

  .slide-nav-2 {
    display: none;
  }

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

  .footer-list {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
  }

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

  .section-2-text, .section-2-text.grey {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .container-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .intro-img {
    flex-direction: row;
    height: 250px;
    padding-left: 0;
    padding-right: 0;
  }

  .intro-img.home {
    margin-bottom: 0;
  }

  .into-content {
    padding-left: 0;
    padding-right: 0;
  }

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

  .heading {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 34px;
  }

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

  .bg-img {
    height: 250px;
  }

  .hero-text-small {
    font-size: 1.2em;
    line-height: 1.4;
  }

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

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

  .fs-cc-banner_close {
    position: absolute;
    inset: -22px 10px auto auto;
  }

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

  .sticky-block {
    z-index: 10;
    background-color: var(--black);
    flex-flow: row;
    justify-content: center;
    align-items: flex-end;
    min-height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    inset: auto 0% 0%;
  }

  .divider {
    margin-bottom: 20px;
  }

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

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

  .lb-img {
    height: 120px;
  }

  .box-div {
    padding: 20px;
  }
}

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

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

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

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

#w-node-_5d7a501f-c3c6-3913-bd63-bb004b5ef96b-4b5ef962 {
  place-self: end;
}

#w-node-_4906f9e2-c7bd-0adc-98dd-b9b98b65a702-aac1ffe5, #w-node-b20e5faa-5eea-5a6e-988e-f9117bfcde78-aac1ffe5, #w-node-_5d88d392-462b-51eb-e95e-0630a60e71d6-aac1ffe5, #w-node-b682a978-88a5-163d-55a1-5b90cb9a9f85-aac1ffe5, #w-node-_04387f0a-a141-8240-874a-4957197f60c4-aac1ffe5, #w-node-_5797948e-aae4-f2bf-8b70-a337fb9b4d1d-aac1ffe5, #w-node-_1951bee1-31e3-7ca0-4d8d-3ad975f547f7-aac1ffe5, #w-node-def3db58-2e73-35a7-3b0e-cb5c8253c8e5-aac1ffe5, #w-node-_7d08144f-85b1-fd2c-3d33-c5aa118d2720-aac1ffe5, #w-node-_4af7122b-2671-913a-706e-a56f4223ad19-aac1ffe5, #w-node-d4a69e96-c2b7-0035-20c6-8d48943ca2e1-aac1ffe5, #w-node-eadec6b6-4b51-40ce-a2ca-f6ac3a2ca9cb-aac1ffe5, #w-node-eed21880-1a0d-bc03-dd20-d4afc1bf71f8-aac1ffe5, #w-node-_77f718cf-5613-d694-5a8f-61ae54cbcfdd-aac1ffe5, #w-node-_21644229-4555-acdb-33af-b59e459652ea-aac1ffe5, #w-node-_96765a48-3e8d-446f-a11a-4daf6c726e43-aac1ffe5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e61b598c-a4f7-cf9e-bbcf-5b19191c9131-016dad86 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5c2d8a79-be6a-ddb2-0672-2702d5344fc8-016dad86, #w-node-_415d1e09-badc-bf29-baea-187fcd9ee3aa-016dad86, #w-node-_7d88e2a7-abf8-4f75-e4ad-5c83d46eacab-016dad86, #w-node-cded476b-b77d-6d42-365b-7865fe5f54ad-016dad86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e61b598c-a4f7-cf9e-bbcf-5b19191c9131-bf2e14fa {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

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

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

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

  #w-node-_5d7a501f-c3c6-3913-bd63-bb004b5ef96a-4b5ef962 {
    justify-self: auto;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55e7-5e6d55df {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55ec-5e6d55df {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55f1-5e6d55df {
    grid-area: span 2 / span 1 / span 2 / span 1;
    place-self: center;
  }

  #w-node-a7ac4ee1-e1b0-c663-0e14-a6f6b481349f-733a1e16 {
    justify-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5d7a501f-c3c6-3913-bd63-bb004b5ef96a-4b5ef962 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55e7-5e6d55df {
    justify-self: center;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55ec-5e6d55df {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: center;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55f1-5e6d55df {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-a7ac4ee1-e1b0-c663-0e14-a6f6b481349f-733a1e16 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }
}


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