:root {
  --body: #4a5568;
  --white: white;
  --black: #0f171b;
  --_size---container: 1320px;
  --border: #edf2f7;
  --light: #f7fafc;
  --_size---nav-height: 127.375px;
  --blue: #118cd5;
  --hover: #0874b4;
  --dark-blue: #103259;
  --_size---container-small: 1024px;
}

.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 {
  color: var(--body);
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
}

h1 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
}

h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
}

a {
  transition: opacity .2s;
}

a:hover {
  opacity: .6;
}

strong {
  font-weight: bold;
}

.nav-container {
  max-width: var(--_size---container);
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: .7rem 24px;
  display: grid;
}

.navbar {
  border-bottom: 1px solid var(--border);
  background-color: var(--white);
  position: fixed;
  inset: 0% 0% auto;
}

.nav-logo {
  height: 70px;
}

.hero-section {
  justify-content: flex-start;
  align-items: center;
  height: 120vh;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: var(--_size---container);
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.container.hero {
  z-index: 1;
  position: relative;
}

.container.hero.center-content {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.absolute-image.custom-cover {
  object-position: 50% 50%;
}

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

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

.section.light {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--light);
}

.section.light:where(.w-variant-95873075-45b3-5af4-1b4d-706f2bb3b303) {
  background-color: var(--white);
}

.section.no-overflow {
  overflow: hidden;
}

.section.subpage {
  padding-bottom: 8rem;
  padding-top: calc(8rem + var(--_size---nav-height));
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.section.hero-split {
  background-color: var(--light);
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}

.hero-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 700px;
  display: flex;
}

.underline {
  border-bottom: 6px solid var(--blue);
}

.underline.small {
  border-bottom-width: 2px;
}

.hero-subtitle {
  color: var(--light);
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.hero-subtitle.body {
  color: var(--body);
}

.button {
  background-color: var(--blue);
  border-radius: 100px;
  padding: .7rem 2rem;
  transition: all .3s;
}

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

.nav-link {
  color: var(--black);
  padding: 1rem;
  font-size: .9rem;
  transition: all .2s, opacity .2s;
}

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

.footer {
  border-top: 1px solid var(--border);
  background-color: var(--black);
  color: var(--light);
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.title-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 4rem;
  display: grid;
}

.title-wrapper.flex-center {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.title-left {
  width: 100%;
  max-width: 500px;
}

.subtitle {
  margin-bottom: 0;
}

.title-right {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

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

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

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

.service-image-wrapper {
  aspect-ratio: 3 / 2;
  object-fit: fill;
  width: 100%;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

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

.overlay {
  background-color: var(--black);
  opacity: .5;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.live-chat-close-icon---brix {
  z-index: -1;
  position: absolute;
}

.live-chat-bubble-subtext {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.live-chat-bubble-subtext.whatsapp {
  color: #7f8d8a;
}

.live-chat-button {
  color: #fff;
  transform-style: preserve-3d;
  background-color: #4a3aff;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 6px 18px #0e0d6a24;
}

.live-chat-button:hover {
  background-color: #170f49;
  transform: scale3d(.94, .94, 1.01);
}

.live-chat-button.whatsapp {
  background-color: #25d366;
  box-shadow: 0 6px 18px #112d2d24;
}

.live-chat-message {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 36px 36px 36px 3px;
  margin-bottom: 14px;
  padding: 38px 38px 34px;
  box-shadow: 0 4px 16px #170f4912;
}

.live-chat-message.whatsapp {
  box-shadow: 0 4px 16px #14282b14;
}

.live-chat-bubble-title {
  color: #170f49;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

.live-chat-bubble-title.whatsapp {
  color: #142b26;
}

.live-chat-wrapper {
  z-index: 2;
  flex-direction: column;
  align-items: flex-end;
  max-width: 380px;
  display: flex;
  position: fixed;
  bottom: 48px;
  right: 32px;
}

.live-chat-wrapper.preview-page {
  position: fixed;
}

.live-chat-bubbble---brix {
  z-index: 1;
  cursor: pointer;
  transform-style: preserve-3d;
  background-color: #4a3aff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: 14px;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 4px 8px #4a3aff14;
}

.live-chat-bubbble---brix:hover {
  transform: scale3d(.92, .92, 1.01);
}

.live-chat-bubbble---brix.whatsapp {
  background-color: #075e54;
  box-shadow: 0 4px 8px #ffffff1a;
}

.live-chat-avatar {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.live-chat-content {
  align-items: flex-end;
  display: none;
}

.live-chat-avatar-wrapper {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  overflow: hidden;
  box-shadow: 0 4px 14px #170f491a;
}

.live-chat-content-left {
  margin-right: 18px;
}

.about-contact-wrapper {
  grid-column-gap: 2.7rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  align-items: center;
  margin-top: 4rem;
  display: flex;
}

.about-contact-item {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  color: var(--blue);
  grid-template-rows: auto;
  grid-template-columns: 24px 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  font-size: .9rem;
  text-decoration: none;
  display: grid;
}

.about-contact-item.white {
  color: var(--white);
  font-size: .8rem;
}

.code-embed {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10rem;
  display: grid;
}

.footer-legal-text {
  color: var(--light);
  font-size: .85rem;
}

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

.div-block-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 400px;
  display: flex;
}

.footer-title {
  color: var(--white);
  font-weight: 500;
}

.link-2 {
  color: var(--light);
  font-size: 1rem;
  text-decoration: none;
}

.footer-links-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.footer-image {
  width: 160px;
  padding: 0;
}

.line-rounded-icon.success-message-check {
  margin-bottom: 6px;
  font-size: 22px;
}

.line-rounded-icon.success-message-check.large {
  margin-bottom: 16px;
  font-size: 80px;
  line-height: 88px;
}

.color-neutral-300 {
  color: #eff0f6;
}

.success-message {
  color: #4a3aff;
  background-color: #f3f2ff;
  border-radius: 24px;
  padding: 28px 28px 32px;
}

.icon-pagraph-wrapper {
  display: flex;
}

.link-wrapper {
  color: #211f54;
  transition: none;
  display: inline-block;
}

.link-wrapper:hover {
  color: #4a3aff;
}

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

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

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.grid-2-columns.contact-v7 {
  grid-column-gap: 60px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.card {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 7px #28282b0f;
}

.card.form {
  border-color: var(--border);
  border-radius: 12px;
  min-height: 620px;
  margin-bottom: 0;
  padding: 4rem 2rem;
}

.error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 24px;
}

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

.link-text {
  transition: color .3s;
  display: inline-block;
}

.brand {
  padding-left: 0;
}

.top-bar {
  border-bottom: 1px solid var(--border);
  background-color: var(--black);
  color: var(--white);
  align-items: center;
  padding-top: .7rem;
  padding-bottom: .7rem;
  display: flex;
  position: relative;
}

.div-block-9 {
  aspect-ratio: auto;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.div-block-9.square {
  aspect-ratio: 1;
  background-color: var(--black);
}

.div-block-9.landscape {
  aspect-ratio: 3 / 2;
}

.div-block-10 {
  z-index: 1;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 3rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-11 {
  margin-top: 1rem;
}

.client-wrapper-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--light);
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 40px;
  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;
}

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

.author-flex-2 {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  display: flex;
}

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

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

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

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

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

.masonry__grid-quote {
  color: var(--black);
  text-align: center;
  border-left-style: none;
  border-left-width: 0;
  margin-top: 18px;
  margin-bottom: 20px;
  padding: 0;
  font-size: 1rem;
  font-style: italic;
  line-height: 28px;
}

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

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

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

.testimonials-star-code-embed {
  width: 18px;
  height: 18px;
}

.masonry__grid-signature {
  text-align: left;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.masonry__grid-portrait {
  object-fit: cover;
  border-radius: 100px;
  width: 36px;
  height: 36px;
  margin-right: 14px;
  overflow: visible;
}

.masonry__grid-person {
  color: var(--black);
  font-size: .9rem;
  font-weight: 600;
  line-height: 21px;
}

.masonry__grid-job-title {
  letter-spacing: .125px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.footer-legal-link {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

.link-4 {
  color: var(--blue);
  text-decoration: none;
}

.nav-space {
  height: var(--_size---nav-height);
}

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

.legal-rich h1 {
  color: var(--black);
}

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

.div-block-12 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

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

.two-column-grid.custom-ratio {
  grid-template-columns: 2fr 1fr;
}

.image-wrapper {
  border-radius: 8px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.image-wrapper.about {
  aspect-ratio: 1;
  border-radius: 12px;
}

.space.large {
  height: 8rem;
}

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

.hero-wrapper {
  width: 100%;
  max-width: 550px;
}

.halve-image-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.link-rich a {
  color: var(--hover);
  text-decoration: none;
}

.margin-top.small {
  margin-top: 1rem;
}

.margin-top.medium {
  margin-top: 2rem;
}

.div-block-13 {
  aspect-ratio: 1;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.referenssit-list {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.referenssi {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  border: 1px solid var(--border);
  background-color: var(--light);
  border-radius: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 2rem 4rem;
  display: grid;
}

.lightbox {
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.lightbox.square {
  aspect-ratio: 1;
}

.div-block-14 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1rem;
  display: grid;
}

.div-block-15 {
  margin-bottom: 2rem;
}

.input-2 {
  border: 1px solid var(--border);
  color: #111;
  background-color: #fff;
  border-radius: 8px;
  min-height: 64px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 20px;
}

.input-2:focus {
  border: 1px solid var(--blue);
}

.input-2::placeholder {
  color: #33333380;
  font-size: 18px;
}

.text-area-2 {
  border: 1px solid var(--border);
  color: #111;
  background-color: #fff;
  border-radius: 8px;
  min-height: 144px;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 28px;
  transition: box-shadow .3s, color .3s, border-color .3s;
}

.text-area-2:focus {
  border: 1px solid var(--blue);
}

.text-area-2::placeholder {
  color: #33333380;
  font-size: 18px;
}

.bold-text {
  color: var(--black);
  font-weight: 600;
}

.link-5 {
  color: var(--blue);
  text-decoration: none;
}

.field-label {
  font-weight: 600;
}

.top-bar-overlay {
  background-color: var(--dark-blue);
  min-width: 380px;
  position: absolute;
  inset: 0% -10px 0% auto;
  transform: skew(-20deg);
}

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

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

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

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

.h2-styling {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 42px;
  line-height: 1.1;
}

.subtitle-primary {
  color: var(--blue);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-social-flex {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  margin-top: .5rem;
  display: flex;
}

.footer-social-link {
  color: var(--border);
  width: 24px;
  height: 24px;
}

.image-2 {
  display: none;
}

@media screen and (min-width: 1440px) {
  .grid-2-columns.contact-v7 {
    grid-column-gap: 80px;
    grid-template-columns: 1fr 1.15fr;
  }

  .grid-2-columns.form {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .top-bar-overlay {
    width: 37%;
  }
}

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

  h2 {
    font-size: 38px;
  }

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

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

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

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

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

  .footer-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .grid-2-columns.contact-v7 {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .card.form {
    padding: 54px 32px;
  }

  .nav-menu {
    background-color: var(--light);
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 1rem;
    display: flex;
  }

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

  .menu-button.w--open {
    background-color: var(--blue);
    border-radius: 6px;
  }

  .div-block-9, .div-block-9.landscape {
    aspect-ratio: 1;
  }

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

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

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

  .image-wrapper.about {
    aspect-ratio: 2 / 3;
  }

  .hero-wrapper {
    max-width: 320px;
  }

  .referenssi {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .top-bar-overlay {
    min-width: 320px;
  }

  .h2-styling {
    font-size: 38px;
    line-height: 1.1;
  }
}

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

  h2 {
    font-size: 36px;
    line-height: 1.2;
  }

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

  .section.hero-split {
    padding-bottom: 26rem;
  }

  .services {
    flex-direction: column;
    display: flex;
  }

  .live-chat-wrapper {
    bottom: 24px;
    right: 24px;
  }

  .line-rounded-icon.success-message-check.large {
    font-size: 68px;
    line-height: 73px;
  }

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

  .grid-2-columns.form {
    grid-row-gap: 20px;
  }

  .card.form {
    padding: 56px 32px;
  }

  .div-block-9, .div-block-9.square, .div-block-9.landscape {
    aspect-ratio: 3 / 2;
  }

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

  .slide-1 {
    width: 450px;
  }

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

  .two-column-grid.custom-ratio {
    grid-template-columns: 2fr;
  }

  .image-wrapper.about {
    aspect-ratio: 3 / 2;
  }

  .halve-image-wrapper {
    width: 100%;
    height: 20rem;
    inset: auto 0% 0%;
  }

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

  .input-2 {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .top-bar-overlay {
    min-width: 140px;
  }

  .h2-styling {
    font-size: 36px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-section {
    height: 105vh;
  }

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

  .section.hero-split {
    padding-top: 4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .title-wrapper {
    grid-template-columns: 1fr;
  }

  .title-right {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .service-content {
    padding: 1.5rem;
  }

  .live-chat-button {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .live-chat-message {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 34px 24px 30px;
  }

  .live-chat-wrapper {
    max-width: 100%;
    left: 24px;
  }

  .live-chat-bubbble---brix {
    width: 56px;
    height: 56px;
  }

  .live-chat-avatar-wrapper {
    display: none;
  }

  .live-chat-content-left {
    margin-right: 0;
  }

  .about-contact-item.white.hidemob {
    display: none;
  }

  .footer-bottom {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 6rem;
  }

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

  .footer-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .line-rounded-icon.success-message-check.large {
    font-size: 58px;
    line-height: 64px;
  }

  .card.form {
    padding-left: 23px;
    padding-right: 23px;
  }

  .menu-button {
    background-color: #0000;
    padding: 10px;
  }

  .menu-button.w--open {
    padding: 10px;
  }

  .div-block-9 {
    aspect-ratio: 2 / 3;
  }

  .div-block-9.square {
    aspect-ratio: 1;
  }

  .div-block-9.landscape {
    aspect-ratio: 2 / 3;
  }

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

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

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

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

  .slide-1 {
    width: 100%;
  }

  .masonry__grid-quote {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }

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

  .div-block-12 {
    flex-flow: column;
  }

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

  .div-block-14 {
    grid-template-columns: 1fr 1fr;
  }

  .input-2 {
    border-radius: 0;
    font-size: 16px;
    line-height: 18px;
  }

  .input-2::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .text-area-2 {
    border-radius: 0;
  }

  .top-bar-overlay {
    min-width: 40%;
    right: -40px;
  }

  .h2-styling {
    font-size: 32px;
    line-height: 1.3;
  }
}

#w-node-_69895c6c-a54d-03c9-c1be-afdaee403c50-ee403c4d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_69895c6c-a54d-03c9-c1be-afdaee403c71-ee403c4d {
  justify-self: end;
}

#w-node-_86825420-6dc7-81ae-430c-f7f93921a755-6f826e8f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_86825420-6dc7-81ae-430c-f7f93921a759-6f826e8f {
  justify-self: start;
}

#w-node-_6af45621-29c5-45e3-097c-33b095602699-95602698 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_6af45621-29c5-45e3-097c-33b0956026a4-95602698 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_63a91628-f8f8-bad0-8273-b77445fe05af-45fe05a9 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_63a91628-f8f8-bad0-8273-b77445fe05b1-45fe05a9 {
  justify-self: end;
}

#w-node-d5c73a32-1bce-23f6-cccf-f75b6167bfe9-cbac8cbe, #w-node-d5c73a32-1bce-23f6-cccf-f75b6167bfe9-3b416e52, #w-node-_33709921-c33f-ad05-7d8d-7408230c8f61-3b416e52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_6af45621-29c5-45e3-097c-33b095602699-95602698 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6af45621-29c5-45e3-097c-33b0956026a4-95602698 {
    grid-column: span 1 / span 1;
  }

  #w-node-_63a91628-f8f8-bad0-8273-b77445fe05be-45fe05a9 {
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f073448f-7a03-7e0d-4faa-1d69214a2013-6fa4e8bd {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-d5c73a32-1bce-23f6-cccf-f75b6167bfee-779b1394, #w-node-db5f9480-a6e6-9e78-93a3-7d0a2011ab8a-779b1394, #w-node-d5c73a32-1bce-23f6-cccf-f75b6167bfee-cbac8cbe, #w-node-db5f9480-a6e6-9e78-93a3-7d0a2011ab8a-cbac8cbe {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-cd4b0a48-2013-8dfe-c015-e4f097282d10-cbac8cbe {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-d5c73a32-1bce-23f6-cccf-f75b6167bfee-3b416e52, #w-node-_33709921-c33f-ad05-7d8d-7408230c8f5f-3b416e52 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_69895c6c-a54d-03c9-c1be-afdaee403c64-ee403c4d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_69895c6c-a54d-03c9-c1be-afdaee403c6c-ee403c4d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_69895c6c-a54d-03c9-c1be-afdaee403c71-ee403c4d {
    justify-self: start;
  }

  #w-node-_86825420-6dc7-81ae-430c-f7f93921a755-6f826e8f {
    grid-column: span 1 / span 1;
  }

  #w-node-_63a91628-f8f8-bad0-8273-b77445fe05af-45fe05a9 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_63a91628-f8f8-bad0-8273-b77445fe05be-45fe05a9 {
    grid-area: 1 / 2 / 2 / 3;
  }
}


