:root {
  --black: #212121;
  --accent: #01a91f;
  --hover: #00971b;
  --accent-light: #01a91f12;
  --white: white;
  --text: #5b5f64;
  --lime-green: #00d563;
}

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

body {
  color: var(--black);
  font-family: 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: 44px;
  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 {
  background-color: #f7f7f7;
  padding-top: 80px;
  padding-bottom: 24px;
}

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

.section.custom-padding {
  padding-bottom: 48px;
}

.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 {
  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;
  width: 100%;
  display: flex;
}

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

.values-html-embed {
  color: var(--accent);
  width: 42px;
  height: 42px;
}

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

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

.values-content {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.sticky-wrap {
  max-width: 610px;
  position: relative;
}

.stick-content-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 610px;
  display: flex;
}

.space-16 {
  height: 16px;
}

.h3-title {
  font-weight: 700;
}

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

.space {
  height: 10px;
}

.space._42 {
  height: 42px;
}

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

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

.subnav {
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #ececec;
  height: 60px;
  position: fixed;
  inset: 69px 0% auto;
}

.container-sub-nav {
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.link-sub-nav {
  color: #0b0c0d;
  border-bottom: 2px solid #424bd100;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  display: flex;
}

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

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

.about-image-large {
  background-color: var(--white);
  width: 100%;
  max-width: 180px;
  margin-bottom: 32px;
  padding: 8px;
}

.wrap-tile-feature-texts {
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
}

.text-heading {
  font-size: 24px;
  font-weight: 700;
}

.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: var(--text);
}

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

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

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

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

.brand-image-footer-3 {
  background-color: var(--white);
  height: 100%;
  padding: 8px;
}

.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;
  align-items: flex-start;
  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;
}

.space-182 {
  height: 10px;
}

.wrap-trusted-home-a-2 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: row;
  align-items: flex-start;
  max-width: 600px;
  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;
}

.h1-hero.show-mobile {
  display: none;
}

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

.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 {
  filter: invert();
  width: 100%;
}

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

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

.paragraph-big-10 {
  font-size: 18px;
}

.tile-feature-transparent-2 {
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 48px 16px;
  display: flex;
}

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

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

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

.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: var(--text);
}

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

.text-medium {
  margin-top: 4px;
  font-weight: 500;
}

.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: 64px 24px;
  display: flex;
}

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

.contact-text-block {
  line-height: 1.4;
}

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

.service-image {
  object-fit: cover;
  border-radius: 50%;
  width: 160px;
  height: 160px;
}

.service-text {
  text-align: center;
  margin-top: 32px;
  font-size: 22px;
  font-weight: 500;
}

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

.eu-image {
  width: 120px;
}

.eu-logo-hero {
  width: 300px;
  margin-top: 42px;
  margin-bottom: 16px;
}

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

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

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

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

  .grid-halves.sticky-values-grids {
    grid-template-columns: 1fr;
  }

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

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

  .service-card {
    padding: 24px;
  }

  .subnav {
    display: none;
  }

  .container-sub-nav {
    justify-content: flex-start;
    align-items: center;
    overflow: scroll;
  }

  .link-sub-nav {
    color: #0b0c0d;
    background-color: #f9f9f9;
    border: 1px solid #dcdcdc;
    border-radius: 40px;
    flex: none;
    height: 32px;
    margin-right: 1vw;
    padding-top: 0;
  }

  .link-sub-nav.w--current {
    color: #f9f9f9;
    background-color: #00d563;
    border-color: #fff;
  }

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

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

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

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

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

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

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

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

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

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

  .expandable-single {
    padding: 24px;
  }

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

  .sticky-block, .sticky-wrap, .stick-content-wrap {
    max-width: none;
  }

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

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

  .hide-mobile {
    display: none;
  }

  .space._42.smaller-mobile {
    height: 10px;
  }

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

  .grid-halves-2.home-a-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;
  }

  .text-heading {
    font-size: 22px;
    line-height: 28px;
  }

  .cta-list.gap-24 {
    grid-row-gap: 32px;
    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;
  }

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

  .wrap-trusted-home-a-2 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    text-align: center;
    flex-flow: column;
    align-items: center;
    margin-bottom: 20px;
  }

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

  .h1-hero.show-mobile {
    display: block;
  }

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

  .tile-feature-transparent-2 {
    text-align: center;
  }

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

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

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

  .cta-list-item.big-list-item {
    text-align: center;
    flex-flow: column;
    width: 250px;
    font-size: 16px;
  }

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

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

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

  .contact-text-block {
    line-height: 140%;
  }

  .service-image {
    width: 200px;
    height: 200px;
  }
}

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

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

#w-node-_12affe1e-f97c-64af-b0ff-ea7f43b3428b-66186acb, #w-node-_6da23f37-564a-c4e9-371c-0b75fe214cec-66186acb, #w-node-ce417603-aff8-e4e1-1481-bcfc312d2c2b-66186acb, #w-node-_92e2b136-1921-8a4a-adfe-68a5c84627bd-66186acb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#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 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_279a9b41-91a9-da9b-b70b-39279a872823-66186acb {
    order: -9999;
  }

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

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