:root {
  --black: #212121;
  --accent: #00d563;
  --hover: #00c55c;
  --accent-light: rgba(0, 213, 99, .07);
  --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;
}

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

a {
  color: var(--black);
  text-decoration: underline;
}

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: 240px 1fr 240px;
  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: flex-start;
  align-items: center;
  height: 36px;
  display: flex;
}

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

.brand-nav {
  width: 150px;
  max-width: none;
  height: 100%;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.brand-nav.black {
  color: var(--black);
  object-fit: contain;
  object-position: 0% 50%;
  width: 200px;
}

.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: rgba(0, 213, 99, .1);
  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;
}

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

.primary-button.big.white {
  background-color: var(--white);
  color: var(--black);
}

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

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

.section.footer {
  background-color: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 24px;
}

.section.hero {
  padding-top: 180px;
  padding-bottom: 160px;
  position: relative;
}

.section.hero.hide {
  display: none;
}

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

.section.top-160px {
  padding-top: 160px;
}

.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.hero-service {
  padding-top: 180px;
}

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

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

.space-24 {
  height: 24px;
}

.subtitle {
  font-size: 24px;
  line-height: 40px;
}

.subtitle.w70 {
  width: 70%;
}

.subtitle.w70.white-text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.master-tag-and-text {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

.title-wrap-home-image-section {
  width: 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;
}

.space-10 {
  height: 10px;
}

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

.button-2 {
  background-color: #424bd1;
  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;
}

.button-2:hover {
  background-color: rgba(66, 75, 209, .9);
}

.button-2.big {
  background-color: #424bd1;
  height: 60px;
  font-size: 18px;
}

.button-2.secondary-white {
  color: #00d563;
  background-color: #fff;
}

.button-2.secondary-white.big {
  color: var(--lime-green);
  background-color: rgba(0, 0, 0, 0);
}

.button-2.secondary-white.big.white-text {
  color: #fff;
}

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

.tag-default {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  background-color: #0b0c0d;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 36px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  display: flex;
}

.space-181 {
  height: 24px;
}

.limit-1082 {
  max-width: 1080px;
}

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

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

.hero-background {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.hero-background-image {
  object-fit: cover;
  object-position: 50% 50%;
  background-image: url('../images/talon-rakennus.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
}

.hero-background-overlay {
  background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.about-logo-image {
  width: 200px;
  margin-bottom: 32px;
}

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

.text-white.h1-hero {
  margin-top: 24px;
  margin-bottom: 16px;
}

.hide-desktop {
  display: none;
}

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

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

.footer-location-icon {
  width: 16px;
}

.whatsapp-social-link-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  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: #25d366;
  width: 21px;
  height: 21px;
}

.footer-html-embed.whatsapp.color.margin {
  margin-top: -9px;
}

.text-block-2 {
  color: #25d366;
}

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

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

.whatsapp-icon {
  width: 26px;
}

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

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

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, .2);
  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;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

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

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

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 3px;
  bottom: auto;
  left: 3px;
  right: auto;
}

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

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

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

.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-chat-bottom-text {
  font-size: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.space-184 {
  height: 16px;
}

.mega-h1 {
  font-size: 64px;
  line-height: 1.1;
}

.title-wrap-sales-hero {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.flext-sales-cta {
  grid-column-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-4 {
  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-4:hover {
  background-color: rgba(0, 213, 99, .9);
}

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

.cta-4.big.white---black {
  color: #0b0c0d;
  background-color: #fff;
}

.cta-4.big.white---black:hover {
  background-color: #faf7f7;
}

.subtitle-7 {
  font-size: 22px;
  line-height: 1.6;
}

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

.space-183 {
  height: 24px;
}

.div-block {
  height: 45vh;
  position: relative;
}

.hero-background-overlay-2 {
  background-image: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.space-185 {
  height: 16px;
}

.text-field-4 {
  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-4:focus {
  border-color: #424bd1;
}

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

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

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

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

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

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

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

.text-medium {
  font-weight: 500;
}

.cta-left-column {
  background-color: #fff;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  padding: 24px 42px;
  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-list-item.big-list-item.whatsapp {
  color: #25d366;
  text-decoration: none;
}

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

.icon-regular {
  width: 24px;
  height: 24px;
}

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

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

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

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

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

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

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

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

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

.cta-6 {
  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-6:hover {
  background-color: rgba(66, 75, 209, .9);
}

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

.paragraph-footer {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
}

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

.space-186 {
  height: 100px;
}

.brand-image-footer-3 {
  height: 100%;
  margin-bottom: 10px;
}

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

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

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

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

  .subtitle.w70 {
    width: auto;
  }

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

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

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

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

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

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

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

  .right-product {
    padding: 0;
  }

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

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

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

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

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

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

  .mega-h1 {
    font-size: 72px;
    line-height: 87px;
  }

  .cta-left-column {
    padding-left: 24px;
    padding-right: 24px;
  }

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

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

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

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

@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.hero-service {
    padding-top: 120px;
  }

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

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

  .service-card {
    padding: 24px;
  }

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

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

  .mega-h1 {
    font-size: 64px;
    line-height: 72px;
  }

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

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

  .paragraph-footer {
    font-weight: 400;
  }

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

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

  .nav-menu {
    width: 96%;
  }

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

  .section.hero {
    padding-top: 140px;
  }

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

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

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

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

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

  .subtitle.w70.white-text {
    line-height: 1.4;
  }

  .master-tag-and-text {
    grid-row-gap: 12px;
    flex-wrap: wrap;
  }

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

  .grid-halves.image-grid {
    grid-row-gap: 40px;
  }

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

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

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

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

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

  .expandable-single {
    padding: 24px;
  }

  .flext-two-horiziontal-buttons {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .tag-default {
    margin-bottom: 20px;
  }

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

  .hero-background-image {
    object-position: 65% 50%;
  }

  .hero-background-overlay {
    background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6));
  }

  .text-white {
    line-height: 1.15;
  }

  .text-white.h1-hero {
    font-size: 46px;
  }

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

  .whatsapp-social-link-block, .footer-html-embed.whatsapp.color {
    color: #25d366;
  }

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

  .whatsapp-icon {
    width: 26px;
  }

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

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

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

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

  .mega-h1 {
    margin-top: 0;
    font-size: 11vw;
    line-height: 135%;
  }

  .title-wrap-sales-hero {
    text-align: center;
    align-items: center;
  }

  .flext-sales-cta {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .subtitle-7 {
    font-size: 20px;
    line-height: 1.5;
  }

  .div-block {
    height: 50vh;
  }

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

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

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

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

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

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

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

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

#w-node-a51d8938-40ed-f19b-11a5-58d6036e9ccc-27011851 {
  align-self: center;
  justify-self: start;
}

#w-node-_058e0ea4-25b3-68d3-05d2-d971a40eb4f3-27011851 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_300dd793-9dea-a125-120e-cf8224d8ac22-27011851, #w-node-_49373ce5-c9ba-48ab-70be-dfc4d1c74709-27011851 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-fce5b7fc-541e-c940-7a51-d3fd28fe726d-27011851, #w-node-_7eb5f38c-7a02-49a5-dcc3-14f4b8663bfd-27011851 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7eb5f38c-7a02-49a5-dcc3-14f4b8663be5-27011851, #w-node-_2005807b-d1d9-04d9-da5e-548cad4953a2-27011851 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2005807b-d1d9-04d9-da5e-548cad4953c4-27011851 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_45a96a76-fc9f-7f3d-1460-4a15cde2e480-27011851 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

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

#w-node-_5cafaa3a-b40a-2f86-0902-a48212653925-12653921 {
  align-self: stretch;
  justify-self: 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-a51d8938-40ed-f19b-11a5-58d6036e9ccc-27011851, #w-node-_058e0ea4-25b3-68d3-05d2-d971a40eb4f3-27011851 {
    order: -9999;
  }

  #w-node-_300dd793-9dea-a125-120e-cf8224d8ac22-27011851, #w-node-_49373ce5-c9ba-48ab-70be-dfc4d1c74709-27011851 {
    justify-self: center;
  }

  #w-node-fce5b7fc-541e-c940-7a51-d3fd28fe726d-27011851, #w-node-_7eb5f38c-7a02-49a5-dcc3-14f4b8663bfd-27011851 {
    order: -9999;
  }

  #w-node-_7eb5f38c-7a02-49a5-dcc3-14f4b8663be5-27011851, #w-node-_2005807b-d1d9-04d9-da5e-548cad4953a2-27011851 {
    justify-self: center;
  }

  #w-node-_2005807b-d1d9-04d9-da5e-548cad4953c4-27011851 {
    order: -9999;
  }

  #w-node-_45a96a76-fc9f-7f3d-1460-4a15cde2e480-27011851 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

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

  #w-node-a9fd023c-8fe4-4d2e-475e-b1b6f1100147-2701185f {
    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;
}