:root {
  --black: #212121;
  --text: #5b5f64;
  --accent: #ec442a;
  --hover: #ce3c25;
  --accent-light: rgba(240, 89, 65, .07);
  --white: white;
  --lime-green: #00d563;
}

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

.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;
  font-weight: 500;
  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 {
  color: var(--text);
  margin-bottom: 14px;
  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: 50px;
  display: flex;
}

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

.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;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.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: 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.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: 69px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

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

.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 {
  color: #fff;
  background-color: #121314;
  padding-top: 0;
  padding-bottom: 0;
}

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

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

.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 {
  opacity: .8;
  font-size: 14px;
}

.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 {
  color: rgba(255, 255, 255, .85);
  padding-top: 100px;
  padding-bottom: 32px;
}

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

.footer-link-heading {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 20px;
  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: rgba(255, 255, 255, .85);
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.left-footer-bottom {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-columns: 1fr;
  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: 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;
  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;
}

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

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

.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(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.about-logo-image {
  width: 220px;
  margin-top: 10px;
}

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

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

.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: rgba(255, 255, 255, .9);
}

.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;
  top: 69px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.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 rgba(66, 75, 209, 0);
  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 {
  color: var(--text);
  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: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.social-link-block-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #b02f28;
  align-items: center;
  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;
  font-weight: 500;
}

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

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

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

.cta-2.black:hover {
  background-color: rgba(11, 12, 13, .85);
}

.cta-2.black:active {
  background-color: rgba(11, 12, 13, .8);
}

.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: rgba(20, 23, 27, .1);
  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: 16px;
  font-size: 26px;
}

.wrap-price {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 51px;
  display: flex;
}

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

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

.link-dropdown-2.w--current {
  color: #00a36c;
}

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

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

.cta-pricing.black:hover {
  background-color: rgba(11, 12, 13, .85);
}

.cta-pricing.black:active {
  background-color: rgba(11, 12, 13, .8);
}

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

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

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

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

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

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

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

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

@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;
    align-items: stretch;
    justify-items: 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%;
  }

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

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

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

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

  .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: rgba(255, 255, 255, .85);
  }

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

  .social-link-block-2, .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;
  }
}

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

#w-node-_1e9d770f-1e94-f0c8-718b-3114b102bb43-559b3665 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1e9d770f-1e94-f0c8-718b-3114b102bb45-559b3665, #w-node-fce5b7fc-541e-c940-7a51-d3fd28fe726f-559b3665 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-fce5b7fc-541e-c940-7a51-d3fd28fe726d-559b3665, #w-node-_058e0ea4-25b3-68d3-05d2-d971a40eb4f3-559b3665 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_058e0ea4-25b3-68d3-05d2-d971a40eb4f5-559b3665 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-a9e9edff-c2fb-9383-15d2-9cfc7cb9c1d2-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;
  align-self: stretch;
  justify-self: stretch;
}

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

#w-node-cd12e243-edc3-9ddf-1387-ad60069c69f5-559b3674 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-cd12e243-edc3-9ddf-1387-ad60069c6a0a-559b3674, #w-node-cd12e243-edc3-9ddf-1387-ad60069c6a0d-559b3674 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cd12e243-edc3-9ddf-1387-ad60069c6a0f-559b3674, #w-node-de74f95d-d860-9e81-e7da-4eb11c5cbdb5-559b3675 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-de74f95d-d860-9e81-e7da-4eb11c5cbdca-559b3675, #w-node-de74f95d-d860-9e81-e7da-4eb11c5cbdcd-559b3675 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de74f95d-d860-9e81-e7da-4eb11c5cbdcf-559b3675, #w-node-_83485e3b-0399-f5d4-f5ec-d357faa8c474-559b3676 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_83485e3b-0399-f5d4-f5ec-d357faa8c489-559b3676, #w-node-_83485e3b-0399-f5d4-f5ec-d357faa8c48c-559b3676 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83485e3b-0399-f5d4-f5ec-d357faa8c48e-559b3676, #w-node-_3cb17b6b-315c-61dd-c093-81e94c6e37ef-559b3678 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

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

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

#w-node-cd759ffa-32fc-ae02-9688-69490501741e-636804d6, #w-node-cd759ffa-32fc-ae02-9688-69490501743d-636804d6, #w-node-a143d5ec-49e4-c88a-dd2a-b2950b569970-636804d6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-a51d8938-40ed-f19b-11a5-58d6036e9ccc-559b3665, #w-node-_1e9d770f-1e94-f0c8-718b-3114b102bb43-559b3665 {
    order: -9999;
  }

  #w-node-_1e9d770f-1e94-f0c8-718b-3114b102bb45-559b3665, #w-node-fce5b7fc-541e-c940-7a51-d3fd28fe726f-559b3665 {
    justify-self: center;
  }

  #w-node-fce5b7fc-541e-c940-7a51-d3fd28fe726d-559b3665, #w-node-_058e0ea4-25b3-68d3-05d2-d971a40eb4f3-559b3665 {
    order: -9999;
  }

  #w-node-_058e0ea4-25b3-68d3-05d2-d971a40eb4f5-559b3665 {
    justify-self: center;
  }

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

  #w-node-cd12e243-edc3-9ddf-1387-ad60069c69f5-559b3674 {
    justify-self: center;
  }

  #w-node-cd12e243-edc3-9ddf-1387-ad60069c6a0a-559b3674 {
    order: -9999;
  }

  #w-node-cd12e243-edc3-9ddf-1387-ad60069c6a0f-559b3674, #w-node-de74f95d-d860-9e81-e7da-4eb11c5cbdb5-559b3675 {
    justify-self: center;
  }

  #w-node-de74f95d-d860-9e81-e7da-4eb11c5cbdca-559b3675 {
    order: -9999;
  }

  #w-node-de74f95d-d860-9e81-e7da-4eb11c5cbdcf-559b3675, #w-node-_83485e3b-0399-f5d4-f5ec-d357faa8c474-559b3676 {
    justify-self: center;
  }

  #w-node-_83485e3b-0399-f5d4-f5ec-d357faa8c489-559b3676 {
    order: -9999;
  }

  #w-node-_83485e3b-0399-f5d4-f5ec-d357faa8c48e-559b3676, #w-node-_3cb17b6b-315c-61dd-c093-81e94c6e37ef-559b3678 {
    justify-self: center;
  }

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

  #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b8c-559b3678 {
    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;
}