:root {
  --black: #171717;
  --primary: #3b95dd;
  --light-slate-grey: #96a0b5;
}

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

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #101010;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  color: #333;
  margin-bottom: 10px;
}

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

.body {
  color: #121f3e;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.navigation-container-large {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 24px;
  display: grid;
  position: relative;
}

.navigation-line {
  background-color: #e5ebf0;
  max-width: none;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

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

.logo {
  width: 200px;
}

.nav-link-dark {
  color: #121f3e;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  transition: color .2s;
}

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

.nav-link-dark.mobile-only {
  display: none;
}

.dropdown-link {
  color: #121f3e;
  border-left: 4px solid #0000;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: all .2s;
}

.dropdown-link:hover {
  background-color: #fff;
  border-left-color: #ff5e15;
}

.dropdown-link.w--current {
  color: #ff5e15;
}

.dropdown-toggle {
  padding-right: 20px;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}

.dropdown-toggle:hover {
  color: var(--black);
}

.navbar-fixed {
  background-color: #fff;
  padding-left: 3%;
  padding-right: 3%;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.dropdown-list {
  background-color: #f8fafb;
}

.dropdown-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
  left: -45px;
  box-shadow: 28px 28px 50px #6d7d9326;
}

.button-navigation-white {
  color: var(--black);
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #e5ebf0;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s;
  display: flex;
}

.button-navigation-white:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff;
}

.navigation-right {
  justify-content: flex-end;
  display: flex;
}

.icon {
  margin-right: 18px;
  display: none;
}

.navigation-wrap {
  align-items: center;
  display: flex;
}

.dropdown-wrapper {
  color: #fff;
  background-color: #fff;
  flex-direction: column;
  align-items: stretch;
  min-width: 220px;
  display: block;
  position: relative;
}

