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

@font-face {
  font-family: "Fa 300";
  src: url('../fonts/fa-light-300.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Fa6;
  src: url('../fonts/FA6-Regular.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");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --white: white;
  --black: black;
  --white-2: #fefdf9;
  --dim-grey: #6e6c68;
  --peru: #c28f48;
  --mid-gray: #5e5e5e;
  --white-smoke: #ebebeb;
}

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

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

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

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

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

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

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

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

.header-section {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

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

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

.logo {
  width: 100%;
}

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

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

.tel-link.int-link-header {
  color: var(--black);
  padding-left: 10px;
  font-size: 16px;
  text-decoration: none;
}

.body {
  font-family: Poppins, sans-serif;
}

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

.email-link.int-link-header {
  color: var(--black);
  text-align: left;
  text-transform: uppercase;
  padding-left: 10px;
  font-size: 16px;
  text-decoration: none;
}

.menu-link {
  border-bottom: 2px solid var(--white-2);
  padding: 0 10px 5px;
  font-weight: 600;
}

.menu-link:hover {
  border-bottom: 2px solid var(--dim-grey);
}

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

.menu-link.w--current {
  border-bottom-width: 2px;
  border-bottom-color: var(--peru);
  color: var(--peru);
  font-weight: 600;
}

.menu-link._0l {
  padding-left: 0;
  padding-right: 0;
}

.navbar {
  background-color: #0000;
}

.section {
  z-index: 10;
  background-color: var(--white-2);
  border-bottom: 1px solid #5e5e5e;
  height: 100px;
  position: sticky;
  top: 0;
}

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

.menu-button-group-div {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

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

.menu-button-image-link.leadwork {
  background-image: url('../images/_340683828.webp');
}

.menu-button-image-link.new-roof {
  background-image: url('../images/e0faeced-a6b0-47d4-98c6-70d03718e0ac.webp');
  background-position: 100% 100%;
}

.menu-button-image-link.flat-roof {
  background-image: url('../images/1c6eec86-126f-49bf-8d6b-dd11b8fc320e.webp');
}

.menu-button-image-link.roof-repair {
  background-image: url('../images/ed0b9b1d-9648-4b45-b5e9-443bac4c3b59.webp');
}

.menu-button-image-link.services {
  background-image: url('../images/509a9720-7ef8-4f51-bd3f-df875213efc9.webp');
}

.menu-button-div {
  width: 32%;
  padding-left: 10px;
  padding-right: 10px;
}

.menu-label-div {
  background-color: var(--white-2);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-top: -60px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.black-int-link {
  color: var(--peru);
  font-size: 20px;
  text-decoration: none;
}

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

.content-section.h3-section {
  border-top: 1px dashed var(--peru);
  border-bottom: 1px dashed var(--peru);
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.double-content-div.center {
  justify-content: center;
  align-items: center;
}

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

.basic-p-block._100 {
  width: 100%;
  margin-top: 20px;
}

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

.single-image-div.google-maps {
  background-image: none;
  align-items: center;
  display: flex;
}

.single-image-div.contact {
  background-image: none;
}

.single-image-div.lead-1 {
  background-image: url('../images/home3.webp');
}

.single-image-div.new-roof {
  background-image: url('../images/38983442-0e9c-4277-9ad6-ea8fee23f3cc.webp');
}

.single-image-div.flat-1 {
  background-image: url('../images/1c6eec86-126f-49bf-8d6b-dd11b8fc320e.webp');
  background-position: 100%;
}

.single-image-div.roof-repair {
  background-image: url('../images/home4.webp');
}

.single-image-div.service-1 {
  background-image: url('../images/a7b00ef4-3aca-416c-b574-64241b1c2fb3.webp');
  background-position: 50% 25%;
}

.single-image-div.home-1 {
  background-image: url('../images/home1.webp');
  background-position: 50% 75%;
}

.h1 {
  color: var(--peru);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
  font-weight: 500;
  line-height: 1.3;
}

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

.coloured-underline.h3-line {
  background-color: var(--dim-grey);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.coloured-underline.white {
  background-color: var(--white);
}

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

.p.padding {
  padding-top: 20px;
}

.contact-us-button {
  border: 2px solid var(--mid-gray);
  background-color: var(--peru);
  color: var(--white);
  border-radius: 2px;
  margin-top: 30px;
  font-weight: 600;
  transition: all .3s ease-in-out;
}

.contact-us-button:hover {
  transform: scale(1.1);
}

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

.large-single-image-div.lead-2 {
  background-image: url('../images/9b04818a-2883-4403-b831-64e6c3ac66cc.webp');
}

.large-single-image-div.new-roo3 {
  background-image: url('../images/a449e88f-663b-428e-8dc9-61e8a054a720.webp');
  background-position: 50%;
  background-size: cover;
}

.large-single-image-div.new-roof-3 {
  background-image: url('../images/b3ee8d67-0530-4976-b1ac-91a998949882.webp');
  background-position: 50%;
}

.large-single-image-div.flat-2 {
  background-image: url('../images/f00a6358-1415-49a9-93eb-51e6ca7e51a1-1.webp');
}

.large-single-image-div.roof-repair-1 {
  background-image: url('../images/9a525390-453d-4c42-8faa-fecc99369260.webp');
  background-position: 100%;
}

.large-single-image-div.service-1 {
  background-image: url('../images/c84a5491-0345-4fc6-959b-a077fde314d9.webp');
}

.large-single-image-div.home-2 {
  background-image: url('../images/4a036be8-a787-43e0-aea6-c35aaf1252e7.webp');
}

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

.large-p-block {
  background-color: #ffffffe6;
  border-radius: 4px;
  width: 48%;
  padding: 0;
}

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

.h2 {
  color: var(--dim-grey);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

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

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

.grid {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
}

.footer-section {
  background-color: var(--white-2);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  display: flex;
}

.grid-image-large-div {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  height: 600px;
}

.grid-image-large-div.home-3 {
  background-image: url('../images/85497247-0469-4b3c-90bc-995e058d6f96.webp');
  height: 650px;
}

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

.grid-image-div.home-4 {
  background-image: url('../images/home2.webp');
  background-position: 50% 40%;
}

.grid-image-div.home-5 {
  background-image: url('../images/5ac87ace-7b2c-4431-9357-ce1cdbdab5d9.webp');
  background-position: 50%;
}

.grey-dividing-line {
  background-color: #5e5e5e;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.h3-div {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  font-size: 16px;
  line-height: 26px;
}

.h3-div.cemter {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
}

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

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

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

.footer-info-div {
  border: 1px solid #5e5e5e;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34%;
  padding: 40px;
  display: flex;
}

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

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

.logo-white {
  width: 100%;
}

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

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

.hero-banner {
  height: auto;
}

.hero-mask {
  height: 600px;
}

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

.company-logo-link {
  text-align: center;
  width: 40%;
}

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

.header-title {
  color: var(--peru);
  font-weight: 600;
}

.footer-title {
  background-color: var(--peru);
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}

.list-2 {
  text-align: center;
  flex: none;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 0;
  list-style-type: none;
}

.list-2.left {
  text-align: left;
}

.footer-nav-item {
  color: #fff;
  cursor: pointer;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: all .2s;
}

.footer-nav-item:hover {
  color: #ffce07;
}

.footer-nav-item.footer-contact {
  color: #fff;
  text-align: left;
  cursor: auto;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.footer-nav-item.footer-contact.auto-cusro {
  color: var(--dim-grey);
  cursor: auto;
}

.footer-nav-item.footer-contact.auto-cusro.main-page {
  font-size: 16px;
}

.contact-link {
  color: var(--dim-grey);
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.contact-link:hover, .contact-link.w--current {
  color: var(--peru);
}

.contact-link._16-font {
  color: var(--black);
  font-size: 16px;
}

.contact-link._16-font:hover, .contact-link._16-font.w--current {
  color: var(--peru);
}

.footer-contact-link {
  color: var(--dim-grey);
  padding-left: 5px;
  padding-right: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.footer-contact-link:hover {
  color: var(--peru);
}

.footer-contact-link.main-page {
  font-size: 16px;
}

.text-span-4 {
  color: var(--peru);
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
  padding: 10px;
  font-family: "Fa 300", sans-serif;
  font-size: 24px;
  display: flex;
}

.text-img-div {
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-img-div.flex-grid {
  margin-bottom: 40px;
}

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

.right-arrow-3:hover {
  background-color: var(--dim-grey);
  transform: scale(.95);
}

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

.customer-titkle {
  color: var(--peru);
  font-size: 16px;
  font-weight: 600;
}

.testemonials-slider {
  position: static;
}

.slide-3 {
  background-color: #fff;
  padding: 15px;
}

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

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

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

.who-made-comment {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 40px;
  display: grid;
}

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

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

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

.text-block-2 {
  color: #fff;
  flex: none;
  margin-top: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
  display: block;
  position: static;
  inset: 0%;
}

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

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

.underline.testemonials-underline.gray {
  background-color: #f5f8fa;
  width: 100%;
}

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

.h2-2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

.h2-2.sm-text {
  color: var(--peru);
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
}

.slider-2 {
  background-color: #0000;
  height: auto;
  position: static;
}

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

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

.h1-light {
  color: var(--dim-grey);
  font-weight: 300;
}

.h3-list {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.list-item {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  list-style-type: none;
  display: flex;
}

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

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

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

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

.list-icon {
  background-image: url('../images/house.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.hyperlink {
  box-shadow: inset 0 -2px 0 0 var(--peru);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.hyperlink:hover {
  box-shadow: inset 0 -50px 0 0 var(--peru);
  color: #fff;
}

.h3-title {
  color: var(--peru);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-size: 23px;
}

.contactform {
  width: 100%;
}

.test-p {
  color: var(--dim-grey);
  font-size: 16px;
}

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

.heading-3 {
  color: var(--dim-grey);
  font-weight: 500;
}

.list {
  padding-left: 10px;
  list-style-type: none;
}

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

.list-item-2 {
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  display: flex;
}

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

.google {
  width: 100%;
}

.date-testom {
  color: #67be56;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

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

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

.quoation-text {
  flex-direction: row;
  display: flex;
}

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

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

.quoation {
  color: var(--peru);
  text-align: left;
  padding-bottom: 20px;
  font-family: Fa6 solid, sans-serif;
  font-size: 40px;
}

.testimonials-div {
  border: 1px solid var(--peru);
  background-color: var(--white-2);
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding: 40px 20px;
  display: flex;
}

.review-title {
  color: var(--dim-grey);
  margin-bottom: 10px;
}

.bold-title {
  color: var(--peru);
}

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

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

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

.accred.check {
  background-image: url('../images/CHECK-A-TRADE-thin.webp');
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100px;
}

.accred.build {
  background-image: url('../images/MyBuilder-1.webp');
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
}

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

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

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

.dropdown-list.w--open {
  margin-top: 10px;
}

.dropdown-link {
  border-bottom: 2px solid var(--white-2);
}

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

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

.h4-list {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.dropdown-toggle {
  padding: 0 30px 0 10px;
}

.gallery-grid {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 50px;
  margin-bottom: 20px;
}

.icon-2, .icon-3 {
  margin-right: 10px;
}

.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: 26px;
  position: static;
}

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

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
  display: 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: 24px;
}

.chat-section {
  background-color: var(--peru);
  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(--peru);
  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 {
  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: flex;
  overflow: hidden;
}

.livechat-button {
  background-color: var(--peru);
  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-2 {
  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;
}

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

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

  .mask, .slider-2 {
    width: 100%;
  }

  .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) {
  .header-div {
    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: 0;
    padding-right: 0;
    display: grid;
  }

  .logo-div {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    justify-items: center;
    width: 100%;
    display: grid;
  }

  .menu-div {
    width: 100%;
  }

  .logo {
    width: 100%;
    height: 70px;
  }

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

  .menu-link {
    background-color: var(--white-2);
    color: var(--black);
    text-align: center;
    width: 100%;
    position: static;
  }

  .menu-link:hover {
    background-color: var(--white-2);
    color: var(--black);
  }

  .menu-link:focus {
    background-color: var(--mid-gray);
    color: var(--white);
  }

  .navbar {
    width: 100%;
  }

  .section {
    height: auto;
  }

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

  .menu-button-image-link {
    height: 160px;
  }

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

  .menu-label-div {
    margin-top: 0;
  }

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

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

  .single-image-div {
    width: 100%;
    height: 400px;
  }

  .single-image-div.google-maps, .single-image-div.contact {
    height: auto;
  }

  .large-single-image-div {
    width: 100%;
    height: 400px;
  }

  .large-image-section {
    padding-bottom: 30px;
  }

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

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

  .footer-info-div {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-info-div._1 {
    border-top-style: none;
    border-bottom-style: none;
    border-left-width: 1px;
    border-right-width: 1px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .logo-white {
    width: 100%;
  }

  .logo-white.footer {
    width: 70%;
    height: 80px;
  }

  .menu-button {
    width: 100%;
  }

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

  .menu-button.w--open {
    background-color: var(--white-2);
    color: #5e5e5e;
    text-align: right;
  }

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

  .co-logo-link.w--current {
    text-align: center;
  }

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

  .right-arrow-3 {
    width: 60px;
    height: 60px;
    margin-left: 0;
    left: auto;
    right: 0;
  }

  .customer-titkle {
    font-size: 1.2rem;
  }

  .left-arrow-3 {
    width: 60px;
    height: 60px;
    margin-right: 100px;
    left: auto;
    right: 0;
  }

  .testemonial-content-everything {
    margin-bottom: 40px;
  }

  .qoate-symbol {
    padding-bottom: 0;
    line-height: 1;
  }

  .h2-2.sm-text {
    width: 100%;
    padding-top: 0;
    padding-bottom: 30px;
    font-size: 32px;
  }

  .slider-2 {
    height: 100%;
  }

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

  .testimonials-grid {
    grid-template-columns: minmax(200px, 1fr);
  }

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

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

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

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

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

  .accred.check, .accred.build {
    height: 50px;
  }

  .dropdown-list.w--open {
    margin-top: 0;
  }

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

  .icon {
    color: var(--peru);
    text-align: center;
  }

  .dropdown-toggle {
    text-align: center;
    width: 100%;
  }

  .text-block-3 {
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .logo-div {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-div, .logo {
    width: 100%;
  }

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

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

  .section {
    position: static;
  }

  .menu-button-group-div {
    grid-template-columns: 1fr;
  }

  .single-image-div, .large-single-image-div {
    height: 350px;
  }

  .grid {
    grid-template-rows: auto auto auto;
  }

  .grid-image-large-div, .grid-image-div {
    height: 250px;
  }

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

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

  .logo-white.footer {
    width: 80%;
  }

  .hero-mask {
    height: 400px;
  }

  .right-arrow-3 {
    bottom: -5%;
  }

  .container {
    padding-top: 20px;
  }

  .testemonials-slider {
    position: static;
  }

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

  .left-arrow-3 {
    margin-top: 20px;
    margin-left: auto;
    padding-top: 0;
    bottom: -5%;
  }

  .qoate-symbol {
    margin-left: 0;
    padding-right: 60px;
    position: static;
  }

  .underline {
    width: 50%;
  }

  .h2-2 {
    text-align: left;
    font-size: 30px;
  }

  .h2-2.sm-text {
    width: 100%;
    font-size: 24px;
    line-height: 1;
  }

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

  .testimonials-grid {
    grid-template-rows: auto;
    grid-template-columns: minmax(200px, 1fr);
  }

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

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

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

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

  .accred.check, .accred.build {
    height: 50px;
  }

  .sticky-btn {
    border-color: var(--dim-grey);
    background-color: var(--peru);
    font-size: 16px;
    display: block;
    bottom: 20px;
  }

  .font-icon-2.font-icon-m-left {
    font-size: 16px;
  }

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

@media screen and (max-width: 479px) {
  .header-div {
    flex-direction: column;
  }

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

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

  .logo {
    width: 100%;
  }

  .contact-info-div {
    align-items: center;
  }

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

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

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

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

  .single-image-div {
    height: 250px;
  }

  .h1 {
    font-size: 30px;
  }

  .large-single-image-div {
    border-radius: 4px;
    width: 100%;
    height: 250px;
  }

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

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

  .h2 {
    font-size: 28px;
  }

  .grey-content-section {
    margin-top: 0;
  }

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

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

  .footer-info-div {
    width: 100%;
  }

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

  .logo-white.footer {
    width: 100%;
    height: 60px;
  }

  .menu-button {
    display: flex;
  }

  .footer-nav-item.footer-contact {
    justify-content: flex-start;
  }

  .text-span-4 {
    margin-right: 0;
    padding: 5px;
  }

  .container.test-container {
    width: 95%;
  }

  .customer-titkle {
    font-size: 1rem;
  }

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

  .testemonials-slider {
    width: 100%;
  }

  .slide-3 {
    padding: 0;
  }

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

  .mask {
    width: 100%;
  }

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

  .underline {
    width: 30%;
  }

  .h2-2 {
    text-align: left;
    font-size: 28px;
  }

  .h2-2.sm-text {
    white-space: normal;
    line-height: 1.3;
    display: inline-block;
  }

  .slider-2 {
    width: 100%;
  }

  .testemonials {
    overflow: hidden;
  }

  .testimonials-grid {
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: minmax(200px, 1fr);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .h1-light {
    font-size: 27px;
  }

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

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

  .date-testom {
    text-align: center;
  }

  .location {
    justify-content: center;
  }

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

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

  .accred.check, .accred.build {
    height: 40px;
  }

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

  .dropdown-toggle {
    text-align: center;
    width: 100%;
  }

  .text-block-3 {
    padding-left: 20px;
  }

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

#w-node-_4b711792-985b-a658-0cb4-b45ae72bd583-305612eb {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_9ba414f7-c132-203d-7748-0d5767f6509c-305612eb {
  place-self: end;
}

#w-node-_7af6336c-11ee-208e-09ab-cc59d2bb954b-5dfd7c7a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5c0d7e17-295f-ba0f-fb73-d1a52028c8eb-8f088bb0, #w-node-_0b7fa656-ab4e-676b-e7d8-22050f36d5a2-8f088bb0, #w-node-_8b288e08-7567-d5b8-3f80-00258a7c849a-8f088bb0, #w-node-cd2811ab-1a26-cefe-f462-efdd02fd3e50-8f088bb0, #w-node-_264fd615-7aa3-32b7-74a8-f1fc2a8a4571-8f088bb0, #w-node-f21ee5b1-5868-2e46-6aa2-d170b96b2dd8-8f088bb0, #w-node-cc8818ec-1e51-20b4-da45-ed6f7ba9110b-8f088bb0, #w-node-_34a173da-2629-76b2-d7c2-f1f1f5f68d46-8f088bb0, #w-node-da5bd59f-2a45-f48b-d260-3ddc15215451-8f088bb0, #w-node-e8492b08-c439-172f-01df-628390a899c6-8f088bb0, #w-node-_9b067362-778a-17d5-48f8-ae2b04fe6e6c-8f088bb0, #w-node-_55c5fb2a-bd04-ea8b-812f-446ffad5d3b1-8f088bb0, #w-node-f47c286c-80b9-7fd0-ca70-0310704e668b-8f088bb0, #w-node-_4502e5a8-0d8c-c18c-1c6a-95cc6b108fc8-8f088bb0, #w-node-d312c8f1-f9ad-0a1a-dfa5-76e2d1c0060b-8f088bb0, #w-node-_4682a983-e654-ff2b-9c1c-ec0a72243bfa-8f088bb0, #w-node-_8c029397-6c1f-dd9a-e75e-6ac52441c868-8f088bb0, #w-node-_7a74570a-225e-def6-c9fd-1a153fbe52bd-8f088bb0, #w-node-eda8f0b4-153e-2805-22ea-3d20210b612b-8f088bb0, #w-node-_8bd4a8d7-5b7f-5b36-3b80-64ca6d5129fa-8f088bb0, #w-node-_956eb0f5-ae8b-3a04-2dbb-96b1aa8fb179-8f088bb0, #w-node-_0d152b86-1b29-928d-0103-8c003aedd9ae-8f088bb0, #w-node-_75111bc3-9315-94ee-dcbf-5ce06d39a32a-8f088bb0, #w-node-_61d0e63d-dd32-4f3c-65da-9ea200b1f1f8-8f088bb0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_7af6336c-11ee-208e-09ab-cc59d2bb954b-5dfd7c7a, #w-node-_0268c7ed-8474-d783-2d16-fef6c1c42902-5dfd7c7a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4b711792-985b-a658-0cb4-b45ae72bd583-305612eb, #w-node-_4b711792-985b-a658-0cb4-b45ae72bd584-305612eb, #w-node-_4b711792-985b-a658-0cb4-b45ae72bd585-305612eb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9ba414f7-c132-203d-7748-0d5767f6509b-305612eb {
    justify-self: auto;
  }

  #w-node-_7af6336c-11ee-208e-09ab-cc59d2bb954b-5dfd7c7a, #w-node-_0268c7ed-8474-d783-2d16-fef6c1c42902-5dfd7c7a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_9ba414f7-c132-203d-7748-0d5767f65096-305612eb {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@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 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 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 duotone 900';
  src: url('../fonts/fa-duotone-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6';
  src: url('../fonts/FA6-Regular.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');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6 brands';
  src: url('../fonts/FA6-Brands.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}