@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: #212121;
  --accent: #0a6847;
  --hover: #06583c;
  --accent-light: #0a684712;
  --white: white;
  --lime-green: #00d563;
  --text: #5b5f64;
}

.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-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

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

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

p {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.5;
}

strong {
  font-weight: bold;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.container-navbar {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 100%;
  grid-template-columns: 200px 1fr 200px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
}

.right-navbar {
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.brand-link-nav {
  justify-content: center;
  align-items: center;
  height: 59px;
  margin-left: -3px;
  display: flex;
}

.link-nav {
  color: #0b0c0d;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.brand-nav {
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.primary-button {
  background-color: var(--accent);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding-left: 26px;
  padding-right: 26px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
}

.primary-button:hover, .primary-button.w--current:hover {
  background-color: var(--hover);
}

.primary-button.nav-menu-cta {
  color: #00d563;
  background-color: #00d5631a;
  height: 46px;
  font-size: 16px;
  font-weight: 700;
  transition: color .2s, background-color .2s;
  display: none;
}

.primary-button.nav-menu-cta:hover {
  color: #f9f9f9;
  background-color: #00d563;
}

.primary-button.nav-button {
  background-color: var(--accent-light);
  color: var(--accent);
  height: 46px;
  font-size: 16px;
  font-weight: 600;
  transition: color .2s, background-color .2s;
}

.primary-button.nav-button:hover {
  background-color: var(--accent);
  color: #f9f9f9;
}

.navbar {
  z-index: 1001;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
  flex-direction: column;
  justify-content: center;
  height: 69px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

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

.section.footer {
  color: var(--white);
  background-color: #181818;
  padding-top: 80px;
  padding-bottom: 24px;
}

.section.light-background {
  background-color: #f9f9f9;
}

.container {
  max-width: 1348px;
  padding-left: 24px;
  padding-right: 24px;
}

.cta {
  background-color: var(--accent);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding-left: 26px;
  padding-right: 26px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
}

.cta:hover {
  background-color: var(--hover);
}

.cta.big {
  height: 60px;
  font-size: 18px;
}

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

.section-2.service-breadcrumb {
  padding-top: 180px;
  padding-bottom: 0;
}

.section-2.hero-sales, .section-2.top-120px {
  padding-top: 120px;
}

.main-container {
  max-width: 1348px;
  padding-left: 24px;
  padding-right: 24px;
}

.space-24 {
  height: 24px;
}

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

.center-content {
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.link-contact-tile {
  grid-column-gap: 24px;
  color: #0b0c0d;
  background-color: #f9f9f9;
  border-radius: 8px;
  align-items: flex-start;
  padding: 48px;
  text-decoration: none;
  display: flex;
}

.home-image-wrap {
  transform-origin: 0 100%;
  border-radius: 12px;
  height: 423px;
  position: relative;
  overflow: hidden;
}

.home-image-wrap.hero {
  width: 100%;
  height: 550px;
}

.home-image-wrap.tall {
  height: 520px;
}

.check-list-icon {
  flex: none;
  width: 32px;
  height: 32px;
}

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

.service-card {
  color: #fff;
  border-radius: 18px;
  flex-direction: row;
  flex: none;
  align-items: flex-end;
  width: 775px;
  height: 566px;
  padding: 72px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.left-product {
  padding: 0 40px 0 0;
}

.jeothermal-icon {
  width: 52px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.expandable-single {
  cursor: pointer;
  background-color: #f9f9f9;
  border-radius: 18px;
  padding: 24px 24px 24px 32px;
}

.sticky-values-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.sticky-block {
  flex-direction: column;
  max-width: 530px;
  display: flex;
  position: sticky;
  top: 100px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 85vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-image {
  width: 42px;
  margin-left: auto;
  margin-right: auto;
}

.grid-halves-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.grid-halves-2.image-grid {
  grid-column-gap: 80px;
  grid-column-gap: 80px;
}

.grid-halves-2.home-a-grid {
  grid-column-gap: 60px;
  grid-template-columns: 1.2fr 1fr;
  place-items: center;
}

.grid-halves-2.image-grid {
  grid-column-gap: 80px;
}

.hide-desktop {
  display: none;
}

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

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

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid #fff3;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: #383838;
  transform: scale(1.05);
}

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

.chat-section {
  background-color: #e6ddd4;
  height: 50%;
  padding: 16px 20px;
}

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

.top-section {
  justify-content: space-between;
  align-items: center;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.close-live-chat-container {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
  display: flex;
}

.whatsapp-icon {
  width: 26px;
}

.live-icon-chat {
  object-fit: cover;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  margin-right: 0;
}

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

.profile-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
  position: static;
}

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

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

.live-icon.profile-live-icon {
  border: 1.5px solid #fff;
  width: 10px;
  height: 10px;
  inset: auto 3px 3px auto;
}

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

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

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

.profile-image-wrapper-2 {
  position: relative;
}

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

.livechat-button {
  background-color: #00b94a;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  display: flex;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: auto 30px 30px auto;
}

.space-183 {
  height: 32px;
}

.text-field {
  color: var(--black);
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  min-height: 60px;
  margin-bottom: 0;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
}

.text-field:focus {
  border-color: #424bd1;
}

.text-field::placeholder {
  color: #c6c6c6;
}

.success-message-3 {
  background-color: #f9f9f9;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}

.cta-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.cta-list.gap-24 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 10px;
}

.no-margins-2 {
  margin: 0;
}

.no-margins-2.font-16px {
  font-size: 16px;
}

.cta-5 {
  text-align: center;
  background-color: #424bd1;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 200%;
  transition: background-color .2s;
  display: flex;
}

.cta-5:hover {
  background-color: #424bd1e6;
}

.cta-5.newsletter-submit {
  background-color: var(--accent);
  height: 60px;
  margin-left: 8px;
}

.form-block-newsletter {
  width: 100%;
}

.brand-link-footer-2 {
  width: 120px;
}

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

.brand-image-footer-3 {
  height: 100%;
}

.form-newsletter {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-bottom-flex {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.input-wrap-newsletter {
  flex: 1;
}

.bottom-left-footer {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  display: flex;
}

.main-container-2 {
  max-width: 1348px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.links-heading-footer {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.space-186 {
  height: 100px;
}

.legal-text-footer {
  font-size: 14px;
}

.bottom-right-footer {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 560px;
  display: flex;
}

.flext-two-horiziontal-buttons-2 {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.limit-580 {
  max-width: 580px;
}

.logo-image-2 {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100px;
  height: 17px;
}

.logo-image-2.mitsubisi {
  height: 42px;
}

.space-182 {
  height: 10px;
}

.space-187 {
  height: 80px;
}

.logos-master-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: baseline;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.wrap-trusted-home-a-2 {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  margin-top: 24px;
  display: flex;
}

.content-wrap-hero-home-a {
  padding-top: 40px;
}

.subtitle-6 {
  font-size: 22px;
  line-height: 1.5;
}

.h1-hero {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.2;
}

.cta-7 {
  background-color: #00d563;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding-left: 26px;
  padding-right: 26px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
}

.cta-7:hover {
  background-color: #00d563e6;
}

.cta-7.secondary-white {
  color: #212121;
  background-color: #fff;
}

.cta-profile-image {
  object-fit: cover;
  object-position: 50% 100%;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.profile-wrapper {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.socials-wrap-footer {
  grid-column-gap: 18px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-link-footer {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.social-image-footer {
  width: 100%;
}

.span-accent {
  color: var(--accent);
}

.limit-1083 {
  width: 100%;
  max-width: 690px;
}

.limit-1083.center-tablet {
  margin-left: auto;
  margin-right: auto;
}

.text-block-2 {
  color: #51c85d;
}

.whatsapp-social-link-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #b02f28;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.about-social-media-flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
}

.footer-html-embed {
  color: #fff;
  width: 24px;
  height: 24px;
  transition: all .15s;
}

.footer-html-embed:hover {
  color: #1a549b;
  transform: scale(1.2);
}

.footer-html-embed.whatsapp:hover {
  color: #25d366;
}

.footer-html-embed.whatsapp.color {
  color: #101820;
}

.about-logo-image {
  width: 140px;
  margin-bottom: 24px;
}

.space-185 {
  height: 16px;
}

.text-field-5 {
  color: #212121;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  min-height: 60px;
  margin-bottom: 0;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
}

.text-field-5:focus {
  border-color: #424bd1;
}

.text-field-5::placeholder {
  color: #c6c6c6;
}

.text-field-5.text-area {
  min-height: 110px;
}

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

.submit-wrap-2 {
  flex-direction: column;
  margin-top: 24px;
  display: flex;
}

.input-wrap-2 {
  margin-bottom: 10px;
}

.cta-left-column {
  background-color: #fff;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
}

.cta-left-column.gray {
  background-color: #f9f9f9;
}

.cta-author-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.cta-list-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  display: flex;
}

.cta-list-item.big-list-item {
  font-size: 18px;
}

.cta-form-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 346px;
  display: flex;
}

.cta-left-inner {
  width: 100%;
  max-width: 480px;
}

.cta-column {
  align-items: stretch;
  width: 100%;
  max-width: 1512px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.cta-right-column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 128px 24px;
  display: flex;
}

.h2-cta {
  font-size: 36px;
}

.cta-text-block {
  font-size: 16px;
}

.title-wrap-home-image-section-4 {
  width: 100%;
}

.master-image-halves-grids-3 {
  grid-row-gap: 120px;
  flex-direction: column;
  display: flex;
}

.check-list-wrap-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  margin-top: 24px;
  font-weight: 500;
  display: flex;
}

.check-list-wrap-2.padding-right {
  padding-right: 25%;
}

.checkmark-html-embed-2 {
  color: var(--accent);
}

.check-list-item-2 {
  grid-column-gap: 16px;
  align-items: center;
  display: inline-flex;
}

.space-189 {
  height: 10px;
}

.contact-code-embed {
  width: 23px;
  height: 23px;
}

.about-heading {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

.gallery-image {
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  height: 250px;
}

.gallery-image.double {
  height: 528px;
}

.gallery-image.contain {
  object-fit: contain;
}

.inner-container._600px {
  max-width: 600px;
}

.inner-container._600px.center {
  margin-left: auto;
  margin-right: auto;
}

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

.text-center.mg-top-48px {
  justify-content: center;
  align-items: center;
  margin-top: 42px;
  display: flex;
}

.text-center.mg-bottom-48px {
  margin-bottom: 48px;
}

.text-center.mg-bottom-64px {
  margin-bottom: 64px;
}

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

.image {
  width: 200px;
  margin-top: 20px;
}

@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) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .nav-menu {
    background-color: #f9f9f9;
    border-radius: 6px;
    flex-direction: column;
    align-items: stretch;
    width: 98%;
    height: auto;
    max-height: 90vh;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
    overflow: visible;
  }

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

  .right-navbar {
    display: none;
  }

  .wrap-menu-button {
    grid-row-gap: 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
  }

  .link-nav {
    width: 100%;
    font-size: 18px;
    line-height: 50px;
    display: block;
  }

  .primary-button.nav-menu-cta {
    background-color: var(--accent-light);
    color: var(--accent);
    margin-top: 16px;
    display: flex;
  }

  .primary-button.nav-menu-cta:hover {
    background-color: var(--accent);
  }

  .menu-button {
    background-color: #f9f9f9;
    border-radius: 4px;
    width: 48px;
    height: 48px;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: var(--accent);
  }

  .line-menu {
    background-color: #000;
    border-radius: 4px;
    width: 32px;
    height: 2px;
    padding: 0;
  }

  .line-menu.second-line {
    width: 20px;
  }

  .home-image-wrap {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-image-wrap.tall {
    height: 500px;
  }

  .service-card {
    height: 440px;
    padding: 55px;
  }

  .right-product {
    padding: 0;
  }

  .left-product {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .expandable-single {
    padding-right: 4px;
  }

  .grid-halves-2.home-a-grid {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }

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

  .hide-desktop {
    display: flex;
  }

  .grid-thirds.pricing-thirds {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .whatsapp-block {
    bottom: 20px;
    right: 20px;
  }

  .cta-list.gap-24 {
    grid-row-gap: 16px;
  }

  .footer-bottom-flex {
    grid-row-gap: 32px;
    flex-direction: column;
    align-items: center;
  }

  .bottom-left-footer, .bottom-right-footer {
    text-align: center;
    align-items: center;
  }

  .wrap-trusted-home-a-2 {
    margin-top: 42px;
  }

  .limit-1083.center-tablet {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .cta-column {
    width: 96%;
    padding-left: 0;
    padding-right: 0;
  }

  .title-wrap-home-image-section-4 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    display: flex;
  }

  .check-list-wrap-2 {
    justify-content: center;
  }

  .check-list-wrap-2.padding-right {
    padding-right: 0;
  }

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

  .gallery-image, .gallery-image.double {
    height: 350px;
  }

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

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 28px;
  }

  .nav-menu {
    text-align: left;
    align-items: flex-start;
  }

  .container-navbar {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .right-navbar {
    display: none;
  }

  .section, .section-2 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-2.service-breadcrumb {
    padding-top: 120px;
  }

  .home-image-wrap {
    height: 66vw;
  }

  .home-image-wrap.hero {
    height: 400px;
  }

  .home-image-wrap.tall {
    height: 350px;
  }

  .service-card {
    padding: 24px;
  }

  .grid-halves-2.image-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

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

  .whatsapp-block {
    bottom: 15px;
    right: 15px;
  }

  .footer-bottom-flex {
    grid-row-gap: 64px;
  }

  .logos-master-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
  }

  .cta-column {
    flex-direction: column;
    width: 96%;
  }

  .cta-right-column {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 42px;
  }

  .nav-menu {
    width: 96%;
  }

  .brand-link-nav {
    padding-left: 0;
  }

  .primary-button.nav-menu-cta {
    color: var(--accent);
  }

  .primary-button.nav-menu-cta:hover {
    background-color: var(--accent);
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .menu-button.w--open {
    background-color: var(--accent);
  }

  .line-menu.first-line {
    width: 28px;
  }

  .line-menu.second-line {
    width: 18px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-2.service-breadcrumb {
    padding-top: 100px;
  }

  .section-2.hero-sales {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .main-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .link-contact-tile {
    grid-row-gap: 16px;
    flex-direction: column;
    padding: 32px;
  }

  .home-image-wrap {
    height: 78vw;
  }

  .home-image-wrap.tall {
    height: 325px;
  }

  .home-image-wrap.hero {
    height: 350px;
  }

  .expandable-single {
    padding: 24px;
  }

  .sticky-values-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sticky-block {
    max-width: none;
  }

  .utility-page-content {
    align-items: flex-start;
  }

  .utility-image {
    margin-left: 0;
    margin-right: 0;
  }

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

  .grid-halves-2.home-a-grid, .grid-halves-2.image-grid {
    grid-row-gap: 40px;
  }

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

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

  .whatsapp-chat {
    width: 100%;
    height: 40vh;
    position: relative;
  }

  .whatsapp-icon {
    width: 26px;
  }

  .whatsapp-block {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    bottom: 0;
    right: 0;
  }

  .cta-list.gap-24 {
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
  }

  .cta-5.newsletter-submit {
    margin-left: 0;
  }

  .form-newsletter {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-wrap-newsletter-form {
    flex-direction: column;
    display: flex;
  }

  .main-container-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .text-block-3 {
    margin-bottom: 24px;
  }

  .flext-two-horiziontal-buttons-2 {
    grid-row-gap: 24px;
    flex-direction: column;
    margin-top: 20px;
  }

  .space-187.smaller-mobile {
    height: 0;
  }

  .logos-master-2 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    justify-content: center;
    align-items: flex-start;
  }

  .wrap-trusted-home-a-2 {
    text-align: center;
    align-items: center;
    margin-top: 54px;
  }

  .content-wrap-hero-home-a {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    display: flex;
  }

  .subtitle-6 {
    font-size: 20px;
  }

  .h1-hero {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 38px;
    line-height: 1.3;
  }

  .text-block-2 {
    color: #21be5c;
  }

  .whatsapp-social-link-block {
    color: #25d366;
  }

  .about-social-media-flex {
    flex-flow: column;
  }

  .footer-html-embed.whatsapp.color {
    color: #25d366;
  }

  .about-logo-image {
    margin-top: 0;
    margin-bottom: 0;
  }

  .cta-left-column.gray {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .cta-author-wrap {
    flex-direction: column;
  }

  .cta-list-item.big-list-item {
    font-size: 16px;
  }

  .cta-left-inner {
    text-align: center;
  }

  .cta-right-column {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .h2-cta {
    margin-top: 0;
    font-size: 32px;
  }

  .cta-text-block {
    text-align: left;
    line-height: 140%;
  }

  .master-image-halves-grids-3 {
    grid-row-gap: 80px;
  }

  .check-list-wrap-2 {
    grid-row-gap: 12px;
  }

  .check-list-item-2 {
    font-size: 16px;
  }

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

  .grid-4-columns._2-col-mbp {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }
}

#w-node-_922daf10-84db-5c21-d146-c890bc8a9302-d865d634, #w-node-_922daf10-84db-5c21-d146-c890bc8a9315-d865d634 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_279a9b41-91a9-da9b-b70b-39279a872823-d865d634 {
  place-self: center start;
}

#w-node-_01ee4efe-2dca-1368-c215-d2c515a5b81a-d865d634 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_01ee4efe-2dca-1368-c215-d2c515a5b81c-d865d634, #w-node-f61ee2a3-03e1-30ed-7540-49bf0cb470db-d865d634 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-f61ee2a3-03e1-30ed-7540-49bf0cb470d9-d865d634 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d1704dba-a30b-3998-0abf-0c91c65fa25a-d865d634 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_5cafaa3a-b40a-2f86-0902-a48212653923-12653921 {
  place-self: center start;
}

#w-node-_5cafaa3a-b40a-2f86-0902-a48212653925-12653921 {
  place-self: stretch center;
}

#w-node-_5cafaa3a-b40a-2f86-0902-a48212653934-12653921, #w-node-_04176dfd-f7e8-d0b7-f2d2-169ea97b3e3a-fc49d54c, #w-node-bb2f2235-5a7e-cade-8dab-0fb460eecb48-fc49d54c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_279a9b41-91a9-da9b-b70b-39279a872823-d865d634, #w-node-_01ee4efe-2dca-1368-c215-d2c515a5b81a-d865d634 {
    order: -9999;
  }

  #w-node-_01ee4efe-2dca-1368-c215-d2c515a5b81c-d865d634, #w-node-f61ee2a3-03e1-30ed-7540-49bf0cb470db-d865d634 {
    justify-self: center;
  }

  #w-node-f61ee2a3-03e1-30ed-7540-49bf0cb470d9-d865d634 {
    order: -9999;
  }

  #w-node-d1704dba-a30b-3998-0abf-0c91c65fa25a-d865d634 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c777b48d-381f-9d72-58e2-c790c6f560b1-12653921 {
    justify-self: end;
  }

  #w-node-_04176dfd-f7e8-d0b7-f2d2-169ea97b3e3c-fc49d54c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c777b48d-381f-9d72-58e2-c790c6f560b1-12653921 {
    justify-self: end;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}