:root {
  --white: white;
  --body: #333d47;
  --black: #1a1c1e;
  --_size---container: 1360px;
  --border: #e5e7eb;
  --light-blue: #f4f5fd;
  --_size---container-small: 1024px;
  --light: #f4f7f9;
  --_size---nav-height: 127.375px;
  --blue: #628cb2;
  --hover: #4e779c;
  --primary-light: #417eb81a;
  --blue-light: #a3c8e7;
  --dark-blue: #8e8e8e;
}

.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(--body);
  margin-bottom: 10px;
  font-family: Hanken Grotesk, 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 3.5fr;
  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(--light-blue);
  position: fixed;
  inset: 0% 0% auto;
}

.nav-logo {
  height: 46px;
}

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

.container.smaller {
  max-width: var(--_size---container-small);
}

.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.custom-cover:where(.w-variant-65dacff7-6029-1b9f-284b-4bafa47da7eb) {
  object-position: 50% 25%;
}

.absolute-image.scale {
  transform: scale(1.25);
}

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

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

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

.section.testimonials {
  border-bottom: 1px solid #0000000d;
  padding-top: 0;
  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;
}

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

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

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

.underline {
  background-image: url('../images/viiva.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.underline:where(.w-variant-25f4eaec-916c-d6d0-3323-cc3a94e4a97c) {
  padding-bottom: 1.5rem;
}

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

.underline.custom {
  display: inline-block;
}

.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);
  color: var(--white);
  border-radius: 4px;
  padding: .7rem 2rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}

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

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

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

.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: 1.5fr 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: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.service-item {
  color: var(--body);
  text-transform: none;
  background-color: #fff;
  border: 1px #fff;
  text-decoration: none;
  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: .4;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.overlay.lighter {
  opacity: .25;
}

.live-chat-close-icon---brix {
  z-index: -1;
  padding: 6px;
  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-logo---brix {
  padding: 6px;
}

.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 {
  filter: contrast(80%) saturate(110%) brightness(130%);
  object-fit: contain;
  object-position: 50% 50%;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding-top: 4px;
}

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

.live-chat-avatar-wrapper {
  background-color: var(--white);
  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);
  grid-template-columns: 1fr;
  font-size: .8rem;
  font-weight: 500;
}

.about-contact-item.white.hidemob {
  grid-template-columns: 1fr;
}

.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 2fr;
  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 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-image {
  width: 80px;
  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;
}

.icon-pagraph-wrapper:where(.w-variant-95873075-45b3-5af4-1b4d-706f2bb3b303) {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.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: #2d3748;
}

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

.grid-2-columns.contact-v13 {
  grid-column-gap: 60px;
  grid-template-columns: 1fr 1.2fr;
  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: 8px;
  min-height: 620px;
  margin-bottom: 0;
  padding: 4rem 2rem;
  box-shadow: 0 2px 7px #afafaf0f;
}

.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);
  align-items: center;
  padding-top: .7rem;
  padding-bottom: .7rem;
  display: flex;
  position: relative;
}

.div-block-9 {
  aspect-ratio: auto;
  border-radius: 8px;
  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: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 40px;
  display: flex;
  overflow: hidden;
}

.slider-testimonials {
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  max-width: 600px;
  height: auto;
  padding-bottom: 25px;
  padding-left: 50px;
  padding-right: 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 {
  background-color: var(--light);
  border-radius: 8px;
  margin-left: 20px;
  margin-right: 20px;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}

.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 {
  opacity: .7;
  width: 18px;
  height: 18px;
}

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

.masonry__grid-signature.no-margin-top {
  margin-top: 10px;
}

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

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

.legal-wrapper {
  width: 100%;
  max-width: 650px;
  margin-top: 4rem;
  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);
}

.black:where(.w-variant-95873075-45b3-5af4-1b4d-706f2bb3b303) {
  text-decoration: none;
}

.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: 8px;
  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: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 4rem;
  display: grid;
}

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

.lightbox.square {
  aspect-ratio: 1;
  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: 15px;
  line-height: 1.5;
}

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

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

.text-area-2 {
  border: 1px solid var(--border);
  color: #111;
  background-color: #fff;
  border-radius: 8px;
  min-height: 144px;
  padding: 16px 24px;
  font-size: 15px;
  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: 15px;
}

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

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