.white-bar-bottom {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  height: 8%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.white-bar-bottom.show-mobile {
  display: none;
}

.hero-image-large {
  z-index: 5;
  width: 100%;
  max-width: 45%;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.container.large {
  max-width: 1280px;
}

.header-grid {
  grid-column-gap: 32px;
  grid-row-gap: 52px;
  grid-template-rows: auto;
}

.hero-title {
  color: #96a0b5;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 24px;
}

.button-text {
  color: var(--black);
  background-color: #0000;
  justify-content: center;
  max-height: 60px;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.button-text:hover {
  text-decoration: underline;
}

.button-wrap {
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.header-large {
  background-color: #f8fafb;
  justify-content: center;
  align-items: center;
  min-height: 900px;
  padding: 80px 3% 100px;
  display: flex;
  position: relative;
}

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

.button-primary {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  white-space: nowrap;
  justify-content: center;
  max-height: 60px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s;
  display: flex;
}

.button-primary:hover {
  border: 1px solid var(--black);
  color: var(--primary);
  background-color: #fff;
}

.button-primary.margin-right-16 {
  border-color: var(--black);
  background-color: var(--black);
  margin-right: 16px;
}

.button-primary.margin-right-16:hover {
  color: #fff;
}

.button-primary.margin-top-24 {
  margin-top: 24px;
}

.button-primary.centered {
  margin-left: auto;
  margin-right: auto;
}

.button-primary.centered.margin-top {
  margin-top: 20px;
}

.hero-heading {
  color: var(--black);
  margin-bottom: 32px;
  line-height: 52px;
}

.hero-heading.show-mobile {
  display: none;
}

.hero-paragraph {
  color: var(--light-slate-grey);
  letter-spacing: -.03px;
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.container-small {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.slider-nav {
  display: none;
}

.subtitle {
  color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 24px;
}

.arrow-small {
  width: 28px;
}

.left-arrow {
  border: 1px solid #ff5e15;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
  inset: auto auto -120px 0%;
}

.mask-services {
  width: 100%;
  height: auto;
  overflow: visible;
}

.slider-services {
  background-color: #0000;
  align-items: center;
  width: auto;
  max-width: 460px;
  height: auto;
  display: flex;
}

.item-services {
  margin-right: 60px;
}

.right-arrow {
  background-color: #ff5e15;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
  inset: auto auto -120px 70px;
}

.collection-item-projects {
  width: 100%;
  margin-right: 32px;
}

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

.service-section {
  background-color: #fff;
  padding: 100px 3%;
  overflow: hidden;
}

.heading-wrap {
  max-width: 560px;
  margin-bottom: 62px;
}

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

.feature-block-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
}

.feature-block-2-text-wrap {
  text-align: left;
}

.heading-5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.body-2 {
  color: var(--light-slate-grey);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.statistic {
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
}

.h2-title {
  margin-bottom: 16px;
}

.h2-title._40-bottom-margin {
  color: var(--black);
  margin-bottom: 40px;
  line-height: 42px;
}

.stats-grid {
  max-width: 560px;
  display: none;
}

.content-section {
  padding: 92px 3%;
  position: relative;
  overflow: hidden;
}

.statistic-title {
  color: #96a0b5;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
}

.statistics-wrap {
  max-width: 550px;
}

.statistics-grid {
  grid-column-gap: 52px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

.paragraph-grey {
  margin-bottom: 40px;
}

.link-large {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
}

.cta-block {
  border-bottom: 4px solid var(--primary);
  background-color: #f8fafb;
  justify-content: space-between;
  padding: 8%;
  display: flex;
}

.cta-text-wrap {
  max-width: 430px;
}

.h3-title {
  margin-bottom: 16px;
  line-height: 42px;
}

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

.footer-grid {
  grid-template-rows: auto;
}

.footer-logo {
  width: 260px;
  margin-bottom: 40px;
}

.footer-link {
  color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.footer-link:hover {
  color: #fffc;
}

.paragraph-white {
  color: #fff;
}

.footer-link-block {
  margin-bottom: 24px;
}

.footer-left-content-block {
  flex-direction: column;
  justify-content: space-between;
  max-width: 350px;
  display: flex;
}

.footer-social-link {
  border: 1px solid #fff9f933;
  border-radius: 50%;
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px;
  transition: all .3s;
}

.footer-social-link:hover {
  background-color: #ea520e;
  border-color: #fff9f9;
}

.footer-section {
  background-color: #171717;
  padding-top: 100px;
  padding-bottom: 100px;
}

.large-title {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 800;
}

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

.footer-legal {
  background-color: #101010;
  padding-left: 3%;
  padding-right: 3%;
}

.legal-wrap {
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.white-link {
  color: #fff;
  text-decoration: underline;
}

.footer-link-wrap {
  align-items: center;
  display: flex;
}

.legal-link {
  color: #fff;
  padding: 10px 12px;
  font-weight: 500;
  transition: opacity .2s;
  display: block;
}

.legal-link:hover {
  opacity: .8;
}

.service-section-grey {
  background-color: #f7f7f7;
  padding: 100px 3%;
  overflow: hidden;
}

.service-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.service-collection-list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.content-wrap-section {
  align-items: center;
  margin-bottom: 100px;
  display: flex;
  position: relative;
}

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

.content-square-left {
  background-color: #fff;
  min-width: 40%;
  max-width: 420px;
  padding: 60px 48px;
  position: absolute;
  inset: auto auto auto 0;
}

.content-image-wrap-large {
  width: 80%;
  height: 530px;
}

.content-wrap-right-section {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
  position: relative;
}

.content-square-1 {
  background-color: #fff;
  min-width: 40%;
  max-width: 420px;
  padding: 60px 48px;
  position: absolute;
  inset: auto 0% auto auto;
}

.send-button {
  grid-column-gap: 54px;
  grid-row-gap: 54px;
  justify-content: space-between;
  display: flex;
}

.contact-information {
  grid-row-gap: 32px;
  margin-top: 32px;
}

.text-detail-grey {
  margin-bottom: 4px;
  line-height: 1.5;
}

.contact-small-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.contact-column {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.contact-grid {
  grid-column-gap: 110px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.field-wrapper {
  flex: 1;
}

.success-message {
  color: #f8fafb;
  background-color: #ff5e15;
}

.primary-span {
  color: var(--black);
}

.input-field {
  letter-spacing: .05px;
  background-color: #f8fafb;
  border: 1px solid #fff;
  min-height: 56px;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 500;
  transition: border-color .2s;
}

.input-field:hover {
  border-style: solid;
  border-color: var(--primary);
}

.input-field:focus {
  border-color: var(--primary);
}

.input-field::placeholder {
  color: #96a0b5;
}

.contact-block-grey {
  background-color: #fff;
  padding: 60px;
}

.message-field-large {
  letter-spacing: .05px;
  background-color: #f8fafb;
  border: 1px solid #fff;
  min-height: 150px;
  margin-bottom: 0;
  padding-top: 16px;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 500;
  transition: border-color .2s;
}

.message-field-large:hover, .message-field-large:focus {
  border-color: var(--primary);
}

.message-field-large::placeholder {
  color: #96a0b5;
}

.contact-form-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-bottom: 40px;
}

.h1-title {
  margin-bottom: 32px;
}

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

.contact-section {
  padding: 220px 3% 130px;
  overflow: hidden;
}

.section-large {
  padding: 200px 3% 130px;
}

.collection-item-services {
  margin-bottom: 72px;
}

.about-stats-grid {
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr 1fr;
}

.h1-title-centre {
  text-align: center;
  margin-bottom: 80px;
}

.about-image-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-bottom: 60px;
}

.orange-span {
  color: #ff5e15;
}

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

.image-cover.height-large {
  height: 550px;
}

.image-cover.height-large.left {
  object-position: 0% 50%;
}

.paragraph-large {
  letter-spacing: -.03px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 32px;
}

.paragraph-large.white {
  color: #fff;
}

.paragraph-large.margin-bottom {
  margin-bottom: 32px;
}

.paragraph-large.hero {
  color: #fff;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 23px;
  font-weight: 600;
}

.grey-banner {
  z-index: -1;
  background-color: #f3f7f9;
  width: 100%;
  min-height: 35%;
  position: absolute;
  inset: auto 0% 0%;
}

.our-story-content-wrap {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  padding-top: 20px;
  display: flex;
}

.our-story-grid {
  grid-column-gap: 124px;
  grid-row-gap: 80px;
  grid-template-columns: 1.25fr 1fr;
}

.our-story-grid.etusivu {
  grid-template-rows: auto;
}

.our-story-grid.home {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.our-story-image {
  padding-top: 140%;
  position: relative;
}

.service-icon {
  width: 33px;
}

.privacy-policy-wrapper {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.privacy-policy-rich-text strong {
  line-height: 42px;
}

.privacy-policy-rich-text p {
  color: var(--black);
  line-height: 22px;
}

.privacy-policy-rich-text h1 {
  color: var(--black);
}

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

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

._404-icon {
  width: 42px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-icon {
  width: 72px;
  margin-left: auto;
  margin-right: auto;
}

.question-title {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 42px;
}

.accordian-line {
  background-color: #e9ecf0;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.faq-wrapper {
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.faq-question-wrap {
  cursor: pointer;
}

.paragraph-default {
  color: var(--light-slate-grey);
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.4;
}

.faq-content {
  overflow: hidden;
}

.section {
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}

.section.light-bg {
  background-color: #f7f7f7;
}

.faq-question-bar {
  letter-spacing: -.03em;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.faq-question-bar:hover {
  color: #ff5e15;
}

.title-wrap-centre {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-circle {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 35px;
  display: flex;
}

.plus-icon {
  width: 12px;
}

.title-2 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 24px;
}

.title-2.ukk {
  margin-bottom: 0;
}

.hero-background-image {
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
}

.container-default {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.hero-heading-2 {
  color: #171717;
  margin-bottom: 32px;
  line-height: 52px;
}

.hero-heading-2.show-mobile {
  display: none;
}

.hero-heading-2.hide-mobile {
  color: #fff;
  margin-bottom: 20px;
  font-size: 66px;
  font-weight: 700;
  line-height: 72px;
}

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

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

.hero-grid {
  text-align: center;
  justify-content: center;
  justify-items: center;
  display: flex;
}

.section-hero {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 80px 3% 100px;
  display: flex;
  position: relative;
}

.text-white {
  color: #fff;
  font-size: 18px;
}

.slogan-wrapper-left {
  align-items: center;
  display: flex;
}

.slogan-icon {
  width: 22px;
  margin-right: 20px;
}

.slogan-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.link-white {
  color: #fff;
  text-decoration: underline;
}

.hide-me-overlay {
  z-index: 8888;
  background-color: #00000080;
  display: none;
  position: fixed;
  inset: 0;
  overflow: auto;
}

.hide-me-overlay.asennus {
  display: none;
}

.modal-scroll {
  width: 100%;
  min-height: 100vh;
  padding: 50px 50px 100px;
  position: absolute;
}

.close-overlay {
  z-index: 9;
  opacity: .25;
  cursor: pointer;
  position: absolute;
  inset: 0;
}

.popup-container {
  z-index: 10;
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  min-height: 400px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 50px 50px;
  font-weight: 300;
  display: block;
  position: relative;
  overflow: hidden;
}

.popup-accent {
  background-color: var(--primary);
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.upgrade-button {
  color: #fff;
  text-align: center;
  background-color: #254054;
  border-radius: 5px;
  padding: 15px 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6em;
  text-decoration: none;
  transition: background-color .3s, box-shadow .3s;
  box-shadow: 0 20px 30px -10px #1810635c;
}

.upgrade-button:hover {
  background-color: #000;
  box-shadow: 0 10px 20px -5px #1810635c;
}

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

.rich-text-popup li {
  margin-top: 5px;
  margin-bottom: 16px;
}

.cta-scanoffice {
  padding: 8%;
}

.cta-scanoffice-content-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-span {
  color: #eb3300;
}

.cta-scanoffice-content-left {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  width: 50%;
  display: flex;
}

.cta-scanoffice-content-right {
  width: 50%;
}

.security-wrapper {
  align-items: center;
  display: flex;
}

.security-icon {
  width: 26px;
}

.security-text {
  padding-left: 16px;
  font-size: 14px;
}

.link-large-2 {
  color: #171717;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
}

.link-large-2.security-link {
  font-size: 14px;
}

.blue-nav-banner {
  background-color: var(--primary);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  display: flex;
}

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

.white-link-2:hover {
  opacity: .8;
}

.navbar-home {
  background-color: #fff;
}

.text-block {
  font-weight: 400;
}

.about-logo-link-block {
  margin-top: 20px;
}

.about-logo {
  width: 260px;
}

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

.heading-7 {
  line-height: 1.3;
}

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

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

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid #fff3;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

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

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

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

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

.live-chat-bottom-text {
  color: #333;
  font-size: 10px;
  font-weight: 500;
}

.live-chat-bottom-text.block {
  color: #333;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}

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

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

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

.close-livechat-icon {
  width: auto;
  height: auto;
}

.live-chat-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
  position: static;
}

.live-chat-top-text.block {
  color: #b0b0b0;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
}

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

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

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 25%;
  text-decoration: none;
  display: flex;
}

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

.small-whatsapp-icon {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-right: 10px;
}

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

.whatsapp-icon {
  width: 26px;
  height: auto;
}

.chat-section {
  background-color: #e6ddd4;
  height: 50%;
  padding: 16px 20px;
}

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

.features-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.feature-item {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  align-items: center;
  display: flex;
}

.checkmark-code-embed {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

.feature-text-block {
  font-weight: 500;
}

.contact-paragraph {
  font-size: 17px;
}

.post-image-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 42px;
  margin-bottom: 24px;
  display: grid;
}

.post-image-wrapper {
  padding-top: 100%;
  position: relative;
}

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

.project-image-cover.cover-top {
  object-position: 50% 0%;
}

@media screen and (min-width: 1280px) {
  .our-story-image {
    padding-top: 125%;
  }

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

@media screen and (min-width: 1920px) {
  .whatsapp-chat {
    display: none;
  }

  .livechat-button {
    transition: all .2s;
  }

  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

@media screen and (max-width: 991px) {
  .navigation-container-large {
    grid-template-columns: 1fr 1fr;
  }

  .navigation-container-large.home {
    padding-left: 5%;
    padding-right: 5%;
  }

  .navigation-line {
    max-width: 100%;
  }

  .nav-menu {
    background-color: #fff;
    padding-bottom: 12px;
  }

  .menu-button {
    border: 1px solid #96a0b526;
    margin-left: 20px;
  }

  .menu-button.w--open {
    background-color: var(--primary);
  }

  .white-bar-bottom {
    height: 20%;
  }

  .white-bar-bottom.hide-mobile {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-image-large {
    max-width: 100%;
    height: 520px;
    position: relative;
  }

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

  .header-large {
    flex-direction: column-reverse;
    min-height: auto;
    padding-top: 160px;
  }

  .content-block-hero {
    max-width: none;
    margin-bottom: 60px;
  }

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

  .statistics-grid {
    grid-row-gap: 42px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .cta-block {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .cta-text-wrap {
    margin-bottom: 40px;
  }

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

  .link-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .legal-wrap {
    flex-direction: column;
  }

  .footer-link-wrap {
    margin-top: 40px;
  }

  .service-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .content-image-wrap-large {
    width: 88%;
  }

  .contact-column {
    max-width: none;
  }

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

  .paragraph-large.hero {
    width: 90%;
    font-size: 22px;
  }

  .grey-banner {
    display: none;
  }

  .our-story-grid {
    grid-column-gap: 32px;
    grid-row-gap: 60px;
  }

  .question-title {
    font-size: 20px;
    line-height: 28px;
  }

  .faq-question-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-heading-2.hide-mobile {
    font-size: 64px;
    line-height: 70px;
  }

  .section-hero {
    flex-direction: column-reverse;
    min-height: auto;
    padding-top: 160px;
  }

  .modal-scroll {
    padding-top: 50px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .cta-scanoffice-content-wrapper {
    flex-direction: column-reverse;
  }

  .cta-scanoffice-content-left, .cta-scanoffice-content-right {
    width: auto;
  }

  .blue-nav-banner {
    padding-left: 5%;
    padding-right: 5%;
  }

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

@media screen and (max-width: 767px) {
  .navigation-line {
    max-width: 100%;
  }

  .nav-menu {
    background-color: #fff;
  }

  .container.cta {
    flex-direction: column;
    align-items: center;
  }

  .service-section {
    padding-top: 60px;
  }

  .heading-wrap {
    margin-bottom: 40px;
  }

  .cta-text-wrap {
    margin-bottom: 0;
  }

  .footer-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .legal-wrap {
    text-align: center;
    flex-direction: column;
  }

  .service-collection-list {
    grid-template-columns: 1fr;
  }

  .content-wrap-section {
    flex-direction: column;
  }

  .content-square-left {
    max-width: none;
    position: relative;
  }

  .content-image-wrap-large {
    width: 100%;
    height: 370px;
  }

  .content-wrap-right-section {
    flex-direction: column;
  }

  .content-square-1 {
    max-width: none;
    position: relative;
  }

  .contact-block-grey {
    padding: 30px;
  }

  .section-large.contained {
    padding-bottom: 0;
  }

  .about-stats-wrap {
    padding-right: 14px;
  }

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

  .about-image {
    display: none;
  }

  .image-cover.height-large {
    height: 350px;
  }

  .paragraph-large.hero {
    font-size: 20px;
  }

  .our-story-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1.25fr;
  }

  .our-story-grid.home {
    grid-template-columns: 1fr;
  }

  .our-story-image {
    max-height: 300px;
    padding-top: 100%;
  }

  .faq-wrapper {
    padding: 0;
  }

  .hero-heading-2.hide-mobile {
    font-size: 48px;
    line-height: 64px;
  }

  .modal-scroll {
    overflow: auto;
  }

  .popup-container {
    flex-direction: column;
    margin-bottom: 70px;
    padding-top: 50px;
    padding-left: 7%;
    padding-right: 7%;
  }

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

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

@media screen and (max-width: 479px) {
  .navigation-container-large {
    grid-template-columns: 2fr 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .navigation-container-large.home {
    padding-left: 5%;
    padding-right: 5%;
  }

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

  .nav-link-dark {
    width: 100%;
  }

  .nav-link-dark.mobile-only {
    display: flex;
  }

  .nav-link-dark.mobile-only.contact {
    background-color: var(--primary);
    color: #fff;
  }

  .nav-link-dark.hide-mobile {
    display: none;
  }

  .menu-button {
    padding: 10px;
  }

  .button-navigation-white {
    display: none;
  }

  .button-navigation-white.show-mobile {
    display: block;
  }

  .brand-logo.w--current {
    padding-left: 0;
  }

  .white-bar-bottom {
    height: 10%;
    display: none;
  }

  .white-bar-bottom.show-mobile {
    height: auto;
    display: flex;
  }

  .hero-image-large {
    height: 350px;
  }

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

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

  .header-large {
    padding: 172px 5% 40px;
  }

  .content-block-hero {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .header-image {
    height: 350px;
  }

  .button-primary.margin-right-16 {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .hero-heading {
    font-size: 48px;
  }

  .hero-heading.hide-mobile {
    display: none;
  }

  .hero-heading.show-mobile {
    display: block;
  }

  .left-arrow, .right-arrow {
    bottom: -100px;
  }

  .heading-wrap {
    margin-bottom: 40px;
  }

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

  .feature-block-2 {
    flex-direction: column;
    display: flex;
  }

  .content-section {
    padding: 72px 5%;
  }

  .cta-block {
    padding: 10% 5%;
  }

  .cta-text-wrap {
    margin-top: -20px;
    margin-bottom: 0;
  }

  .footer-left-content-block {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: none;
  }

  .social-link-wrap {
    margin-top: 40px;
  }

  .link-grid {
    grid-auto-flow: row;
  }

  .footer-legal {
    padding-left: 24px;
    padding-right: 24px;
  }

  .legal-wrap {
    text-align: left;
    align-items: flex-start;
  }

  .footer-link-wrap {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
  }

  .service-section-grey {
    padding-left: 5%;
    padding-right: 5%;
  }

  .content-image-large {
    object-position: 0% 50%;
  }

  .content-square-left {
    padding: 20px 32px;
  }

  .content-square-1 {
    padding: 32px 20px;
  }

  .send-button {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .contact-information {
    grid-template-columns: 1fr;
  }

  .contact-block-grey {
    padding: 24px;
  }

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

  .h1-title {
    font-size: 48px;
  }

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

  .h1-title.show-mobile {
    display: block;
  }

  .contact-section {
    padding-top: 180px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-large {
    padding: 180px 5% 100px;
  }

  .section-large.top-contained {
    padding-top: 60px;
  }

  .about-stats-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 3fr 1fr;
  }

  .image-cover.height-large {
    height: 300px;
  }

  .paragraph-large {
    margin-top: 10px;
  }

  .paragraph-large.hero {
    width: auto;
  }

  .our-story-grid.etusivu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .our-story-grid.home {
    grid-row-gap: 60px;
  }

  .privacy-policy-wrapper {
    width: 100%;
  }

  .privacy-policy-rich-text h1 {
    font-size: 33px;
  }

  .faq-question-wrap {
    padding-left: 0;
    padding-right: 0;
  }

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

  .title-wrap-centre, .div-block {
    text-align: left;
  }

  .hero-heading-2 {
    font-size: 48px;
  }

  .hero-heading-2.show-mobile {
    color: #fff;
    margin-bottom: 20px;
    display: block;
  }

  .hero-heading-2.hide-mobile {
    display: none;
  }

  .section-hero {
    padding: 120px 5% 140px;
  }

  .text-white {
    font-size: 16px;
  }

  .slogan-wrapper-left {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .slogan-wrapper-left.no-margin {
    margin-bottom: 0;
  }

  .slogan-icon {
    margin-right: 0;
  }

  .slogan-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 5%;
  }

  .hide-me-overlay.asennus {
    display: none;
  }

  .popup-container {
    margin-bottom: 70px;
    padding: 40px 5%;
  }

  .security-wrapper {
    flex-direction: column;
  }

  .security-text {
    text-align: center;
    margin-top: 14px;
    padding-left: 0;
  }

  .blue-nav-banner {
    background-color: var(--primary);
    text-align: left;
    margin-right: 5%;
    padding-left: 5%;
  }

  .text-block {
    font-size: 16px;
    font-weight: 400;
  }

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

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

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

  .whatsapp-icon {
    width: 26px;
  }

  .post-image-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }
}

#w-node-f25e2893-f66d-1e36-ceb8-8d2a8b2c8781-f7ebdf2a, #w-node-ccaf1927-81fb-467d-aa43-0d0227b76738-f7ebdf2a, #w-node-_398c371d-ddda-c377-ac38-c9a3e1f01bf9-f7ebdf2a {
  align-self: center;
}

#w-node-_62b72976-e021-656e-a906-69178dec2173-f7ebdf2a, #w-node-_62b72976-e021-656e-a906-69178dec2190-f7ebdf2a, #w-node-_62b72976-e021-656e-a906-69178dec2195-f7ebdf2a, #w-node-_62b72976-e021-656e-a906-69178dec219a-f7ebdf2a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_96e8b326-b507-fbeb-2238-1db1f0002d77-f0002d67 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_398c371d-ddda-c377-ac38-c9a3e1f01bf7-f7ebdf2a {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_62b72976-e021-656e-a906-69178dec2186-f7ebdf2a, #w-node-_62b72976-e021-656e-a906-69178dec218b-f7ebdf2a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_62b72976-e021-656e-a906-69178dec2178-f7ebdf2a, #w-node-_62b72976-e021-656e-a906-69178dec217d-f7ebdf2a, #w-node-_62b72976-e021-656e-a906-69178dec2186-f7ebdf2a, #w-node-_62b72976-e021-656e-a906-69178dec218b-f7ebdf2a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


