@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: "Fa Brands 400";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #1c1515;
  --orange: #e99929;
  --yellow: #e5cb1c;
  --white: #fff;
  --light-grey: #bebebe;
  --white-smoke: #f5f5f5;
  --checkatrade-blue: #0058a2;
  --checkatrade-red: #eb1f40;
  --yell-yellow: #fdd900;
}

.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 {
  color: var(--black);
  font-family: Work Sans, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
}

.contact-button {
  background-color: var(--black);
  color: #fff;
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 5px 20px;
  font-family: Comfortaa, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.contact-button:hover {
  color: var(--orange);
}

.announcement-bar {
  z-index: 200;
  background-image: linear-gradient(to bottom, var(--yellow), var(--orange));
  padding-top: 1px;
  padding-bottom: 1px;
  position: sticky;
  inset: 0% 0% auto;
}

.announcement-link {
  color: var(--black);
  text-decoration: none;
  transition: all .3s ease-in-out;
}

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

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

.announcement-icon {
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-family: "Fa solid 900", sans-serif;
  display: flex;
}

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

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

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

.icon {
  margin-right: 10px;
}

.header-social-media {
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  display: flex;
}

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

.nav-menu.margin-auto {
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.dropdown-ink {
  background-color: var(--black);
  color: var(--white);
  border-left: 5px solid #0000;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Comfortaa, sans-serif;
  font-weight: 500;
  transition: all .2s ease-in-out;
}

.dropdown-ink:hover {
  border-left: 5px solid var(--orange);
  color: var(--orange);
}

.dropdown-ink.w--current {
  color: var(--orange);
}

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

.brand.footer {
  margin-bottom: 10px;
}

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

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

.nav-link {
  color: var(--white);
  padding: 10px;
  font-family: Comfortaa, sans-serif;
  font-weight: 400;
  transition: all .3s ease-in-out;
}

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

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

.header-social-icon {
  border: 1px solid var(--light-grey);
  color: var(--white);
  background-color: #0000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  font-family: "Fa Brands 400", sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.header-social-icon:hover {
  border-color: var(--orange);
  background-color: var(--orange);
  background-image: linear-gradient(180deg, var(--yellow), var(--orange));
}

.header-social-icon.check {
  padding: 7px;
}

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

.nav {
  text-align: center;
  margin-left: auto;
  margin-right: 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: 20px;
  padding-bottom: 20px;
  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: inline-block;
}

.slider-arrow:hover {
  background-color: var(--orange);
  background-image: linear-gradient(to bottom, var(--yellow), var(--orange));
}

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

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

.button {
  background-image: linear-gradient(180deg, var(--yellow), var(--orange));
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-left: 0;
  padding: 15px 40px 12px;
  font-family: Comfortaa, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 23px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

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

.button._20l {
  margin-left: 20px;
  margin-right: 0;
}

.hero-div {
  z-index: 2;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.hero-slider {
  background-color: var(--black);
  height: 80vh;
  min-height: 700px;
  position: static;
}

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

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

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

.default-btn {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  margin-top: 10px;
  padding: 15px 40px 14px;
  font-family: Comfortaa, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 23px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.default-btn:hover {
  border-color: var(--white);
  color: var(--yellow);
}

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

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

.top-text {
  color: var(--black);
  margin-bottom: 15px;
  font-family: Comfortaa, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

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

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

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

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

.right-section {
  box-shadow: 11px -11px 0 0 var(--orange);
  align-self: stretch;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.img-div {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: static;
}

.img-div.home {
  background-image: url('../images/gal-7.webp');
}

.img-div.garage {
  background-image: url('../images/gal-23.webp');
  justify-content: center;
  align-items: center;
}

.img-div.building {
  background-image: url('../images/gal-11.webp');
}

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

.img-div.refurbs {
  background-image: url('../images/gal-31.webp');
}

.img-div.reno {
  background-image: url('../images/gal-4.webp');
}

.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._2col {
  grid-template-columns: 1fr 1fr;
}

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

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

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

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

.card-icon {
  border: 2px solid var(--black);
  background-image: linear-gradient(180deg, var(--yellow), var(--orange));
  color: var(--black);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  margin-right: 8px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.card-icon.black {
  border-color: var(--black);
  background-color: var(--white);
  color: var(--black);
  background-image: none;
}

.body-div.centre {
  text-align: center;
}

.bullet-block-title {
  border-bottom: 1px solid var(--light-grey);
  color: var(--black);
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-family: Comfortaa, sans-serif;
  font-size: 20px;
}

.bullet-list-services {
  background-color: var(--white-smoke);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.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: 40px;
  display: grid;
}

.list-item {
  color: #838383;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500;
  list-style-type: none;
  display: flex;
}

.bullet-block-btn {
  background-color: var(--orange);
  background-image: linear-gradient(180deg, var(--yellow), var(--orange));
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: auto;
  padding: 10px 20px 8px;
  font-family: Comfortaa, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

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

.bullet-block {
  background-color: var(--white);
  box-shadow: 0 6px 12px 0 var(--light-grey);
  text-align: left;
  border-radius: 4px;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  transition: all .2s ease-in-out;
  display: flex;
}

.bullet-block:hover {
  transform: translate(0, -5px);
}

.bullet-heading {
  color: var(--black);
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  display: flex;
}

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

.container-fluid.reverse {
  flex-direction: row-reverse;
  display: flex;
}

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

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

.left-img.home {
  background-image: url('../images/gal-17.webp');
}

.left-img.building {
  background-image: url('../images/gal-8.webp');
}

.left-img.refurbs {
  background-image: url('../images/gal-34.webp');
}

.left-img.garage {
  background-image: url('../images/gal-24.webp');
  background-position: 50%;
}

.left-img.home1 {
  background-image: url('../images/gal-36.webp');
}

.left-img.building2 {
  background-image: url('../images/gal-6.webp');
}

.left-img.refurbs2 {
  background-image: url('../images/gal-2.webp');
}

._2-col-section {
  padding-top: 0;
  padding-bottom: 0;
}

.orange-div {
  background-color: var(--orange);
  background-image: linear-gradient(180deg, var(--yellow), var(--orange));
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 60px 0;
  display: flex;
  position: relative;
}

.orange-div._100 {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.h3-section {
  background-color: var(--orange);
  background-image: linear-gradient(to bottom, var(--yellow), var(--orange));
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

.h3 {
  color: var(--black);
  padding-right: 0;
  font-family: Comfortaa, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
}

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

.h3-cta-call-btn {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  margin-right: 20px;
  padding: 15px 20px;
  font-family: Comfortaa, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline;
}

.h3-cta-call-btn:hover {
  border-color: var(--white);
  background-color: var(--black);
  color: var(--white);
}

.h3-cta-call-btn.btn-outline {
  border: 1px solid var(--black);
  background-color: var(--orange);
  color: var(--black);
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Comfortaa, sans-serif;
  display: flex;
}

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

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

.contact-block-1 {
  border-right: 1px solid #fff3;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 33%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  display: flex;
}

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

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

.footer-sm:hover {
  border-color: var(--white);
  background-color: var(--black);
  color: var(--white);
}

.footer-sm.check {
  padding: 7px;
}

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

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

.footer-menu-text {
  color: #fff;
  margin-bottom: 20px;
  font-family: Comfortaa, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.contact-type-title {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: Comfortaa, sans-serif;
  font-weight: 700;
}

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

.contact-icon {
  background-color: var(--orange);
  color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  margin-right: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
}

.contact-info-link {
  color: var(--white);
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
  display: inline-block;
}

.footer-copy {
  border-top: 1px solid #ffffff17;
  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 {
  cursor: pointer;
  font-size: 13px;
  font-weight: 300;
  line-height: 23px;
  transition: all .2s ease-in-out;
}

.footer-copy-link:hover {
  color: #fff;
}

.scroll-up {
  z-index: 10;
  border: 1px solid var(--white);
  background-color: var(--orange);
  background-image: linear-gradient(180deg, var(--yellow), var(--orange));
  color: var(--black);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: fixed;
  inset: auto auto 80px 10px;
}

.scroll-up:hover {
  background-color: var(--black);
  color: var(--white);
  background-image: none;
}

.scroll-arrow-up {
  justify-content: center;
  align-items: center;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  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;
}

.box-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;
  justify-content: center;
  align-items: flex-end;
  min-height: 350px;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.box-img._1 {
  background-image: url('../images/gal-29.webp');
  background-position: 50%;
}

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

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

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

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

.service-box-title {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  font-family: Comfortaa, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.service-box-title.link {
  background-color: var(--orange);
  background-image: linear-gradient(180deg, var(--yellow), var(--orange));
  color: var(--black);
  border-radius: 0 100px 100px 0;
  justify-content: center;
  align-items: center;
  width: 30%;
  padding-left: 10px;
  padding-right: 15px;
  font-weight: 700;
  display: flex;
}

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

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

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

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

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

.testimonial-div {
  border: 1px solid var(--light-grey);
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.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;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

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

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

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

.test-slide {
  background-color: #fff;
  height: auto;
}

.testimonials {
  padding-top: 100px;
  padding-bottom: 0;
}

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

.test-slider {
  position: static;
}

.sub-heading {
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: Comfortaa, sans-serif;
  font-weight: 700;
}

.block-quote {
  border-left-style: none;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  font-size: 15px;
  line-height: 25px;
}

.heading-2 {
  color: #292d33;
  margin-top: 0;
  margin-bottom: 10px;
  padding-right: 0;
  font-family: Comfortaa, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.slider {
  background-color: var(--white);
  width: 100%;
  max-width: 1400px;
  height: auto;
  position: static;
}

.page-top {
  background-image: linear-gradient(#0006, #0006), url('../images/kitchen_294173684.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  display: flex;
}

.co-logo {
  width: 240px;
}

.hero-title {
  color: #fff;
  text-transform: uppercase;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Comfortaa, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  display: block;
}

.p {
  text-align: left;
  width: 100%;
  font-weight: 400;
}

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

.p.centre {
  color: var(--black);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
}

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

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

.top-h1 {
  background-image: linear-gradient(180deg, var(--yellow), var(--orange));
  color: var(--orange);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Comfortaa, sans-serif;
  font-size: 40px;
  line-height: 46px;
}

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

.sub-head {
  margin-bottom: 15px;
  font-family: Comfortaa, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.h2-title {
  justify-content: center;
  width: 90%;
  display: flex;
}

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

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

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

.h2-white {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Comfortaa, sans-serif;
  line-height: 42px;
}

.footer-list {
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 23px;
}

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

.backtotop {
  height: 0;
}

.dropdown-toggle {
  color: var(--white);
  letter-spacing: 0;
  padding: 10px 30px 10px 10px;
  font-family: Comfortaa, sans-serif;
  font-weight: 400;
  transition: all .3s;
}

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

.hero-txt {
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 3px 4px 6px var(--black);
  margin: 15px auto;
  font-family: Comfortaa, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
}

.phone-container, .top-contact-div {
  align-items: center;
  display: flex;
}

.bottom-text {
  color: #fff;
}

.bottom-text.light {
  font-family: Comfortaa, sans-serif;
}

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

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

.chat-section {
  background-color: var(--orange);
  background-image: linear-gradient(to bottom, var(--yellow), var(--orange));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: 2px auto auto 2px;
}

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

.whatsapp-container {
  z-index: 30;
  background-color: var(--black);
  cursor: pointer;
  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: var(--orange);
  transform: scale(1.05);
}

.livechat-button {
  border: 1px solid var(--white);
  background-color: var(--black);
  color: var(--white);
  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 {
  border-color: var(--white);
  background-color: var(--black);
  color: var(--orange);
  background-image: none;
}

.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: var(--black);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

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

.live-chat-bottom-text {
  color: var(--white-smoke);
  font-size: 10px;
}

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

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

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

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

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

.h2 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Comfortaa, sans-serif;
  line-height: 42px;
}

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

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

.form-img {
  background-image: url('../images/buildana-12.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 48.5%;
  min-height: 300px;
}

.form {
  width: 48.5%;
}

.abs-link {
  width: 0;
  height: 0;
  margin-top: -40px;
  position: absolute;
  inset: 0% auto auto 0%;
}

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

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

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

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

.hyperlink {
  box-shadow: inset 0 -1px 0 0 var(--orange);
  color: var(--black);
  margin-left: 0;
  margin-right: 0;
  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(--orange);
  color: var(--white);
}

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

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

.testimonials-div {
  border: 1px solid var(--light-grey);
  background-color: var(--white-smoke);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 25px 30px 20px;
}

.testimonial-text {
  text-align: left;
  width: 100%;
  margin-bottom: 0;
}

.testimonial-date {
  border-top: 1px solid var(--light-grey);
  text-align: right;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 10px;
}

.testimonial-title {
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.check-button {
  border-style: solid;
  border-width: 1px 10px;
  border-color: var(--checkatrade-blue);
  background-color: var(--checkatrade-red);
  box-shadow: inset 0 0 0 0 var(--checkatrade-blue);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-left: 0;
  padding: 15px 40px 12px;
  font-family: Comfortaa, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 23px;
  text-decoration: none;
  transition: all .5s;
  display: inline-block;
}

.check-button:hover {
  box-shadow: inset 500px 0 0 0 var(--checkatrade-blue);
}

.yell-button {
  border-style: solid;
  border-width: 1px 10px;
  border-color: var(--black);
  background-color: var(--yell-yellow);
  box-shadow: inset 0 0 0 0 var(--black);
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-left: 20px;
  padding: 15px 40px 12px;
  font-family: Comfortaa, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 23px;
  text-decoration: none;
  transition: all .5s;
  display: inline-block;
}

.yell-button:hover {
  box-shadow: inset 500px 0 0 0 var(--black);
  color: var(--white);
}

.checkatrade-score {
  border: 2px solid var(--checkatrade-blue);
  background-color: var(--white);
  color: var(--checkatrade-blue);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  display: flex;
}

.checkatrade-review-logo {
  width: 130px;
  margin-top: 10px;
  margin-right: 10px;
}

.review-score-div {
  align-items: flex-end;
  margin-bottom: 20px;
  display: flex;
}

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

.contact-div-block {
  background-image: linear-gradient(to bottom, var(--yellow), var(--orange));
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Comfortaa, sans-serif;
  text-decoration: none;
  display: flex;
}

.contact-us-icon {
  border: 5px solid var(--orange);
  background-color: var(--white);
  color: var(--black);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  min-height: 80px;
  margin-top: -40px;
  margin-bottom: 30px;
  padding: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 30px;
  line-height: 50px;
  display: flex;
  box-shadow: 0 3px 6px #00000080;
}

.contact-text {
  color: var(--black);
  text-align: center;
  font-family: Comfortaa, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.contact-title {
  border-bottom: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Comfortaa, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
}

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

.hero-txt-small {
  color: var(--white);
  margin: 0 auto;
  font-family: Comfortaa, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.instagram {
  border-bottom: 1px solid var(--light-grey);
}

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

.sticky-sm {
  z-index: 100;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  padding-top: 0;
  display: flex;
  position: fixed;
  inset: 30% 0% 60% auto;
}

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

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

.sticky-sm-icon.check {
  padding: 7px;
}

.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 {
  border: 2px solid var(--orange);
  background-color: var(--orange);
  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(--orange);
  color: var(--orange);
  background-color: #f5f5f5;
}

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

.fs-cc-prefs_title {
  color: var(--black);
  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 {
  border: 2px solid var(--orange);
  background-color: var(--orange);
  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(--orange);
  color: var(--orange);
  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: var(--black);
  width: 16px;
  height: 16px;
  display: flex;
}

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

.fs-cc-prefs_text {
  color: var(--black);
  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(--orange);
  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(--orange);
  color: var(--orange);
  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: var(--white-smoke);
  border-top: 1px solid #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.h1 {
  background-image: linear-gradient(180deg, var(--yellow), var(--orange));
  color: var(--orange);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Comfortaa, sans-serif;
  font-size: 30px;
  line-height: 40px;
}

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

._3-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

._3-col-grid._40t {
  margin-top: 40px;
}

._3-col-div {
  border: 2px solid var(--light-grey);
  background-color: var(--white);
  padding: 30px;
  transition: all .3s;
}

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

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

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

.team-block {
  z-index: 3;
  border: 1px solid var(--orange);
  background-color: var(--black);
  border-top-left-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.lightbox-link {
  width: 100%;
  height: 360px;
  position: relative;
}

.team-grid {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-top: 0;
  padding: 40px;
}

.p-5 {
  color: #111;
  width: 100%;
  margin-bottom: 0;
  font-size: 1.1em;
  line-height: 1.7em;
}

.p-5.price-text {
  color: #000;
  font-weight: 400;
  line-height: 2;
}

.team-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.team-line-side {
  background-color: #fff;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 34px;
}

.team-line-bottom {
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 32px;
}

.team-text {
  margin-top: 32px;
}

.team-name {
  color: #000;
  letter-spacing: -.04em;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Comfortaa, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 32px;
}

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

  .test-slider {
    position: static;
  }

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

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

  .slider {
    width: 100%;
  }

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

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

  .whatsapp-chat {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .container.announcement-container, .container.nav-fluid {
    width: 95%;
  }

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

  .announcement-wrapper {
    flex-direction: row;
  }

  .icon {
    margin-right: 20px;
  }

  .header-social-media {
    justify-content: space-around;
  }

  .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: 20px;
  }

  .dropdown-ink {
    background-color: #0000;
    border-left-width: 0;
    padding: 10px;
  }

  .dropdown-ink:hover {
    background-color: var(--orange);
    color: var(--white);
    border-left-width: 0;
  }

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

  .nav-link {
    color: #fff;
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .header-social-icon {
    margin-right: 5px;
  }

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

  .dropdown-link:hover {
    background-color: var(--orange);
    color: #fff;
  }

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

  .burger-menu {
    color: var(--white);
    margin-top: 3px;
  }

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

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

  .nav {
    background-color: var(--black);
    height: 100%;
    padding: 10px;
  }

  .nav-bar {
    justify-content: space-between;
  }

  .hero-content {
    width: 80%;
    max-width: 80%;
  }

  .hero-slider {
    height: 600px;
    min-height: auto;
  }

  .section-h1-wrapper.display-flex {
    flex-direction: column-reverse;
  }

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

  .left-section {
    width: 100%;
  }

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

  .right-section {
    width: 100%;
    margin-bottom: 40px;
  }

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

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

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

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

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

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

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

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

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

  .left-img {
    width: 100%;
    min-height: 500px;
  }

  .orange-div {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .orange-div._100, .h3-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

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

  .h3 {
    text-align: center;
    font-size: 28px;
    line-height: 38px;
  }

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

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

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

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

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

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

  .service-box-title.link {
    min-width: 90px;
    padding-left: 5px;
    padding-right: 10px;
  }

  .quote-symbol {
    display: none;
  }

  .left-arrow {
    bottom: -30%;
    left: auto;
    right: 15%;
  }

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

  .right-arrow {
    inset: auto 0% -30% auto;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 120px;
  }

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

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

  .slider {
    margin-bottom: 0;
    position: relative;
  }

  .page-top {
    min-height: 280px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 38px;
  }

  .p.centre, .top-h1, .sub-head {
    text-align: left;
  }

  .container-block {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 90%;
    max-width: 1400px;
    display: flex;
  }

  .dropdown-toggle {
    width: 100%;
  }

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

  .hero-txt {
    font-size: 50px;
    line-height: 60px;
  }

  ._2-col-div {
    flex-direction: column;
  }

  .form-img {
    display: none;
  }

  .form {
    width: 100%;
  }

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

  .google-maps {
    width: 100%;
  }

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

  .lb-img {
    height: 180px;
  }

  .grid {
    grid-row-gap: 70px;
    grid-template-columns: 1fr 1fr;
  }

  .contact-div-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-us-icon {
    margin-bottom: 20px;
  }

  .contact-title {
    margin-bottom: 15px;
  }

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

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

@media screen and (max-width: 767px) {
  .contact-button {
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

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

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

  .announcement-icon {
    width: 25px;
    height: 25px;
    margin-left: 5px;
    margin-right: 0;
  }

  .announcement-icon._0l {
    margin-left: 0;
  }

  .contact-info {
    justify-content: center;
  }

  .contact-info.margin-right-20 {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .announcement-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
  }

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

  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 72%;
    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;
  }

  .button._20l {
    margin-left: 10px;
  }

  .hero-slider {
    height: 550px;
  }

  .default-btn {
    flex-direction: row;
    width: 42%;
    display: flex;
  }

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

  .right-section {
    box-shadow: none;
  }

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

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

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

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

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

  .orange-div, .orange-div._100, .h3-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

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

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

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

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

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

  .contact-type-title {
    margin-bottom: 0;
  }

  .contact-info-link {
    font-size: 15px;
    line-height: 25px;
  }

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

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

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

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

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

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

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

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

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

  .testimonials {
    padding-top: 40px;
    padding-bottom: 80px;
  }

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

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

  .page-top {
    min-height: 250px;
  }

  .hero-title {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 30px;
  }

  .p {
    margin-bottom: 10px;
  }

  .top-h1._30b {
    font-size: 30px;
    line-height: 40px;
  }

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

  .hero-txt {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 46px;
  }

  .phone-container {
    justify-content: center;
  }

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

  .abs-link {
    margin-top: 0;
  }

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

  .lb-img {
    height: 150px;
  }

  .testimonial-title {
    margin-bottom: 10px;
  }

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

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

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

  .contact-div-block {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-us-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    min-height: 70px;
    margin-top: -35px;
  }

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

  .contact-title, .site-map-link {
    margin-bottom: 10px;
  }

  .hero-txt-small {
    margin-bottom: 20px;
    line-height: 28px;
  }

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

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

  ._3-col-grid._40t, .team-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .contact-button {
    width: 100%;
  }

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

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

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

  .contact-info.margin-right-20 {
    text-align: center;
    font-size: 14px;
  }

  .announcement-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    line-height: 17px;
  }

  .icon {
    margin-right: 10px;
  }

  .header-social-media {
    width: 100%;
    max-width: 120px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-menu.margin-auto {
    background-color: var(--black);
    border-top: 1px solid #0000000d;
    width: 100%;
  }

  .brand {
    justify-content: center;
  }

  .brand.footer {
    margin-bottom: 15px;
  }

  .burger-menu {
    text-align: center;
  }

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

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

  .navbar {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .slider-arrow {
    display: none;
  }

  .hero-content {
    width: 90%;
  }

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

  .button._20l {
    margin-top: 10px;
    margin-left: 0;
  }

  .hero-slider {
    height: 650px;
  }

  .default-btn {
    justify-content: center;
    width: 100%;
  }

  .top-text {
    margin-bottom: 5px;
  }

  .btn-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .right-section {
    margin-bottom: 20px;
  }

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

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

  .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 {
    box-shadow: 0 4px 8px 0 var(--light-grey);
    padding: 24px 20px;
  }

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

  .orange-div {
    flex-direction: row;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
  }

  .orange-div._100 {
    padding-top: 30px;
    padding-bottom: 39px;
  }

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

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

  .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;
    padding-top: 20px;
    display: grid;
  }

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

  .h3-cta-call-btn.btn-outline {
    flex: none;
  }

  .footer-col {
    text-align: center;
    align-items: center;
    margin-top: 20px;
  }

  .contact-block-1 {
    justify-content: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 0;
  }

  .contact-block-1.border-none {
    justify-content: center;
  }

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

  .footer-menu-text {
    text-align: center;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 24px;
  }

  .contact-type-title {
    text-align: center;
  }

  .footer-contact-info {
    padding: 15px 20px;
  }

  .contact-icon {
    display: none;
  }

  .contact-info-link {
    text-align: center;
    font-size: 15px;
    line-height: 25px;
  }

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

  .footer-social-media-block {
    z-index: 5;
    background-color: var(--black);
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    inset: auto 0% 0%;
  }

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

  .service-box-title {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    width: 100%;
    padding: 12px 20px 10px;
    line-height: 18px;
  }

  .service-box-title.link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    line-height: 18px;
  }

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

  .testimonials-text {
    margin-bottom: 10px;
    line-height: 1;
  }

  .left-arrow {
    width: 60px;
    height: 60px;
    display: none;
    bottom: -10%;
  }

  .testimonial-div {
    min-height: 650px;
  }

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

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

  .slide-nav {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .test-slide {
    padding: 0;
  }

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

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

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

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

  .slider {
    width: 100%;
  }

  .page-top {
    min-height: 200px;
  }

  .hero-title {
    text-align: center;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 26px;
  }

  .top-h1 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 34px;
  }

  .top-h1._30b {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 34px;
  }

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

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

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

  .footer-list {
    text-align: center;
  }

  .service-box-heading-container {
    flex-direction: column;
  }

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

  .hero-txt {
    margin-top: 10px;
    font-size: 28px;
    line-height: 36px;
  }

  .top-contact-div {
    flex-direction: column;
  }

  .bottom-text {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
  }

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

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

  .live-icon {
    width: 12px;
    height: 13px;
    top: 0;
    left: 0;
  }

  .whatsapp-block {
    margin-bottom: 0;
    margin-right: 10px;
    inset: auto 0% 0% auto;
  }

  .whatsapp-container {
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 0;
  }

  .livechat-button {
    width: 90%;
  }

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

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

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

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

  .areas-list-item.areas-list-flex {
    font-size: 14px;
  }

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

  .lb-img {
    height: 120px;
  }

  .testimonials-div {
    margin-bottom: 20px;
    padding: 15px 20px;
  }

  .testimonial-date {
    margin-top: 10px;
  }

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

  .review-score-div {
    margin-bottom: 10px;
  }

  .grid {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .contact-div-block {
    padding-bottom: 20px;
  }

  .contact-us-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    margin-top: -30px;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 30px;
  }

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

  .hero-txt-small {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
  }

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

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

  .h1 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 34px;
  }

  .h1._30b {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 34px;
  }

  ._3-col-grid._40t {
    margin-top: 30px;
  }

  ._3-col-div {
    padding: 20px;
  }

  .team-grid {
    padding-left: 10px;
    padding-right: 10px;
  }
}

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

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

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

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

#w-node-_2a60e8a4-4747-6192-2c57-a31e2f7f9482-c01c7a95 {
  place-self: end;
}

#w-node-_960d30b4-e1ed-c9d9-ad36-2b5e17e260ee-f04f925b, #w-node-_35f8fe63-b47c-f7a9-db98-ef8385bdcfbf-e4a548cc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

  #w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-c01c7a95, #w-node-_15c8e82a-7758-f807-f433-2b22d2d57c84-666287da, #w-node-_94a64a3c-f147-2e84-85cb-c0f1fb3dc5a7-666287da, #w-node-_545dca69-1508-f1de-0639-580aac164db8-666287da, #w-node-_5c28564c-1f88-4f51-5ae9-6209fa12e40e-d6fa94e6, #w-node-_5c28564c-1f88-4f51-5ae9-6209fa12e415-d6fa94e6, #w-node-_5c28564c-1f88-4f51-5ae9-6209fa12e41c-d6fa94e6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

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

  #w-node-_2a60e8a4-4747-6192-2c57-a31e2f7f9481-c01c7a95 {
    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-_35f8fe63-b47c-f7a9-db98-ef8385bdcfbf-e4a548cc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2a60e8a4-4747-6192-2c57-a31e2f7f9481-c01c7a95 {
    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;
  }
}


@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: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}