.top-bar-overlay {
  background-color: var(--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;
}

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

.brix---icon-success-message-big {
  width: 60px;
  margin-bottom: 10px;
}

.bold-text-2 {
  color: #0f171b;
  font-weight: 600;
}

.text-area {
  color: var(--black);
  background-color: #fff;
  border: 0 solid #000;
  border-bottom: 2px solid #eee;
  min-height: 180px;
  padding: 0 0 16px;
  font-size: 28px;
  line-height: 40px;
  transition: box-shadow .3s, color .3s, border-color .3s;
}

.text-area:focus {
  border-color: #4a3aff #4a3aff var(--blue);
  color: var(--black);
}

.text-area::placeholder {
  color: #00000040;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}

.button-2 {
  background-color: #2d3748;
  border-radius: 4px;
  padding: .7rem 2rem;
  transition: all .3s;
}

.button-2:hover {
  opacity: 1;
  background-color: #202835;
}

.button-2.larger {
  padding: .8rem 2.1rem;
}

.mg-bottom-40px {
  margin-bottom: 40px;
}

.input {
  color: var(--black);
  background-color: #fff;
  border: 0 solid #000;
  border-bottom: 2px solid #eee;
  min-height: 84px;
  margin-bottom: 0;
  padding: 0 0 16px;
  font-size: 28px;
  line-height: 40px;
  transition: color .3s, border-color .3s;
}

.input:focus {
  border-color: #4a3aff #4a3aff var(--blue);
  color: var(--black);
}

.input::placeholder {
  color: #00000040;
  font-size: 28px;
  font-weight: 600;
}

.color-neutral-100 {
  color: #fff;
}

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

.icon-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #fafafa;
  align-items: center;
  padding: 10px;
  font-size: .95rem;
  text-decoration: none;
  display: flex;
}

.icon-link.black {
  filter: invert();
}

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

.two-button-flex {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.filter {
  -webkit-backdrop-filter: grayscale(15%) contrast(95%);
  backdrop-filter: grayscale(15%) contrast(95%);
  position: absolute;
  inset: 0%;
}

.service {
  aspect-ratio: 5 / 6;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-content-wrapper {
  z-index: 2;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 2.2rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-white-2 {
  color: #fafafa;
}

.overlay-2 {
  background-color: var(--black);
  background-image: linear-gradient(180deg, transparent, var(--black));
  opacity: .2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.overlay-2.darker {
  opacity: 1;
  background-color: #00000040;
  background-image: linear-gradient(#0000, #0009);
}

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

.image-8 {
  height: 36px;
}

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

.text-block {
  color: var(--black);
  font-size: .95rem;
  font-weight: 500;
}

.dropdown-toggle {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  font-size: .9rem;
}

.icon {
  font-size: .7rem;
}

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

.dropdown-list.w--open {
  background-color: var(--white);
  border: 1px solid #00000014;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.dropdown-link {
  font-size: .9rem;
}

.dropdown-link.w--current {
  color: var(--blue);
}

.max-width-750 {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle-primary-2 {
  background-color: var(--black);
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  padding: .5rem 1rem;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  display: inline-block;
}

.subtitle-primary-2.white {
  color: #fff;
  background-color: #ffffff1a;
}

.client-wrapper-3 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--primary-light);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 40px;
  display: flex;
}

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

.masonry__grid-person-2 {
  color: #0f171b;
  font-size: .95rem;
  font-weight: 600;
  line-height: 21px;
}

.masonry__grid-quote-2 {
  color: #0f171b;
  text-align: center;
  border-left-style: none;
  border-left-width: 0;
  margin-top: 18px;
  margin-bottom: 20px;
  padding: 0;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 28px;
}

.masonry__grid-quote-2.no-margin-bottom {
  margin-bottom: 0;
}

.span-blue {
  color: var(--blue);
}

.features-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4rem;
  display: grid;
}

.feature-item {
  border-top: 1px solid #0000001a;
  padding-top: 24px;
}

.text-large {
  font-size: 19px;
}

.about-grid {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  max-width: 1000px;
}

.div-block-21 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.slider {
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  width: 100%;
}

.mask-2 {
  aspect-ratio: 3 / 2;
  width: 100%;
}

.slide-2 {
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  width: 100%;
  padding-top: 33%;
}

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

.div-block-23 {
  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%;
}

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

.referenssit-item.landscape {
  aspect-ratio: 5 / 4;
  border-radius: 6px;
}

.referenssit-item.square {
  aspect-ratio: 1;
  background-color: #0f171b;
}

.text-white-3 {
  color: #fff;
}

.button-3 {
  background-color: #118cd5;
  border-radius: 100px;
  padding: .7rem 2rem;
  transition: all .3s;
}

.button-3:hover {
  opacity: 1;
  background-color: #0874b4;
}

.overlay-3 {
  opacity: .5;
  background-color: #0f171b;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

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

.background-video {
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  width: 100%;
}

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

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

.code-embed-4 {
  color: var(--blue-light);
  width: 60px;
  height: 60px;
}

.divider {
  background-color: #00000026;
  width: 32px;
  height: 1.5px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.div-block-27 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-box-row {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  display: flex;
}

.pricing-box-row.monthly-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-box {
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 42px 40px;
  font-size: 16px;
  font-weight: 300;
  box-shadow: 0 4px 20px #00000014;
}

.price {
  color: var(--black);
  font-size: 55px;
  font-weight: 700;
  line-height: 55px;
  position: relative;
}

.div-block-28 {
  margin-bottom: 0;
}

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

.pricing-features-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  margin-top: 3rem;
  display: flex;
}

.pricing-description {
  margin-top: 1rem;
  font-size: 15px;
  line-height: 1.5em;
}

.price-flex {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: flex-end;
  margin-top: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.pricing-h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 22px;
  line-height: 1.2;
}

.code-embed-5 {
  margin-top: 2rem;
}

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

.arrow-link {
  align-items: center;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.arrow-icon {
  width: 14px;
  margin-left: 8px;
}

.h3-wrap {
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.contact-image:where(.w-variant-95873075-45b3-5af4-1b4d-706f2bb3b303) {
  background-color: var(--light-blue);
  filter: brightness(130%) saturate(110%) contrast(80%);
  object-fit: contain;
  object-position: 50% 100%;
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.div-block-30:where(.w-variant-95873075-45b3-5af4-1b4d-706f2bb3b303) {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: wrap;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

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

  .grid-2-columns.contact-v13 {
    grid-column-gap: 80px;
    grid-template-columns: 1fr 1.2fr;
  }

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

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

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

  h2 {
    font-size: 38px;
  }

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

  .grid-2-columns.contact-v13 {
    grid-row-gap: 80px;
    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;
  }

  .service {
    aspect-ratio: 1;
  }

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

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

  .referenssit-item, .referenssit-item.landscape {
    aspect-ratio: 1;
  }

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

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

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

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

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

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

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

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

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

  .text-area {
    min-height: 150px;
    font-size: 20px;
    line-height: 34px;
  }

  .text-area::placeholder {
    font-size: 22px;
    line-height: 34px;
  }

  .mg-bottom-40px {
    margin-bottom: 24px;
  }

  .input {
    min-height: 74px;
    padding-bottom: 16px;
    font-size: 20px;
    line-height: 34px;
  }

  .input::placeholder {
    font-size: 22px;
  }

  .form-grid {
    grid-row-gap: 38px;
    grid-template-columns: 1fr;
  }

  .service {
    aspect-ratio: 3 / 2;
  }

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

  .referenssit-item, .referenssit-item.landscape, .referenssit-item.square {
    aspect-ratio: 3 / 2;
  }

  .asiakkaat-grid, .div-block-27, .pricing-box-row.monthly-row {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-box {
    width: 100%;
    min-height: auto;
    padding-bottom: 40px;
    padding-left: 5%;
    padding-right: 5%;
    font-size: 14px;
  }
}

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

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

  .hero-section {
    height: 105vh;
  }

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

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

  .link-2 {
    font-size: .9rem;
  }

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

  .grid-2-columns.contact-v13 {
    grid-row-gap: 50px;
  }

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

  .div-block-16 {
    grid-column-gap: 1.3rem;
    grid-row-gap: 1.3rem;
  }

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

  .text-area {
    border-bottom-width: 1px;
    min-height: 130px;
    font-size: 16px;
    line-height: 18px;
  }

  .text-area::placeholder {
    font-size: 16px;
    line-height: 18px;
  }

  .input {
    border-bottom-width: 1px;
    min-height: 58px;
    font-size: 16px;
    line-height: 18px;
  }

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

  .two-button-flex {
    flex-flow: column;
  }

  .service {
    aspect-ratio: 3 / 4;
  }

  .service-content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

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

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

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

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

  .div-block-21 {
    grid-column-gap: 1.3rem;
    grid-row-gap: 1.3rem;
    justify-content: flex-start;
  }

  .referenssit-item {
    aspect-ratio: 2 / 3;
  }

  .referenssit-item.landscape, .referenssit-item.square {
    aspect-ratio: 1;
  }

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

  .div-block-27, .pricing-box-row.monthly-row {
    grid-template-columns: 1fr;
  }

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

  .heading:where(.w-variant-36780b21-a5c3-6e44-32b5-f660b9cf6733) {
    font-size: 36px;
  }

  .heading-2:where(.w-variant-36780b21-a5c3-6e44-32b5-f660b9cf6733) {
    font-size: 32px;
  }
}

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

#Sahkoposti.w-node-_1c73fdec-8e5c-643e-9aba-d03253477d2e-6f826e8f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1c73fdec-8e5c-643e-9aba-d03253477d32-6f826e8f {
  justify-self: start;
}

#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-80edc031, #w-node-_9db4d17c-981f-806b-8bb8-2b1f01fad996-80edc031, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9423-80edc03e, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa7-80edc03e, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed4-80edc03e, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aee8-80edc03e, #w-node-e9944e6a-6738-baab-b2cc-8633e850fa4c-80edc03e, #w-node-e9944e6a-6738-baab-b2cc-8633e850fa60-80edc03e, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9423-80edc03f, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa7-80edc03f, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed4-80edc03f, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aee8-80edc03f, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9423-80edc040, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa7-80edc040, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9423-80edc041, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa7-80edc041, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed4-80edc041, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aee8-80edc041, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9423-80edc042, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa7-80edc042, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed4-80edc042, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aee8-80edc042, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9423-80edc043, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa7-80edc043, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed4-80edc043, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aee8-80edc043 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_8e764871-65bb-6a23-8f61-29c6d3f6c403-d3f6c402, #w-node-_8e764871-65bb-6a23-8f61-29c6d3f6c40c-d3f6c402, #w-node-_8e764871-65bb-6a23-8f61-29c6d3f6c415-d3f6c402, #w-node-_8e764871-65bb-6a23-8f61-29c6d3f6c41e-d3f6c402, #w-node-_8e764871-65bb-6a23-8f61-29c6d3f6c427-d3f6c402, #w-node-_8e764871-65bb-6a23-8f61-29c6d3f6c430-d3f6c402 {
    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-d5c73a32-1bce-23f6-cccf-f75b6167bfee-80edc030, #w-node-d5c73a32-1bce-23f6-cccf-f75b6167bfee-80edc031, #w-node-_9db4d17c-981f-806b-8bb8-2b1f01fad994-80edc031, #w-node-d5c73a32-1bce-23f6-cccf-f75b6167bfee-80edc035, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9421-80edc03e, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa5-80edc03e, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed2-80edc03e, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aefc-80edc03e, #w-node-e9944e6a-6738-baab-b2cc-8633e850fa4a-80edc03e, #w-node-e9944e6a-6738-baab-b2cc-8633e850fa7d-80edc03e, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9421-80edc03f, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa5-80edc03f, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed2-80edc03f, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aefc-80edc03f, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9421-80edc040, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa5-80edc040, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9421-80edc041, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa5-80edc041, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed2-80edc041, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aefc-80edc041, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9421-80edc042, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa5-80edc042, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed2-80edc042, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aefc-80edc042, #w-node-_30310310-2bc3-eaa4-4d8e-8e2febdc9421-80edc043, #w-node-_65a8ac2e-a33f-54ed-c589-cabbc77d4fa5-80edc043, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aed2-80edc043, #w-node-_1f04246e-2aa4-496c-7891-e81cae20aefc-80edc043 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #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-_1c73fdec-8e5c-643e-9aba-d03253477d30-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;
  }
}


