@font-face {
  font-family: Opensauceone;
  src: url('../fonts/OpenSauceOne-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensauceone;
  src: url('../fonts/OpenSauceOne-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensauceone;
  src: url('../fonts/OpenSauceOne-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensauceone;
  src: url('../fonts/OpenSauceOne-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  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-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@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-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: black;
  --link-hover: #e5e5e5;
  --primary: black;
  --white: white;
  --hover: #292929;
  --paragraph-dark: #545454;
}

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

body {
  color: #000;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2em;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensauceone, sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensauceone, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensauceone, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5em;
}

h4 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensauceone, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4em;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Opensauceone, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

p {
  margin-bottom: .75rem;
  font-size: 1rem;
  line-height: 1.5em;
}

a {
  color: #000;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

a:hover {
  opacity: .7;
}

li {
  margin-bottom: .5rem;
  font-size: 1rem;
}

strong {
  font-weight: bold;
}

.section-hero {
  color: #fff;
  align-items: center;
  height: 110vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-hero.small {
  justify-content: flex-start;
  align-items: flex-end;
  height: 60vh;
  padding-bottom: 120px;
}

.nav {
  background-color: var(--black);
  color: #fff;
  flex-direction: row;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
}

.container.container-nav {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container.container-center {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container.container-center.container-full-width {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.container.container-center.gap-5rem {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
}

.nav-brand {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom-style: none;
  font-size: 1.2em;
  font-weight: 500;
}

.nav-menu-button {
  padding: 0;
}

.nav-menu {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  display: flex;
}

.nav-link {
  color: #fff;
  cursor: pointer;
  border-bottom-style: none;
  padding: 0;
  font-size: .85em;
  line-height: 1.2em;
}

.nav-link:hover {
  opacity: 1;
  color: var(--link-hover);
}

.nav-link.w--current {
  color: #fff;
}

.nav-link.w--current:hover {
  color: var(--link-hover);
}

.title-wrapper {
  z-index: 10;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  max-width: 600px;
  display: flex;
  position: relative;
}

.button-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: center;
  display: flex;
}

.button-secondary {
  opacity: 1;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  transition: all .15s linear;
}

.button-secondary:hover {
  opacity: 1;
  color: #000;
  background-color: #fff;
  box-shadow: 0 1px 50px #ffffff1a;
}

.button-secondary.primary {
  border-color: var(--primary);
  background-color: var(--primary);
}

.button-secondary.blue {
  color: var(--white);
  background-color: #2666cf;
  border-color: #2666cf;
}

.button-text {
  color: #fff;
  cursor: pointer;
  border-bottom-style: none;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s linear;
}

.hero-overlay-shadow {
  z-index: 1;
  opacity: .9;
  background-image: linear-gradient(#0f0f0f99, #0f0f0fe6);
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-overlay-shadow.light {
  background-image: linear-gradient(#0f0f0f4d, #0f0f0f73);
}

._2-1-grid {
  grid-column-gap: 75px;
  grid-row-gap: 150px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: left;
  flex-direction: column;
  display: flex;
}

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

.night-sky {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: #fff;
  background-image: linear-gradient(#0f0f0f99, #0f0f0f99), url('../images/sisatilat.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  display: flex;
  position: relative;
  box-shadow: 0 16px 50px #273a711a;
}

.h2-center {
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
  display: block;
}

.content-center {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-card-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
  inset: 0%;
}

.grid-item-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  text-align: left;
  justify-content: space-between;
  display: flex;
}

.card-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid-card-image-wrapper {
  object-fit: fill;
  margin-bottom: 0;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}

.grid-card-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 2rem 3rem;
  display: flex;
}

.grid-card {
  cursor: pointer;
  background-color: #fff;
  border: 1px #fff;
  transition: all .15s ease-in;
  box-shadow: 0 15px 50px #00000005;
}

.grid-card:hover {
  border-style: none;
  border-color: #d1d1d1;
  box-shadow: 0 20px 50px #0000001a;
}

.contact {
  width: 100%;
}

._3-1-grid {
  grid-column-gap: 0px;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-bottom: 0;
}

.grid-card-image-overlay {
  opacity: 1;
  background-image: url('../images/hero-stars.png'), linear-gradient(26deg, #273a7180 49%, #96506f80);
  background-position: 50%, 0 0;
  background-size: auto, auto;
  display: none;
  position: absolute;
  inset: 0%;
}

.section-background-image {
  background-image: radial-gradient(circle, #00000059, #0000), linear-gradient(#0000004d, #0000004d), url('../images/moderni-keittio.jpg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: static;
  inset: 0%;
}

.title {
  text-align: center;
}

.nav-logo {
  width: 220px;
}

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

.hero-icons {
  z-index: 10;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: relative;
}

.icons {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: row;
  display: flex;
}

.icons.navigation-gap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.social-icon {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--white);
  border-bottom-style: none;
  align-items: center;
  font-size: 1rem;
  display: flex;
}

.subheader-text {
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 600;
}

.icon-large {
  object-fit: contain;
  width: 32px;
  max-width: 32px;
  height: 32px;
  max-height: 32px;
}

.icon-large.larger {
  max-width: 2.5rem;
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section.section-heading {
  padding-bottom: 0;
}

.section.section-full {
  color: #fff;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
}

.section.section-footer {
  background-color: var(--black);
  color: var(--white);
  padding-bottom: 3rem;
}

.section.legal {
  padding-top: 12rem;
}

.hero-image {
  width: 20px;
}

.hero-image.smaller {
  width: 18px;
}

.hero-image.smaller.even-smaller {
  width: 16px;
}

.form-block {
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.submit-button {
  background-color: var(--primary);
  border-radius: 4px;
}

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

.submit-button.full-width {
  width: 100%;
}

.absolute-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.white-link {
  color: var(--white);
  border-bottom-style: none;
  text-decoration: none;
}

.white-link.bold, .white-link.bold.w--current {
  font-weight: 500;
}

.field-label {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
}

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

.text-field {
  color: #000;
  background-color: #fff;
  border: 1px solid #0000001a;
}

.text-field:focus {
  border-color: var(--black);
}

.text-field.is-area {
  color: #000;
  height: 150px;
}

.space {
  height: 16px;
}

.footer-logo {
  width: 260px;
}

.h3-small {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.4em;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 95vh;
  max-height: 100%;
  padding-top: 60px;
  display: flex;
}

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

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

.text-block {
  margin-top: 10px;
  font-size: 1rem;
}

.utility-nav-background {
  background-color: #000;
  height: 127.742px;
  position: fixed;
  inset: 0% 0% auto;
}

.h1-small {
  font-size: 3rem;
}

.form-wrap {
  background-color: #fff;
  border-radius: 3px;
  width: 50%;
  margin-top: 0;
  padding: 30px;
  box-shadow: 0 1px 14px 4px #2a64660f;
}

.form-wrap.full-width {
  width: 100%;
  box-shadow: 0 1px 14px 4px #5f5f5f0f;
}

.service-rich-text h2 {
  margin-bottom: .75rem;
  font-size: 1.75rem;
}

.service-rich-text h3 {
  margin-bottom: .75rem;
  font-size: 1.5rem;
}

.service-rich-text.small {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.main-service {
  flex: 0 auto;
}

.success-msg {
  color: #fff;
  text-align: center;
  background-color: #10a76b;
  border-radius: 4px;
  padding: 65px 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.service-wrapper-default {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

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

.contact-title {
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
}

.form-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.title-flex {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.legal-rich-text-block h1 {
  margin-bottom: .75rem;
  font-size: 2.5rem;
}

.legal-rich-text-block h2 {
  margin-bottom: .75rem;
  font-size: 1.75rem;
}

.link-arrow-image {
  width: 18px;
}

.text-link-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: flex-end;
  line-height: 1em;
  display: flex;
}

.div-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 850px;
  display: flex;
}

.font-height-2em {
  line-height: 1.75em;
}

.footer-legal {
  font-size: .9rem;
}

.whatsapp-image {
  display: none;
}

.content-center-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 45ch;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

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

.feature-title {
  color: #424242;
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

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

.features-icon {
  object-fit: contain;
  border: 2px solid #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  display: block;
}

.features-icon.blue {
  color: #2666cf;
  border-color: #2666cf;
}

.features-icon.blue.more {
  padding: 10px;
}

@media screen and (min-width: 1280px) {
  .service-wrapper-default {
    grid-template-columns: 1.75fr 1fr;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.75em;
  }

  h3 {
    font-size: 1.5em;
  }

  .section-hero {
    height: 90vh;
  }

  .container {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    max-width: 100%;
  }

  .container.container-center {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

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

  .nav-menu-button {
    z-index: 11;
    padding: 0;
  }

  .nav-menu-button.w--open {
    z-index: 10;
    background-color: #c8c8c800;
  }

  .nav-menu {
    z-index: 100;
    text-align: center;
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .nav-link {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .title-wrapper {
    z-index: 5;
    align-items: flex-start;
    max-width: 100%;
  }

  .button-wrapper {
    flex-direction: row;
    justify-content: flex-start;
  }

  .night-sky {
    min-height: 400px;
  }

  .content-center {
    max-width: 45ch;
  }

  .grid-item-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
  }

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

  .grid-card {
    margin-bottom: 0;
  }

  ._3-1-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-icons {
    justify-content: center;
    padding-bottom: 25px;
    display: none;
    position: absolute;
    inset: auto 0% 0%;
  }

  .icons {
    flex-wrap: nowrap;
    margin-top: 25px;
  }

  .social-icon {
    margin-left: 25px;
    margin-right: 25px;
  }

  .subheader-text {
    font-size: 1rem;
  }

  .icon-large {
    max-width: 2rem;
  }

  .section.section-full {
    height: 80vh;
  }

  .footer-logo {
    width: 300px;
  }

  .h1-small {
    font-size: 2.5rem;
  }

  .form-wrap {
    width: 90%;
  }

  .service-wrapper-default {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .content-center-2 {
    max-width: 45ch;
  }
}

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

  h2 {
    font-size: 1.5em;
  }

  .section-hero {
    height: 90vh;
  }

  .nav {
    padding-top: 2rem;
  }

  .container {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .container.container-center {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  ._2-1-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    display: grid;
  }

  .night-sky {
    min-height: 300px;
    padding: 75px 50px;
  }

  .h2-center {
    font-size: 2em;
  }

  .grid-item-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    display: flex;
  }

  .card-grid {
    flex-direction: column;
    display: flex;
  }

  .grid-card-image-wrapper {
    padding-top: 75%;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section.section-full {
    height: 70vh;
  }

  .form-wrap {
    width: 90%;
  }

  .service-rich-text {
    margin-right: 0;
  }

  .main-service {
    margin-bottom: 0;
  }

  .service-wrapper-default {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .switch-features-column {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.2rem;
    line-height: 1.3em;
  }

  h2 {
    font-size: 1.5em;
  }

  .section-hero {
    height: 100vh;
  }

  .section-hero.small {
    height: 55vh;
    padding-bottom: 100px;
  }

  .container {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .container.container-center {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .nav-menu {
    width: 100vw;
  }

  .button-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  ._2-1-grid {
    flex-direction: column;
    display: flex;
  }

  .grid-item {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .night-sky {
    color: #fff;
    min-height: 70vh;
    padding: 50px 25px;
  }

  .h2-center {
    font-size: 1.5em;
  }

  .grid-item-wrapper {
    margin-bottom: 75px;
  }

  .grid-card-content {
    padding: 1.5rem;
  }

  .contact {
    margin-top: 0;
  }

  .section-background-image {
    padding-left: 25px;
    padding-right: 25px;
  }

  .title {
    font-size: 1.5em;
  }

  .nav-logo {
    width: 180px;
  }

  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section.section-footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .text-field, .text-field.is-area {
    border-radius: 0;
  }

  .footer-logo {
    width: 200px;
  }

  .utility-nav-background {
    z-index: 1;
    height: 133.047px;
  }

  .h1-small {
    font-size: 2rem;
  }

  .form-wrap {
    width: auto;
    margin-bottom: 0;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-wrap.full-width {
    margin-left: 0;
    margin-right: 0;
  }

  .service-rich-text h2 {
    font-size: 1.6rem;
    line-height: 1.4em;
  }

  .success-msg {
    padding-left: 15px;
    padding-right: 15px;
  }

  .legal-rich-text-block h1 {
    font-size: 2rem;
  }

  .legal-rich-text-block h2 {
    font-size: 1.25rem;
  }

  .div-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

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

  .feature-title {
    margin-bottom: 5px;
  }

  .features-description {
    font-size: 14px;
  }

  .features-icon {
    margin-bottom: 10px;
  }
}

#w-node-_6df5f360-8c9c-85b5-a1cc-d2bfe0e8887f-e0e8887b {
  justify-self: center;
}

#w-node-_6e462fd6-0132-ed3f-3394-d3db6cd94fef-e0e8887b {
  justify-self: end;
}

#w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a044-17e0a03c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a05e-17e0a03c, #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a062-17e0a03c, #w-node-_1931b542-798d-1707-254e-a4ecf311ba70-17e0a03c, #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a066-17e0a03c, #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a06a-17e0a03c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a044-17e0a03c {
    justify-self: auto;
  }

  #w-node-_14a9979f-57eb-8326-532f-94994aecdcb7-4aecdcb6 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a044-17e0a03c {
    justify-self: center;
  }

  #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a05e-17e0a03c, #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a062-17e0a03c, #w-node-_1931b542-798d-1707-254e-a4ecf311ba70-17e0a03c, #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a066-17e0a03c, #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a06a-17e0a03c {
    grid-column: span 1 / span 1;
  }

  #w-node-_14a9979f-57eb-8326-532f-94994aecdcb7-4aecdcb6 {
    grid-area: 1 / 1 / 3 / 2;
  }
}


@font-face {
  font-family: 'Opensauceone';
  src: url('../fonts/OpenSauceOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensauceone';
  src: url('../fonts/OpenSauceOne-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensauceone';
  src: url('../fonts/OpenSauceOne-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensauceone';
  src: url('../fonts/OpenSauceOne-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  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-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@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-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;
}