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

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

@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.woff2') format("woff2"), url('../fonts/fa-solid-900.eot') format("embedded-opentype"), url('../fonts/fa-solid-900.woff') format("woff"), url('../fonts/fa-solid-900.ttf') format("truetype"), url('../fonts/fa-solid-900.svg') format("svg");
  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 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 100";
  src: url('../fonts/fa-thin-100.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: Fa6 solid;
  src: url('../fonts/FA6-Solid.otf') format("opentype"), url('../fonts/FA6-Solid.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --black: black;
  --orange: orange;
  --orange-2: #e49300;
  --transparent: #fff0;
  --mid-gray: #8d8d8d;
}

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

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

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

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

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

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

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

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

.nav-section {
  background-color: #000;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar {
  background-color: #0000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 95%;
  max-width: 1200px;
  display: flex;
}

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

.dropdown-list.w--open {
  text-transform: uppercase;
}

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

.nav-link {
  color: var(--white);
  text-align: center;
  background-color: #000;
  border-bottom: 5px solid #000;
  padding-top: 25px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
}

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

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

.nav-link.home {
  border-bottom-color: var(--orange);
}

.top-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  transition: opacity .2s;
  display: flex;
}

.nav-link-dropdown {
  color: var(--white);
  border-bottom: 5px solid #000;
  padding-top: 25px;
  padding-left: 15px;
  padding-right: 35px;
  font-size: 13px;
}

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

.text-block {
  font-size: 15px;
}

.top-div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1600px;
  height: 100%;
  display: grid;
}

.co-logo-link {
  align-items: center;
  margin-right: 10px;
  display: flex;
}

