:root {
  --black: #181823;
  --accent: #ec3042;
  --hover: #db2738;
  --accent-light: #ec304212;
  --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 {
  text-align: center;
  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: 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;
}

.master-dropdown-links {
  grid-row-gap: 21px;
  flex-direction: column;
  width: auto;
  display: flex;
}

.dropdown-chevron-nav {
  width: 10px;
  height: 10px;
  margin-left: 8px;
  position: relative;
}

.dropdown-chevron-nav.white-image {
  opacity: 0;
  margin-left: -10px;
}

.dropdown-nav {
  justify-content: center;
  align-items: center;
  height: 80%;
  margin-left: 0;
  margin-right: 0;
  font-size: 14px;
  font-weight: 500;
}

.brand-link-nav {
  justify-content: center;
  align-items: center;
  height: 40px;
  display: flex;
}

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

.link-nav.w--current {
  font-size: 18px;
}

.dropdown-toggle-nav {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 16px;
  padding-right: 12px;
  display: flex;
}

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

.brand-nav.white-image {
  opacity: 0;
  display: block;
}

.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);
  color: var(--white);
  height: 46px;
  font-size: 16px;
  font-weight: 600;
  transition: color .2s, background-color .2s;
}

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

.primary-button.call-request {
  min-width: 140px;
  height: 60px;
}

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

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

.link-dropdown {
  grid-column-gap: 8px;
  color: #0b0c0d;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.link-dropdown:hover {
  opacity: .7;
}

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

.text-drodpdown-link {
  flex: 0 auto;
}

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

