@font-face {
  font-family: Inter Display;
  src: url('../fonts/InterDisplay-Regular.woff2') format("woff2"), url('../fonts/InterDisplay-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Display;
  src: url('../fonts/InterDisplay-Medium.woff2') format("woff2"), url('../fonts/InterDisplay-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Display;
  src: url('../fonts/Inter-DisplaySemiBold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Display;
  src: url('../fonts/Inter-DisplaySemiBoldItalic.woff2') format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Ppfragment;
  src: url('../fonts/PPFragment-SerifRegularItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --dark-blue: #1f2c36;
  --white: #faf9f5;
  --alice-blue: #ebf1f4;
  --brown: #8e8a71;
  --light-grey: #faf9f526;
  --grey: #faf9f599;
  --waves-library-white: white;
  --peru: #a88457;
  --waves-library-black: #131313;
  --relume-library-lite-rl-black: black;
  --relume-library-lite-rl-white: white;
  --waves-library-background: #faebe3;
  --grey-2: #86726a;
  --medium-sea-green: #57a857;
  --innova-ruskee: #a88457;
  --dark-green: #1c5d3e;
  --light: #eee;
  --dim-grey: #826130;
  --black: #362c1f;
  --tan: #a89680;
}

.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-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

body {
  background-color: var(--dark-blue);
  color: var(--white);
  font-family: Inter Display, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 150%;
}

h1 {
  color: var(--white);
  text-align: left;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.5vw;
  font-weight: 500;
  line-height: 110%;
  display: block;
}

h2 {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 110%;
}

h3 {
  letter-spacing: -.05rem;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 110%;
}

h5 {
  color: var(--dark-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2rem;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 130%;
}

p {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 150%;
}

a {
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}

a:hover {
  opacity: .6;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

ol {
  color: var(--dark-blue);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 1.1rem;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  display: inline-block;
  overflow: hidden;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.section {
  background-color: #0000;
  min-height: 32px;
  padding: 7.5rem 1rem;
  position: relative;
}

.section.hero-section {
  z-index: 100;
  align-items: flex-start;
  height: 112vh;
  padding-top: 0;
  display: flex;
  overflow: hidden;
}

.section.intro-section {
  background-color: var(--dark-blue);
  border-radius: .375rem;
  height: auto;
  padding-top: 6rem;
  padding-bottom: 2rem;
  position: relative;
  top: 0;
}

.section.intro-section._2 {
  padding-bottom: 9rem;
}

.section.light {
  background-color: var(--white);
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.section.light.mb-no {
  display: none;
}

.section.polku {
  padding-bottom: 2.2rem;
}

.section.pad-small {
  background-color: var(--alice-blue);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.section.pad-small.hidden {
  display: block;
}

.section.pad-small.faq-hide {
  display: none;
}

.section.testi {
  background-color: var(--brown);
}

.section.push {
  background-color: var(--alice-blue);
  padding-top: 34vh;
}

.section.no-pad-mob-sides {
  background-color: var(--alice-blue);
  padding: 0;
}

.section.no-pad-mob-sides.no-bot {
  padding-bottom: 0;
}

.section.no-pad-mob-sides.hide {
  display: none;
}

.section.hidden {
  display: block;
}

.section._121 {
  padding-top: 2rem;
}

.section._121._443 {
  background-color: var(--alice-blue);
}

.container {
  grid-row-gap: 6rem;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
  position: relative;
}

.container.row-gap-2 {
  align-items: stretch;
}

.container.row-gap-1 {
  grid-row-gap: 1rem;
}

.container.row-gap-1._22 {
  padding-bottom: 30px;
}

.container.center {
  grid-row-gap: 2rem;
  align-items: center;
}

.container.tiimi {
  max-width: 1500px;
}

.container.legit {
  max-width: 1440px;
}

.divider {
  z-index: -4;
  background-color: var(--light-grey);
  width: 100%;
  height: 1px;
  position: relative;
}

.divider.styleguide-bottom-divider {
  margin-top: 80px;
}

.text-large {
  color: var(--white);
  font-size: 2.85vw;
  font-weight: 500;
  line-height: 120%;
}

.text-large.nav-text {
  color: #fff;
  max-width: 19ch;
  font-family: Ppfragment, sans-serif;
}

.text-large.s {
  font-size: 2vw;
  font-weight: 400;
}

.footer {
  background-color: var(--dark-blue);
  width: 100%;
  max-width: 100%;
  padding: 4rem 1rem 3rem;
  position: relative;
}

.rich-text-block {
  max-width: 780px;
  padding-right: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.rich-text-block h2 {
  letter-spacing: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: Inter Display, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 110%;
}

.rich-text-block h3 {
  letter-spacing: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: Inter Display, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 110%;
}

.rich-text-block p {
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.rich-text-block h4 {
  letter-spacing: 0;
  text-transform: none;
  margin-top: 1rem;
  margin-bottom: 16px;
  font-family: Inter Display, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 125%;
}

.rich-text-block blockquote {
  border-left-color: var(--white);
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.rich-text-block h1 {
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 1rem;
  font-family: Inter Display, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 116%;
}

.rich-text-block h5 {
  letter-spacing: 0;
  text-transform: none;
  margin-top: 1rem;
  margin-bottom: .75rem;
  font-family: Inter Display, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.rich-text-block h6 {
  letter-spacing: 0;
  text-transform: none;
  margin-top: 1rem;
  margin-bottom: .75rem;
  font-family: Inter Display, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.rich-text-block figcaption {
  color: #898989;
  text-align: left;
  font-size: 16px;
}

.rich-text-block figure {
  margin-top: 40px;
  margin-bottom: 64px;
}

.rich-text-block ul {
  margin-bottom: 40px;
  font-size: 18px;
}

.text-field {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--light-grey);
  color: var(--white);
  background-color: #0000;
  border-radius: 0;
  margin-bottom: 48px;
  padding-top: 12px;
  padding-bottom: 32px;
  padding-left: 0;
  font-size: 1.25rem;
  line-height: 150%;
}

.text-field:active {
  color: var(--white);
  border-bottom-color: #e6e6e6;
  font-size: 1.25rem;
  line-height: 150%;
}

.text-field:focus {
  border-bottom-color: var(--white);
  color: var(--white);
  font-size: 1.25rem;
  line-height: 150%;
}

.text-field::placeholder {
  color: var(--grey);
  font-size: 1.25rem;
  line-height: 150%;
}

.submit-button {
  color: var(--white);
  background-color: #0000;
  border: 0 solid #000;
  padding: 0 0 .5rem;
  font-size: 1.25rem;
  transition: all .2s;
}

.submit-button:hover {
  border-bottom-width: 0;
  border-bottom-color: #898989;
}

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

.utility-page-content {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  width: 800px;
  display: flex;
}

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

.utility-form-text {
  margin-bottom: 64px;
  font-size: 1.25rem;
}

.styleguide-heading-wrapper {
  margin-bottom: 48px;
}

.swatch {
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
  width: 100%;
  height: 200px;
}

.swatch.dark-blue {
  border-color: var(--light-grey);
  background-color: var(--dark-blue);
}

.swatch.white {
  background-color: var(--white);
}

.styleguide-heading {
  letter-spacing: -2px;
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 10vw;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-8 {
  margin-bottom: 8px;
}

._4-column-grid {
  grid-column-gap: 40px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  display: grid;
}

.navbar {
  z-index: 101;
  border-top: 0px solid var(--white);
  color: var(--white);
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 7.7rem;
  margin-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  position: absolute;
}

.navbar.subpage-navbar {
  position: static;
}

.navbar.is-hidden {
  display: none;
}

._12-column-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.25rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: end;
  place-items: start stretch;
  width: 100%;
  display: grid;
  position: relative;
}

._12-column-grid.hero-grid {
  grid-row-gap: 2.5rem;
}

._12-column-grid.small-row-gap {
  grid-row-gap: 3rem;
}

.typography-container {
  margin-bottom: 48px;
}

.text-small {
  font-size: 1rem;
  line-height: 150%;
}

.text-medium {
  font-family: Inter Display, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 120%;
}

.text-medium.expertise-title {
  max-width: 14ch;
}

.text-medium.expertise-title.musta {
  font-family: Ppfragment, sans-serif;
  font-size: 2.3vw;
}

.text-medium.s {
  font-size: 1.2rem;
}

.text-medium.s.int {
  font-family: Inter Display, sans-serif;
}

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

.text-medium.valkoinen.fontti {
  font-family: Ppfragment, sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.text-medium.valkoinen.fontti._4 {
  margin-bottom: 28px;
  font-size: 2.3rem;
}

.text-medium.valkoinen.fontti._4._55 {
  color: var(--dark-blue);
  font-size: 2.3rem;
}

.text-medium.valkoinen._121 {
  text-align: left;
  column-count: 2;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 147%;
}

.text-medium.pp {
  color: var(--waves-library-white);
  font-family: Ppfragment, sans-serif;
}

.text-medium.sss {
  font-size: 1.4rem;
}

.text-medium.sss.ssss {
  font-family: neue-haas-grotesk-text, sans-serif;
}

.nav-link-block {
  color: #fff;
  padding: 0 1.5rem 1rem 1rem;
  transition-property: all;
  position: relative;
  overflow: visible;
}

.nav-link-block:hover {
  opacity: .68;
  color: var(--white);
}

.nav-link-block.w--current {
  opacity: .6;
}

.nav-link-block.last-nav-link {
  padding-left: 1.5rem;
  padding-right: 0;
}

.nav-link-block.last-nav-link.w--current {
  opacity: .6;
  color: var(--white);
}

.nav-link-block.first-nav-link {
  color: #fff;
  overflow: visible;
}

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

.row-gap-2 {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.nav-menu {
  justify-content: flex-start;
  display: flex;
  position: static;
  left: auto;
}

.preloader-cotainer {
  z-index: 0;
  grid-column-gap: .35rem;
  background-color: #0000;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.paragraph {
  max-width: 570px;
  font-size: 1.25rem;
}

.fullwidth-image-wrapper {
  border-radius: .375rem;
  width: 100%;
  padding-top: 0%;
  overflow: hidden;
}

.fullwith-image {
  width: 110%;
  height: 120%;
  overflow: visible;
}

.navbar-wrapper {
  grid-row-gap: 5rem;
  border-top: 0 solid #000;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.horizontal-footer-links-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.brand-footer {
  z-index: 2;
  width: 100%;
}

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

.brand-footer.w--current:hover {
  opacity: 1;
}

.client-list-item {
  grid-column-gap: 2.5rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--light-grey);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 1rem;
  display: grid;
}

.client-list {
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.navbar-text-container {
  z-index: 999999;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.button {
  background-color: var(--peru);
  color: var(--dark-blue);
  border-radius: 50vw;
  padding: 1.125rem 2.5rem;
  font-size: .875rem;
  line-height: 1;
  transition-property: none;
}

.button:hover {
  opacity: 1;
}

.button._2 {
  margin-top: 20px;
}

.button._2.dark {
  background-color: var(--dark-blue);
  color: var(--alice-blue);
  margin-top: 0;
  font-weight: 400;
}

.button._2.dark.b {
  background-color: var(--peru);
}

.button._2.dark.e {
  padding-left: 3.7rem;
  padding-right: 3.7rem;
}

.button._2.v {
  color: var(--white);
}

.button.second {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: #0000;
}

.button.submit {
  transition: background-color .2s;
}

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

.button.green {
  background-color: var(--peru);
}

.button.green.topmar {
  margin-top: 24px;
}

.button.big {
  padding: 2.525rem 8rem;
}

.hero-image-wrapper {
  background-image: url('../images/65e71c8e913f684574423c24_Innovatop-04598.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-image-wrapper._2 {
  background-image: url('../images/Innovatop-04051.jpg');
}

.hero-image-wrapper._2._3 {
  background-image: url('../images/Innovatop-04703.jpg');
}

.hero-image-wrapper._2._3._4 {
  background-image: url('../images/Innovatop-04583.jpg');
}

.hero-content-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  padding-bottom: 3rem;
  display: flex;
}

.logo {
  mix-blend-mode: screen;
  margin-bottom: 0;
  padding-bottom: 0;
}

.arrow-down {
  max-width: 48px;
}

.hero-text {
  max-width: 30ch;
  font-size: 1.25rem;
  line-height: 130%;
}

.hero-text.hidden {
  display: none;
}

.hero-image-overlay {
  background-color: #18212975;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.content-container {
  border-top: 1px solid var(--light-grey);
  width: 100%;
  padding-top: 1rem;
}

.content-container.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.content-container.pads {
  margin-top: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: none;
}

.content-container.hidden {
  display: none;
}

.content-container._2 {
  border-top-style: none;
}

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

.text-grey.musta {
  white-space: normal;
  font-size: 1.1rem;
  font-weight: 400;
}

.nav-link-text-container-2 {
  margin-left: 0;
  margin-right: 0;
  position: relative;
  overflow: hidden;
}

.nav-link-text-container-2.big {
  line-height: 1.3;
}

.second-nav-link-text {
  color: #fff;
  position: absolute;
}

.second-nav-link-text._2 {
  font-size: 1.2rem;
}

.second-nav-link-text.big {
  font-size: 2rem;
}

.nav-link-text {
  color: #fff;
}

.nav-link-text._2 {
  font-size: 1.2rem;
}

.nav-link-text.big {
  font-size: 2rem;
}

.expertise-list {
  grid-row-gap: 2.5rem;
  border-top: 1px solid var(--light-grey);
  flex-direction: column;
  width: 100%;
  padding-top: 2.5rem;
  display: flex;
}

.expertise-list.musta {
  border-top-color: #1f2c364a;
}

.expertise-list-item {
  border-top: 0px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.expertise-list-item.musta {
  border-top-color: #1f2c3636;
  border-bottom-color: #1f2c3647;
}

.expertise-subtitle {
  margin-bottom: 1rem;
}

.expertise-tags-container {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: wrap;
  margin-top: 3rem;
  display: none;
}

.tag {
  border: 1px solid var(--light-grey);
  white-space: nowrap;
  border-radius: 50vw;
  padding: 0 .625rem;
  font-size: .9375rem;
}

.tag.musta {
  border-color: #1f2c368c;
}

.tag.is-text {
  border-style: none;
  padding: 0;
  display: inline-block;
}

.heading-2 {
  font-family: Ppfragment, sans-serif;
  font-weight: 400;
}

.heading-2.center {
  text-align: center;
  font-family: Ppfragment, sans-serif;
  font-size: 5vw;
  font-weight: 400;
}

.heading-2.center.m {
  color: var(--dark-blue);
  font-size: 3.7rem;
}

.heading-2.s {
  font-size: 3rem;
}

.heading-2.s.musta {
  color: var(--dark-blue);
}

.team-inner-section {
  background-color: var(--alice-blue);
  color: var(--dark-blue);
  border-radius: 0;
  padding-top: 3rem;
  padding-bottom: 15rem;
}

.team-inner-section._2 {
  padding-bottom: 8rem;
}

.team-inner-section._2.musta {
  background-color: var(--dark-blue);
  padding-bottom: 4rem;
}

.team-inner-section._2.musta._3223 {
  background-color: var(--alice-blue);
}

.team-inner-section._2.musta._32 {
  padding-top: .1rem;
}

.team-inner-section._3 {
  padding-bottom: 2rem;
}

.light-content-container {
  border-top: 1px solid #1f2c3626;
  width: 100%;
  padding-top: 1rem;
}

.light-content-container.padding-more {
  padding-top: 4rem;
}

.light-content-container.padding-more.hidden {
  display: none;
}

.light-content-container.secondary {
  border-top-color: #faf9f53b;
}

.light-content-container.secondary.maxx {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: #00000036;
  border-top-style: none;
  border-radius: 9px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 29px;
  position: absolute;
  inset: auto 0% 3%;
}

.light-content-container.viiva-valko {
  border-top-color: #ffffff36;
  padding-top: 2rem;
}

.light-content-container.viiva-valko.max-1331 {
  max-width: 1331px;
}

.light-content-container.viiva-val-medi {
  border-top-color: #d2d7db63;
  max-width: 1331px;
  padding-top: 2rem;
}

.light-content-container.hidden {
  display: flex;
}

.team-heading-container {
  grid-row-gap: 2rem;
  flex-direction: column;
  max-width: 88%;
  display: flex;
  position: sticky;
  top: 8.5rem;
}

.team-heading-container._2 {
  position: static;
  top: 3.5rem;
}

.team-members-list {
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.team-members-list.hidden {
  display: flex;
}

.team-member-list-item {
  grid-column-gap: 2.5rem;
  grid-row-gap: 16px;
  border-bottom: 1px solid #1f2c3626;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 2rem;
  display: flex;
}

.team-member-list-item.hidden {
  display: flex;
}

.team-member-list-item.piilossa {
  display: none;
}

.team-member-image {
  border: 1px solid #0000002e;
  border-radius: 100%;
  width: 8.75rem;
  min-width: 8.75rem;
  height: 8.75rem;
  min-height: 8.75rem;
}

.text-dark-grey {
  color: #1f2c3699;
}

.text-dark-grey.valkoinen {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 147%;
}

.text-dark-grey.valkoinen.usta {
  color: var(--dark-blue);
}

.text-dark-grey.valkoinen.usta._3 {
  font-size: 1.1rem;
}

.contact-info-container {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
  display: flex;
}

.dark-contact-link {
  color: var(--dark-blue);
  font-size: .9375rem;
  line-height: 140%;
}

.values-text {
  max-width: 26ch;
}

.value-list-item {
  grid-column-gap: 2.5rem;
  grid-row-gap: 16px;
  border-bottom: 0px solid var(--light-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: 642px;
  padding-bottom: 2rem;
  display: grid;
}

.values-list {
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.value-title {
  margin-bottom: 1rem;
}

.news-heading-container {
  grid-row-gap: 2rem;
  flex-direction: column;
  max-width: 37ch;
  display: flex;
  position: static;
  top: 1rem;
}

.news-list {
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.news-list-item {
  grid-column-gap: 2.5rem;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--light-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
  display: flex;
}

.news-details-container {
  grid-column-gap: 1.5rem;
  align-items: center;
  margin-top: 3.5rem;
  display: flex;
}

.author-avatar {
  width: 2rem;
}

.author-info {
  grid-column-gap: .5rem;
  align-items: center;
  display: flex;
}

.contact-inner-section {
  z-index: 2;
  background-color: var(--brown);
  color: var(--white);
  background-image: linear-gradient(#00000096, #00000096), url('../images/Innovatop-0459422-1.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 0;
  padding-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
}

.contact-inner-section.hide {
  display: none;
}

.email-link {
  color: var(--dark-blue);
}

.arrow-up {
  max-width: 48px;
}

.news-post-details-container {
  grid-column-gap: 1.5rem;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.contact-link {
  font-size: .9375rem;
  line-height: 140%;
}

.div-block {
  max-width: 560px;
}

.preloader-light-block {
  background-color: #0000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.preloader-dark-blue-block {
  background-color: var(--dark-blue);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.contact-heading-container {
  grid-row-gap: 2rem;
  flex-direction: column;
  max-width: 90%;
  display: flex;
  position: static;
  top: 1rem;
}

.contact-heading-container._2222 {
  grid-row-gap: 0rem;
}

.news-info-container {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.back-link {
  border: 1px solid var(--light-grey);
  border-radius: 50vw;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: flex;
}

.arrow-left {
  width: 1.5rem;
}

.tiimi-no-cms-wrapper {
  padding-top: 5rem;
}

.collection-list-wrapper {
  display: none;
}

.counter-progress {
  color: #ff6441;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
}

.counter-title.c-tiltle-style {
  text-align: center;
}

.counter-card {
  border-radius: 30px;
  max-width: 300px;
  padding: 28px 20px;
}

.counter-area {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  max-width: 75em;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.counter-area._2 {
  grid-column-gap: 5rem;
  flex-direction: row;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.counter-area._2.gridiss {
  grid-column-gap: .25rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: grid;
}

.text-block-2 {
  color: #e8e2da;
  font-size: 1.2em;
}

.text-block-2.tumma {
  color: #fff;
  font-family: Ppfragment, sans-serif;
  font-size: .9em;
}

.paragraph-2 {
  padding-top: 8px;
  font-size: 1.1em;
}

.paragraph-2.valkonen {
  color: #fff;
}

.count {
  color: #e8e2da;
  font-size: 1.2em;
}

.count.tumma {
  color: #fff;
  font-family: Ppfragment, sans-serif;
  font-size: 1em;
}

.slide-nav {
  inset: auto 0% -25%;
}

.slide-nav.hide {
  display: none;
}

.section_white-theme {
  overflow: hidden;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.mask {
  overflow: visible;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.image {
  transform: rotate(180deg);
}

.image.image-arrow.left {
  transform: none;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding-medium._2 {
  padding-top: 1rem;
}

.padding-bottom.padding-medium._22 {
  padding-top: 3rem;
}

.padding-bottom.padding-small {
  padding-top: 1.9rem;
}

.slide {
  height: auto;
  position: static;
}

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

.text-align-center.max-width-xlarge {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.padding-global {
  padding-left: 1rem;
  padding-right: 1rem;
}

.right-arrow {
  background-color: #ffffff1a;
  border: .5px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  display: flex;
  inset: -20px 0 auto auto;
  overflow: visible;
}

.right-arrow.background-color-black {
  background-color: var(--dark-blue);
  width: 1.5em;
  height: 1.5em;
  inset: 0% 0% 0% auto;
}

.left-arrow {
  background-color: var(--dark-blue);
  border: .5px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  inset: 0% auto 0% 0%;
  overflow: visible;
}

.left-arrow.dark-theme {
  border-color: #000;
}

.slider {
  background-color: #0000;
  height: auto;
}

.slider.padding-top {
  padding-top: 2em;
}

.video-testimonial_component {
  justify-content: center;
  align-items: center;
  display: block;
}

.image-arrow {
  width: 2rem;
}

.frost-bg_container {
  z-index: -1;
  opacity: .2;
  -webkit-backdrop-filter: blur(8em);
  backdrop-filter: blur(8em);
  background-image: linear-gradient(128deg, #fff9, #ffffff1a);
  position: absolute;
  inset: 0%;
}

.video_container {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.video_container.dark-theme {
  border-radius: 0 8px 8px 0;
}

.text-size-large {
  font-size: 1.5rem;
}

.text-size-large.text-weight-bold {
  color: #fff;
}

.paragraph-3 {
  font-size: 1em;
}

.author-designation_container {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.background-video {
  background-image: url('../images/anthony-tyrrell-Bl-LiSJOnlY-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  width: 25em;
  height: 20em;
  display: block;
}

.background-video._2 {
  background-image: url('../images/hunters-race-MYbhN8KaaEc-unsplash.jpg');
}

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

.text-weight-bold.text-color-grey {
  color: #b4b4b4;
}

.written-testimonial_container {
  opacity: .3;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-image: linear-gradient(125deg, #fff9, #ffffff1a);
  width: 36.625em;
  height: 19.688em;
  margin-left: -2em;
}

.written-testimonial_container.padding-custom1 {
  opacity: 1;
  background-image: none;
  border: 1px solid #ffffff4d;
  border-radius: 10px;
  height: auto;
  padding: 4.063em 1.875em 1.875em;
  overflow: hidden;
}

.written-testimonial_container.padding-custom1.dark-theme {
  background-color: var(--dark-blue);
  border-style: none;
  border-radius: 8px 0 0 8px;
  width: 22em;
  min-height: 20em;
  margin-left: 0;
  padding-top: 2.5em;
}

.testimonial-slider-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.h2-musta {
  color: var(--dark-blue);
  font-weight: 600;
}

.h2-musta.valkonen {
  color: var(--white);
  text-align: center;
  font-family: Ppfragment, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 400;
  position: relative;
  bottom: 0;
}

.h2-musta.s {
  font-family: Ppfragment, sans-serif;
  font-size: 4vw;
  font-weight: 400;
}

.p-musta {
  color: var(--dark-blue);
}

.sticky-center {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.sticky-text_wrapper {
  color: #363636;
  margin-top: 8vh;
  margin-bottom: 8vh;
  text-decoration: none;
  display: block;
  position: relative;
}

.sticky-text_wrapper.steps {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 60px 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4vh;
  margin-bottom: 4vh;
  display: grid;
}

.overflow-hidden {
  overflow: hidden;
}

.sticky-wrapper {
  width: 100%;
  height: 333vh;
  position: relative;
}

.paragraph-l {
  font-size: 1.125rem;
}

.paragraph-l.cc-sm-small.mb-0 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
}

.paragraph-l.cc-sm-small.mb-0.text-dark {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  display: block;
}

.sticky-container {
  width: 100%;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.sticky-img_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.sticky-img_wrapper.cc-steps {
  width: 100%;
}

.phone-screen_img {
  object-fit: cover;
  background-color: #0000;
  flex: none;
  width: 100%;
  height: 100%;
}

.phone-screen_img.first {
  z-index: 3;
  background-image: none;
  display: block;
  position: static;
}

.phone-screen_img.third, .phone-screen_img.second {
  background-image: none;
  display: none;
  position: absolute;
  inset: 0%;
}

.phone-screen {
  position: relative;
}

.section-stick-palvelu {
  background-image: linear-gradient(#0e1418e0, #0e1418e0), url('../images/anthony-tyrrell-Bl-LiSJOnlY-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 5%;
  padding-bottom: 8%;
  display: none;
  position: relative;
}

.position-relative {
  position: relative;
}

.stick-text_detail {
  transform-origin: 50% 0;
  overflow: hidden;
}

.container-stick-palvelu {
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.h3 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: .4em;
  font-family: Ppfragment, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.sticky-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.sticky-triggers {
  position: absolute;
  inset: 0%;
}

.sticky-trigger {
  z-index: 1;
  position: absolute;
  inset: 0% 0% auto;
}

.sticky-trigger._40 {
  top: 50%;
}

.sticky-trigger._60 {
  top: 75%;
}

.sticky-trigger._20 {
  top: 25%;
}

.sticky-trigger._80 {
  top: 80%;
}

.text-in-phone-animation {
  width: 100%;
  font-weight: 400;
}

.circle-number {
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: -16px;
  padding-top: 3px;
  font-family: Ppfragment, sans-serif;
  display: flex;
}

.circle-number.steps1.v2 {
  background-color: var(--dark-blue);
  color: var(--white);
  min-width: 60px;
  min-height: 60px;
}

.circle-number.steps1.v2.valkoinen {
  background-color: var(--peru);
  color: var(--dark-blue);
}

.circle-number.steps1.v2.valkoinen.absolute {
  position: absolute;
  inset: -3% auto auto -8%;
}

.circle-number.steps1.v2.valkoinen.small {
  width: 33px;
  min-width: 33px;
  height: 33px;
  min-height: 33px;
  margin-top: 0;
}

.heading-3 {
  font-family: Ppfragment, sans-serif;
  font-weight: 400;
}

.waves---paragraph-big {
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-3-no-margins {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.waves-name-wrap-team-2 {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves-image-team-2 {
  border-radius: 8px;
  align-self: center;
  width: 80%;
}

.waves-tile-team-2 {
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves-grid-team-2 {
  grid-column-gap: 32px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 10px;
  display: flex;
}

.waves---cta-dark {
  background-color: var(--waves-library-black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark:hover {
  background-color: #131313e6;
}

.waves---cta-dark.wide-cta {
  min-width: 200px;
}

.waves---cta-dark.wide-cta.valk {
  background-color: var(--peru);
  color: #fff;
}

.waves---heading-2-no-margins {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---sides-heading-button {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.waves---section-medium {
  padding-top: 100px;
  padding-bottom: 100px;
}

.waves-image-logo-2 {
  max-width: 160px;
  overflow: visible;
}

.waves-master-logos-2 {
  grid-column-gap: 80px;
  grid-row-gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 950px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.waves---center-heading {
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves---expand-line {
  background-color: var(--white);
  width: 16px;
  height: 2px;
}

.waves---expand-line.vertical {
  background-color: var(--white);
  width: 2px;
  height: 16px;
  position: absolute;
}

.waves---expand-icon-wrap {
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-top: 2px;
  display: flex;
}

.waves-expanded-text {
  text-align: left;
  margin-bottom: 0;
  font-size: 16px;
}

.waves---expand-space {
  height: 24px;
}

.waves---expandable-open {
  transform-origin: 50% 0;
}

.waves---paragraph-regular {
  font-size: 2rem;
  line-height: 130%;
}

.waves---expandable-content {
  width: 100%;
  height: auto;
  margin-right: 24px;
}

.waves---expandable-item {
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.waves---expandable-wrap {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.waves-expandable-master-faq-2 {
  width: 100%;
  max-width: 545px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}

.waves---expand-line-2 {
  background-color: var(--dark-blue);
  width: 16px;
  height: 2px;
}

.waves---expand-line-2.vertical {
  background-color: var(--dark-blue);
  width: 2px;
  height: 16px;
  position: absolute;
}

.waves---expand-icon-wrap-2 {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  display: flex;
}

.waves-expanded-text-2 {
  color: var(--dark-blue);
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
}

.waves-expanded-text-2 p {
  font-size: 1rem;
}

.waves---paragraph-regular-2 {
  color: var(--dark-blue);
  font-family: Ppfragment, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 130%;
}

.waves---expandable-item-2 {
  color: var(--dark-blue);
  cursor: pointer;
  border-top: 1px solid #1f2c3633;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.wrap-col {
  grid-column-gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.waves-success-mesaage {
  background-color: var(--peru);
  border-radius: 6px;
}

.waves-submit-wrap-contact-1 {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 9px;
  display: flex;
}

.waves---checkbox-label {
  font-size: 16px;
}

.waves---checkbox {
  border-color: var(--waves-library-black);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  margin-right: 6px;
}

.waves---checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.waves-select-background {
  border: 1px solid var(--waves-library-black);
  background-color: var(--white);
  color: var(--waves-library-black);
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-select-background:focus {
  border-color: var(--waves-library-black);
}

.waves---field-label {
  font-size: 1.1rem;
}

.waves---input-wrap {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves-text-field-background {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--alice-blue);
  background-color: #c7c7c721;
  border: 1px solid #ffffff42;
  border-radius: 8px;
  height: 45px;
  margin: 0;
  font-size: 16px;
}

.waves-text-field-background:focus {
  border-color: var(--alice-blue);
}

.waves-text-field-background.area {
  height: auto;
  min-height: 100px;
}

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

.waves---form-contact-1 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-direction: column;
  display: flex;
}

.waves-form-block-contact-1 {
  width: 100%;
  max-width: 500px;
  margin-top: 40px;
}

.waves-master-contact-1 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.txt-2r {
  font-family: Ppfragment, sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.wrp-1r-row {
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.step-block {
  flex-wrap: nowrap;
  place-content: center space-around;
  align-items: center;
  min-height: 60vh;
  margin-top: -1px;
  display: flex;
  position: relative;
}

.bg-shadow {
  z-index: 1;
  box-shadow: none;
  border-radius: 16px;
  position: absolute;
  inset: 0%;
}

.content-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: sticky;
  top: 0;
}

.img-block {
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40%;
  display: flex;
}

.label {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-base {
  transform-origin: 50% 0;
  background-color: #eeeff4;
  width: 6px;
  height: 100%;
}

.content-wrap {
  justify-content: flex-end;
  width: 40%;
  display: flex;
}

.heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter Display, sans-serif;
  font-size: 2.2rem;
  display: flex;
}

.steps-clone {
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
  display: flex;
  position: relative;
}

.scroll-animate {
  background-color: var(--brown);
  transform-origin: 50% 0;
  width: 6px;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.step-content-block {
  text-align: left;
  align-self: center;
  position: relative;
}

.content {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.scoll-wrap {
  flex-direction: column;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 50%;
}

.dot {
  z-index: 3;
  background-color: #eeeff4;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-bottom: -6px;
  position: relative;
}

.container-2 {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  margin-bottom: 10%;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.step {
  z-index: 2;
  background-color: #0000;
  border-radius: 16px;
  align-items: center;
  padding: 12%;
  display: flex;
  position: relative;
}

.para-prog {
  text-align: left;
  max-width: 333px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

.waves---cta-white {
  background-color: var(--waves-library-white);
  color: var(--waves-library-black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.waves---cta-white.wide-cta {
  min-width: 200px;
  transition-property: background-color;
}

.waves---cta-white.wide-cta:hover {
  opacity: 1;
  background-color: #c2c2c2;
}

.waves---mg-top-16 {
  margin-top: 16px;
}

.waves---limit-480 {
  width: 100%;
  max-width: 800px;
}

.waves---limit-480.hide {
  display: none;
}

.waves---mega-heading-1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppfragment, sans-serif;
  font-size: 100px;
  font-style: normal;
  line-height: 115%;
}

.waves-title-wrap-hero-5 {
  z-index: 1;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.waves---main-container-2 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves-gradient-hero-5 {
  background-image: linear-gradient(#0000, #00000075), linear-gradient(#00000069, #00000069);
  position: absolute;
  inset: 0%;
}

.s1-y-hide {
  color: var(--waves-library-white);
  background-image: url('../images/rodeo-project-management-software-ONe-snuCaqQ-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 88px;
  display: block;
  position: relative;
}

.rl-button-link-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.rl-button-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px none var(--relume-library-lite-rl-black);
  color: var(--relume-library-lite-rl-black);
  text-align: center;
  background-color: #0000;
  padding: .25rem 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.rl-button-secondary {
  border: 1px solid var(--relume-library-lite-rl-black);
  background-color: var(--relume-library-lite-rl-white);
  color: var(--relume-library-lite-rl-black);
  text-align: center;
  padding: .75rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
}

.rl-button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.rl_layout270_spacing-block-4 {
  width: 100%;
  padding-bottom: 2rem;
}

.rl-text-style-regular {
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.rl_layout207_icon {
  width: 1.5rem;
  height: 1.5rem;
}

.rl_layout207_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
}

.rl_layout207_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.rl_layout207_item.valkoinen._3 {
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.rl_layout207_item.valkoinen._3._4 {
  background-color: #d9dfe2;
  border-radius: 8px;
  padding: 22px;
}

.rl_layout207_item-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.rl_layout270_spacing-block-3 {
  width: 100%;
  padding-bottom: 1.5rem;
}

.rl-text-style-medium {
  color: var(--relume-library-lite-rl-black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.rl_layout270_spacing-block-2 {
  width: 100%;
  padding-bottom: 1.5rem;
}

.rl-heading-style-h2 {
  color: var(--relume-library-lite-rl-black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.rl-heading-style-h2.s {
  font-family: Inter Display, sans-serif;
  font-size: 1.7rem;
}

.rl_layout270_spacing-block-1 {
  width: 100%;
  padding-bottom: 1rem;
}

.rl-text-style-subheading {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.rl_layout207_image-wrapper._2212 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rl_layout207_image-wrapper._2212._443 {
  overflow: visible;
}

.rl_layout207_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.rl-padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.rl-container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.rl-padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.rl_section_layout207 {
  background-color: var(--relume-library-lite-rl-white);
}

.image-2 {
  border-radius: 8px;
}

.image-2.shadow {
  box-shadow: 2px 4px 20px #0000001f;
}

.image-2.shadow._2332 {
  max-height: 500px;
  display: block;
}

.image-2.shadow._2332._1 {
  border-radius: 9px;
  position: static;
  top: 50px;
  left: 37px;
  right: auto;
}

.image-2.shadow._2332._2 {
  border-radius: 9px;
}

.featuresv8_content {
  max-width: 45rem;
}

._2x1-grid-layout {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.section_featuresv8 {
  padding-top: 12rem;
  display: block;
}

.featuresv8_component {
  border-style: solid solid none;
  border-width: 1px;
  border-color: var(--white);
  background-color: var(--dark-blue);
  border-top-left-radius: 46px;
  border-top-right-radius: 46px;
  min-height: 90vh;
  padding: 1rem 5rem;
  position: sticky;
}

.featuresv8_component.is-third {
  margin-bottom: 0;
  top: 4rem;
}

.featuresv8_component.is-second {
  margin-top: -6rem;
  margin-bottom: 6rem;
  top: 2rem;
}

.featuresv8_component.is-first {
  margin-top: -12rem;
  margin-bottom: 12rem;
  top: 0;
}

.featuresv8_component.is-fourth {
  top: 6rem;
}

.featuresv8_header {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  align-items: center;
  margin-bottom: 3.75rem;
  display: flex;
}

.featuresv8_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.featuresv8_header-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.featuresv8_sticky-wrapper {
  position: relative;
}

.text-custom-gray {
  color: #dbdbdb;
}

.h2-paragraph-padding {
  max-width: 30rem;
}

.h2-stacking-c {
  font-size: 3rem;
}

.heading-4 {
  font-family: Ppfragment, sans-serif;
  font-size: 4rem;
}

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

.heading-4._4544 {
  margin-bottom: 34px;
}

.waves---main-container-3 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves-image-hero-3 {
  z-index: 2;
  object-fit: cover;
  object-position: 70% 50%;
  border-radius: 10px;
  width: 50vw;
  height: 88vh;
  position: absolute;
}

.waves-master-image-hero-3 {
  height: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.waves---cta-dark-2 {
  background-color: var(--waves-library-black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-2:hover {
  background-color: #131313e6;
}

.waves---cta-dark-2.wide-cta {
  min-width: 200px;
}

.waves---cta-dark-2.wide-cta.valk {
  background-color: var(--peru);
  color: #fff;
}

.waves---cta-dark-2.wide-cta {
  background-color: var(--peru);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  min-width: 144px;
  font-weight: 400;
}

.waves---mg-top-17 {
  margin-top: 16px;
}

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

.waves---heading-1-no-margins {
  color: var(--relume-library-lite-rl-white);
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppfragment, sans-serif;
  font-size: 6rem;
  line-height: 120%;
  display: flex;
}

.waves-content-hero-3 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 544px;
  padding-top: 0;
  padding-bottom: 48px;
  padding-left: 56px;
  display: flex;
}

.waves-hero-3-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
}

.s1-y {
  z-index: 100;
  background-color: var(--dark-blue);
  background-image: linear-gradient(#1f2c3645, #1f2c3645), url('../images/testi2-–-kopio.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  width: 100vw;
  max-width: 100vw;
  min-height: 88vh;
  padding-top: 9.7rem;
  padding-bottom: 35px;
  position: relative;
  overflow: visible;
}

.musta {
  color: var(--dark-blue);
}

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

.valkoinen.big {
  font-family: Ppfragment, sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
}

.valkoinen._400 {
  font-weight: 400;
}

.body-valkoinen {
  background-color: var(--white);
}

.heading-5 {
  font-family: Ppfragment, sans-serif;
}

.logo-in-nav {
  width: 170px;
}

.text-block-4 {
  font-family: Ppfragment, sans-serif;
  font-weight: 400;
}

.text-block-4.hidden, .pal-mobile {
  display: none;
}

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

.paragraph-5, .paragraph-6 {
  font-size: 1.1rem;
  font-weight: 400;
}

.image-para-cont {
  z-index: 2;
  object-fit: cover;
  border-radius: 10px;
  width: 50vw;
  height: 88vh;
  position: absolute;
  overflow: hidden;
}

.main-1 {
  overflow: hidden;
}

.main-1.no-overflow {
  overflow: visible;
}

.top-ankkuri {
  width: 100%;
  height: 0;
}

.nappi-wrappi-hero {
  grid-column-gap: 1rem;
  display: flex;
}

.mb {
  display: none;
}

.cf-form-text {
  color: #fffc;
  margin-top: 24px;
  font-family: Inter Display, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 156%;
}

.cf-error-message {
  color: #fff;
  background-color: #fc6b5c4d;
  border-radius: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.cf-success-message {
  color: #fff;
  background-color: #6cea7d3d;
  border-radius: 100px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.cf-submit-button {
  color: #fff;
  letter-spacing: -.16px;
  background-color: #b16cea;
  background-image: url('../images/Arrow---Right-2.svg'), linear-gradient(150deg, #b16cea 20%, #ff5e69 60%, #ff8a56 80%, #ffa84b);
  background-position: 85% 53%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  border-radius: 56px;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 70px;
  padding-right: 40px;
  font-size: 22px;
  font-weight: 600;
  transition: background-color .2s;
  display: flex;
}

.cf-submit-button:hover {
  background-color: #ff5e69;
}

.cf-newsletter-text-field {
  color: #fff;
  background-color: #0d0e10;
  background-image: url('../images/EnvelopeSimple-white.svg');
  background-position: 7%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #fff3;
  border-radius: 56px;
  width: 450px;
  height: 70px;
  margin-bottom: 0;
  margin-right: 20px;
  padding: 16px 28px 20px 66px;
  font-size: 20px;
  line-height: 150%;
}

.cf-newsletter-text-field:focus {
  border-color: #ff5e6966;
}

.cf-form {
  display: flex;
}

.cf-newsletter-form-block {
  flex-direction: row;
  margin-bottom: 0;
  display: block;
}

.cf-h2-white-heading-center {
  color: #fff;
  text-align: center;
  max-width: 750px;
  margin-top: 10px;
  margin-bottom: 60px;
  font-family: Ppfragment, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}

.cf-info-heading {
  color: #fff6;
  letter-spacing: .96px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Inter Display, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.cf-newsletter-wrapper {
  background-image: linear-gradient(#0000002b, #0000002b), url('../images/testi2-–-kopio.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 12px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 150px;
  padding-bottom: 150px;
  font-family: Montserrat, sans-serif;
  display: flex;
}

.cf-forms-section-2 {
  background-color: #0d0e10;
  margin-top: 100px;
  margin-bottom: 100px;
}

.waves---cta-dark-3 {
  background-color: var(--waves-library-black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-3:hover {
  background-color: #131313e6;
}

.waves---cta-dark-3.wide-cta {
  min-width: 200px;
}

.waves-text-field-background-2 {
  border: 1px solid var(--waves-library-black);
  background-color: var(--waves-library-background);
  color: var(--waves-library-black);
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-text-field-background-2:focus {
  border-color: var(--waves-library-black);
  color: var(--waves-library-black);
}

.waves-text-field-background-2.field-cta-1 {
  min-width: 260px;
}

.waves-form-cta-1 {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.waves---form-block-cta-1 {
  margin-top: 40px;
  margin-bottom: 32px;
}

.waves---paragraph-big-2 {
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-2-no-margins-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---left-cta-1 {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves---master-cta-1 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.waves---main-container-4 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.frag {
  font-family: Ppfragment, sans-serif;
  font-weight: 400;
}

.service-bottom-info {
  padding-top: 80px;
  padding-bottom: 80px;
}

.link-arrow {
  width: 12px;
}

.section-2 {
  justify-content: center;
  align-items: stretch;
  padding-top: 160px;
  padding-bottom: 160px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-2.no-clip {
  overflow: visible;
}

.section-2.no-clip.bottom-border {
  background-color: var(--alice-blue);
  padding-bottom: 100px;
}

.grid-wrapper {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1500px) minmax(5vw, 1fr);
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.service-list {
  grid-column-gap: 16px;
  grid-row-gap: 80px;
  border: 1px #000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.content-wrapper {
  z-index: 20;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  position: relative;
}

.underline-link {
  grid-column-gap: 48px;
  grid-row-gap: 16px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-bottom: 1px solid #8c9fac66;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-bottom: 8px;
  font-size: 11px;
  text-decoration: none;
  display: grid;
  position: relative;
}

.underline-link.dark {
  color: #616670;
}

.link-hover-fill {
  background-color: var(--dark-blue);
  border-radius: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.service-item-bottom {
  cursor: default;
  border-top: 1px #8c9fac33;
  border-bottom: 1px #000;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.subtitle {
  color: #616670;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.3em;
}

.subtitle._22 {
  color: #fff;
  padding-bottom: 16px;
  font-size: 14px;
}

.stacked-content {
  grid-column-gap: 0px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 72px;
  padding-right: 72px;
  display: grid;
  position: relative;
}

.button-text {
  z-index: 20;
  color: #000;
  position: relative;
  transform: rotate(18deg);
}

.button-text.close {
  color: #fff;
}

.button-text.open {
  color: #fff;
  white-space: nowrap;
}

.service-item-top {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  cursor: pointer;
  border-bottom: 1px solid #8c9face0;
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 100px;
  padding-right: 36px;
  display: grid;
  position: relative;
}

.service-item-top.bottom {
  cursor: default;
}

.hover-line {
  height: 1px;
  position: absolute;
  inset: auto 0% -1px;
  overflow: hidden;
}

.stacked-description {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
}

.body-display {
  color: #616670;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6em;
}

.body-display.small {
  font-size: 15px;
  font-weight: 400;
}

.grain {
  z-index: 1;
  opacity: .02;
  background-image: url('../images/noise.gif');
  background-position: 50%;
  background-size: auto;
  position: fixed;
  inset: 0%;
}

.grain.in-block {
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: auto;
}

.service-item-overview {
  border-left: 1px solid #8c9face0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 36px;
  display: flex;
}

.grain-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.more-link {
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #edf3f6;
  border: 1px solid #8c9face0;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding-left: 2px;
  font-size: 9px;
  display: flex;
  position: absolute;
  left: -40px;
}

.service-list-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #8c9face0;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  min-height: 300px;
  padding: 0;
  display: grid;
  position: relative;
}

.small-width {
  max-width: 450px;
}

.hover-line-fill {
  background-color: #edf3f6;
  width: 100%;
  height: 100%;
}

.hover-line-fill.dark {
  background-color: #8c9fac66;
}

.heading-6 {
  color: var(--dark-blue);
  font-family: Ppfragment, sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
}

.pal-nappi-wrappi {
  padding-top: 20px;
}

.fill {
  z-index: 10;
  background-color: var(--dark-blue);
  height: 70px;
  margin-top: 0;
  margin-bottom: -10px;
  position: relative;
}

.circle-outline-right {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 36px;
  display: flex;
  position: absolute;
  inset: auto 0% auto auto;
  overflow: hidden;
}

.testimonial-slider {
  background-color: #0000;
  height: 100%;
}

.background {
  background-image: url('../images/001.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.background.testimonial-background {
  background-image: url('../images/Innovatop-04532-1.webp');
}

.circle-link-text {
  z-index: 10;
  grid-column-gap: 18px;
  grid-row-gap: 16px;
  white-space: nowrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: end;
  place-items: center stretch;
  height: 100%;
  padding-left: 0;
  padding-right: 44px;
  line-height: 1.2em;
  display: grid;
  position: relative;
}

.circle-link-text.left {
  justify-content: start;
  padding-left: 44px;
  padding-right: 0;
}

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

.testimonial-client.testi {
  justify-items: start;
  display: flex;
}

.testimonial-client.hidden {
  display: none;
}

.avatar {
  background-image: url('../images/Portrait019.jpeg');
  background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}

.avatar.avatar-003 {
  background-image: url('../images/Innova-04207.webp');
  background-position: 50% 30%;
}

.avatar.avatar-002 {
  background-image: url('../images/placeholder-image.svg');
  background-position: 50% 10%;
}

.avatar.play {
  background-image: url('../images/play24x242x.svg');
  width: 50%;
  height: 50%;
}

.avatar._1 {
  background-image: url('../images/hunters-race-MYbhN8KaaEc-unsplash.jpg');
}

.circle-outline {
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  position: absolute;
  inset: 0% 0% auto;
}

.circle-outline.bottom {
  inset: auto 0% 0% auto;
}

.circle-outline.bottom-left {
  inset: auto auto 0% 0%;
}

.circle-outline.left {
  top: auto;
}

.circle-outline.top {
  inset: 0% 0% auto auto;
}

.circle-outline.light {
  border-color: #fff;
}

.circle-outline.right {
  inset: auto 0 auto auto;
}

.section-scroll-cover {
  z-index: 100;
  justify-content: center;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.testimonial-content {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  max-width: 600px;
  padding-bottom: 60px;
  display: grid;
}

.subtitle-2 {
  color: #6e7f8b;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35em;
  position: relative;
}

.subtitle-2.light {
  color: #fffc;
}

.section-3 {
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.section-3.clip {
  z-index: 10;
  min-height: 700px;
  max-height: 85vh;
}

.section-3.clip.og {
  display: block;
}

.section-3.clip.testi {
  min-height: 504px;
  display: flex;
}

.verticle-line {
  background-color: #fff3;
  width: 1px;
  height: 100%;
}

.verticle-line.dark {
  background-color: #eff3f6;
}

.circle-hover-clip {
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  overflow: hidden;
}

.circle-hover-clip.left {
  justify-content: flex-start;
  inset: auto auto auto 0%;
}

.circle-hover-clip.two {
  top: auto;
}

.circle-outline-bottom {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.arrow {
  border-top: 1px #fff;
  border-right: 1px #fff;
  width: 12px;
  min-width: 12px;
  display: flex;
}

.client-avatar {
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  padding: 6px;
  display: flex;
}

.client-avatar.hidden {
  display: none;
}

.content-wrapper-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 15%;
  grid-auto-columns: 1fr;
  display: grid;
}

.testimonial-text {
  text-align: center;
  font-family: Ppfragment, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

.testimonial-text.testi {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.banner-content {
  color: #fff;
  justify-content: center;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 88px;
  display: flex;
}

.slide-nav-2 {
  display: none;
}

.circle-button {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 100%;
  grid-template-rows: auto 36px auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100px;
  height: 100px;
  max-height: 100px;
  font-size: 10px;
  text-decoration: none;
  display: grid;
  position: relative;
}

.testimonial-arrow-line {
  background-color: #ffffff4d;
  height: 1px;
  margin-bottom: 60px;
}

.testimonial-slide-arrow {
  width: 100px;
  height: 100px;
  margin-top: auto;
  margin-bottom: auto;
  inset: 0% auto 60px 0%;
  overflow: visible;
}

.testimonial-slide-arrow.right {
  top: 0%;
  left: auto;
  right: 0%;
}

.testimonial-name {
  grid-column-gap: 16px;
  grid-row-gap: 9px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.testimonial-name._2 {
  display: block;
}

.scroll-fill {
  background-color: #fff;
  padding: 0;
}

.scroll-fill.right {
  background-color: var(--alice-blue);
  margin-right: -10px;
}

.scroll-fill.left {
  background-color: var(--alice-blue);
  margin-left: -10px;
}

.circle-outline-top {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.grid-wrapper-2 {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.clip {
  overflow: hidden;
}

.clip._2 {
  justify-content: center;
  width: 100%;
  display: flex;
}

.clip._2.test {
  grid-row-gap: 1.25rem;
  flex-direction: column;
}

.overlay {
  background-color: #0a111880;
  position: absolute;
  inset: 0%;
}

.overlay.dark {
  background-color: #0a1118c4;
}

.background-wrapper {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.heading-7 {
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: 500;
}

.heading-8 {
  font-weight: 500;
}

.logo-carousel-item {
  flex: none;
  padding: .8rem 1rem;
}

.carousel-component {
  z-index: 9;
  position: absolute;
  inset: auto 0% 0%;
}

.small-instructions {
  font-size: 1rem;
}

.logo-carousel {
  grid-column-gap: 1rem;
  justify-content: flex-start;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  overflow: hidden;
}

.instructions {
  color: #33333387;
  text-align: center;
  margin-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: Inconsolata, monospace;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2em;
}

.logo-image {
  filter: grayscale() invert();
  max-height: 33px;
}

.logo-carousel-clone {
  grid-column-gap: 1rem;
  justify-content: flex-start;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  overflow: hidden;
}

.logo-carousel-wrap {
  backface-visibility: hidden;
  flex: none;
  width: auto;
  display: flex;
  transform: perspective(1px);
}

.logo-link {
  filter: grayscale();
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.copy-animation {
  height: 0;
}

.carousel {
  flex-direction: row;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.only-mb {
  display: block;
}

.link-block {
  filter: invert();
}

.image-3 {
  filter: invert();
  width: 75px;
}

.div-block-2 {
  grid-column-gap: 1rem;
  align-items: center;
  display: flex;
}

.text-block-5 {
  color: var(--relume-library-lite-rl-white);
  font-weight: 400;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #18181899;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-prefs_space-small {
  margin-bottom: .75rem;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-banner_text-link {
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-banner_button {
  color: #fff;
  text-align: center;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 999rem;
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: .625rem 1.25rem;
  font-size: 14px;
}

.fs-cc-banner_button.fs-cc-button-alt {
  color: #fff;
  background-color: #0000;
  border-color: #fff;
}

.fs-cc-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-right: -.5rem;
  display: flex;
}

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

.fs-cc-prefs_space-medium {
  margin-bottom: 2.5rem;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: #191919;
  border-radius: 50rem;
  width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem;
  display: none;
  position: fixed;
  inset: auto 0% 3%;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 2.5rem 2rem;
  overflow: scroll;
}

.image-4 {
  width: 22px;
  height: 22px;
}

.fs-cc-banner_text {
  color: #fff;
  margin-right: 1.5rem;
  font-size: 14px;
}

.fs-cc-manager_component {
  z-index: 999;
  display: block;
  position: static;
  inset: auto auto 1.25rem 1.25rem;
}

.fs-cc-prefs_button {
  background-color: #000;
  border: 2px solid #000;
  border-radius: 999rem;
  margin-right: .5rem;
  padding: .625rem 1.5rem;
  font-size: .875rem;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  color: #000;
  background-color: #fff;
  border-color: #000;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  inset: -.75rem -.75rem auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  max-width: 36rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_close-icon {
  color: #021a7c;
  width: 1rem;
  height: 1rem;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs_label {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  flex-direction: column;
  padding: .425rem;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-prefs_text {
  color: #000;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_title {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.icon-embed {
  z-index: 2;
  max-height: 24px;
  position: relative;
}

.icon-embed.big {
  max-height: 40px;
}

.tabs {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #7777773b;
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-color-yellow {
  color: #ffc933;
}

.text-color-red {
  color: #f6285f;
}

.text-color-green {
  color: #41e88d;
}

.text-color-grey {
  color: #757373;
  position: relative;
}

.text-color-grey._1 {
  color: #000;
}

.tab-content {
  grid-row-gap: 20px;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  min-height: 139.172px;
  padding: 30px;
}

.tabs-content-wrapper {
  width: 100%;
}

.tabs-menu {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: #0000;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px;
  display: flex;
}

.tab-content-text {
  font-size: 1.1rem;
  font-weight: 400;
}

.tablink {
  grid-column-gap: 12px;
  color: #fff;
  background-color: #0000;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 10px 24px;
  font-weight: 600;
  display: flex;
}

.tablink.w--current {
  color: #1ac500;
  background-color: #0000;
}

.tablink._1 {
  color: #757373;
}

.tablink._1.w--current {
  color: #41e88d;
}

.tablink._3 {
  color: #757373;
}

.tablink._3.w--current {
  color: #ffc933;
}

.tablink._2 {
  color: #4d4d4d;
}

.tablink._2.w--current {
  color: red;
}

.content-icon {
  border: 1px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.active-tablink {
  z-index: 0;
  grid-column-gap: 12px;
  background-color: #fff;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.active-tablink.w--current {
  color: #1ac500;
  background-color: #0000;
}

.tab-content-inner {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.kalenteri-nappi-wrapper {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #c7c7c730;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  margin-top: 16px;
  display: flex;
  position: relative;
}

.absolute-green {
  background-color: var(--peru);
  opacity: 0;
  border-radius: 50rem;
  width: 33px;
  height: 33px;
  position: absolute;
  left: auto;
  right: 4%;
}

.nuoli {
  padding: 8px;
}

.div-padding {
  padding-top: 23px;
}

.email-lista-wrapper {
  margin-top: 44px;
  margin-bottom: 28px;
}

.waves---cta-dark-4 {
  background-color: var(--waves-library-black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-4:hover {
  background-color: #131313e6;
}

.waves---cta-dark-4.wide-cta {
  background-color: var(--peru);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  min-width: 144px;
  font-weight: 400;
}

.waves-text-field-background-3 {
  border: 1px solid var(--waves-library-black);
  background-color: var(--waves-library-background);
  color: var(--waves-library-black);
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-text-field-background-3:focus {
  border-color: var(--waves-library-black);
  color: var(--waves-library-black);
}

.waves-text-field-background-3.field-cta-1 {
  background-color: #fff;
  border-style: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  min-width: 260px;
}

.waves-form-cta-2 {
  grid-column-gap: 0px;
  align-items: center;
  display: flex;
}

.waves-form-cta-2._2 {
  flex-direction: column;
  align-items: flex-start;
}

.waves---form-block-cta-2 {
  margin-top: 12px;
  margin-bottom: 15px;
}

.waves---paragraph-big-3 {
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-2-no-margins-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---left-cta-2 {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves---master-cta-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.waves---main-container-5 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-3 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-email {
  color: var(--relume-library-lite-rl-white);
  font-weight: 400;
}

.embed-icon {
  line-height: 100%;
}

.text-size-large-2 {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.6;
}

.story-content {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.heading-small {
  color: var(--dark-blue);
  font-family: Ppfragment, sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.tab-icon {
  border: 1px solid #1f2c362e;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-left: auto;
  display: flex;
}

.max-width-small {
  width: 100%;
  max-width: 24rem;
}

.tab-item {
  border-top: 1px #e3eef3;
  border-bottom: 1px solid #e3eef3;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.container-large-2 {
  width: 100%;
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
}

.tab-icon-image {
  color: #6c6f70;
  width: 1.5rem;
}

.page-padding {
  width: 100%;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.page-padding.test {
  background-color: #858585;
}

.page-padding.tttt {
  padding-left: 1rem;
  padding-right: 1rem;
}

.tab-item-padding {
  cursor: pointer;
  padding: 3rem 0;
}

.tab-item-padding.ssaa {
  padding-top: 1rem;
}

.section-home-faq {
  background-color: var(--alice-blue);
  padding-top: 4rem;
}

.intro-centered {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 80rem;
  display: flex;
}

.faq-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 50%;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-large {
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.35;
}

.image-background {
  z-index: 10;
  border-radius: .5rem;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tab-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px #ddd;
  border-top: 1px solid #1f2c3626;
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: stretch;
  place-items: center stretch;
  padding: 1rem 2rem 0;
  display: grid;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xhuge {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.text-size-regular {
  color: var(--dark-blue);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-huge {
  padding-bottom: 2.8em;
}

.margin-bottom.margin-xxsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.tab-bottom-wrapper {
  overflow: hidden;
}

.tab-title {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.faq-list {
  border-top: 1px solid #e4eff3;
}

.text-size-tiny {
  font-size: .75rem;
}

.image-full {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0%;
}

.tab-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #f9fafb;
  border-radius: 9px 9px 0 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4rem;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-bottom: 0;
  padding: 3rem 2.25rem;
  display: grid;
}

.tab-bottom.tab-bottom-full-width {
  background-color: #0000;
  justify-content: flex-start;
  padding-top: .4rem;
  padding-bottom: .4rem;
  display: flex;
}

.image-background-sticky {
  flex-direction: column;
  max-height: 100vh;
  margin-top: -4rem;
  padding-top: 4rem;
  padding-bottom: 1rem;
  padding-left: 0;
  display: flex;
  position: sticky;
  top: 0;
}

.image-background-sticky._22 {
  top: 10px;
}

.button-text-2.button-text-bottom {
  position: absolute;
  bottom: -100%;
}

.text-size-tiny-2 {
  font-size: .8rem;
}

.text-size-tiny-2.text-style-allcaps {
  color: #fff;
  font-weight: 500;
}

.navbar-block {
  justify-content: space-between;
  width: 100%;
  height: 0;
  display: flex;
  position: static;
}

.navbar-button {
  z-index: 100;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #c33f40;
  background-color: #ebd8c1;
  border: 1px #c33f40;
  border-radius: 100rem;
  justify-content: space-between;
  align-items: center;
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  position: relative;
}

.navbar-button.red-button {
  background-color: var(--grey-2);
  color: #f5e2ca;
}

.navbar-menu-2 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 35%;
  margin-right: 0;
  padding-left: 0;
  display: flex;
}

.menu-overlay {
  z-index: 5;
  cursor: pointer;
  background-color: #1f1313b3;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu-dropdown {
  flex-direction: column;
  align-items: flex-end;
  margin-left: .625rem;
  display: flex;
  position: relative;
}

.button-icon {
  justify-content: center;
  align-items: center;
  padding: 2px;
  display: flex;
}

.button-icon.button-icon-bottom {
  position: absolute;
  bottom: -100%;
  left: -100%;
}

.navbar-menu {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  width: 100%;
  display: flex;
}

.navbar-toggle {
  z-index: 100;
  background-color: #ebd8c1;
  border: 1px #c33f40;
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: flex;
}

.navbar-toggle.red-toggle {
  background-color: var(--grey-2);
}

.menu-logo.menue-logo-bottom {
  position: absolute;
  bottom: -100%;
}

.navbar-menu-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  min-width: 25rem;
  display: grid;
}

.navbar-link {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #c33f40;
  letter-spacing: .02rem;
  text-transform: uppercase;
  border-top: 1px solid #e5ceb1;
  border-right: 1px #e9dbcf;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  place-content: center space-between;
  align-items: center;
  padding: 1.5rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.icon-1x1-small {
  flex: none;
  width: .8rem;
  height: .8rem;
}

.toggle-spacer {
  height: .325rem;
}

.navbar-menu-line {
  background-color: #c33f40;
  width: 100%;
  height: 2px;
}

.navbar-menu-line.tan-line {
  background-color: #f5e2ca;
}

.navbar-2 {
  z-index: 100;
  color: #000;
  background-color: #ddd0;
  justify-content: center;
  align-items: flex-start;
  height: 0;
  padding-left: 15px;
  padding-right: 15px;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-brand {
  z-index: 100;
  color: #f5e2ca;
  font-variation-settings: "wght" 400;
  letter-spacing: .05rem;
  text-transform: uppercase;
  align-items: center;
  font-size: 2.25rem;
  line-height: 1;
  display: flex;
  position: relative;
}

.navbar-menu-base {
  z-index: 5;
  background-color: #f5e2ca;
  border-radius: .625rem;
  flex-direction: column;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.clip-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 1px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-color-red-2 {
  color: #c33f40;
}

.menu-dropdown-list.w--open {
  background-color: #ddd0;
  margin-top: -1rem;
  margin-right: -1rem;
  position: absolute;
  bottom: auto;
}

.padding-horizontal {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-base {
  z-index: 10;
  justify-content: center;
  align-items: center;
  height: 6rem;
  display: flex;
  position: static;
}

.navbar-base.left-navbar {
  z-index: 100;
  position: relative;
}

.text-block-6 {
  display: block;
}

.navi-logo {
  width: 9vw;
}

.navi-logo._2 {
  filter: invert();
}

.c-nav-items {
  align-items: center;
  display: flex;
}

.div-hover {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 50px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.div-block-196 {
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
  top: 0;
}

.new-div {
  opacity: .79;
  border-top: 1px solid #3e3e3e;
  width: 228px;
  height: 0;
  display: block;
}

.new-div.menu {
  border-top-color: #ededed;
  width: 170px;
}

._w-nav {
  background-color: var(--dark-blue);
  padding: 20px 2.5%;
}

.menu-item-number {
  z-index: 99;
  letter-spacing: 1px;
  font-size: .8em;
  font-weight: 200;
}

.c-col-menu-header {
  padding-right: 40px;
}

.link-block-6 {
  text-decoration: none;
}

.c-menu-item-text {
  position: relative;
}

.nav-menu-btn-line {
  background-color: var(--white);
  perspective-origin: 100%;
  transform-origin: 100%;
  width: 100%;
  height: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
  position: relative;
}

.nav-menu-btn-line.short {
  width: 70%;
}

.c-menu-item {
  margin-bottom: 20px;
}

.c-col-menu-social {
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.div-mascara {
  clear: left;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 100px;
  height: 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.new-div-2 {
  border-top: 1px solid #939393;
  width: 228px;
  height: 0;
}

.new-div-2.menu {
  border-top-color: #a4a4a4;
  width: 170px;
}

.text-block-12 {
  color: #fff;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
}

.text-block-12.menu {
  color: #000;
}

._w-nav-menu-btn {
  width: 100%;
  height: 100%;
  position: relative;
}

.c-nav-menu-overlay-bg {
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
  position: absolute;
  inset: 40px 2.5% auto auto;
}

.nav-social-address {
  color: #000;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 400;
  line-height: 2em;
}

.nav-social-address.head {
  color: var(--dark-blue);
  padding-bottom: 0;
  font-size: 18px;
}

.nav-social-address.head.menu, .nav-social-address.head.r {
  display: none;
}

.inicio-white {
  clear: none;
  color: #fff;
  margin: 0 0 0 auto;
  padding-left: 0;
  font-size: 20px;
  line-height: 42px;
  display: block;
  position: relative;
  left: auto;
}

.inicio-white.menu {
  color: #000;
  margin-left: 0;
  font-size: 18px;
  left: 0;
}

.c-nav-logo {
  z-index: 5001;
  position: relative;
}

.c-menu-item-number {
  margin-right: 20px;
  display: flex;
  position: absolute;
}

.caja-de-texto {
  color: #ff0389;
  position: absolute;
}

.c-nav-menu-btn {
  z-index: 5001;
  cursor: pointer;
  width: 45px;
  height: 45px;
  position: relative;
}

.link-menu {
  font-size: 20px;
  text-decoration: none;
}

.link-menu._1 {
  color: #fff;
  border: 1px solid #ffffff5c;
  border-radius: 50px;
  padding: 5px 20px;
  font-size: 15px;
  transition: all .35s;
}

.link-menu._1:hover {
  background-color: #00000078;
  transform: scale(1.05);
}

.nav-menu-overlay-bg {
  background-color: #fff;
  border-radius: 100%;
  width: 0;
  height: 0;
  position: absolute;
}

.c-nav {
  z-index: 999;
  position: fixed;
  inset: 0% 0% auto;
}

.c-col-menu-links {
  flex: 1;
}

.c-nav-social-contact-item {
  flex-direction: column;
  margin-bottom: 10px;
  display: flex;
}

.text-contact {
  text-decoration: none;
}

.c-nav-menu-content {
  z-index: 1000;
  width: 70%;
  max-width: 1200px;
  margin-top: 0;
  display: flex;
  position: relative;
}

.c-nav-menu-overlay {
  z-index: 5000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.link-block-10 {
  color: #fff;
  padding-right: 34px;
  font-size: 20px;
  text-decoration: none;
}

.link-block-10.menu {
  padding-right: 10px;
  text-decoration: none;
}

.heading-9 {
  color: #fff;
  margin-bottom: 3px;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
}

.heading-9.menu {
  color: #000;
  font-size: 18px;
}

._w-col-menu-social {
  padding-bottom: 20px;
}

.c-nav-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.c-nav-menu-btn-icon {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.c-nav-logo-link {
  color: #fff;
  text-decoration: none;
}

.c-menu-item-link {
  color: #333;
  text-decoration: none;
}

._w-col-menu-links {
  display: inline-block;
}

.div-block-222 {
  position: absolute;
}

._w-menu-item-link {
  display: flex;
  position: relative;
}

.c-nav-social-address {
  margin-bottom: 10px;
}

._w-nav-menu-btn-icon {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  display: flex;
}

._w-nav-menu-btn-icon.menu-opened {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50%;
  position: relative;
}

.menu-item-text {
  letter-spacing: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Ppfragment, sans-serif;
  font-size: 45px;
  font-weight: 200;
  line-height: 1em;
}

.grid-2 {
  display: none;
}

.inicio-whit {
  color: #fff;
  margin-top: 135px;
  font-family: Varela Round, sans-serif;
  font-size: 20px;
  line-height: 42px;
  position: relative;
}

.inicio-whit.menu {
  color: #000;
  font-size: 18px;
}

.col-menu-header-text {
  transform-origin: 50% 100%;
  color: var(--dark-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transform: rotate(-90deg);
}

._w-nav-social-media {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.cloneable-area {
  position: relative;
}

.c-nav-social-media {
  padding-top: 50px;
}

.div-magnetico {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 55px;
  display: flex;
}

.b-nav-menu-btn {
  background-color: #fff;
  border-radius: 5000px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.b-nav-menu-btn.default {
  z-index: 1;
  background-color: var(--peru);
  color: #000;
  position: relative;
}

.b-nav-menu-btn.menu-opened {
  z-index: 2;
  background-color: #333;
  display: none;
  position: absolute;
  inset: 0%;
}

.nav-menu-btn-close-icon {
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: relative;
}

.nav-menu-btn-close-icon._1 {
  transform: rotate(45deg);
}

.nav-menu-btn-close-icon._2 {
  position: absolute;
  transform: rotate(-45deg);
}

.image-10 {
  width: 144px;
}

.test100 {
  background-color: #d6d6d6;
  height: 100vh;
  display: none;
}

.waves---paragraph-big-4 {
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-3-no-margins-2 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppfragment, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 120%;
}

.waves-name-wrap-team-3 {
  grid-row-gap: 17px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves-image-team-3 {
  filter: invert();
  border-radius: 8px;
  width: 28%;
}

.waves-tile-team-3 {
  grid-row-gap: 24px;
  text-align: center;
  border: 1px solid #ebf1f43b;
  flex-direction: column;
  align-items: center;
  padding: 45px 5%;
  display: flex;
  position: relative;
}

.waves-grid-team-3 {
  grid-column-gap: 32px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 64px;
}

.waves---cta-dark-5 {
  background-color: var(--waves-library-black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-5:hover {
  background-color: #131313e6;
}

.waves---heading-2-no-margins-4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves---sides-heading-button-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.waves---main-container-6 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-4 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.hidden-asiakaspolku {
  display: none;
}

.body {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
}

.div-block-223 {
  overflow: hidden;
}

.success-message {
  background-color: var(--medium-sea-green);
}

.div-nap-w {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.linkki {
  color: #292929;
}

.hidd {
  display: none;
}

.html-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.html-embed._323 {
  background-color: var(--innova-ruskee);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  margin-top: 20px;
  padding: 13px 27px;
}

.html-embed._323:hover {
  background-color: var(--dark-green);
}

.html-embed._323._434 {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #fff3;
}

.html-embed._323._434:hover {
  background-color: var(--dark-green);
}

.alaotsikko {
  padding-bottom: 14px;
}

.h-asiakaspolku {
  text-align: center;
  font-family: Ppfragment, sans-serif;
  font-size: 2.8rem;
}

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

.yritystuet-asiakaspolku-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.big-wrp {
  justify-content: center;
  margin-top: 42px;
  display: flex;
}

.recaptcha {
  margin-top: 14px;
}

.text-block-13 {
  color: var(--dark-blue);
}

.hiden-block {
  display: none;
}

.ura-s-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  min-height: 880px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.heading-10 {
  font-family: Ppfragment, sans-serif;
}

.waves---paragraph-big-5 {
  text-align: left;
  font-size: 20px;
  line-height: 130%;
}

.waves---heading-3-no-margins-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.waves-top-blog-3 {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 22px;
  display: flex;
}

.waves-tile-blog-3 {
  grid-row-gap: 15px;
  border-top: 1px none var(--waves-library-black);
  border-bottom: 1px none var(--waves-library-black);
  color: var(--dark-blue);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  padding-bottom: 32px;
  text-decoration: none;
  display: flex;
}

.waves-grid-blog-3 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}

.waves---limit-510 {
  max-width: 650px;
}

.waves---heading-2-no-margins-5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppfragment, sans-serif;
  font-size: 2.8rem;
  line-height: 130%;
}

.waves---center-heading-2 {
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.waves---main-container-7 {
  color: var(--dark-blue);
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-5 {
  background-color: var(--alice-blue);
  padding-top: 40px;
  padding-bottom: 20px;
}

.waves---expand-line-3 {
  background-color: #6c6f70;
  width: 16px;
  height: 1px;
}

.waves---expand-line-3.vertical {
  background-color: #6c6f70;
  width: 1px;
  height: 16px;
  position: absolute;
}

.waves---expand-icon-wrap-3 {
  border: 1px solid #6c6f70;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 32px;
  margin-top: 2px;
  padding: 5px;
  display: flex;
}

.waves-expanded-text-3 {
  margin-bottom: 0;
  font-size: 16px;
}

.waves---expand-space-2 {
  height: 24px;
}

.waves---expandable-open-2 {
  transform-origin: 50% 0;
}

.waves---paragraph-regular-3 {
  font-size: 23px;
  font-weight: 400;
  line-height: 130%;
}

.waves---expandable-content-2 {
  width: 100%;
  height: auto;
  margin-right: 24px;
}

.waves---expandable-item-3 {
  border-top: 1px solid var(--waves-library-black);
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.waves---expandable-item-3.no-topline {
  border-top-style: none;
}

.waves---expandable-item-3.no-topline.hide {
  display: none;
}

.waves---expandable-wrap-2 {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.waves-expandable-master-faq-1 {
  max-width: 545px;
}

.waves---cta-dark-6 {
  background-color: var(--waves-library-black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.waves---cta-dark-6:hover {
  background-color: #131313e6;
}

.waves---mg-top-18 {
  margin-top: 16px;
}

.waves---limit-511 {
  width: 100%;
  max-width: 480px;
}

.waves---heading-2-no-margins-6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 130%;
}

.waves-left-faq-1 {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 520px;
  display: flex;
}

.waves-grid-faq-1 {
  grid-column-gap: 40px;
  grid-template-rows: auto;
}

.waves---main-container-8 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-6 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mustaspan {
  color: var(--dark-blue);
  font-weight: 700;
}

.top-pad {
  padding-top: 7px;
  display: flex;
}

.lw {
  color: #1b1b1b;
}

.rl-error-text {
  color: #e23939;
}

.waves---nav-container {
  max-width: 1440px;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.yht-hakemus-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0;
}

.rl-form-text-area {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 7px;
  height: auto;
  min-height: 8.8rem;
  margin-bottom: 0;
  padding: .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  overflow: auto;
}

.rl-form-text-area:focus {
  border-color: #000;
}

.rl-form-text-area::placeholder {
  color: #000;
}

.span-h2 {
  font-size: 2rem;
  font-weight: 600;
}

.rl-form-input {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 7px;
  height: auto;
  min-height: 2.5rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.rl-form-input:focus {
  border-color: #000;
}

.rl-form-input::placeholder {
  color: #000;
  font-size: 1rem;
}

.waves-right-nav-1 {
  grid-column-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.waves-master-nav-1 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.img-child {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.img-child.ab {
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
}

.heading-medium {
  text-transform: none;
  font-size: 1.6rem;
  font-weight: 400;
}

.heading-medium.text-white {
  font-size: 2.9rem;
  line-height: 1.1;
}

.waves---nav-cta {
  background-color: #42586b;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.rl_contact7_spacing-block-4 {
  width: 100%;
  padding-bottom: .5rem;
}

.side-panel {
  background-color: var(--alice-blue);
  width: 70%;
  max-width: 1440px;
  height: 100%;
  padding: 3rem 3rem 2rem;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.rl-success-message-2 {
  background-color: #0000;
  padding: 1.5rem;
}

.italic {
  font-family: Ppfragment, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.rl-error-message-2 {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.text-white {
  color: #1d1d1d;
}

.waves---nav-menu {
  grid-column-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.rl-field-label-2 {
  color: #0a0a0a;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 400;
}

.text-sm {
  color: #000;
  font-size: 1rem;
  line-height: 1.4;
}

.text-sm.fade.text-white {
  font-size: 1.2rem;
}

.img-parent {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-parent.size-four {
  justify-content: center;
  align-items: flex-start;
  width: 35vw;
  min-height: 80vh;
  padding-bottom: 150px;
  display: flex;
}

.ticker-parent {
  justify-content: center;
  padding-top: 1rem;
  display: flex;
  position: relative;
  inset: auto auto -4.3rem 0%;
  overflow: hidden;
}

.ticker-parent.ab-btm {
  position: absolute;
  bottom: .4rem;
}

.list-item-parent {
  margin-top: 6vh;
}

.rl_contact7_form-field-wrapper {
  position: relative;
}

.waves-navbar-1 {
  z-index: 105;
  background-color: #fff;
  border-bottom: 1px solid #13131333;
  height: 80px;
  position: fixed;
  inset: 51% 0% auto;
}

.close-parent {
  cursor: pointer;
  border: 1px #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  position: absolute;
  inset: 1rem auto auto -3.6rem;
}

.slide-content {
  grid-row-gap: .4rem;
  flex-direction: column;
  width: 100%;
  padding-top: 1.4rem;
  display: flex;
  position: relative;
}

.slide-content.size-two {
  width: 21rem;
}

.slide-content.size-two.no-pad-top {
  width: 22.2rem;
  padding-top: 0;
}

.linkkk {
  color: #141414;
  font-size: 1.1rem;
}

.waves---nav-buttons-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.spacer-x-small {
  width: 100%;
  padding-bottom: .6rem;
}

.waves---nav-link {
  padding: 12px 16px;
}

.waves---nav-link.w--current {
  color: #2c2c2c;
  font-style: normal;
  font-weight: 800;
}

.waves---nav-link.mbb {
  display: none;
}

.navtescs {
  color: #292929;
  font-variation-settings: "wght" 636, "wdth" 98.9;
  font-size: 1.5rem;
}

.grid-panel {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  width: 100%;
  height: 100%;
}

.item-parent {
  cursor: pointer;
  flex-direction: column;
  display: flex;
  position: relative;
}

.item-parent.hide-m {
  align-items: flex-start;
}

.rl-success-text {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 300;
}

.nappi {
  color: #fff;
  background-color: #2f4ba1;
  border-radius: 5px;
  padding: 15px 32px;
}

.nappi.topm {
  background-color: #42586b;
  margin-top: 16px;
}

.nappi.topm.nomar {
  margin-top: 0;
}

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

.parent {
  position: relative;
}

.parent.flex-split {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.side-panel-one {
  z-index: 9999999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #1d1d1dcc;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.rl_contact7_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.rl_contact7_form._2 {
  grid-row-gap: .5rem;
  width: 100%;
}

.super-text-pop {
  z-index: 2;
  color: #fff;
  white-space: nowrap;
  font-size: 9rem;
  font-weight: 200;
  line-height: 1;
  position: absolute;
}

.super-text-pop.blend {
  mix-blend-mode: difference;
  font-family: Ppfragment, sans-serif;
  font-size: 9vh;
  font-style: italic;
  line-height: 1.2;
  display: none;
  position: relative;
  inset: 0% auto auto 0%;
}

.list-item {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.list-item.border {
  color: #1d1d1d;
  border-bottom: 1px solid #0003;
}

.div-block-224 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.text-block-14, .text-block-15 {
  font-size: 1rem;
}

.text-block-16 {
  text-align: left;
  font-size: 1rem;
}

.div-block-225 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.div-block-225.hide {
  display: none;
}

._100pr {
  width: 100%;
}

.featured-block {
  margin-top: 10px;
}

.subscription {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 40px;
  padding: 100px 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 14px #0000000f;
}

.subscription._1 {
  background-color: var(--innova-ruskee);
  background-image: linear-gradient(#0000005e, #0000005e), url('../images/Innovatop-045142222.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 10px;
  padding-top: 22px;
}

.subscription._1.hide {
  display: none;
}

.heading-h3 {
  color: var(--dark-blue);
  text-align: left;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 140%;
}

.title-large {
  color: #000;
  margin-bottom: 20px;
  font-family: Ppfragment, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 130%;
}

.title-large._2 {
  color: #fff;
  font-family: Ppfragment, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.profile-picture {
  border-radius: 100px;
  margin-right: 10px;
}

.profile-block-header {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 58px;
  display: flex;
}

.container-3 {
  width: 100%;
  max-width: 1110px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.stick-wrapper {
  position: sticky;
  top: 108px;
}

.blog-section {
  background-color: var(--alice-blue);
  padding-bottom: 132px;
  padding-left: 3%;
  padding-right: 3%;
}

.image-11 {
  filter: grayscale();
  width: auto;
  max-width: none;
  height: 20px;
  position: absolute;
}

.blog-image-hero {
  aspect-ratio: 2.39;
  border-radius: 15px;
  margin-top: -220px;
  margin-bottom: 80px;
  box-shadow: 0 22px 34px #0000000f;
}

.blog-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr;
}

.paragraph-detials-large {
  color: #202146;
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 30px;
}

.form-2 {
  background-color: #f2f5f8;
  border-radius: 15px;
  display: flex;
}

.submit-button-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.blog-h2 {
  color: #202146;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 32px;
}

.header-blog {
  background-color: var(--dark-blue);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 707px;
  padding: 162px 3% 220px;
  display: flex;
}

.submit-button-2 {
  background-color: #0000;
  width: 60px;
  height: 60px;
}

.paragraph-detials-small {
  color: #9899ad;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 120%;
}

.paragraph-detials-small.white-50 {
  color: #ffffff80;
}

.content-left_blog {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
}

.feature-image {
  aspect-ratio: 1;
  border-radius: 6px;
  height: 100%;
  max-height: 95px;
  margin-right: 20px;
  display: block;
  overflow: hidden;
  box-shadow: 0 22px 34px #00000029;
}

.text-field-2 {
  background-color: #0000;
  border: 1px #000;
  height: 60px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 15px;
}

.title-small {
  color: #202146;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 144%;
}

.title-small.white {
  color: #fff;
}

.content-right {
  position: sticky;
}

.featured-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #202146;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 25px;
  text-decoration: none;
  transition: color .2s;
  display: grid;
}

.featured-item:hover {
  color: #5c4ebd;
}

.heading-h1 {
  text-align: center;
  max-width: 1110px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppfragment, sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}

.absoluteimage-paperilen {
  filter: brightness(61%) hue-rotate(262deg);
  width: 100px;
  height: 100px;
  padding-right: 0;
  display: block;
  position: absolute;
  inset: -9% auto auto -3%;
  overflow: visible;
}

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

.rich-blog h1 {
  color: var(--dark-blue);
}

.rich-blog h2 {
  color: var(--dark-blue);
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Ppfragment, sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
}

.rich-blog h3, .rich-blog h4, .rich-blog h6 {
  color: var(--dark-blue);
}

.rich-blog p {
  color: var(--dark-blue);
  font-size: 1.1rem;
}

.rich-blog blockquote {
  border-left-color: var(--dark-blue);
  color: var(--dark-blue);
  font-family: Ppfragment, sans-serif;
  font-size: 22px;
  font-style: normal;
}

.rich-blog ul {
  color: var(--dark-blue);
  font-size: 1.1rem;
}

.rich-blog a {
  color: var(--dark-blue);
}

.rich-blog.h {
  display: none;
}

.waves---paragraph-small {
  font-size: 16px;
  line-height: 130%;
}

.waves-circle-blog-1 {
  background-color: var(--waves-library-black);
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.waves-circle-blog-1.w {
  background-color: var(--white);
}

.waves-blog-details-1 {
  grid-column-gap: 8px;
  color: var(--dark-blue);
  justify-content: flex-start;
  align-items: center;
  margin-top: 8px;
  display: flex;
}

.waves---paragraph-regular-4 {
  font-size: 18px;
  line-height: 130%;
}

.waves---heading-3-no-margins-4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.waves-bottom-blog-1 {
  grid-row-gap: 16px;
  color: var(--dark-blue);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.waves-tag-blog-1 {
  z-index: 3;
  background-color: var(--dark-blue);
  color: var(--waves-library-white);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 4px 16px;
  font-size: 14px;
  display: flex;
  position: absolute;
  inset: 16px auto auto 16px;
}

.waves-image-blog-1 {
  z-index: 1;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.waves-image-wrap-blog-1 {
  border-radius: 0;
  padding-top: 62%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.waves-tile-blog-1 {
  grid-row-gap: 32px;
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.waves-blog-grid-3 {
  grid-column-gap: 32px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  display: grid;
}

.waves---paragraph-big-6 {
  text-align: center;
  font-size: 1.3rem;
  line-height: 130%;
}

.waves---limit-512 {
  max-width: 510px;
}

.waves---heading-2-no-margins-7 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppfragment, sans-serif;
  font-size: 48px;
  line-height: 130%;
}

.waves---center-heading-3 {
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.waves---main-container-9 {
  max-width: 1352px;
  padding-left: 24px;
  padding-right: 24px;
}

.waves---section-medium-7 {
  z-index: 2;
  background-color: var(--alice-blue);
  color: var(--dark-blue);
  padding-top: 70px;
  padding-bottom: 100px;
  position: relative;
}

.waves---section-medium-7.hidden {
  display: none;
}

.s1-blog {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  min-height: 500px;
  display: flex;
  position: relative;
}

.nav-scripti {
  display: none;
}

.success-message-2 {
  background-color: var(--innova-ruskee);
  color: var(--dark-blue);
}

.div-block-226 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  padding-bottom: 22px;
  display: flex;
}

.wrpp {
  height: 90vh;
  min-height: 90vh;
}

.cta-blogis {
  background-image: linear-gradient(90deg, #000000c4, #fff0), url('../images/Innovatop-045142222.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 222px;
  margin-top: 65px;
  padding: 28px;
  display: flex;
}

.h2222 {
  color: var(--white);
  text-align: center;
  font-family: Ppfragment, sans-serif;
  font-size: 1.7rem;
  line-height: 1.3;
}

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

.blurabso12 {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #00000042;
  border-radius: 10px;
  max-width: 555px;
  margin-top: 21px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.div-block-227 {
  z-index: 2;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
  display: flex;
  position: relative;
}

.hero-kontti {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.absolute-hero-image {
  align-self: center;
  height: 100%;
  position: absolute;
  inset: 0%;
  transform: scale(1.2);
}

.tummennus-absolute {
  z-index: 1;
  background-color: #0000003d;
  background-image: linear-gradient(0deg, #0000007d, #fff0);
  position: absolute;
  inset: 0%;
}

.numklas {
  font-family: Ppfragment, sans-serif;
}

.hiawsef {
  margin-top: 27px;
}

.field-label {
  font-weight: 400;
}

.field-label._2322 {
  color: var(--dark-blue);
  font-size: 15px;
}

.uploadcare {
  display: none;
}

.absolute-hero-image-copy {
  align-self: center;
  height: 100%;
  position: absolute;
  inset: 0%;
  transform: scale(1.2);
}

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

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

.poista.rich-blog {
  color: var(--waves-library-black);
}

.blog33_item.hidden {
  display: none;
}

.blog33_item-link {
  text-decoration: none;
}

.blog33_image-wrapper {
  width: 100%;
  overflow: hidden;
}

.heading-style-h5 {
  color: var(--waves-library-black);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.blog33_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

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

.blog33_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.text-size-small {
  font-size: .875rem;
}

.blog33_date-wrapper {
  align-items: center;
  display: flex;
}

.blog33_text-divider {
  margin-left: .5rem;
  margin-right: .5rem;
}

.image-12 {
  width: 144px;
}

.link-block-11 {
  color: #fff;
  padding-right: 34px;
  font-size: 20px;
  text-decoration: none;
}

.div-block-228 {
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
  top: 0;
}

.heading-11 {
  color: #fff;
  margin-bottom: 3px;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
}

.heading-11.menu {
  color: #000;
  font-size: 18px;
}

.div-block-229 {
  position: absolute;
}

.new-div-3 {
  border-top: 1px solid #939393;
  width: 228px;
  height: 0;
}

.new-div-3.menu {
  border-top-color: #a4a4a4;
  width: 170px;
}

.div-block-230 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  padding-bottom: 22px;
  display: flex;
}

.container-4 {
  width: 100%;
  max-width: 1110px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.form-3 {
  background-color: #f2f5f8;
  border-radius: 15px;
  display: flex;
}

.submit-button-3 {
  background-color: #0000;
  width: 60px;
  height: 60px;
}

.image-13 {
  filter: grayscale();
  width: auto;
  max-width: none;
  height: 20px;
  position: absolute;
}

.container-5 {
  grid-row-gap: 6rem;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
  position: relative;
}

.container-5.center {
  grid-row-gap: 2rem;
  align-items: center;
}

.waves-text-field-background-4 {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--alice-blue);
  background-color: #c7c7c721;
  border: 1px solid #ffffff42;
  border-radius: 8px;
  height: 45px;
  margin: 0;
  font-size: 16px;
}

.waves-text-field-background-4:focus {
  border-color: var(--alice-blue);
}

.waves-text-field-background-4.area {
  height: auto;
  min-height: 100px;
}

.waves---form-block-cta-3 {
  margin-top: 12px;
  margin-bottom: 15px;
}

.waves-form-cta-3 {
  grid-column-gap: 0px;
  align-items: center;
  display: flex;
}

.waves-form-cta-3._2 {
  flex-direction: column;
  align-items: flex-start;
}

.waves-text-field-background-5 {
  border: 1px solid var(--waves-library-black);
  background-color: var(--waves-library-background);
  color: var(--waves-library-black);
  border-radius: 8px;
  height: 52px;
  margin: 0;
  font-size: 16px;
}

.waves-text-field-background-5:focus {
  border-color: var(--waves-library-black);
  color: var(--waves-library-black);
}

.waves-text-field-background-5.field-cta-1 {
  background-color: #fff;
  border-style: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  min-width: 260px;
}

.success-message-3 {
  background-color: var(--medium-sea-green);
}

.text-block-17 {
  color: var(--dark-blue);
}

.div-block-231 {
  grid-column-gap: 1rem;
  align-items: center;
  display: flex;
}

.text-block-18 {
  font-weight: 400;
}

.image-14 {
  width: 22px;
  height: 22px;
}

.link-block-12 {
  filter: invert();
}

.image-15 {
  filter: invert();
  width: 75px;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

.content31_content {
  margin-bottom: 4rem;
}

.text-rich-text.hidden {
  color: var(--relume-library-lite-rl-black);
  display: none;
}

.body-2 {
  color: var(--relume-library-lite-rl-black);
}

@media screen and (max-width: 991px) {
  h1 {
    letter-spacing: -.05vw;
    font-size: 4.5vw;
    line-height: 110%;
  }

  h2 {
    font-size: 4.5rem;
  }

  h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 100%;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .text-large {
    font-size: 2.5rem;
    line-height: 100%;
  }

  .text-large.s {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .footer {
    padding-bottom: 48px;
  }

  .utility-page-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  ._4-column-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    margin-top: 0;
    padding-top: 6rem;
    position: absolute;
    top: auto;
  }

  ._12-column-grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 4rem;
    grid-template-columns: minmax(16px, 1fr) 1fr;
  }

  ._12-column-grid.small-row-gap {
    grid-row-gap: 1rem;
  }

  .text-medium {
    font-size: 1.75rem;
  }

  .nav-link-block {
    color: var(--white);
    flex: none;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.25rem;
    display: flex;
  }

  .nav-link-block:hover {
    color: #a6a6a6;
  }

  .nav-link-block.last-nav-link {
    line-height: 149%;
  }

  .nav-link-block.first-nav-link {
    padding-left: 0;
  }

  .row-gap-2 {
    margin-bottom: 1.5rem;
  }

  .nav-menu {
    color: var(--dark-blue);
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    display: flex;
    position: static;
    top: 0;
    left: 0;
    right: 0;
  }

  .horizontal-footer-links-container {
    margin-top: 4rem;
  }

  .brand-footer {
    margin-left: 0;
    padding-left: 0;
  }

  .brand-footer.w--current {
    margin-left: 0;
  }

  .hero-image-wrapper {
    background-position: 50%;
    background-repeat: no-repeat;
  }

  .second-nav-link-text {
    display: none;
  }

  .light-content-container.secondary.maxx {
    max-width: 90vw;
    margin-top: 32px;
    margin-bottom: 28px;
    position: static;
  }

  .team-heading-container {
    position: static;
  }

  .news-heading-container {
    max-width: none;
    position: static;
  }

  .contact-heading-container {
    position: static;
  }

  .news-info-container {
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .counter-area {
    grid-template-columns: 1fr 1fr;
  }

  .text-block-2.tumma {
    font-size: 2.4rem;
  }

  .paragraph-2 {
    font-size: 1.5em;
  }

  .paragraph-2.valkonen.s {
    font-size: 1.1em;
  }

  .count.tumma {
    font-size: 2.5rem;
  }

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

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .right-arrow, .left-arrow {
    top: -30px;
  }

  .written-testimonial_container.padding-custom1 {
    width: 30em;
  }

  .sticky-text_wrapper.steps {
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .circle-number {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .waves-grid-team-2 {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves---sides-heading-button {
    grid-row-gap: 32px;
    text-align: center;
    flex-direction: column;
  }

  .waves-master-logos-2 {
    grid-column-gap: 40px;
  }

  .waves---mega-heading-1 {
    font-size: 72px;
    line-height: 110%;
  }

  .s1-y-hide {
    padding-top: 240px;
  }

  .rl-heading-style-h2 {
    font-size: 2.75rem;
  }

  .rl_layout207_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

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

  .featuresv8_content {
    max-width: 45rem;
  }

  ._2x1-grid-layout {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .waves-image-hero-3 {
    width: 90vw;
    height: 40vh;
    display: block;
  }

  .waves---heading-1-no-margins {
    font-size: 64px;
    line-height: 115%;
  }

  .waves-content-hero-3 {
    text-align: center;
    align-items: center;
    padding-left: 0;
  }

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

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

  .image-para-cont {
    width: 90vw;
    height: 40vh;
  }

  .desk {
    display: none;
  }

  .mb {
    display: block;
  }

  .cf-form-text {
    text-align: center;
    width: 90%;
  }

  .cf-h2-white-heading-center {
    font-size: 30px;
  }

  .waves---left-cta-1 {
    align-items: center;
  }

  .waves---master-cta-1 {
    flex-direction: column;
    justify-content: flex-start;
  }

  .service-bottom-info {
    text-align: left;
  }

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

  .service-list {
    grid-row-gap: 100px;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .stacked-content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .service-item-top {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 80px;
  }

  .service-item-top.bottom {
    padding-top: 0;
    padding-bottom: 0;
  }

  .service-item-overview {
    border-left-style: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .more-link {
    inset: auto auto -40px;
  }

  .testimonial-content {
    max-width: 525px;
  }

  .content-wrapper-2 {
    grid-template-columns: 1fr 1fr 1fr 7%;
  }

  .banner-content {
    min-height: 700px;
    padding-top: 160px;
    padding-bottom: 220px;
  }

  .testimonial-arrow-line {
    margin-bottom: 170px;
  }

  .testimonial-slide-arrow {
    top: auto;
    bottom: 120px;
  }

  .testimonial-slide-arrow.right {
    top: auto;
  }

  .fs-cc-banner_container {
    flex-direction: row;
    align-items: flex-start;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .tablink {
    width: 107px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .tablink._3 {
    font-size: 14px;
  }

  .waves---left-cta-2 {
    align-items: center;
  }

  .waves---master-cta-2 {
    flex-direction: column;
    justify-content: flex-start;
  }

  .story-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .tab-icon {
    width: 3.5rem;
    height: 3.5rem;
    padding: .8rem;
  }

  .page-padding {
    padding-left: 3rem;
    padding-right: 3rem;
  }

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

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .tab-title {
    grid-column-gap: 0px;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .image-full {
    overflow: hidden;
  }

  .image-background-sticky {
    height: 100vh;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }

  .menu-dropdown {
    margin-left: .4rem;
  }

  .navbar-menu {
    min-height: auto;
  }

  .navbar-menu-grid {
    grid-auto-flow: row;
    min-width: 50vw;
  }

  .navbar-link {
    border-bottom: 1px #d2d2cf;
  }

  .navbar-2 {
    padding-left: .4rem;
    padding-right: .4rem;
  }

  .navbar-brand {
    padding-top: .1rem;
    padding-left: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-base {
    height: 5rem;
  }

  .c-col-menu-header {
    display: none;
  }

  .c-col-menu-social {
    justify-content: center;
  }

  .menu-item-text {
    font-size: 3.5em;
  }

  .grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: end;
    display: grid;
  }

  .waves-grid-team-3 {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves---sides-heading-button-2 {
    grid-row-gap: 32px;
    text-align: center;
    flex-direction: column;
  }

  .yritystuet-asiakaspolku-wrapper {
    grid-row-gap: 3rem;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .ura-s-1 {
    justify-content: flex-start;
    align-items: center;
    height: auto;
  }

  .waves-grid-blog-3 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves-left-faq-1 {
    text-align: center;
    align-items: center;
  }

  .waves-grid-faq-1 {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .waves---menu-button {
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .waves---menu-button.w--open {
    background-color: #131313;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
  }

  .img-child.ab {
    align-items: flex-start;
    overflow: visible;
  }

  .side-panel {
    width: 90%;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .waves---nav-menu {
    background-color: #fff;
    border: 1px solid #1313131a;
    border-radius: 8px;
    margin-top: 4px;
  }

  .waves---hamburger-icon {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
  }

  .img-parent.size-four {
    width: 17rem;
    height: 90vh;
    overflow: scroll;
  }

  .close-parent {
    left: -3.9rem;
  }

  .waves---nav-buttons-right {
    grid-column-gap: 8px;
  }

  .waves---nav-link {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 20px;
    display: flex;
  }

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

  .blog-grid {
    grid-column-gap: 22px;
    grid-template-columns: 1fr .6fr;
  }

  .feature-image {
    margin-bottom: 10px;
  }

  .featured-item {
    flex-wrap: wrap;
  }

  .waves-blog-grid-3 {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-kontti {
    justify-content: center;
    align-items: center;
    padding-top: 157px;
    position: static;
  }

  .absolute-hero-image, .absolute-hero-image-copy {
    height: 100%;
  }

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

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .container-5 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .content31_content {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    letter-spacing: 0;
    font-size: 2rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 100%;
  }

  .section.hero-section {
    height: auto;
  }

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

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-large {
    font-size: 2rem;
    line-height: 100%;
  }

  .text-large.nav-text {
    font-size: 2rem;
  }

  .styleguide-heading {
    letter-spacing: -1px;
  }

  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .text-medium {
    font-size: 1.5rem;
  }

  .text-medium.valkoinen._121 {
    text-align: left;
    column-count: 1;
  }

  .nav-link-block {
    flex: none;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.25rem;
  }

  .nav-menu {
    justify-content: flex-start;
  }

  .button.big {
    padding-left: 5.8rem;
    padding-right: 5.8rem;
  }

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

  .hero-content-wrapper {
    height: auto;
    padding-top: 25rem;
  }

  .hero-text {
    max-width: none;
  }

  .second-nav-link-text.big, .nav-link-text.big {
    font-size: 1.5rem;
  }

  .heading-2.center.m {
    font-size: 2.2rem;
  }

  .team-inner-section, .contact-inner-section {
    padding-bottom: 10rem;
  }

  .counter-progress {
    font-size: 48px;
  }

  .counter-title.c-tiltle-style {
    font-size: 18px;
  }

  .counter-area._2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .counter-area._2.gridiss {
    grid-column-gap: 0rem;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .text-block-2.tumma {
    font-size: 2.8rem;
  }

  .paragraph-2.valkonen.s {
    font-size: 1em;
  }

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

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .right-arrow {
    width: 1.5em;
    height: 1.5em;
  }

  .right-arrow.background-color-black {
    right: -3%;
  }

  .left-arrow {
    width: 1.5em;
    height: 1.5em;
    inset: 0% auto 0% -3%;
  }

  .slider.padding-top {
    padding-top: 5em;
  }

  .video_container {
    width: 25em;
    height: 25em;
    overflow: visible;
  }

  .video_container.dark-theme {
    width: 88vw;
    height: 50vw;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .background-video {
    width: auto;
    height: auto;
    display: block;
    position: static;
  }

  .written-testimonial_container.padding-custom1 {
    width: auto;
    margin-top: -2em;
    margin-left: 0;
    padding: 3.5em 1.5em 1.5em;
  }

  .written-testimonial_container.padding-custom1.dark-theme {
    width: 88vw;
    min-height: auto;
    margin-top: 0;
  }

  .testimonial-slider-container {
    flex-direction: column-reverse;
  }

  .sticky-text_wrapper.steps {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 40px 1fr;
  }

  .sticky-wrapper {
    display: none;
  }

  .paragraph-l {
    font-size: 1.1rem;
  }

  .paragraph-l.cc-sm-small {
    font-size: 1rem;
  }

  .sticky-container {
    height: auto;
  }

  .sticky-img_wrapper {
    display: none;
  }

  .sticky-img_wrapper.cc-steps {
    width: 100%;
    display: flex;
  }

  .section-stick-palvelu {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .container-stick-palvelu {
    width: 100%;
    padding-top: 40px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .h3 {
    font-size: 1.7rem;
  }

  .circle-number.steps3, .circle-number.steps2 {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .circle-number.steps1 {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .waves---heading-2-no-margins {
    font-size: 44px;
    line-height: 125%;
  }

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

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

  .wrap-col {
    flex-direction: column;
  }

  .step-block {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .img-block {
    z-index: 3;
    order: 3;
    width: 33%;
    min-height: auto;
    padding-top: 20px;
    position: relative;
  }

  .content-wrap {
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    padding-bottom: 20px;
  }

  .step-content-block {
    z-index: 2;
    order: -1;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .scoll-wrap {
    z-index: 1;
    height: 100%;
    bottom: 50%;
    left: 20px;
  }

  .dot {
    z-index: 99;
    order: 2;
    margin-bottom: -14px;
    position: absolute;
    bottom: 50%;
    left: 17px;
  }

  .step {
    justify-content: center;
    padding: 5%;
  }

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

  .waves---mega-heading-1 {
    font-size: 56px;
  }

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

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

  .s1-y-hide {
    padding-top: 160px;
  }

  .rl_layout270_spacing-block-4 {
    padding-bottom: 1.5rem;
  }

  .rl_layout270_spacing-block-3 {
    padding-bottom: 1.25rem;
  }

  .rl-text-style-medium {
    font-size: 1rem;
  }

  .rl_layout270_spacing-block-2 {
    padding-bottom: 1.25rem;
  }

  .rl-heading-style-h2 {
    font-size: 2.25rem;
  }

  .rl_layout270_spacing-block-1 {
    padding-bottom: .75rem;
  }

  .rl_layout207_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

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

  .waves---subtitle-2 {
    font-size: 22px;
    line-height: 34px;
  }

  .waves---heading-1-no-margins {
    font-size: 56px;
  }

  .pal-mobile {
    display: block;
  }

  .grid-mob-pa-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 40px 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .tyhj-10 {
    width: 10px;
  }

  .cf-form-text {
    text-align: center;
    font-size: 16px;
  }

  .cf-submit-button {
    background-position: 65% 53%, 0 0;
    width: auto;
    height: 70px;
    font-size: 20px;
  }

  .cf-newsletter-text-field {
    width: auto;
    margin-bottom: 20px;
    margin-right: 0;
  }

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

  .cf-newsletter-form-block {
    width: 90%;
    max-width: 400px;
  }

  .cf-h2-white-heading-center {
    font-size: 28px;
  }

  .cf-info-heading {
    margin-bottom: 4px;
  }

  .cf-newsletter-wrapper {
    width: 90%;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .waves-text-field-background-2.field-cta-1 {
    min-width: 0;
  }

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

  .waves---form-block-cta-1 {
    width: 100%;
    max-width: 320px;
  }

  .waves---heading-2-no-margins-2 {
    font-size: 44px;
    line-height: 125%;
  }

  .waves---master-cta-1 {
    text-align: center;
  }

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

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

  .service-bottom-info {
    padding-bottom: 36px;
  }

  .service-list {
    grid-row-gap: 80px;
  }

  .stacked-content {
    padding-left: 36px;
    padding-right: 36px;
  }

  .service-item-top {
    padding-top: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .circle-link-text {
    padding-right: 40px;
  }

  .circle-link-text.left {
    grid-column-gap: 9px;
    padding-left: 40px;
  }

  .circle-outline {
    width: 80px;
    height: 80px;
  }

  .testimonial-text {
    font-size: 1.6rem;
  }

  .banner-content {
    min-height: 600px;
    padding-top: 140px;
    padding-bottom: 212px;
  }

  .circle-button {
    width: 80px;
    height: 80px;
  }

  .testimonial-slide-arrow {
    width: 80px;
    height: 80px;
    bottom: 130px;
  }

  .slider-link-text {
    display: block;
  }

  .fs-cc-banner_container {
    flex-direction: row;
    align-items: center;
  }

  .fs-cc-banner_buttons-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .fs-cc-banner_component {
    width: 90vw;
  }

  .fs-cc-prefs_title {
    font-size: 1.25rem;
  }

  .text-color-grey._1.hide-mobile, .text-color-grey.hide-mobile {
    display: block;
  }

  .tab-content {
    padding: 20px;
  }

  .tabs-menu {
    padding: 10px;
  }

  .tablink {
    grid-column-gap: 8px;
    width: 50px;
    height: 50px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .tab-content-inner {
    grid-row-gap: 12px;
  }

  .waves-text-field-background-3.field-cta-1 {
    min-width: 0;
  }

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

  .waves---form-block-cta-2 {
    width: 100%;
    max-width: 320px;
  }

  .waves---heading-2-no-margins-3 {
    font-size: 44px;
    line-height: 125%;
  }

  .waves---master-cta-2 {
    text-align: center;
  }

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

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

  .text-size-large-2 {
    font-size: 1.25rem;
  }

  .heading-small {
    font-size: 1.75rem;
  }

  .page-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .heading-large {
    font-size: 2.5rem;
  }

  .tab-top {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .tab-bottom {
    grid-template-columns: 1fr 3.5rem;
    padding: 2rem;
  }

  .navbar-button {
    display: none;
  }

  .navbar-menu-grid {
    grid-template-columns: 1fr;
    min-width: 60vw;
  }

  .navbar-link {
    min-height: auto;
    padding: 1.5rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-base {
    height: 5rem;
  }

  .c-menu-item {
    margin-bottom: 15px;
  }

  .c-col-menu-links {
    margin-bottom: 40px;
  }

  .c-nav-menu-content {
    width: 80%;
    display: block;
  }

  .menu-item-text {
    font-size: 3em;
  }

  .waves---heading-2-no-margins-4 {
    font-size: 44px;
    line-height: 125%;
  }

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

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

  .waves-grid-blog-3 {
    grid-row-gap: 64px;
  }

  .waves---heading-2-no-margins-5 {
    font-size: 44px;
    line-height: 125%;
  }

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

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

  .waves---heading-2-no-margins-6 {
    font-size: 44px;
    line-height: 125%;
  }

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

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

  .waves---nav-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .img-child.ab {
    align-items: flex-start;
    padding-bottom: 56px;
    position: relative;
    overflow: visible;
  }

  .side-panel {
    padding-top: 4rem;
  }

  .img-parent.size-four {
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .ticker-parent.ab-btm {
    display: none;
  }

  .list-item-parent {
    margin-top: 2rem;
  }

  .close-parent {
    inset: 1rem 1rem auto auto;
  }

  .slide-content.size-two.no-pad-top {
    width: 100%;
  }

  .grid-panel {
    grid-row-gap: 2rem;
  }

  .item-parent.hide-m {
    width: 100%;
    height: 100%;
    display: block;
  }

  .side-panel-one {
    overflow: scroll;
  }

  .blog-image-hero {
    margin-top: -100px;
  }

  .blog-grid {
    grid-row-gap: 62px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .header-blog {
    justify-content: center;
    padding-bottom: 162px;
  }

  .heading-h1 {
    font-size: 55px;
  }

  .waves---heading-2-no-margins-7 {
    font-size: 44px;
    line-height: 125%;
  }

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

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

  .cta-blogis {
    height: auto;
  }

  .blog33_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .container-5 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .waves---form-block-cta-3 {
    width: 100%;
    max-width: 320px;
  }

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

  .waves-text-field-background-5.field-cta-1 {
    min-width: 0;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .content31_content {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 1.125rem;
  }

  h1 {
    letter-spacing: 0;
    font-size: 1.75rem;
  }

  h2 {
    letter-spacing: 0;
    font-size: 2rem;
  }

  h3 {
    letter-spacing: -.05rem;
    font-size: 1.5rem;
  }

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

  .section.hero-section {
    height: auto;
    padding-top: 8rem;
  }

  .section.intro-section {
    height: auto;
  }

  .section.light.mb-no, .section.no-pad-mob-sides {
    padding-left: 0;
    padding-right: 0;
  }

  .section._121._443._42 {
    padding-bottom: 1rem;
  }

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .text-large {
    letter-spacing: 0;
    font-size: 1.75rem;
  }

  .text-large.nav-text {
    font-size: 1.5rem;
  }

  .footer {
    margin-top: 0;
    padding-bottom: 1.5rem;
  }

  .text-field {
    margin-bottom: 32px;
    font-size: 20px;
  }

  .text-field::placeholder {
    font-size: 20px;
  }

  .submit-button {
    margin-top: 48px;
    padding-top: 0;
    font-size: 20px;
  }

  .styleguide-heading {
    letter-spacing: 0;
  }

  .navbar {
    margin-bottom: 0;
    padding-top: 7.1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: absolute;
    top: 0;
  }

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

  ._12-column-grid.hero-grid {
    grid-row-gap: 1rem;
  }

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

  .text-medium {
    font-size: 1.5rem;
  }

  .text-medium.expertise-title.musta {
    font-size: 2rem;
  }

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

  .text-medium.valkoinen.fontti {
    font-size: 1.7rem;
  }

  .text-medium.valkoinen._121 {
    font-size: 1.2rem;
    line-height: 128%;
  }

  .text-medium.sss.ssss {
    font-size: 1.3rem;
  }

  .nav-link-block {
    align-items: center;
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: 1rem;
  }

  .nav-link-block.last-nav-link {
    align-items: center;
    padding-left: .75rem;
    line-height: 150%;
  }

  .nav-link-block.first-nav-link {
    align-items: center;
  }

  .nav-menu.mb-h {
    display: none;
  }

  .horizontal-footer-links-container {
    flex-flow: wrap;
  }

  .client-list-item {
    grid-row-gap: .25rem;
    grid-template-columns: 1fr;
  }

  .button.second.hide-mb {
    display: none;
  }

  .button.tester {
    padding: .325rem .6rem;
  }

  .button.big {
    padding: 1.925rem 3.1rem;
  }

  .hero-image-wrapper {
    background-position: 68%;
    justify-content: flex-start;
    display: flex;
  }

  .hero-image-wrapper._2 {
    background-position: 68%;
  }

  .hero-image-wrapper._2._3 {
    background-position: 69%;
  }

  .arrow-down {
    display: none;
  }

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

  .text-block {
    line-height: 150%;
  }

  .second-nav-link-text {
    display: block;
  }

  .second-nav-link-text._2 {
    font-size: 1rem;
  }

  .second-nav-link-text.big {
    font-size: 1.3rem;
  }

  .nav-link-text._2 {
    font-size: 1rem;
  }

  .nav-link-text.big {
    font-size: 1.3rem;
  }

  .heading-2 {
    font-size: 2.5rem;
  }

  .heading-2.center {
    font-size: 2.2rem;
  }

  .heading-2.s.musta {
    font-size: 1.8rem;
  }

  .team-inner-section {
    border-radius: 1rem;
    padding-bottom: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .light-content-container.padding-more._1 {
    padding-top: 1rem;
  }

  .light-content-container.secondary.maxx {
    max-width: 90vw;
    margin-top: 35px;
    position: static;
  }

  .team-heading-container._2 {
    max-width: 100%;
  }

  .team-members-list {
    grid-row-gap: .5rem;
  }

  .team-member-list-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    align-items: flex-start;
  }

  .team-member-image {
    width: 5rem;
    min-width: 5rem;
    height: 5rem;
    min-height: 5rem;
  }

  .text-dark-grey.valkoinen {
    font-size: 1.125rem;
  }

  .value-list-item, .news-list-item {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .contact-inner-section {
    border-radius: 0;
    padding-bottom: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .arrow-up {
    display: block;
  }

  .contact-heading-container._2222 {
    max-width: 100%;
  }

  .back-link {
    width: 3rem;
    height: 3rem;
  }

  .counter-progress {
    font-size: 45px;
  }

  .counter-title.c-tiltle-style {
    font-size: 16px;
  }

  .counter-card {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .counter-card.slide-up-100ms, .counter-card.slide-up-200ms, .counter-card.slide-up-400ms {
    padding-left: 0;
    padding-right: 0;
  }

  .counter-area {
    grid-template-columns: 1fr 1fr;
  }

  .counter-area._2 {
    grid-column-gap: 3rem;
  }

  .counter-area._2.gridiss {
    grid-column-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .text-block-2 {
    font-size: .6em;
  }

  .paragraph-2 {
    font-size: 1.2em;
  }

  .count {
    font-size: .6em;
  }

  .slide-nav {
    bottom: -9%;
  }

  .image.image-arrow, .image.image-arrow.left {
    width: 1rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .right-arrow.background-color-black {
    width: 1em;
    height: 1em;
    top: -16%;
    right: -4%;
  }

  .left-arrow {
    width: 1em;
    height: 1em;
    top: -16%;
    left: -4%;
  }

  .slider.padding-top {
    padding-top: 2em;
  }

  .video_container {
    width: 18em;
    height: 21em;
    overflow: hidden;
  }

  .video_container.dark-theme {
    background-color: var(--dark-blue);
    border-radius: 14px 14px 0 0;
  }

  .paragraph-3 {
    font-size: .8em;
  }

  .written-testimonial_container.padding-custom1 {
    width: 270px;
    padding: 2.5em 1em 1em;
  }

  .written-testimonial_container.padding-custom1.dark-theme {
    border-top-left-radius: 0;
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px;
  }

  .h2-musta.valkonen {
    font-size: 2.4rem;
  }

  .h2-musta.s {
    font-size: 2.2rem;
  }

  .sticky-text_wrapper.steps {
    grid-template-columns: 1fr;
  }

  .section-stick-palvelu {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .container-stick-palvelu {
    padding-left: 28px;
    padding-right: 28px;
  }

  .h3 {
    font-size: 2.4rem;
  }

  .circle-number.steps3, .circle-number.steps2, .circle-number.steps1 {
    display: none;
  }

  .circle-number.steps1.v2.valkoinen.small {
    margin-bottom: 0;
    display: flex;
  }

  .heading-3 {
    font-size: 2.8rem;
  }

  .waves---heading-3-no-margins {
    font-size: 22px;
  }

  .waves---heading-2-no-margins {
    font-size: 34px;
  }

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

  .waves---expand-line {
    flex: none;
  }

  .waves---expand-line.vertical {
    transform-origin: 50%;
    flex: none;
  }

  .waves---expand-icon-wrap {
    flex: none;
  }

  .waves-expanded-text {
    font-size: 16px;
    line-height: 24px;
  }

  .waves---expandable-content {
    flex: 0 auto;
    max-width: none;
  }

  .waves---expand-line-2 {
    flex: none;
  }

  .waves---expand-line-2.vertical {
    transform-origin: 50%;
    flex: none;
  }

  .waves---expand-icon-wrap-2 {
    flex: none;
  }

  .waves-expanded-text-2 {
    font-size: 16px;
    line-height: 24px;
  }

  .waves---paragraph-regular-2 {
    font-size: 1.5rem;
  }

  .waves---field-label {
    font-weight: 400;
  }

  .waves---input-wrap {
    grid-row-gap: 3px;
  }

  .waves---2-inputs {
    grid-row-gap: 5px;
    grid-template-columns: 1fr;
  }

  .waves---form-contact-1 {
    grid-row-gap: 8px;
  }

  .step-block {
    min-height: auto;
    margin-top: 24px;
  }

  .heading {
    font-size: 1.9rem;
  }

  .steps-clone {
    display: block;
    position: static;
  }

  .content {
    margin-top: 0;
    font-size: 20px;
  }

  .scoll-wrap {
    height: 109%;
    left: 13px;
  }

  .scoll-wrap._2 {
    height: 110%;
  }

  .dot {
    margin-bottom: -6px;
    left: 10px;
  }

  .para-prog {
    font-size: 1rem;
  }

  .waves---subtitle {
    font-size: 20px;
  }

  .waves---mega-heading-1 {
    font-size: 36px;
  }

  .s1-y-hide {
    padding-bottom: 48px;
  }

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

  .image-2.shadow._2332._1 {
    top: 16px;
    left: 14px;
  }

  ._2x1-grid-layout {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .featuresv8_component {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .heading-4 {
    font-size: 2.8rem;
  }

  .waves-image-hero-3 {
    width: 90vw;
    height: 30vh;
    display: block;
    left: auto;
  }

  .waves-master-image-hero-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .waves---subtitle-2 {
    font-size: 20px;
  }

  .waves---heading-1-no-margins {
    font-size: 3rem;
    line-height: 1.1;
  }

  .waves-content-hero-3 {
    padding-top: 140px;
  }

  .waves-hero-3-grid {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    display: flex;
  }

  .s1-y {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .valkoinen._400 {
    font-size: 1.125rem;
  }

  .mob-pal-wrap {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .grid-mob-pa-wrap {
    display: block;
  }

  .tyhj-10 {
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .paragraph-4 {
    font-size: 1.1rem;
  }

  .image-para-cont {
    width: 90vw;
    height: 30vh;
    display: block;
    left: auto;
  }

  .cf-submit-button {
    background-image: linear-gradient(150deg, #b16cea 20%, #ff5e69 60%, #ff8a56 80%, #ffa84b);
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-right: 15px;
  }

  .cf-newsletter-text-field {
    padding-left: 55px;
    font-family: Inter Display, sans-serif;
    font-size: 1.2rem;
  }

  .cf-h2-white-heading-center {
    font-size: 24px;
  }

  .cf-info-heading {
    margin-bottom: 4px;
  }

  .cf-newsletter-wrapper {
    width: 100%;
  }

  .waves---heading-2-no-margins-2 {
    font-size: 34px;
  }

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

  .section-2.no-clip.bottom-border {
    padding-bottom: 60px;
  }

  .service-list {
    grid-row-gap: 80px;
  }

  .underline-link.dark {
    display: none;
  }

  .stacked-content {
    grid-row-gap: 36px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-item-top {
    padding-top: 36px;
  }

  .heading-6 {
    text-align: center;
    font-size: 1.6rem;
  }

  .heading-6.mis {
    text-align: center;
    font-size: 2rem;
  }

  .fill {
    height: 58px;
  }

  .circle-link-text {
    grid-auto-flow: column;
    padding-right: 35px;
  }

  .circle-link-text.left {
    grid-column-gap: 18px;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    padding-left: 35px;
  }

  .testimonial-client {
    display: flex;
  }

  .testimonial-content {
    grid-row-gap: 24px;
    padding-bottom: 25px;
  }

  .content-wrapper-2 {
    grid-template-columns: 1fr 1fr 1fr 2%;
  }

  .testimonial-text {
    font-size: 1.3rem;
  }

  .banner-content {
    min-height: 600px;
    padding-top: 62px;
    padding-bottom: 213px;
  }

  .clip._2 {
    grid-row-gap: 1rem;
    flex-direction: column;
  }

  .slider-link-text {
    display: block;
  }

  .heading-7 {
    font-size: 1.2rem;
  }

  .logo-carousel-item {
    flex: 0 auto;
    max-height: 60px;
    padding-left: .7rem;
    padding-right: .7rem;
  }

  .small-instructions {
    line-height: 1em;
  }

  .logo-carousel {
    grid-column-gap: .25rem;
  }

  .logo-image {
    object-fit: scale-down;
    height: 90%;
    max-height: none;
  }

  .logo-link {
    width: 120px;
  }

  .only-mb {
    display: block;
  }

  .fs-cc-banner_container {
    flex-direction: row;
    justify-content: space-around;
    padding-left: 7px;
    padding-right: 7px;
  }

  .fs-cc-banner_button {
    width: auto;
    min-width: auto;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: row;
    align-items: center;
  }

  .evasttt {
    align-items: flex-start;
  }

  .fs-cc-banner_component {
    border-radius: 0;
    flex-direction: row;
    width: 100vw;
    padding: .6rem .2rem;
    display: none;
    bottom: 0%;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-banner_text {
    max-width: 120px;
  }

  .fs-cc-prefs_button {
    margin-bottom: .5rem;
  }

  .fs-cc-prefs_component {
    padding: 1.5rem;
  }

  .tab-content {
    min-height: 171.953px;
  }

  .tablink._1, .tablink._1.w--current, .tablink._3, .tablink._2, .tablink._4 {
    width: 77px;
  }

  .tab-content-inner {
    grid-row-gap: 8px;
  }

  .waves-form-cta-2 {
    flex-direction: row;
  }

  .waves---form-block-cta-2 {
    max-width: 100%;
  }

  .waves---heading-2-no-margins-3 {
    font-size: 34px;
  }

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

  .tab-icon {
    margin-left: 0;
  }

  .page-padding.tttt {
    padding-left: 0;
    padding-right: 0;
  }

  .tab-item-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .tab-top {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: left;
    grid-template-columns: 1fr;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-huge._4 {
    border-top: 1px solid #ffffff45;
  }

  .tab-bottom {
    padding: 2rem;
    display: flex;
  }

  .tab-bottom.tab-bottom-full-width {
    padding: 2rem;
  }

  .image-background-sticky {
    height: 125vw;
  }

  .menu-dropdown {
    position: static;
  }

  .navbar-menu-grid {
    min-width: auto;
  }

  .navbar-menu-base {
    padding-top: 0;
  }

  .menu-dropdown-list.w--open {
    margin-top: 3.5rem;
    padding-left: .8rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .c-nav-items {
    justify-content: space-between;
  }

  .div-block-196 {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .div-block-196.t {
    color: var(--relume-library-lite-rl-black);
    align-items: flex-start;
  }

  ._w-nav {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .link-block-6 {
    display: none;
  }

  .c-menu-item {
    margin-bottom: 10px;
    line-height: 1em;
  }

  .text-block-12.menu {
    color: #000;
  }

  .nav-social-address {
    display: none;
  }

  .nav-social-address.head.menu {
    padding-bottom: 40px;
    font-size: 15px;
    line-height: 1em;
    display: flex;
  }

  .nav-social-address.head.r {
    padding-bottom: 16px;
    font-size: 15px;
    line-height: 1em;
    display: flex;
  }

  .image-9 {
    font-size: 20px;
  }

  .c-nav-logo {
    margin-right: 20px;
  }

  .c-col-menu-links {
    margin-bottom: 50px;
  }

  .c-nav-social-contact-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .text-contact.menu {
    padding-top: 7px;
  }

  .c-nav-menu-content {
    width: 85%;
    margin-top: -35px;
    padding-left: 35px;
  }

  .c-nav-menu-overlay, .link-block-10 {
    display: none;
  }

  .heading-9 {
    color: #fff;
  }

  .heading-9.menu {
    color: #000;
    margin-bottom: 0;
    line-height: 20px;
  }

  ._w-col-menu-social {
    align-self: auto;
    padding-bottom: 0;
  }

  .c-nav-social-address {
    margin-bottom: 0;
  }

  .menu-item-text {
    font-size: 1.8em;
    font-weight: 300;
  }

  .menu-item-text.contact {
    border-bottom: 1px #000;
    padding-top: 18px;
    line-height: .3em;
  }

  .grid-2 {
    opacity: .3;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: stretch;
    width: 260px;
    height: 130px;
    margin-top: 30px;
    padding-top: 10px;
  }

  .grid-2.menu {
    opacity: 1;
    grid-template-rows: auto;
    justify-content: stretch;
    place-items: start;
    width: 200px;
    height: 50px;
    margin-top: 0;
  }

  ._w-nav-social-media, .c-nav-social-media {
    display: none;
  }

  .waves---heading-3-no-margins-2 {
    font-size: 22px;
  }

  .waves-name-wrap-team-3 {
    padding-left: 22px;
    padding-right: 22px;
  }

  .waves---heading-2-no-margins-4 {
    font-size: 34px;
  }

  .waves---section-medium-4 {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .link-phone {
    color: #000;
    padding-bottom: 6px;
  }

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

  .h-asiakaspolku {
    font-size: 8vw;
  }

  .ura-s-1 {
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding-bottom: 30px;
  }

  .heading-10 {
    font-size: 9vw;
  }

  .heading-10._2 {
    font-size: 17vw;
  }

  .waves---paragraph-big-5 {
    text-align: left;
    font-size: 1.1rem;
  }

  .waves---heading-3-no-margins-3 {
    font-size: 22px;
  }

  .waves---heading-2-no-margins-5 {
    font-size: 34px;
  }

  .waves---center-heading-2 {
    flex-flow: column;
    align-items: flex-start;
  }

  .waves---section-medium-5 {
    padding-top: 20px;
    padding-bottom: 64px;
  }

  .waves---expand-line-3 {
    flex: none;
  }

  .waves---expand-line-3.vertical {
    transform-origin: 50%;
    flex: none;
  }

  .waves---expand-icon-wrap-3 {
    flex: none;
    width: 32px;
  }

  .waves-expanded-text-3 {
    font-size: 16px;
    line-height: 24px;
  }

  .waves---expandable-content-2 {
    flex: 0 auto;
    max-width: none;
  }

  .waves---heading-2-no-margins-6 {
    font-size: 34px;
  }

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

  .waves---nav-cta {
    display: none;
  }

  .side-panel {
    width: 100%;
    max-width: 100vw;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ticker-parent {
    display: none;
    bottom: -3rem;
  }

  .ticker-parent.ab-btm {
    bottom: 0;
  }

  .waves-navbar-1 {
    height: 65px;
  }

  .close-parent {
    border-color: #000;
  }

  .slide-content.size-two {
    width: 18rem;
  }

  .waves---nav-link.mbb {
    display: flex;
  }

  .navtescs {
    font-size: 1.1rem;
  }

  .imgmobileinvert {
    filter: invert();
  }

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

  .side-panel-one {
    background-color: #eff0f3;
    max-width: 100vw;
    overflow: scroll;
  }

  .div-block-225 {
    justify-content: flex-start;
    padding-top: 9px;
  }

  .title-large._2 {
    text-align: center;
  }

  .header-blog {
    min-height: 555px;
  }

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

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

  .rich-blog h2 {
    font-size: 1.7rem;
  }

  .waves---heading-3-no-margins-4 {
    font-size: 22px;
  }

  .waves-tag-blog-1 {
    top: 12px;
    left: 12px;
  }

  .waves---heading-2-no-margins-7 {
    font-size: 34px;
  }

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

  .cta-blogis {
    padding-left: 16px;
    padding-right: 16px;
  }

  .h2222 {
    font-size: 1.3rem;
  }

  .blurabso12 {
    max-width: 90vw;
  }

  .hero-kontti {
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
  }

  .absolute-hero-image, .absolute-hero-image-copy {
    height: 100%;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .link-block-11 {
    display: none;
  }

  .div-block-228 {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .div-block-228.t {
    color: var(--relume-library-lite-rl-black);
    align-items: flex-start;
  }

  .heading-11 {
    color: #fff;
  }

  .heading-11.menu {
    color: #000;
    margin-bottom: 0;
    line-height: 20px;
  }

  .container-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .waves---form-block-cta-3 {
    max-width: 100%;
  }

  .waves-form-cta-3 {
    flex-direction: row;
  }
}

#w-node-_53c98cab-8eca-3383-f175-81ff551b5c83-c6583510 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_53c98cab-8eca-3383-f175-81ff551b5c8c-c6583510 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: start end;
}

#w-node-_477b1cbe-98a2-39cc-e456-b55df5dbf8b0-c6583510 {
  grid-area: 2 / 5 / 3 / 13;
  align-self: stretch;
}

#w-node-_7fa3d748-2851-1a1b-37fb-e617fd92f7ff-c6583510 {
  grid-area: 2 / 1 / 3 / 2;
  place-self: end start;
}

#w-node-_60c22f50-0bdd-8f11-1bd4-dc23bd256af8-c6583510 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_81aab02e-57f3-ec73-7342-550d2befc924-c6583510 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_06635c8c-234e-0ae7-32b4-46cede838d22-c6583510 {
  grid-area: span 1 / span 9 / span 1 / span 9;
}

#w-node-d8c97346-8ff4-db12-c796-f3db9ab8ee2a-c6583510 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f32-c6583510 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f34-c6583510 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_9f418cbe-d7d9-6c86-bbce-c3a24c8205d6-c6583510 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f3e-c6583510 {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f43-c6583510 {
  align-self: stretch;
}

#w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f53-c6583510 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f5d-c6583510 {
  align-self: stretch;
}

#w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f6d-c6583510 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f77-c6583510 {
  align-self: stretch;
}

#w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f87-c6583510 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2aa0adfd-8082-8d4a-593d-f25218141c65-c6583510, #w-node-_2aa0adfd-8082-8d4a-593d-f25218141c6c-c6583510, #w-node-_2aa0adfd-8082-8d4a-593d-f25218141c73-c6583510 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7498b517-d267-9d7f-644d-2436d8df5d49-c6583510, #w-node-_9119af2a-ddd5-b856-99c0-8f1f7d4b7ed1-c6583510 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c38-c6583510 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c44-c6583510 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c45-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c4b-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c4e-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c52-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c58-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c5b-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c5f-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c65-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c68-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c6c-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c72-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c75-c6583510, #w-node-_4072ffd2-e7a6-668b-fbdf-35a902f56c79-c6583510 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8dbb3a6c-a936-bc06-8579-7fd41357febb-1357feb7 {
  grid-area: 3 / 7 / 4 / 13;
  place-self: end start;
}

#w-node-_8dbb3a6c-a936-bc06-8579-7fd41357febd-1357feb7 {
  grid-area: span 2 / span 4 / span 2 / span 4;
}

#w-node-ee572ef5-c73d-7c56-b57a-193d5c5e0764-1357feb7 {
  grid-area: 3 / 1 / 4 / 5;
  align-self: end;
}

#w-node-_8dbb3a6c-a936-bc06-8579-7fd41357fecb-1357feb7 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: start end;
}

#w-node-_79ce88a9-9402-b0df-d6a2-b3e069f36a6f-1787e003 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_79ce88a9-9402-b0df-d6a2-b3e069f36a79-1787e003 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_79ce88a9-9402-b0df-d6a2-b3e069f36a7d-1787e003, #w-node-_79ce88a9-9402-b0df-d6a2-b3e069f36abf-1787e003 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_79ce88a9-9402-b0df-d6a2-b3e069f36ac3-1787e003, #w-node-_79ce88a9-9402-b0df-d6a2-b3e069f36ac7-1787e003 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b96f277d-860e-729b-93ca-0474fb1c3c8a-c6583517 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-b96f277d-860e-729b-93ca-0474fb1c3c93-c6583517 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: start end;
}

#w-node-caa31225-8dbb-c276-1993-de9da01d8fc9-c6583517 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-caa31225-8dbb-c276-1993-de9da01d8fd1-c6583517 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c726-c6583517 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c728-c6583517 {
  grid-area: span 1 / span 9 / span 1 / span 9;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c72a-c6583517 {
  grid-area: 2 / 4 / 3 / 11;
}

#w-node-da59e653-5e49-9970-03ee-bf12bc34e757-c6583517 {
  grid-area: span 1 / span 9 / span 1 / span 9;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c72f-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c731-c6583517 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c733-c6583517 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c745-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c747-c6583517 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c749-c6583517 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c759-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c75b-c6583517 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c75d-c6583517 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c76f-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c771-c6583517 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c773-c6583517 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-dc0fe320-1da6-30dd-2a85-b9e06a97acbb-c6583517 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-dc0fe320-1da6-30dd-2a85-b9e06a97acbd-c6583517 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_11c7fe58-b7da-bbbb-53da-d93d6105e68d-c6583517, #w-node-_11c7fe58-b7da-bbbb-53da-d93d6105e693-c6583517, #w-node-_11c7fe58-b7da-bbbb-53da-d93d6105e699-c6583517, #w-node-_3a8a7d75-7609-88f9-1a05-1739921dfa19-c6583517, #w-node-_7a015a7e-24ec-bc2f-cbb8-6fa161e11684-c6583517 {
  align-self: start;
}

#w-node-da2331a8-74dd-e8f9-101c-61097fedcee4-c6583517 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-da2331a8-74dd-e8f9-101c-61097fedceeb-c6583517 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-da2331a8-74dd-e8f9-101c-61097fedceec-c6583517 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc0fe320-1da6-30dd-2a85-b9e06a97acc6-c6583517 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-b433818c-3390-d3e0-20d4-33357d36173e-c6583518 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-a43b04e7-9db7-3d0b-3bad-1fa67e1bd7ef-c6583518, #w-node-_0edfff98-04c8-2e91-bf29-4247a1602474-c6583518, #w-node-_7579e692-1701-57b0-24ff-c67b55d0fcdc-c6583518, #w-node-_9ed92867-1c65-c3cb-2e68-84b2577cbbd9-c6583518 {
  align-self: start;
}

#w-node-_1782ea95-9ac2-f580-1f65-f1592bdb2be8-c6583518, #w-node-_1782ea95-9ac2-f580-1f65-f1592bdb2beb-c6583518, #w-node-_1782ea95-9ac2-f580-1f65-f1592bdb2bef-c6583518, #w-node-_581afd54-d9ad-321c-4ff8-1599c0591085-c6583518, #w-node-_581afd54-d9ad-321c-4ff8-1599c0591088-c6583518, #w-node-_581afd54-d9ad-321c-4ff8-1599c059108c-c6583518, #w-node-ba886f99-dc77-6876-6f47-1474e881ebda-c6583518, #w-node-ba886f99-dc77-6876-6f47-1474e881ebdd-c6583518, #w-node-ba886f99-dc77-6876-6f47-1474e881ebe1-c6583518, #w-node-_43ee3f27-6157-149b-44ac-614d2a134804-c6583518, #w-node-_43ee3f27-6157-149b-44ac-614d2a134807-c6583518, #w-node-_43ee3f27-6157-149b-44ac-614d2a13480b-c6583518, #w-node-_01bcad22-a92f-0792-152b-5a0964ca7940-c6583518, #w-node-_01bcad22-a92f-0792-152b-5a0964ca7943-c6583518, #w-node-_01bcad22-a92f-0792-152b-5a0964ca7947-c6583518, #w-node-_09c4964b-aeb9-5197-d8dd-bd752748d344-c6583518, #w-node-_09c4964b-aeb9-5197-d8dd-bd752748d347-c6583518, #w-node-_09c4964b-aeb9-5197-d8dd-bd752748d34b-c6583518, #w-node-_54406819-27b6-e437-fc20-48b3018af1f7-c6583518 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54406819-27b6-e437-fc20-48b3018af1f8-c6583518 {
  align-self: start;
}

#w-node-_54406819-27b6-e437-fc20-48b3018af22a-c6583518 {
  justify-self: end;
}

#w-node-_54406819-27b6-e437-fc20-48b3018af23f-c6583518 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54406819-27b6-e437-fc20-48b3018af241-c6583518 {
  justify-self: start;
}

#w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb46b0-c6583519 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb46b9-c6583519 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb46bd-c6583519, #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb46e9-c6583519 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb46ed-c6583519, #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb46f1-c6583519 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb4713-c6583519 {
  grid-area: 3 / 7 / 4 / 13;
  place-self: end start;
}

#w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb4715-c6583519 {
  grid-area: span 2 / span 4 / span 2 / span 4;
}

#w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb4734-c6583519 {
  grid-area: 3 / 1 / 4 / 5;
  align-self: end;
}

#w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb473d-c6583519 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: start end;
}

@media screen and (max-width: 991px) {
  #w-node-_53c98cab-8eca-3383-f175-81ff551b5c83-c6583510, #w-node-_53c98cab-8eca-3383-f175-81ff551b5c8c-c6583510, #w-node-_477b1cbe-98a2-39cc-e456-b55df5dbf8b0-c6583510 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7fa3d748-2851-1a1b-37fb-e617fd92f7ff-c6583510, #w-node-_60c22f50-0bdd-8f11-1bd4-dc23bd256af8-c6583510 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_81aab02e-57f3-ec73-7342-550d2befc924-c6583510, #w-node-_06635c8c-234e-0ae7-32b4-46cede838d22-c6583510, #w-node-d8c97346-8ff4-db12-c796-f3db9ab8ee2a-c6583510 {
    grid-column: span 2 / span 2;
  }

  #w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f34-c6583510 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f3e-c6583510 {
    grid-column: 1 / 2;
  }

  #w-node-_8dbb3a6c-a936-bc06-8579-7fd41357febb-1357feb7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8dbb3a6c-a936-bc06-8579-7fd41357febd-1357feb7 {
    grid-column: span 2 / span 2;
  }

  #w-node-ee572ef5-c73d-7c56-b57a-193d5c5e0764-1357feb7, #w-node-_8dbb3a6c-a936-bc06-8579-7fd41357fecb-1357feb7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_79ce88a9-9402-b0df-d6a2-b3e069f36a6f-1787e003 {
    grid-column: span 2 / span 2;
  }

  #w-node-b96f277d-860e-729b-93ca-0474fb1c3c8a-c6583517, #w-node-b96f277d-860e-729b-93ca-0474fb1c3c93-c6583517 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-caa31225-8dbb-c276-1993-de9da01d8fc9-c6583517 {
    justify-self: center;
  }

  #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c726-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c728-c6583517 {
    grid-column: span 2 / span 2;
  }

  #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c72a-c6583517 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-da59e653-5e49-9970-03ee-bf12bc34e757-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c72f-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c731-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c733-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c745-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c747-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c749-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c759-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c75b-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c75d-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c76f-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c771-c6583517, #w-node-d3b63bdf-0c2a-dac2-e2dc-f13a8f13c773-c6583517, #w-node-dc0fe320-1da6-30dd-2a85-b9e06a97acbb-c6583517, #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb46b0-c6583519 {
    grid-column: span 2 / span 2;
  }

  #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb4713-c6583519 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb4715-c6583519 {
    grid-column: span 2 / span 2;
  }

  #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb4734-c6583519, #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb473d-c6583519 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_53c98cab-8eca-3383-f175-81ff551b5c83-c6583510 {
    grid-column: span 2 / span 2;
  }

  #w-node-_60c22f50-0bdd-8f11-1bd4-dc23bd256af8-c6583510 {
    grid-column: span 1 / span 1;
  }

  #w-node-_79ce88a9-9402-b0df-d6a2-b3e069f36a6f-1787e003 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-b96f277d-860e-729b-93ca-0474fb1c3c8a-c6583517 {
    grid-column: span 2 / span 2;
  }

  #w-node-_54406819-27b6-e437-fc20-48b3018af1f7-c6583518 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_54406819-27b6-e437-fc20-48b3018af22a-c6583518 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb46b0-c6583519 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_53c98cab-8eca-3383-f175-81ff551b5c83-c6583510, #w-node-_60c22f50-0bdd-8f11-1bd4-dc23bd256af8-c6583510 {
    grid-column: span 2 / span 2;
  }

  #w-node-d8c97346-8ff4-db12-c796-f3db9ab8ee2a-c6583510 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-aa9b89b3-46ac-6781-23fa-556ef55a6f34-c6583510 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_9f418cbe-d7d9-6c86-bbce-c3a24c8205d6-c6583510 {
    grid-area: 2 / 1 / 3 / 5;
    justify-self: center;
  }

  #w-node-_8dbb3a6c-a936-bc06-8579-7fd41357febb-1357feb7 {
    grid-column: span 2 / span 2;
    justify-self: start;
  }

  #w-node-ee572ef5-c73d-7c56-b57a-193d5c5e0764-1357feb7 {
    grid-column: span 2 / span 2;
  }

  #w-node-_8dbb3a6c-a936-bc06-8579-7fd41357fecb-1357feb7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: start end;
  }

  #w-node-febae7e4-8d0a-f328-fd2b-6794ca09a27c-ca09a1fd, #w-node-febae7e4-8d0a-f328-fd2b-6794ca09a27d-ca09a1fd, #w-node-febae7e4-8d0a-f328-fd2b-6794ca09a27e-ca09a1fd {
    place-self: center;
  }

  #w-node-b96f277d-860e-729b-93ca-0474fb1c3c8a-c6583517 {
    grid-column: span 2 / span 2;
  }

  #w-node-dc0fe320-1da6-30dd-2a85-b9e06a97acbb-c6583517 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb463e-c6583519, #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb463f-c6583519, #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb4640-c6583519 {
    place-self: center;
  }

  #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb4713-c6583519 {
    grid-column: span 2 / span 2;
    justify-self: start;
  }

  #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb4734-c6583519 {
    grid-column: span 2 / span 2;
  }

  #w-node-_4ba72a11-e882-004b-5fe2-0eb5f8fb473d-c6583519 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: start end;
  }
}


@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Regular.woff2') format('woff2'), url('../fonts/InterDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Medium.woff2') format('woff2'), url('../fonts/InterDisplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/Inter-DisplaySemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/Inter-DisplaySemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ppfragment';
  src: url('../fonts/PPFragment-SerifRegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ppfragment';
  src: url('../fonts/PPFragment-SerifRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}