.top-contact-div {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.top-tel-link {
  color: var(--orange);
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.top-tel-link:hover {
  transform: scale(1.1);
}

.need-help {
  color: var(--orange);
  margin-bottom: 0;
  margin-right: 10px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.top-email {
  color: #000;
  margin-bottom: 0;
  font-weight: 600;
  text-decoration: none;
}

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

.icon {
  margin-top: 32px;
  margin-bottom: auto;
  margin-right: 15px;
}

.overlay-div {
  background-image: url('../images/_366800810.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 650px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.slider-text-div {
  background-color: #ffa500a8;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 60%;
  max-width: 780px;
  padding: 30px;
  display: flex;
}

.slider-text-div._80 {
  background-color: #ffa500a8;
  width: 100%;
  max-width: 100%;
}

.slider-overlay-div {
  align-items: center;
  width: 95%;
  max-width: 1200px;
  padding-bottom: 0;
  display: flex;
}

.slider-heading {
  color: var(--white);
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Barlow Semi Condensed, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 60px;
}

.slider-heading.padding-down {
  margin-bottom: 20px;
}

.slider-heading.orange {
  color: var(--orange);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: auto;
  margin-top: 0;
  font-size: 24px;
  line-height: 1.5;
  display: flex;
}

.slider-small-text {
  color: var(--white);
  width: 80%;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.slider-medium-text {
  color: var(--white);
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.small-text-div-and-arrow {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

._4-boxes-section {
  background-image: linear-gradient(#e493004d, #e493004d), linear-gradient(#ffffff80, #ffffff80), url('../images/bg_671305174.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.box-heading {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
}

._4-box-text {
  color: var(--white);
  width: 85%;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 26px;
}

.box-div {
  background-image: linear-gradient(to bottom, var(--orange), var(--orange));
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-height: 100px;
  padding: 30px;
  transition: all .2s;
  display: flex;
  box-shadow: 0 25px 20px -20px #00000080;
}

.box-div:hover {
  background-image: linear-gradient(to bottom, var(--orange-2), var(--orange-2));
  text-shadow: 2px 2px 3px #00000080;
}

._4-block-div {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.arrow-head-blue {
  border: 2px solid var(--white);
  background-color: #000000cf;
  border-radius: 50%;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  transition: all .3s ease-in-out;
}

.arrow-head-blue:hover {
  transform: scale(1.1);
}

.body-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.body-section.grey {
  background-image: linear-gradient(#ffffffbf, #ffffffbf), url('../images/bg_671305174.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.body-section.grey.reduce-top {
  background-color: #8d8d8d33;
  padding-top: 20px;
}

.body-section.orange {
  background-image: linear-gradient(#e493004d, #e493004d);
}

.body-section.h3 {
  padding-top: 0;
  padding-bottom: 0;
}

.body-section.gradient {
  background-image: linear-gradient(180deg, var(--white) 79%, #f8f8f8 80%);
  padding-bottom: 40px;
}

.body-section.reduce-bottom-padding {
  padding-bottom: 40px;
}

.body-section.reduce-top {
  padding-top: 40px;
}

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

.body-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 95%;
  max-width: 1200px;
  display: flex;
}

.body-div.vertical {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.h1 {
  color: var(--orange);
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 800;
}

.p {
  background-color: #0000;
  width: 100%;
}

.p.white {
  color: #fff;
  font-size: 18px;
}

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

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

.read-more-button {
  background-color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-top: 30px;
  padding: 13px 20px 15px 30px;
  font-weight: 700;
  transition: all .3s ease-in-out;
  display: flex;
}

.read-more-button:hover {
  background-color: var(--black);
  transform: scale(.9);
}

.read-more-button.long {
  margin-top: 10px;
}

.full-width-image-section {
  background-image: url('../images/_366371461.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.full-width-image-div {
  width: 95%;
  max-width: 1200px;
  min-height: 200px;
}

.full-width-image-text-div {
  background-color: #ffa500a8;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  max-width: 600px;
  padding: 30px;
  display: flex;
  box-shadow: 0 30px 20px -20px #000000bf;
}

.h2 {
  color: #000;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.h2.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bottom-section {
  background-image: linear-gradient(#000000e6, #000000e6), url('../images/bg_671305174.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.footer-link-section {
  background-color: var(--orange-2);
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.bottom-text {
  color: var(--orange);
  margin-bottom: 0;
  margin-right: 10px;
  font-weight: 400;
  line-height: 24px;
}

.bottom-text.bottom {
  margin-bottom: 15px;
  margin-right: 0;
  font-weight: 700;
}

.bottom-text.mob-email {
  margin-bottom: 10px;
  font-weight: 700;
  display: none;
}

.bottom-text.open {
  margin-bottom: 15px;
  font-weight: 700;
}

.bottom-text.email {
  margin-bottom: 10px;
  font-weight: 700;
}

.h2-white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 800;
  line-height: 60px;
}

.bottom-content-div {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 95%;
  max-width: 1200px;
  display: flex;
}

.contact-left-div {
  width: 40%;
}

.contact-right-div {
  width: 55%;
}

.footer-map {
  background-image: url('../images/GOOGLR.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 400px;
}

.footer-links {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

._4-box-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: 1fr 1fr;
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.button-link {
  margin-left: 5px;
}

.arrows {
  margin-top: 2px;
  margin-left: 5px;
  font-family: Oswald, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.h1-light {
  color: #000;
  font-weight: 500;
}

.mid-heading {
  color: var(--white);
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 800;
  line-height: 50px;
}

.dropdown-link {
  color: var(--white);
  text-align: left;
  background-color: #000;
  border-bottom: 2px solid #000;
  padding: 15px;
  font-size: 15px;
}

.dropdown-link:hover {
  border-bottom-color: var(--orange);
}

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

.mid-text {
  color: var(--white);
  width: 85%;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
}

.bottom-heading {
  color: var(--black);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.email-link {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

.phone-link {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.opening {
  color: var(--white);
  font-weight: 500;
}

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

.hyperlink:hover {
  box-shadow: inset 0 -40px 0 0 var(--orange);
  color: var(--black);
}

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

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

.h3-list {
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition: all .3s ease-in-out;
  display: flex;
}

.h3-list:hover {
  transform: translate(5px);
}

.list {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 0;
  list-style-type: none;
}

.list._3-row {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.list._2-row {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

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

.list._4-row._0t {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-top: 0;
}

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

.font-icon {
  color: var(--orange);
  margin-right: 10px;
  font-family: "Fa sharp solid 900", sans-serif;
  font-size: 22px;
}

.right-arrow {
  background-color: var(--white);
  color: #000;
  display: block;
}

.body-div-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  background-color: #0000;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.body-div-2._24hr-text {
  background-color: #00000054;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: block;
}

.body-div-2._24hr-text.testomonial-layout {
  background-color: #0000;
  border: 1px #363638;
  border-radius: 5px;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  width: 90%;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.body-div-2._24hr-text.testomonial-layout.orange {
  border-style: solid;
  border-color: var(--orange);
  background-color: #ffefd0;
  justify-content: flex-start;
  width: 95%;
  transition: all .3s ease-in-out;
  display: flex;
}

.body-div-2._24hr-text.testomonial-layout.orange:hover {
  transform: scale(1.05);
}

.date-testom {
  color: var(--orange);
  text-align: left;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.location {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.slider-2 {
  height: auto;
}

.paragraph {
  text-align: center;
  margin-top: 20px;
}

.paragraph._24-emergancy-p {
  color: #000;
  width: 90%;
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.date {
  width: 100%;
}

.testom-location-date {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  display: grid;
}

.mask {
  background-color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.slide-nav {
  background-color: #525252;
  justify-content: center;
  align-items: center;
  display: none;
}

.left-arrow {
  background-color: var(--white);
  color: #000;
  display: block;
}

.testom-title {
  color: var(--black);
  text-align: center;
  width: 90%;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  display: block;
}

.star-icon {
  color: var(--orange);
  font-family: "Fa 400", sans-serif;
  font-size: 23px;
  position: static;
}

.pipe-div {
  background-image: url('../images/drains-v3.webp');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 40px;
  margin-bottom: 40px;
  position: relative;
  top: -20px;
}

.pipe-div.bottom {
  margin-top: 40px;
  margin-bottom: 0;
  top: auto;
  bottom: -20px;
}

.h2-list {
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s ease-in-out;
  display: flex;
}

.h2-list:hover {
  transform: translate(5px);
}

.areas-div {
  justify-content: space-between;
  margin-top: 30px;
  display: flex;
}

.areas-div.areas-flex {
  flex-direction: column;
  width: 100%;
  margin-top: 10px;
}

.areas-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
}

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

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

.list-item-2 {
  color: #233030;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.areas-map {
  width: 100%;
  margin-top: 10px;
}

.h3 {
  text-align: left;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 26px;
}

.h3.orange {
  color: var(--orange);
  margin-bottom: 0;
  font-size: 20px;
}

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

.white-section {
  color: #596b57;
  background-image: url('../images/Wavey-Section-Dividers-12_1Wavey Section Dividers 12.webp');
  background-position: 50% 101%;
  background-repeat: no-repeat;
  background-size: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 160px;
  display: flex;
}

.white-section.no-divider {
  background-image: none;
  padding-bottom: 100px;
}

.site-map-link {
  color: #233030;
  background-color: #0000;
  margin-bottom: 5px;
  text-decoration: none;
}

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

.contact-page-link {
  color: var(--black);
  margin-left: 20px;
  padding-left: 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.contact-icon {
  background-color: var(--orange);
  color: #fff;
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: auto;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1.2em;
  line-height: 1;
  transition: all .3s ease-in-out;
  display: flex;
}

.contact-icon:hover {
  background-color: var(--mid-gray);
  transform: scale(.9);
}

.container-wrapper.flex-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-wrapper.flex-grid.contact-page-grid {
  width: 100%;
}

.contact-div.display-flex {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.contact-div.display-flex.border-bottom {
  border-bottom: 1px solid #cac9c959;
  width: 100%;
}

.testim-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

.sticky-btn {
  z-index: 1000;
  color: #fff;
  background-color: #25374e;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 15px 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: none;
  position: fixed;
  inset: auto auto 10px 10px;
  box-shadow: 1px 1px 3px #0000004d;
}

.sticky-btn:hover {
  transform: scale(.95);
}

.font-icon-2 {
  color: #686a6c;
  margin-right: 10px;
  font-family: Fa6 solid, sans-serif;
  font-weight: 400;
}

.font-icon-2.font-icon-m-left {
  color: #fff;
  margin-left: 10px;
  margin-right: 0;
}

.l-2-content {
  background-image: url('../images/235305251.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 48%;
}

.l-2-content._w-100 {
  width: 100%;
}

.l-2-content._w-100._3-img-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-image: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 40px;
  display: grid;
}

.l-2-content._w-100._3-img-grid._w-90 {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.grid-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  min-height: 350px;
  box-shadow: 1px 1px 3px #00000045;
}

.grid-img.home-img-3 {
  background-image: url('../images/_188804688.webp');
  background-position: 50%;
  background-size: cover;
}

.grid-img.home-img-1 {
  background-image: url('../images/119804310.jpg');
}

.grid-img.home-img-1.img-style-section {
  background-image: url('../images/_216282910.webp');
  background-position: 50%;
  background-size: cover;
}

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

.grid-img._1 {
  background-image: url('../images/_216282910.webp');
}

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

.text-img-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-img-div.grid-flex {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.img-div {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 4px;
}

.img-div.drain-unblock {
  background-image: url('../images/_357703338.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.img-div.prevent-drain {
  background-image: url('../images/_123992205.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-div.inspection {
  background-image: url('../images/_218753962.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}

.img-div.survey-work {
  background-image: url('../images/_175122562.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.img-div.relining-1 {
  background-image: url('../images/_323254281.webp');
  background-position: 50%;
  background-size: cover;
}

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

.text-span, .text-span-2 {
  color: var(--orange);
}

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

.p-2 {
  background-color: #0000;
  margin-bottom: 0;
  font-size: 14px;
}

.p-2.gallet {
  color: var(--black);
  text-align: center;
  align-items: stretch;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

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

.lightbox-link-3 {
  background-color: var(--orange);
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  text-decoration: none;
}

.lightbox-link-3.after {
  background-color: var(--black);
  color: var(--white);
}

.image-7 {
  width: auto;
}

.hero-slider {
  height: auto;
}

.right-arrow-2 {
  opacity: .5;
  background-color: #ffa50000;
  border-radius: 50%;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  margin-right: 10px;
  transition: all .2s;
  display: flex;
}

.right-arrow-2:hover {
  background-color: var(--orange);
  opacity: 1;
}

.left-arrow-2 {
  opacity: .5;
  background-color: #ffa50000;
  border-radius: 50%;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  margin-left: 10px;
  transition: all .2s;
  display: flex;
}

.left-arrow-2:hover {
  background-color: var(--orange);
  opacity: 1;
}

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

.slide.mobile {
  min-height: 600px;
}

.number-1 {
  color: var(--black);
  font-weight: 600;
  display: block;
}

.logo-wrap {
  display: flex;
}

.bold-text {
  font-weight: 600;
}

.test-slider {
  background-color: var(--white);
  box-shadow: 0 20px 20px -20px #000000bf;
}

.left-arrows {
  background-color: var(--orange);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  transition: all .3s ease-in-out;
  display: flex;
}

.left-arrows:hover {
  width: 38px;
  height: 38px;
  font-size: 18px;
}

.top-email-txt {
  color: #000;
  margin-top: 3px;
  margin-bottom: 0;
  font-family: Barlow Semi Condensed, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 29px;
  text-decoration: none;
}

.top-div {
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1200px;
  height: 100%;
  display: flex;
}

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

.top-contact-div-2 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.top-tel-link-2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
}

.logo-flex {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-4 {
  text-align: center;
}

.text-block-4.h1 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.25;
}

.small {
  color: var(--black);
  font-weight: 600;
}

.title {
  color: var(--orange);
  text-transform: uppercase;
}

.title.button {
  display: none;
}

._247-text {
  text-transform: uppercase;
  margin-top: 10px;
  font-family: Barlow Semi Condensed, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.fb-link {
  color: var(--orange-2);
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  margin-top: 0;
  margin-left: auto;
  font-family: Fa6 brands, sans-serif;
  font-size: 32px;
  line-height: 32px;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: flex;
}

.fb-link:hover {
  color: var(--mid-gray);
}

.google-reviews {
  width: 100%;
}

.image-8 {
  width: 200px;
}

.rated-peoplediv {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
}

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

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  position: static;
}

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

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

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

.live-chat-bottom-text {
  font-size: 10px;
}

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

.live-chat-bottom-text.bold {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.chat-section {
  background-color: #b7b5b5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

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

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

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

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

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

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

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

.top-section-3 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

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

.top-heading {
  color: var(--orange);
  text-align: left;
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
}

.top-sub-heding {
  text-align: left;
  margin-top: 3px;
  font-size: 19px;
  font-weight: 600;
  line-height: 30px;
}

.co-logo {
  width: 120px;
}

.co-name-div {
  flex-flow: column;
  max-width: 250px;
  display: flex;
}

.top-contact-section {
  background-color: var(--orange);
  justify-content: center;
  align-items: center;
  height: 100px;
  display: flex;
}

.email-div {
  width: 90%;
  max-width: 1200px;
}

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

.orange-section.grey {
  background-color: #8d8d8d0f;
}

.orange-section.grey.reduce-top {
  padding-top: 20px;
}

.orange-section.orange {
  background-color: #ffa50052;
}

.orange-section.h3 {
  padding-top: 0;
  padding-bottom: 0;
}

.orange-section.gradient {
  background-image: linear-gradient(to bottom, var(--white) 79%, #f8f8f8 80%);
  padding-bottom: 20px;
}

.orange-section.reduce-bottom-padding {
  padding-bottom: 40px;
}

.orange-section.reduce-top {
  padding-top: 40px;
}

.underline {
  background-color: var(--orange);
  width: 250px;
  height: 5px;
  margin-bottom: 30px;
}

.underline.white {
  background-color: var(--white);
  margin-bottom: 20px;
}

.underline.centre {
  margin-left: auto;
  margin-right: auto;
}

.footer-fb-link {
  color: var(--orange-2);
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  margin-top: 20px;
  font-family: Fa6 brands, sans-serif;
  font-size: 32px;
  line-height: 32px;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: flex;
}

.footer-fb-link:hover {
  color: var(--mid-gray);
}

.contact-section {
  background-image: linear-gradient(#ffffffbf, #ffffffbf), url('../images/bg_671305174.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.contact-section.grey {
  background-color: #8d8d8d0f;
}

.contact-section.grey.reduce-top {
  background-color: #8d8d8d33;
  padding-top: 20px;
}

.contact-section.orange {
  background-color: #ffa50052;
}

.contact-section.h3 {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-section.gradient {
  background-image: linear-gradient(180deg, var(--white) 79%, #f8f8f8 80%);
  padding-bottom: 40px;
}

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

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

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

.footer-links-div {
  width: 75%;
  max-width: 1200px;
}

.footer-links-div.vertical {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form {
  width: 100%;
}

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

.slider-arrow {
  font-size: 20px;
  line-height: 20px;
}

.right-arrows {
  background-color: var(--orange);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  transition: all .3s ease-in-out;
  display: flex;
}

.right-arrows:hover {
  width: 38px;
  height: 38px;
  font-size: 18px;
}

.facebook-reviews {
  width: 100%;
}

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

.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-grid-2 {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 40px;
}

.team-text {
  border-bottom: 1px solid var(--orange);
  text-transform: uppercase;
  margin-top: 10px;
  padding-bottom: 10px;
}

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

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

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

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

.google-review {
  width: 100%;
}

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

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

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

@media screen and (max-width: 991px) {
  .navbar {
    width: 100%;
  }

  .dropdown-list.w--open {
    position: relative;
  }

  .nav-link {
    border-bottom-width: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-link:hover, .nav-link.w--current {
    border-bottom-width: 5px;
  }

  .nav-link-dropdown {
    text-align: center;
    border-bottom-width: 5px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
  }

  .nav-link-dropdown:hover {
    border-bottom-width: 5px;
  }

  .top-div-block {
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .top-contact-div {
    width: 48%;
  }

  .top-email {
    text-align: right;
    font-size: 14px;
  }

  .icon {
    margin-top: auto;
    margin-right: 30px;
  }

  .overlay-div {
    align-items: stretch;
    min-height: 640px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .slider-text-div {
    width: 80%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .slider-overlay-div {
    width: 100%;
  }

  .slider-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
  }

  .slider-heading.orange {
    font-size: 18px;
  }

  .slider-medium-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
  }

  .menu-button {
    color: var(--white);
    text-align: center;
    width: 100%;
    margin-left: 50px;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

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

  .box-heading {
    font-size: 33px;
    font-weight: 700;
    line-height: 34px;
  }

  ._4-box-text {
    width: 80%;
    font-size: 18px;
  }

  .box-div {
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    padding: 20px;
  }

  ._4-block-div {
    align-items: flex-end;
  }

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

  .body-section.grey {
    background-image: linear-gradient(#0000, #0000), url('../images/bg_671305174.webp');
    background-position: 0 0, 50%;
    background-size: auto, auto;
  }

  .body-div {
    width: 90%;
  }

  .body-div._w-100 {
    width: 100%;
  }

  .full-width-image-text-div {
    width: 100%;
    max-width: 100%;
  }

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

  .bottom-text.bottom, .bottom-text.email, .bottom-text.mob-email, .bottom-text.open, .bottom-text.email {
    margin-bottom: 20px;
    margin-right: 0;
    line-height: 18px;
  }

  .bottom-content-div {
    flex-flow: column;
    width: 90%;
  }

  .contact-left-div {
    width: 100%;
  }

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

  .footer-map {
    background-position: 0%;
  }

  .mid-heading {
    font-size: 48px;
    line-height: 52px;
  }

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

  .dropdown {
    width: 100%;
  }

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

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

  .body-div-2._24hr-text.testomonial-layout {
    justify-content: space-between;
    width: 100%;
  }

  .body-div-2._24hr-text.testomonial-layout.orange {
    justify-content: flex-start;
  }

  .date-testom {
    font-weight: 600;
  }

  .paragraph._24-emergancy-p {
    width: 85%;
  }

  .paragraph._24-emergancy-p.m-auto-b-top {
    margin-top: auto;
    margin-bottom: auto;
  }

  .testom-title {
    font-size: 22px;
    line-height: 1.25;
  }

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

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

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

  .areas-div.areas-flex {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 10px;
    display: block;
  }

  .areas-container, .areas-map {
    width: 100%;
  }

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

  .text-area {
    width: 100%;
    padding-bottom: 20px;
  }

  .container-wrapper.flex-grid.contact-page-grid {
    grid-template-columns: 1fr;
  }

  .testim-div {
    grid-template-columns: 1fr 1fr;
  }

  .l-2-content {
    width: 100%;
  }

  .l-2-content._w-100._3-img-grid._w-90 {
    grid-template-columns: 1fr 1fr;
  }

  .text-img-div.grid-flex {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .img-div.inspection {
    height: auto;
    min-height: 400px;
  }

  .text-block-2 {
    text-align: right;
    font-size: 14px;
  }

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

  .right-arrow-2, .left-arrow-2 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .slide {
    height: 100%;
  }

  .slide.mobile {
    min-height: auto;
  }

  .number-1 {
    font-style: normal;
  }

  .logo-wrap {
    flex-direction: column;
    align-items: center;
    width: 48%;
  }

  .slider-2 {
    min-height: 640px;
  }

  .test-slider {
    width: 100%;
  }

  .text-block-3 {
    font-weight: 600;
  }

  .top-div {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-contact-div-2 {
    justify-content: flex-start;
    align-items: center;
  }

  .logo-flex {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: flex-start center;
    width: 100%;
    margin-bottom: 5px;
  }

  .text-block-4.h1 {
    font-size: 22px;
    line-height: 1.5;
  }

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

  .fb-link {
    margin-right: 10px;
  }

  .top-sub-heding {
    line-height: 26px;
  }

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

  .footer-links-div._w-100 {
    width: 100%;
  }

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

@media screen and (max-width: 767px) {
  .top-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-div-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .top-contact-div {
    align-items: center;
    width: 100%;
  }

  .top-email {
    text-align: right;
  }

  .slider-text-div {
    width: 80%;
  }

  .slider-overlay-div {
    padding-bottom: 0;
  }

  .slider-heading {
    font-size: 42px;
    line-height: 44px;
  }

  .slider-heading.orange {
    text-align: right;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  .slider-small-text {
    font-size: 18px;
    line-height: 24px;
  }

  .small-text-div-and-arrow {
    justify-content: space-between;
    align-items: flex-end;
  }

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

  ._4-box-text {
    width: 85%;
  }

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

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

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

  .full-width-image-section, .bottom-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-link-section {
    padding-bottom: 100px;
  }

  .bottom-content-div {
    flex-direction: column;
  }

  .contact-left-div {
    width: 100%;
  }

  .contact-right-div {
    width: 100%;
    margin-top: 40px;
  }

  .footer-map {
    height: 300px;
  }

  ._4-box-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .mid-heading {
    font-size: 50px;
    line-height: 50px;
  }

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

  .list._2-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .right-arrow {
    width: 50px;
  }

  .body-div-2._24hr-text {
    width: 90%;
  }

  .body-div-2._24hr-text.testomonial-layout {
    justify-content: space-between;
    padding: 14px;
    display: flex;
  }

  .paragraph._24-emergancy-p {
    width: 80%;
  }

  .paragraph._24-emergancy-p.m-auto-b-top {
    line-height: 1.35;
  }

  .testom-location-date {
    width: 80%;
  }

  .left-arrow {
    width: 50px;
  }

  .testom-title {
    width: 80%;
  }

  .list-2, .areas-map {
    width: 100%;
  }

  .white-section {
    background-position: 50% 101%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .testim-div {
    grid-template-columns: 1fr;
  }

  .sticky-btn {
    background-color: var(--orange);
    justify-content: center;
    align-items: center;
    min-width: 240px;
    max-width: 240px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: fixed;
    inset: auto 0% 0%;
  }

  .l-2-content._w-100._3-img-grid {
    grid-template-columns: 1fr 1fr;
  }

  .l-2-content._w-100._3-img-grid._w-90 {
    grid-template-columns: 1fr;
  }

  .grid-img {
    min-height: 300px;
  }

  .text-img-div.grid-flex {
    flex-direction: column;
    display: flex;
  }

  .text-img-div.grid-flex.flex-reverse {
    flex-direction: column-reverse;
  }

  .img-div {
    height: 350px;
  }

  .img-div.cctv {
    margin-top: 10px;
  }

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

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

  .hero-slider {
    display: block;
  }

  .number-1 {
    text-align: right;
    justify-content: flex-end;
    align-items: center;
  }

  .logo-wrap {
    align-items: center;
    width: 100%;
  }

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

  .top-contact-div-2 {
    align-items: center;
  }

  .text-block-4.h1 {
    font-size: 20px;
  }

  .hideshow {
    display: none;
  }

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

  .co-logo {
    width: 110px;
  }

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

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

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

  .footer-links-div {
    width: 90%;
  }

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

@media screen and (max-width: 479px) {
  .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .top-section {
    height: 100%;
    padding-top: 0;
    padding-bottom: 10px;
  }

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

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

  .co-logo-link {
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0;
  }

  .top-contact-div {
    align-items: center;
    width: 100%;
  }

  .top-tel-link {
    font-size: 29px;
  }

  .need-help {
    margin-right: 0;
    font-size: 20px;
    line-height: 20px;
  }

  .top-email {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
  }

  .tel-div {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .overlay-div {
    min-height: 380px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .slider-text-div {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 450px;
    padding: 20px;
  }

  .slider-heading {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 30px;
  }

  .slider-heading.padding-down {
    margin-bottom: 10px;
  }

  .slider-heading.orange {
    text-align: center;
    flex: none;
    align-items: center;
    margin-top: 10px;
    font-size: 15px;
  }

  .slider-small-text {
    width: 100%;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 24px;
  }

  .slider-medium-text {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 25px;
  }

  .small-text-div-and-arrow {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .menu-button {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  ._4-boxes-section {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .box-heading {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 32px;
  }

  .box-div {
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 10px -10px #00000080;
  }

  .arrow-head-blue {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
  }

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

  .body-section.grey {
    background-image: linear-gradient(#0000, #0000), url('../images/bg_671305174.webp');
    background-position: 0 0, 70% 100%;
  }

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

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

  .full-width-image-div {
    width: 90%;
    max-width: 100%;
  }

  .full-width-image-text-div {
    width: 100%;
    padding: 20px;
  }

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

  .footer-link-section {
    padding-bottom: 120px;
  }

  .bottom-text.email {
    max-width: 130px;
  }

  .bottom-text.mob-email {
    max-width: 100%;
    display: block;
  }

  .bottom-text.open {
    max-width: 250px;
  }

  .bottom-text.email {
    max-width: 100%;
    display: none;
  }

  .h2-white {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 40px;
  }

  .bottom-content-div {
    flex-direction: column;
  }

  .contact-left-div {
    width: 100%;
  }

  .contact-right-div {
    width: 100%;
    margin-top: 20px;
  }

  .footer-map {
    height: 200px;
  }

  ._4-box-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .button-link {
    margin-top: 5px;
    margin-left: 0;
  }

  .mid-heading {
    font-size: 28px;
    line-height: 30px;
  }

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

  .mid-text {
    width: 80%;
  }

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

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

  .list._2-row {
    padding-left: 0;
  }

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

  .right-arrow {
    background-color: var(--transparent);
    justify-content: flex-end;
    align-items: center;
    width: 50px;
    margin-bottom: 10px;
  }

  .date-testom {
    text-align: center;
    line-height: 20px;
  }

  .location {
    justify-content: center;
  }

  .paragraph._24-emergancy-p {
    width: 100%;
  }

  .date {
    text-align: center;
  }

  .testom-location-date {
    grid-column-gap: 10px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
    place-items: center;
    width: 100%;
  }

  .left-arrow {
    background-color: var(--transparent);
    margin-bottom: 10px;
  }

  .testom-title {
    width: 100%;
    font-size: 18px;
    line-height: 26px;
  }

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

  .pipe-div.bottom {
    margin-top: 0;
  }

  .areas-div {
    flex-direction: column;
    margin-top: 20px;
  }

  .areas-container {
    flex-direction: row;
    width: 100%;
  }

  .list-2 {
    grid-template-columns: 1.25fr;
  }

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

  .areas-map {
    width: 100%;
    margin-top: 20px;
  }

  .white-section {
    background-position: 50% 100.5%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .contact-page-link {
    margin-left: 10px;
    font-size: 1em;
  }

  .contact-page-link.hyper-link {
    font-size: 1em;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .contact-div.display-flex.border-bottom {
    width: 100%;
  }

  .testim-div {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .sticky-btn {
    flex-flow: column-reverse;
    min-width: auto;
    max-width: 130px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    inset: auto 0% 0%;
  }

  .l-2-content._w-100._3-img-grid {
    grid-template-columns: 1fr;
  }

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

  .grid-img.home-img-3, .grid-img.home-img-1 {
    min-height: 300px;
  }

  .img-div {
    height: 250px;
  }

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

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

  .p-2.gallet {
    font-size: 14px;
    font-weight: 600;
  }

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

  .slide.mobile {
    min-height: 450px;
  }

  .logo-wrap {
    align-items: center;
  }

  .slider-2 {
    min-height: 450px;
  }

  .left-arrows {
    margin-left: 10px;
    top: auto;
    right: auto;
  }

  .top-email-txt {
    text-align: center;
    font-size: 15px;
    display: none;
  }

  .top-div {
    flex-direction: column;
    justify-items: center;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

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

  .top-contact-div-2 {
    align-items: center;
    width: 100%;
  }

  .top-tel-link-2 {
    font-size: 24px;
    line-height: 28px;
  }

  .logo-flex {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .text-block-4.h1 {
    line-height: 1.3;
  }

  .title.button {
    background-color: var(--orange);
    color: var(--white);
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 6px;
    padding: 5px 10px;
    text-decoration: none;
    display: block;
  }

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

  .fb-link {
    font-size: 28px;
  }

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

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

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

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

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

  .livechat-button {
    width: 90%;
  }

  .top-heading {
    text-align: center;
    width: 100%;
    font-size: 22px;
    line-height: 24px;
  }

  .top-sub-heding {
    text-align: center;
  }

  .co-logo {
    width: 80px;
  }

  .co-name-div {
    width: 100%;
    max-width: 100%;
  }

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

  .underline {
    width: 150px;
  }

  .footer-fb-link {
    font-size: 28px;
  }

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

  .footer-links-div {
    max-width: 100%;
  }

  .right-arrows {
    margin-left: 10px;
    margin-right: 0;
    padding-bottom: 0;
    top: auto;
    right: auto;
  }

  .team-block {
    bottom: 3px;
  }

  .team-grid-2 {
    padding-right: 0;
  }

  .p-5.price-text {
    font-size: 18px;
    line-height: 1.9;
  }
}

#w-node-d49e635a-8cfe-7626-a1b2-23ca9a5c12e0-fb6313f3, #w-node-c89ce2d7-9904-9487-29d0-558c1b07169a-fb6313f3, #w-node-bc13dc2c-cd5e-16b7-0dbe-afb43a9b1c30-fb6313f3, #w-node-e5a961dc-ef6b-d66a-9edf-ab0b181ac0e7-fb6313f3, #w-node-_1169ebe0-bcdc-3dc6-c858-af981774fd11-fb6313f3, #w-node-_8f09af80-cb97-f568-dfd5-9c7b1e6d161a-caac95b1, #w-node-b4223641-b023-ca78-2c19-f6b57cca62d2-caac95b1, #w-node-e443e065-beb7-c69a-ff8c-692eeff49b1e-caac95b1, #w-node-_1d8e843a-f47e-5d38-307c-8b333a7149b9-caac95b1, #w-node-de3fbb9e-fb94-c80d-a5b6-1837f49327b8-caac95b1, #w-node-_2a9c4a56-6da6-f754-283a-6c0a31b88e4b-caac95b1, #w-node-b15fdad7-1cdd-d7ea-4e2f-d8f51fd0e7ca-caac95b1, #w-node-c824c658-2596-e0e7-893b-4d3a7b57b445-caac95b1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4e3f9ffb-3e20-3e1c-089c-8d6195c4f831-1e98bf3b, #w-node-_4e3f9ffb-3e20-3e1c-089c-8d6195c4f83a-1e98bf3b, #w-node-_19e5ed05-4184-3bdb-9ed2-3d5df61a1b11-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_19e5ed05-4184-3bdb-9ed2-3d5df61a1b1a-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f0c1cd90-b608-87ef-730a-947c6e8006df-1e98bf3b, #w-node-f0c1cd90-b608-87ef-730a-947c6e8006e8-1e98bf3b, #w-node-f28e58a5-bce4-4039-d498-77edca8dc235-1e98bf3b, #w-node-f28e58a5-bce4-4039-d498-77edca8dc23e-1e98bf3b, #w-node-_9ba3dc66-44cc-4181-7e69-5bef580957c2-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9ba3dc66-44cc-4181-7e69-5bef580957cb-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1104355e-e563-073d-3ac7-cc8afbc46626-1e98bf3b, #w-node-_1104355e-e563-073d-3ac7-cc8afbc4662f-1e98bf3b, #w-node-a1abb159-5c9b-0df6-a967-ff14bfa2c855-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a1abb159-5c9b-0df6-a967-ff14bfa2c85e-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c9f41fcc-6bca-315b-61e1-667f536d6ea1-1e98bf3b, #w-node-c9f41fcc-6bca-315b-61e1-667f536d6eaa-1e98bf3b, #w-node-_8bdb2c77-f6c2-70ea-3379-94d2c403da26-1e98bf3b, #w-node-_8bdb2c77-f6c2-70ea-3379-94d2c403da2f-1e98bf3b, #w-node-a88402c1-3794-0879-92f7-5eaa8d5e8101-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a88402c1-3794-0879-92f7-5eaa8d5e810a-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfadc-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfae5-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfaca-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfad3-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfaee-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfaf7-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2180dc9b-3550-f826-1134-e752d8edcfff-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2180dc9b-3550-f826-1134-e752d8edd008-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfb00-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfb09-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d8a26d20-b9b3-2e68-6d24-d88b9b205d1b-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d8a26d20-b9b3-2e68-6d24-d88b9b205d24-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_72c7361f-8ede-46ba-9ca4-0a1f1e00aea4-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_72c7361f-8ede-46ba-9ca4-0a1f1e00aead-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4307fb73-db16-9259-ca17-f2656196455d-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4307fb73-db16-9259-ca17-f26561964566-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_390ab136-f68d-386d-0d72-df0ef2577860-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_390ab136-f68d-386d-0d72-df0ef2577869-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f0e52d6-0553-e03b-e2cf-43c1ba7342bc-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1f0e52d6-0553-e03b-e2cf-43c1ba7342c5-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_924f5634-56d7-87f3-17c9-1822f8e3fa0e-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_924f5634-56d7-87f3-17c9-1822f8e3fa17-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8c12f078-9a06-95c0-0554-51ac023ff0fe-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8c12f078-9a06-95c0-0554-51ac023ff107-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8545169-265b-6ab3-85bf-6109eb47da81-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a8545169-265b-6ab3-85bf-6109eb47da8a-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_597d12ff-f5e8-906b-6c34-8ab8d941ec3e-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_597d12ff-f5e8-906b-6c34-8ab8d941ec47-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-beba0802-3bdf-2ff2-e130-6cbc6046835b-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-beba0802-3bdf-2ff2-e130-6cbc60468364-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8dfca99c-d334-4adf-8dc0-28f0f49e30ba-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8dfca99c-d334-4adf-8dc0-28f0f49e30c3-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b5b2a042-ffa9-887f-3d28-5fc072e12acc-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b5b2a042-ffa9-887f-3d28-5fc072e12ad5-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_248065e7-cde8-fd48-95c9-0c8f233007f8-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_248065e7-cde8-fd48-95c9-0c8f23300801-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de8e3dc7-9f71-b6aa-a135-ecdda0c9d913-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-de8e3dc7-9f71-b6aa-a135-ecdda0c9d91c-1e98bf3b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c8603bd1-2e6d-a9c8-b6c1-4c824ad77ea4-1e98bf3b, #w-node-c8603bd1-2e6d-a9c8-b6c1-4c824ad77ead-1e98bf3b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_768456c7-1f96-de01-2cea-eade55169e18-fb6313f3 {
    align-self: stretch;
  }

  #w-node-_931977cb-56a6-f4d5-127d-f4e14fc2459d-fb6313f3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8413e223-54d4-cfd3-ba02-0cae72425719-fb6313f3, #w-node-_3e2584a1-621f-01d1-b5de-77440d7c01f0-fb6313f3 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_39c15920-db99-c4f5-3e45-e8ff9a226701-fb6313f3, #w-node-_8547a708-ad84-72af-1d27-42ff8cebf412-fb6313f3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfadc-1e98bf3b, #w-node-_2180dc9b-3550-f826-1134-e752d8edcfff-1e98bf3b, #w-node-_924f5634-56d7-87f3-17c9-1822f8e3fa0e-1e98bf3b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_931977cb-56a6-f4d5-127d-f4e14fc2459d-fb6313f3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8413e223-54d4-cfd3-ba02-0cae72425719-fb6313f3, #w-node-_3e2584a1-621f-01d1-b5de-77440d7c01f0-fb6313f3, #w-node-_39c15920-db99-c4f5-3e45-e8ff9a226701-fb6313f3, #w-node-_8547a708-ad84-72af-1d27-42ff8cebf412-fb6313f3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfadc-1e98bf3b, #w-node-_2180dc9b-3550-f826-1134-e752d8edcfff-1e98bf3b, #w-node-_924f5634-56d7-87f3-17c9-1822f8e3fa0e-1e98bf3b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_931977cb-56a6-f4d5-127d-f4e14fc2459d-fb6313f3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d49e635a-8cfe-7626-a1b2-23ca9a5c12e0-fb6313f3, #w-node-c89ce2d7-9904-9487-29d0-558c1b07169a-fb6313f3, #w-node-bc13dc2c-cd5e-16b7-0dbe-afb43a9b1c30-fb6313f3, #w-node-e5a961dc-ef6b-d66a-9edf-ab0b181ac0e7-fb6313f3, #w-node-_1169ebe0-bcdc-3dc6-c858-af981774fd11-fb6313f3, #w-node-_19e5ed05-4184-3bdb-9ed2-3d5df61a1b1a-1e98bf3b, #w-node-_9ba3dc66-44cc-4181-7e69-5bef580957cb-1e98bf3b, #w-node-a1abb159-5c9b-0df6-a967-ff14bfa2c85e-1e98bf3b, #w-node-c9f41fcc-6bca-315b-61e1-667f536d6eaa-1e98bf3b, #w-node-_8bdb2c77-f6c2-70ea-3379-94d2c403da2f-1e98bf3b, #w-node-a88402c1-3794-0879-92f7-5eaa8d5e810a-1e98bf3b, #w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfae5-1e98bf3b, #w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfad3-1e98bf3b, #w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfaf7-1e98bf3b, #w-node-_2180dc9b-3550-f826-1134-e752d8edd008-1e98bf3b, #w-node-a2e5ff5b-a3d5-8a4c-c869-ddca741dfb09-1e98bf3b, #w-node-d8a26d20-b9b3-2e68-6d24-d88b9b205d24-1e98bf3b, #w-node-_72c7361f-8ede-46ba-9ca4-0a1f1e00aead-1e98bf3b, #w-node-_4307fb73-db16-9259-ca17-f26561964566-1e98bf3b, #w-node-_390ab136-f68d-386d-0d72-df0ef2577869-1e98bf3b, #w-node-_1f0e52d6-0553-e03b-e2cf-43c1ba7342c5-1e98bf3b, #w-node-_924f5634-56d7-87f3-17c9-1822f8e3fa17-1e98bf3b, #w-node-_8c12f078-9a06-95c0-0554-51ac023ff107-1e98bf3b, #w-node-a8545169-265b-6ab3-85bf-6109eb47da8a-1e98bf3b, #w-node-_597d12ff-f5e8-906b-6c34-8ab8d941ec47-1e98bf3b, #w-node-beba0802-3bdf-2ff2-e130-6cbc60468364-1e98bf3b, #w-node-_8dfca99c-d334-4adf-8dc0-28f0f49e30c3-1e98bf3b, #w-node-b5b2a042-ffa9-887f-3d28-5fc072e12ad5-1e98bf3b, #w-node-_248065e7-cde8-fd48-95c9-0c8f23300801-1e98bf3b, #w-node-de8e3dc7-9f71-b6aa-a135-ecdda0c9d91c-1e98bf3b {
    place-self: center;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2'), url('../fonts/fa-brands-400.eot') format('embedded-opentype'), url('../fonts/fa-brands-400.woff') format('woff'), url('../fonts/fa-brands-400.ttf') format('truetype'), url('../fonts/fa-brands-400.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2'), url('../fonts/fa-regular-400.eot') format('embedded-opentype'), url('../fonts/fa-regular-400.woff') format('woff'), url('../fonts/fa-regular-400.ttf') format('truetype'), url('../fonts/fa-regular-400.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2'), url('../fonts/fa-solid-900.eot') format('embedded-opentype'), url('../fonts/fa-solid-900.woff') format('woff'), url('../fonts/fa-solid-900.ttf') format('truetype'), url('../fonts/fa-solid-900.svg') format('svg');
  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 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 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6';
  src: url('../fonts/FA6-Regular.otf') format('opentype'), url('../fonts/FA6-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6 brands';
  src: url('../fonts/FA6-Brands.otf') format('opentype'), url('../fonts/FA6-Brands.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6 solid';
  src: url('../fonts/FA6-Solid.otf') format('opentype'), url('../fonts/FA6-Solid.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}