.links-column-footer {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.two-columns-links-footer {
  grid-column-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  width: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
}

.footer-top-left {
  grid-row-gap: 42px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 440px;
  display: flex;
}

.link-arrow {
  grid-column-gap: 6px;
  color: #0b0c0d;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.link-arrow:hover {
  grid-column-gap: 10px;
}

.link-arrow.white-link-arrow {
  color: #fff;
}

.link-arrow.center {
  justify-content: center;
}

.footer-top-content {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.contact-block-footer-bottom {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.space-100 {
  height: 100px;
}

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

.section.footer {
  border-top: 1px solid #e7e7e7;
  padding-top: 0;
  padding-bottom: 0;
}

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

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

.text-field {
  background-color: #f9f9f9;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  min-height: 60px;
  margin-bottom: 0;
  padding: 16px;
  font-size: 18px;
  line-height: 25px;
}

.text-field:focus {
  color: #0b0c0d;
  border-color: #0b0c0d;
}

.text-field.call-request-field {
  color: var(--black);
  min-width: 320px;
}

.footer-legal {
  color: var(--black);
  font-size: 14px;
}

.footer-legal.hide-mobile {
  margin-right: 80px;
}

.footer-top {
  background-color: #121314;
  padding-top: 120px;
  padding-bottom: 60px;
}

.success-message {
  color: #0b0c0d;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.right-footer-bottom {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 400px;
  display: grid;
}

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

.brand-link-footer {
  margin-bottom: 10px;
}

.footer-bottom {
  padding-top: 100px;
  padding-bottom: 32px;
}

.brand-image-footer {
  width: 180px;
}

.footer-link-heading {
  color: var(--black);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.form-block-call-request {
  width: 100%;
  min-width: 380px;
  margin-top: 24px;
}

.text-heading-3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.footer-link {
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.left-footer-bottom {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.footer-bottom-container {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-top-right {
  flex-direction: column;
  align-items: flex-start;
  max-width: 490px;
  display: flex;
}

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

.links-footer {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form-call-request {
  grid-column-gap: 8px;
  display: flex;
}

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

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

.section-2.hero-about-c {
  padding-top: 120px;
  padding-bottom: 40px;
}

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

.space-24 {
  height: 24px;
}

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

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

.wrap-tile-feature-texts {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.service-h1 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.1;
}

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

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

.form-block {
  margin-bottom: 0;
}

.contact-icon {
  width: 38px;
  height: 38px;
}

.contact-icon.whatsapp {
  padding: 2px;
}

.contact-form-wrap-version-two {
  width: 100%;
  padding-right: 48px;
}

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

.contact-detail-heading {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
}

.text-field-2 {
  background-color: #f9f9f9;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  min-height: 60px;
  margin-bottom: 0;
  padding: 16px;
  font-size: 18px;
  line-height: 25px;
}

.text-field-2:focus {
  color: #0b0c0d;
  border-color: #0b0c0d;
}

.text-field-2.text-area-size {
  min-height: 140px;
}

.success-message-2 {
  color: #0b0c0d;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.submit-wrap {
  flex-direction: column;
  display: flex;
}

.master-contact-tiles {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  padding-left: 48px;
  display: flex;
}

.form-input-grid {
  grid-column-gap: 12px;
  grid-template-rows: auto;
}

.input-wrap {
  margin-bottom: 24px;
  position: relative;
}

.form-title-wrap {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
}

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

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

.check-list-item {
  grid-column-gap: 16px;
  align-items: center;
  display: 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%;
}

.image-image-section.logo {
  object-fit: contain;
  max-width: 500px;
}

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

.drodpdown-list-2.w--open {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 6px;
  padding: 16px 24px;
}

.drodpdown-list-2.we-speak-list.w--open {
  width: 200px;
  padding: 20px;
}

.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: #424bd1e6;
}

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

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

.legal-main {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 3%;
  display: flex;
}

.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%;
  width: 100%;
  height: 100%;
}

.hero-background-overlay {
  background-image: linear-gradient(#0000004d, #0000004d);
  position: absolute;
  inset: 0%;
}

.about-logo-image {
  width: 240px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.space {
  height: 10px;
}

.space._64 {
  height: 64px;
}

.space._120 {
  height: 120px;
}

.space._140 {
  height: 140px;
}

.space._24 {
  height: 24px;
}

.space._32 {
  height: 32px;
}

.space._100 {
  height: 100px;
}

.space._48 {
  height: 48px;
}

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

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

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

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

.text-white-muted, .text-block {
  color: #ffffffe6;
}

.template-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr;
}

.template-grid.spacing-small {
  margin-bottom: 42px;
}

.h1-legal {
  color: #1b1b1b;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.h5-styleguide {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.subnav {
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #ececec;
  height: 60px;
  position: fixed;
  inset: 72px 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);
}

.tag-primary {
  background-color: var(--accent);
  color: #fff;
  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-32 {
  height: 32px;
}

.subtitle-5 {
  font-size: 20px;
  line-height: 1.4;
}

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

.tile-feature-transparent-fourths {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 0;
  display: flex;
}

.wrap-tags {
  grid-column-gap: 6px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

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

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

.hide-desktop {
  display: none;
}

.h2-small {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 32px;
}

.feature-image {
  color: var(--accent);
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.footer-image-flex {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  align-items: center;
  margin-bottom: 4px;
  display: flex;
}

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

.about-vastuu-group-badge {
  width: 120px;
}

.title-wrap-about-c {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-wrap-about-c.center-text.max-650 {
  max-width: 650px;
}

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

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

.h1-small {
  margin-top: 16px;
  font-size: 42px;
}

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

.footer-legal-flex {
  justify-content: space-between;
  display: flex;
}

.html-embed {
  color: #fff;
  width: 28px;
  height: 28px;
  transition: all .17s;
}

.html-embed:hover {
  color: var(--accent);
  transform: scale(1.1);
}

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

.footer-social-media-flex {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

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

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

.social-link-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--accent);
  align-items: center;
  text-decoration: none;
  display: flex;
}

.social-link-block.white {
  color: var(--white);
}

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

.hero-location-flex {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

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

.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, .footer-html-embed.whatsapp.color {
  color: #25d366;
}

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

.single-pricing-covered {
  grid-column-gap: 9px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-price {
  margin-bottom: 4px;
  font-size: 18px;
}

.wrap-pricing-covered {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
  display: flex;
}

.text-covered-pricing {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.master-pricing-covered {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
  display: flex;
}

.text-covered-item {
  margin-bottom: 0;
}

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

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

.grid-thirds.pricing-thirds.hide {
  display: none;
}

.cta-2 {
  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-2:hover {
  background-color: #00d563e6;
}

.cta-2.black {
  background-color: #0b0c0d;
}

.cta-2.black:hover {
  background-color: #0b0c0dd9;
}

.cta-2.black:active {
  background-color: #0b0c0dcc;
}

.icon-covered {
  width: 20px;
  height: 20px;
}

.tile-pricing {
  border-radius: 8px;
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}

.tile-pricing.higlighted {
  background-color: #f9f9f9;
}

.divider-pricing {
  background-color: #14171b1a;
  width: 100%;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.top-text-pricing {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.heading-pricing-name {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
}

.wrap-price {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 52px;
  margin-top: 20px;
  display: flex;
}

.wrap-price.larger {
  height: 100px;
}

.link-dropdown-2 {
  grid-column-gap: 8px;
  color: #0b0c0d;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  display: flex;
}

.link-dropdown-2:hover {
  opacity: .7;
}

.link-dropdown-2.w--current {
  color: var(--accent);
}

.divider {
  background-color: #ebebeb;
  width: 100%;
  height: 1px;
}

.cta-pricing {
  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-pricing:hover {
  background-color: #00d563e6;
}

.cta-pricing.black {
  background-color: #0b0c0d;
}

.cta-pricing.black:hover {
  background-color: #0b0c0dd9;
}

.cta-pricing.black:active {
  background-color: #0b0c0dcc;
}

.g03_container {
  flex: 1;
  width: 100%;
  display: flex;
}

.g03_gallery_column {
  flex-direction: column;
  width: 50%;
  display: flex;
}

.g03_gallery_column.two-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
}

.g03_image_wrap {
  width: 100%;
  padding: 15px;
}

.gallery-lightbox-link {
  width: 100%;
}

.gallery-image-cover {
  object-fit: cover;
  border-radius: 3px;
  width: 100%;
  max-width: none;
  height: auto;
  overflow: hidden;
}

.heading-line-default {
  background-color: var(--accent);
  border-radius: 4px;
  width: 80px;
  height: 2.5px;
}

.heading-line-default.hero {
  border-radius: 3px;
  height: 3px;
  margin-top: 0;
}

.cta-3 {
  background-color: #f7a030;
  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-3:hover {
  background-color: #e69227;
}

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

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

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

.wrap-trusted-home-a-2 {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 670px;
  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: #00d563e6;
}

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

.space-184 {
  height: 24px;
}

.space-182 {
  height: 10px;
}

.space-185 {
  height: 80px;
}

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

.tag-wrapper {
  display: flex;
}

.h1-hero {
  font-size: 42px;
  line-height: 1.2;
}

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

.logo-image-2.larger {
  height: 30px;
}

.logo-image-2.smaller {
  height: 20px;
}

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

.about-logo-large {
  width: 100%;
  max-width: 500px;
}

.cta-5 {
  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-5:hover {
  background-color: #ce3c25;
}

.pricing-title-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 650px;
  margin-bottom: 42px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.pricing-heading {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 36px;
}

.black-link {
  color: var(--black);
  font-weight: 500;
}

.tabs-menu {
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 32px;
  display: flex;
}

.tab-link {
  background-color: #0000;
  font-weight: 500;
}

.tab-link.w--current {
  background-color: var(--accent);
  color: var(--white);
  border-radius: 100px;
}

.tab-link-tab-1 {
  font-weight: 400;
}

.tab-link-tab-1.w--current {
  background-color: var(--accent);
  color: var(--white);
  border-radius: 100px;
  font-weight: 500;
}

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

.whatsapp-icon {
  width: 28px;
}

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

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

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

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

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

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

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

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid #ffffff45;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  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);
}

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

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

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

.pricing {
  color: var(--black);
  margin-bottom: 18px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
}

.text-single-300 {
  font-size: 20px;
  line-height: 22px;
}

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

.grid-pricing {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr;
  width: 100%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.grid-pricing.three-grid {
  grid-template-columns: 1.5fr 1fr 1fr;
}

.title-2 {
  letter-spacing: .5px;
}

.pricing-table-cell {
  border-bottom: 1px solid var(--accent);
  align-items: center;
  padding: 20px 0 12px 24px;
  display: flex;
}

.pricing-table-cell.right {
  border-left: 1px solid var(--accent);
  justify-content: flex-end;
  padding-right: 40px;
}

.pricing-table-cell.right.border-right {
  border-right: 1px solid var(--accent);
}

.pricing-table-cell.double-text {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}

.pricing-table-cell.double-text.border-left {
  border-left: 1px solid var(--accent);
}

.pricing-table-cell.double-text.border-left.corner.border-right {
  border-right: 1px solid var(--accent);
}

.pricing-line-break-top {
  background-color: var(--accent);
  color: var(--white);
  padding: 24px;
  display: flex;
}

.pricing-line-break-top.right {
  text-align: right;
  border-top-right-radius: 1rem;
  justify-content: flex-end;
  padding-right: 40px;
}

.pricing-line-break-top.right.no-radius {
  border-top-right-radius: 0;
}

.pricing-line-break-top.left {
  border-top-left-radius: 1rem;
}

.pricing-paragraph {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.small-text-block {
  margin-top: 2px;
  font-size: 14px;
}

.hide {
  display: none;
}

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

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

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

  .master-dropdown-links {
    grid-row-gap: 24px;
    align-items: center;
  }

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

  .dropdown-nav {
    flex-direction: column;
    justify-content: flex-start;
    width: auto;
    height: auto;
    font-size: 18px;
    display: flex;
  }

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

  .dropdown-toggle-nav {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .two-columns-links-footer {
    grid-column-gap: 0px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-top-content {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .left-footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .subtitle.w70 {
    width: auto;
  }

  .grid-halves.contact-grid-version-two {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .contact-form-wrap-version-two {
    padding-right: 0;
  }

  .master-contact-tiles {
    padding-left: 0;
  }

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

  .drodpdown-list-2.we-speak-list.w--open {
    position: static;
  }

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

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

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

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

  .hide-desktop {
    display: flex;
  }

  .footer-image-flex {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .title-wrap-about-c {
    text-align: center;
  }

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

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

  .wrap-price {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
  }

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

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

  .grid-pricing {
    padding-left: 0;
    padding-right: 0;
  }

  .title-2 {
    font-size: 17px;
  }

  .pricing-table-cell {
    padding-top: 20px;
  }

  .pricing-paragraph {
    font-size: 1rem;
  }
}

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

  .master-dropdown-links {
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .dropdown-toggle-nav {
    padding-left: 12px;
  }

  .links-column-footer {
    text-align: center;
  }

  .two-columns-links-footer {
    grid-row-gap: 80px;
    justify-items: center;
  }

  .footer-top-content {
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

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

  .left-footer-bottom {
    grid-row-gap: 64px;
    flex-direction: column;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

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

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

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

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

  .service-h1.hide-mobile {
    display: none;
  }

  .service-h1.show-mobile {
    font-size: 42px;
    display: block;
  }

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

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

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

  .service-card {
    padding: 24px;
  }

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

  .template-grid.spacing-small {
    grid-template-columns: 1fr;
  }

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

  .tile-feature-transparent-fourths {
    padding-bottom: 2px;
  }

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

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

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

  .g03_container {
    flex-direction: column;
  }

  .g03_gallery_column {
    flex-direction: column;
    width: 100%;
  }

  .g03_gallery_column.two-column {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .g03_image_wrap {
    width: 100%;
  }

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

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

  .pricing-table-cell {
    padding-top: 16px;
    padding-left: 16px;
  }

  .pricing-line-break-top.left {
    padding-left: 16px;
  }
}

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

  .nav-menu {
    width: 96%;
  }

  .dropdown-toggle-nav {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    line-height: 50px;
  }

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

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

  .link-dropdown {
    line-height: 40px;
  }

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

  .links-column-footer {
    align-items: flex-start;
  }

  .two-columns-links-footer {
    grid-row-gap: 16px;
    place-items: stretch start;
  }

  .footer-top-left, .contact-block-footer-bottom {
    align-items: flex-start;
  }

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

  .text-field.call-request-field {
    width: 100%;
    min-width: 0;
  }

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

  .footer-top {
    padding-top: 80px;
    padding-bottom: 60px;
  }

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

  .brand-link-footer {
    width: 90%;
    height: auto;
  }

  .brand-link-footer.w--current {
    width: 100%;
  }

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

  .form-block-call-request {
    min-width: 0;
  }

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

  .footer-link {
    text-align: left;
  }

  .footer-bottom-container {
    text-align: left;
    align-items: flex-start;
  }

  .footer-top-right {
    align-items: flex-start;
    max-width: none;
  }

  .links-footer {
    align-items: flex-start;
  }

  .form-call-request {
    grid-row-gap: 8px;
    flex-direction: column;
  }

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

  .section-2.hero-about-c {
    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;
  }

  .service-h1 {
    font-size: 11.5vw;
    line-height: 135%;
  }

  .service-h1.show-mobile {
    font-size: 46px;
  }

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

  .form-block {
    margin-bottom: 20px;
  }

  .form-input-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .input-wrap {
    margin-bottom: 16px;
  }

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

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

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

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

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

  .legal-main {
    padding-left: 3%;
    padding-right: 3%;
  }

  .hide-mobile {
    display: none;
  }

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

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

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

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

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

  .text-white-muted {
    color: #ffffffd9;
  }

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

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

  .footer-image-flex {
    flex-flow: column;
  }

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

  .h1-small {
    font-size: 36px;
  }

  .title-wrap-home-image-section-3 {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

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

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

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

  .tile-pricing {
    padding: 52px 24px;
  }

  .link-dropdown-2 {
    line-height: 40px;
  }

  .g03_gallery_column {
    flex-direction: column;
  }

  .g03_gallery_column.two-column {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .g03_image_wrap {
    padding: 5px;
  }

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

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

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

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

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

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

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

  .logo-image-2 {
    width: 120px;
    height: 60px;
  }

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

  .tab-link {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .whatsapp-icon {
    width: 24px;
  }

  .live-icon {
    top: 2px;
    left: 2px;
  }

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

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

  .title-2 {
    font-size: 13px;
  }

  .pricing-table-cell {
    padding-left: 12px;
  }

  .pricing-table-cell.right {
    padding-left: 0;
    padding-right: 10px;
  }

  .pricing-line-break-top {
    padding: 12px;
  }

  .pricing-line-break-top.right {
    padding-left: 10px;
    padding-right: 12px;
  }

  .pricing-line-break-top.right.no-radius {
    padding-right: 10px;
  }

  .pricing-line-break-top.left {
    padding-left: 12px;
    padding-right: 10px;
  }

  .pricing-paragraph {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.4;
  }
}

#w-node-_06afd832-af0e-7767-240f-d93643286bbe-506d8dbc, #w-node-_06afd832-af0e-7767-240f-d93643286bd1-506d8dbc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a51d8938-40ed-f19b-11a5-58d6036e9ccc-506d8dbc {
  place-self: center start;
}

#w-node-_65841953-5f43-34bf-31f2-832decde6d5c-506d8dbc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_65841953-5f43-34bf-31f2-832decde6d5e-506d8dbc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-a9e9edff-c2fb-9383-15d2-9cfc7cb9c1d2-7cb9c1a5, #w-node-_56417b2b-5a8e-a36e-b8fe-3f24a7dffb00-7cb9c1a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_167b4fc2-7100-2f58-4ec9-536e4fb2e55e-4fb2e53e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch stretch;
}

#w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73cf5-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73cf8-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73cfe-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d06-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d10-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d1a-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d24-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d2e-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d38-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d42-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d4c-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d56-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d60-b8f73ce1 {
  justify-self: stretch;
}

#w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d65-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d6c-b8f73ce1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d81-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d84-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d87-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d8f-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d94-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73d9e-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73da3-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73dad-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73db2-b8f73ce1 {
  justify-self: stretch;
}

#w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73db8-b8f73ce1, #w-node-bf9eeea8-c227-9f7d-a56d-b79ab8f73ddd-b8f73ce1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eb5d30db-56ce-4694-653a-7ce7cc0c123e-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1241-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1244-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c124c-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1251-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c125b-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1260-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c126a-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c126f-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1279-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c127e-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1288-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c128d-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1297-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c129c-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12a6-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12ab-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12b5-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12ba-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12c4-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12c9-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12d3-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12d8-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12ea-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12ed-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12f0-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12f3-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12f9-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c12fe-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1303-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c130c-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1311-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1316-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c131f-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1324-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1329-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1332-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1337-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c133c-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1345-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c134a-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c134f-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1358-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c135d-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1362-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c136b-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1370-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1375-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c137e-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1383-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1388-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1391-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1396-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c139b-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13a4-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13a9-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13ae-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13b6-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13b9-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13bc-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13c2-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13c7-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13cf-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13d4-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13dc-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13e1-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13e9-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13ee-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13f6-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c13fb-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1403-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1408-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1410-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1415-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c141d-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1422-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c142a-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c142f-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c1437-cc0c1232, #w-node-eb5d30db-56ce-4694-653a-7ce7cc0c143c-cc0c1232, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35a4-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35a7-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35aa-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35ad-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35b5-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35ba-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35bf-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35c9-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35ce-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35d3-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35dd-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35e2-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35e7-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35f1-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35f6-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc35fb-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc3605-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc360a-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc360f-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc3617-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc361c-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc3621-d4dc3592 {
  justify-self: stretch;
}

#w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc3626-d4dc3592, #w-node-_7f13bd59-0ea3-0b97-3c98-29edd4dc362d-d4dc3592 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

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

#w-node-_3cb17b6b-315c-61dd-c093-81e94c6e37ef-506d8dcb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_3cb17b6b-315c-61dd-c093-81e94c6e3804-506d8dcb, #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b96-506d8dcb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b8c-506d8dcb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4f9ec66e-4ce4-7571-0f55-745278777ffb-506d8dcc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f9ec66e-4ce4-7571-0f55-745278777ffd-506d8dcc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_435883c1-a8ba-1b89-11cd-88428d93c430-506d8dcd, #w-node-_435883c1-a8ba-1b89-11cd-88428d93c433-506d8dcd, #w-node-_1c4e8177-0fca-07a9-57d5-7075ca5450c9-506d8dcd, #w-node-_435883c1-a8ba-1b89-11cd-88428d93c436-506d8dcd, #w-node-_435883c1-a8ba-1b89-11cd-88428d93c43e-506d8dcd, #w-node-_48a22bbc-10e1-01e1-796a-ee72eca1ccc4-506d8dcd, #w-node-dc734802-f199-9c97-dfc8-18f1d5fb2a47-506d8dcd, #w-node-_435883c1-a8ba-1b89-11cd-88428d93c44d-506d8dcd, #w-node-db9216ba-fdef-60c3-cafb-d3ffe450c514-506d8dcd, #w-node-_324184c3-ceca-ac27-9ae3-f879dc5008ae-506d8dcd, #w-node-_435883c1-a8ba-1b89-11cd-88428d93c45c-506d8dcd, #w-node-a469e79b-bf73-c917-564d-d94678f42cfb-506d8dcd, #w-node-_5ad1bb5b-35b7-5a4f-72db-f680ee6ec41d-506d8dcd, #w-node-_853a4053-fc40-9a2b-d439-b239d936d2e7-506d8dcd, #w-node-_853a4053-fc40-9a2b-d439-b239d936d2ea-506d8dcd, #w-node-_853a4053-fc40-9a2b-d439-b239d936d2ed-506d8dcd, #w-node-_853a4053-fc40-9a2b-d439-b239d936d2f3-506d8dcd, #w-node-_853a4053-fc40-9a2b-d439-b239d936d2f8-506d8dcd, #w-node-_853a4053-fc40-9a2b-d439-b239d936d300-506d8dcd, #w-node-_853a4053-fc40-9a2b-d439-b239d936d305-506d8dcd, #w-node-_853a4053-fc40-9a2b-d439-b239d936d30d-506d8dcd, #w-node-_853a4053-fc40-9a2b-d439-b239d936d312-506d8dcd {
  justify-self: stretch;
}

#w-node-_7ab1eac2-5ed7-97a1-5b0f-c11b426c30f8-506d8dcd, #w-node-_3b6cffe8-df40-f76d-b364-8a26dfd1c691-506d8dcd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a4ecba87-3cdb-a871-7dbc-ad9154b63593-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b63596-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b6359c-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635a2-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635ac-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635b5-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635bf-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635c8-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635d2-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635db-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635e5-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635ee-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b635f8-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b63601-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b6360b-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b63614-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b6361e-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b63627-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b63631-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b6363a-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b63644-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b6364d-506d8dcd, #w-node-a4ecba87-3cdb-a871-7dbc-ad9154b63657-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c2443891270-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c2443891273-506d8dcd, #w-node-_661ff3c7-f1d7-e760-abc5-a58b1e457009-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c2443891276-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c244389127c-506d8dcd, #w-node-fcd01b3f-797e-2098-6bbd-4abc1ccb2fd0-506d8dcd, #w-node-_58681c91-48a1-4255-fcd4-821be77c6d90-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c2443891288-506d8dcd, #w-node-c9f89091-454e-4849-9c44-a32ad8d2edf2-506d8dcd, #w-node-a27b74c3-ea01-524f-1d0a-c5f47323cb6b-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c2443891294-506d8dcd, #w-node-cc3218b9-744d-e2ea-2d2c-a245cec2f456-506d8dcd, #w-node-_7d1ab81d-b3f8-9858-d2e9-3e2c7ba385aa-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c24438912a0-506d8dcd, #w-node-ecc705f1-a4cc-1016-ecd1-dc6e87d35504-506d8dcd, #w-node-_517c558e-3508-bf33-ea85-c08dabb47c02-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c24438912ac-506d8dcd, #w-node-_7c8c3b82-1ef5-2945-e594-81edd38c5cc1-506d8dcd, #w-node-_19a9e6d8-173d-e70b-2670-4501858f9a19-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c24438912b8-506d8dcd, #w-node-_0d28edf2-9120-5d83-9a79-8ea34c79c2c7-506d8dcd, #w-node-_6fca1356-14c2-dca3-c29e-3cd097ae9a3a-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c24438912c4-506d8dcd, #w-node-_67fe8614-0ea6-46a3-1b6b-5a2c24409262-506d8dcd, #w-node-_6e6662da-c3ec-f630-e249-a001946db5ae-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c24438912d0-506d8dcd, #w-node-_82cc3179-0d50-cddd-2910-f604b60d87b5-506d8dcd, #w-node-e3b75958-3b5b-52b0-4468-3f5da18eba0c-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c24438912dc-506d8dcd, #w-node-c5bee82b-13f7-0416-6a9c-cc0a4a9f1dd9-506d8dcd, #w-node-c54ef91c-ea00-e3aa-ad45-ccf5bfe46c3b-506d8dcd, #w-node-d799e117-f7a9-266a-81c8-5c24438912e8-506d8dcd, #w-node-_8d56e17c-2a04-5859-ab7a-1d74a4920469-506d8dcd, #w-node-_341e2de2-a89e-6106-ba69-d3f9bf78575b-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b79c-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b79f-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7a2-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7a8-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7ac-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7b4-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7b8-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7c0-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7c4-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7cc-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7d0-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7d8-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7dc-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7e4-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7e8-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7f0-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7f4-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b7fc-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b800-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b808-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b80c-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b814-506d8dcd, #w-node-_0ffd522c-cf7e-5f02-7c12-79dfe1f4b818-506d8dcd {
  justify-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-a51d8938-40ed-f19b-11a5-58d6036e9ccc-506d8dbc, #w-node-_65841953-5f43-34bf-31f2-832decde6d5c-506d8dbc {
    order: -9999;
  }

  #w-node-_65841953-5f43-34bf-31f2-832decde6d5e-506d8dbc {
    justify-self: center;
  }

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

  #w-node-_3cb17b6b-315c-61dd-c093-81e94c6e37ef-506d8dcb {
    justify-self: center;
  }

  #w-node-_3cb17b6b-315c-61dd-c093-81e94c6e3804-506d8dcb, #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b96-506d8dcb {
    order: -9999;
  }

  #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b8c-506d8dcb {
    justify-self: center;
  }

  #w-node-_4f9ec66e-4ce4-7571-0f55-745278777ffb-506d8dcc {
    order: -9999;
  }

  #w-node-_4f9ec66e-4ce4-7571-0f55-745278777ffd-506d8dcc {
    justify-self: center;
  }
}

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