:root {
  --white: white;
  --black-80: #000c;
  --black: #111;
  --primary: #f7de1c;
  --white-80: #fffc;
  --white-smoke: #f8f8f8;
  --familjen-grotesk: "Familjen Grotesk", sans-serif;
  --dm-sans: "DM Sans", sans-serif;
}

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

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

@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 {
  background-color: var(--white);
  color: var(--black-80);
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 145%;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

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

.navbar {
  background-color: var(--black);
  padding-top: 8px;
  padding-bottom: 8px;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  max-width: 1300px;
  padding-left: 15px;
  padding-right: 15px;
}

.nav-div {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.brand {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.nav-link {
  color: var(--white);
  padding: 12px 20px;
  font-size: 18px;
}

.nav-link.w--current {
  border-bottom: 1px solid var(--primary);
  color: #fff;
}

.h2-heading {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 130%;
}

.h2-heading.white {
  color: var(--white);
}

.left-content-div {
  width: 100%;
  max-width: 100%;
}

.left-content-div.height {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 428px;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
}

.left-content-div.height.about-space {
  max-width: 456px;
  margin-top: 0;
}

.large-paragraph {
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.large-paragraph.hero-para {
  color: var(--white);
  max-width: 520px;
}

.large-paragraph.hero-para.top-18 {
  margin-top: 18px;
}

.h1-heading {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 120%;
}

.h1-heading.hero-heading {
  max-width: 700px;
  line-height: 100%;
}

.primary-button {
  background-color: var(--primary);
  color: var(--black);
  border-radius: 24px;
  padding: 17px 28px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
}

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

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

.hero-bg-video {
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 95vh;
  position: absolute;
  inset: 0%;
}

.hero {
  background-image: linear-gradient(#333333a6, #333333a6);
  min-height: 95vh;
  padding-top: 200px;
  padding-bottom: 150px;
  position: relative;
}

.center-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.round-image {
  border-radius: 24px;
  width: 100%;
}

.round-image.absolute {
  object-fit: cover;
  height: 425px;
  position: absolute;
}

.round-image.absolute._1 {
  z-index: 4;
}

.round-image.absolute._2 {
  z-index: 3;
}

.round-image.absolute._3 {
  z-index: 2;
}

.round-image.absolute._4 {
  z-index: 1;
}

.h5-heading {
  color: var(--white);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.h3-heading {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 130%;
}

.paragraph {
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
}

.paragraph.top-18 {
  margin-top: 18px;
}

.paragraph.about-card-para {
  margin-top: 60px;
}

.paragraph.para-white {
  color: var(--white-80);
}

.paragraph.para-white.top-32 {
  margin-top: 32px;
}

.paragraph.footer-para {
  color: var(--white-80);
  max-width: 380px;
  margin-top: 24px;
}

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

.section.bg {
  background-color: #f8f8f8;
  overflow: hidden;
}

.section.top-0 {
  padding-top: 0;
}

.max-width-div {
  max-width: 582px;
}

.max-width-div.center {
  text-align: center;
  max-width: 700px;
}

.image-div {
  position: sticky;
  top: 0;
}

.two-col-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr;
}

.about-card-image {
  display: none;
}

.rounded-image-div {
  flex-flow: column;
  justify-content: center;
  min-height: 100vh;
  display: flex;
  position: relative;
}

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

.horizontal-line.black {
  background-color: #0003;
}

.horizontal-line.black.top-32 {
  margin-top: 32px;
}

.horizontal-line.white {
  background-color: #ffffff40;
}

.horizontal-line.white.top-18 {
  margin-top: 18px;
}

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

.form-input-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  width: 100%;
}

.contact-content {
  max-width: 428px;
}

.contact-info-div {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  align-items: center;
  display: flex;
}

.contact-info-div.top-32 {
  margin-top: 32px;
}

.form-input-field {
  color: var(--black);
  background-color: #f8f8f8;
  border: 1px solid #0000001a;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0;
  padding: 28px 12px 28px 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}

.form-input-field:focus {
  border-color: #ff650080;
}

.form-input-field::placeholder {
  color: #000c;
  font-size: 18px;
  font-weight: 400;
}

.form-input-field.message-filed {
  height: 156px;
}

.contact-form-block {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  place-items: center stretch;
  width: 100%;
  max-width: 1051px;
}

.bg-image-container-div {
  background-color: #000c;
  background-image: linear-gradient(#181818cc, #181818cc), url('../images/puun-sahaaminen.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 100px 32px;
  display: flex;
}

.h6-heading {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.top-60 {
  margin-top: 60px;
}

.small-text {
  margin-bottom: 0;
  font-size: 16px;
}

.small-text.under-line {
  color: var(--white-80);
  margin-top: 6px;
  text-decoration: none;
  display: block;
}

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

.success-message {
  text-align: left;
  background-color: #0000;
  padding-left: 0;
}

.footer-link {
  color: var(--white-80);
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.footer-company-link {
  text-decoration: none;
}

.footer-grid {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr .75fr .75fr;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-bottom: 0;
}

.footer {
  background-color: var(--black);
}

.footer-div {
  position: relative;
}

.footer-bottom-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top: 1px solid #fff3;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

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

.link-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  align-items: flex-start;
  margin-top: 26px;
  display: flex;
}

.whatsapp-profile-image {
  display: none;
}

.contact-icon {
  width: 24px;
  height: 25px;
}

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

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

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

.space {
  height: 24px;
}

.space._40 {
  height: 40px;
}

.brand-text-block {
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
}

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

.left-arrow, .icon, .right-arrow, .icon-2, .slide-nav {
  display: none;
}

.hero-link-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--white);
  align-items: center;
  text-decoration: none;
  transition: all .25s;
}

.hero-link-block:hover {
  transform: scale(1.07);
}

.div-block {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.client-wrapper-2 {
  text-align: center;
  background-color: #eef7ff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 40px;
  display: flex;
}

.client-wrapper-2._2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  text-align: left;
  background-color: #ececec;
  border: 1px solid #ececec;
  border-radius: 4px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 35px 46px 42px;
}

.slide-1 {
  width: 500px;
  overflow: visible;
}

.slider-flex-2 {
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.slider-testimonials {
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  max-width: 600px;
  height: auto;
  padding: 25px 50px;
  display: flex;
  overflow: visible;
}

.slide-content {
  margin-left: 20px;
  margin-right: 20px;
  padding-right: 0;
  position: relative;
  overflow: visible;
}

.mask {
  width: 100%;
  overflow: visible;
}

.down-arrow-2 {
  z-index: 1;
  width: 23px;
  position: relative;
}

.down-arrow-2.rotate {
  transform: rotate(180deg);
}

.slide-nav-2 {
  justify-content: center;
  margin-bottom: -35px;
  font-size: 10px;
  display: flex;
}

.testimonials-name-2 {
  margin-bottom: 5px;
  font-size: 16px;
}

.testimonials-name-2.small {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}

.masonry__grid-quote {
  text-align: center;
  border-left-style: none;
  border-left-width: 0;
  margin-bottom: 0;
  padding: 0;
  font-style: normal;
  line-height: 24px;
}

.author-flex-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.right-arrow-2 {
  opacity: .6;
  border: 1px solid #d6d1ca;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .2s;
  display: none;
  inset: -40% -32% auto auto;
}

.right-arrow-2:hover {
  opacity: 1;
}

.right-arrow-2.left {
  margin-right: 60px;
}

.code-embed {
  color: #ffcf23;
  width: 20px;
  height: 20px;
}

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

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

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

.h2-heading-2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
}

.h2-heading-2.galleria {
  text-align: center;
  margin-bottom: 60px;
}

.hero-logo-image {
  object-fit: contain;
  height: 34.6641px;
}

.hero-logo-image.larger {
  height: 55px;
}

.div-block-2 {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  align-items: center;
  margin-top: 16px;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .round-image.absolute {
    height: 450px;
  }

  .bg-image-container-div {
    padding-left: 0;
    padding-right: 0;
  }

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

@media screen and (min-width: 1920px) {
  .left-content-div.height, .hero, .rounded-image-div {
    min-height: 55vh;
  }
}

@media screen and (max-width: 991px) {
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .nav-div {
    padding-top: 6px;
    padding-bottom: 6px;
  }

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

  .nav-menu {
    background-color: #000;
    border-top: 1px solid #fff3;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link {
    text-align: center;
    width: 300px;
  }

  .menu-button {
    color: #fff;
  }

  .menu-button.w--open {
    color: #ff6500;
    background-color: #0000;
  }

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

  .large-paragraph {
    font-size: 18px;
  }

  .h1-heading {
    font-size: 52px;
  }

  .primary-button {
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
  }

  .hero-bg-video {
    min-height: 100%;
  }

  .hero {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 60vh;
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .h5-heading {
    font-size: 18px;
  }

  .paragraph {
    font-size: 16px;
  }

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

  .two-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-input-field {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
  }

  .form-input-field::placeholder {
    font-size: 16px;
  }

  .form-input-field.message-filed {
    height: 140px;
  }

  .contact-form-block {
    margin-top: 24px;
  }

  .bg-image-container-div {
    padding-left: 40px;
    padding-right: 40px;
  }

  .top-60 {
    margin-top: 48px;
  }

  .small-text {
    font-size: 14px;
  }

  .footer-link {
    font-size: 16px;
  }

  .footer-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1.5fr .75fr .75fr 1.25fr;
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .down-arrow-2 {
    width: 20px;
  }

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

  .right-arrow-2 {
    display: none;
  }

  .h2-heading-2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .nav-link {
    width: 236px;
  }

  .h2-heading {
    font-size: 28px;
  }

  .left-content-div.height {
    max-width: 100%;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .left-content-div.height.about-space {
    max-width: 100%;
    margin-top: 48px;
  }

  .h1-heading {
    font-size: 42px;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 70px;
  }

  .grid-div.none {
    display: none;
  }

  .h3-heading {
    font-size: 28px;
  }

  .paragraph.about-card-para {
    margin-top: 36px;
  }

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

  .two-col-grid {
    grid-template-columns: 1fr;
  }

  .about-card-image {
    margin-bottom: 24px;
    display: block;
  }

  .contact-icon-div {
    width: 50px;
    height: 50px;
  }

  .form-input-field {
    padding-top: 24px;
    padding-bottom: 24px;
  }

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

  .bg-image-container-div {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .h6-heading {
    font-size: 16px;
  }

  .top-60 {
    margin-top: 36px;
  }

  .small-text.under-line {
    margin-top: 4px;
  }

  .footer-grid {
    grid-row-gap: 36px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .link-div {
    margin-top: 16px;
  }

  .client-wrapper-2._2 {
    padding-bottom: 25px;
  }

  .slide-1 {
    width: 450px;
  }

  .slider-testimonials {
    max-width: 450px;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials-name-2 {
    margin-bottom: 3px;
    font-size: 16px;
  }

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

  .h2-heading-2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 479px) {
  .nav-link {
    width: auto;
    max-width: 268px;
  }

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

  .bg-image-container-div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .footer-bottom-div {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .link-div {
    margin-top: 20px;
  }

  .div-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: wrap;
  }

  .client-wrapper-2 {
    padding: 30px 20px 25px;
  }

  .client-wrapper-2._2 {
    padding-top: 24px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .slide-1 {
    width: 100%;
  }

  .slider-testimonials {
    max-width: 300px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .slide-content {
    margin-left: 4px;
    margin-right: 4px;
  }

  .slide-nav-2 {
    margin-bottom: -65px;
  }

  .testimonials-name-2 {
    margin-bottom: 0;
  }

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

  .author-flex-2 {
    grid-column-gap: 20px;
    text-align: left;
    flex-direction: row;
  }

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

  .project-image-cover {
    border-radius: 0;
  }

  .hero-logo-image {
    height: 26px;
  }
}

#w-node-_4d71feb1-0f83-76d1-a810-34b0aeaae090-600d8c67 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_075cb026-4d7b-6b54-f73f-4a8998a786aa-98a786a7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4d71feb1-0f83-76d1-a810-34b0aeaae090-600d8c67 {
    grid-area: 1 / 1 / 3 / 2;
    justify-self: start;
  }
}


