:root {
  --red: #fe0000;
  --black: #0f1316;
  --outline: #1a242c;
  --dark-two: #323230;
  --beige: #faf5f1;
  --royal-blue: #455ce9;
  --slate-grey: #617481;
  --azure: #cfe0e4;
  --dim-grey: #627275;
  --linear-two: #12171b;
  --black-2: #171f25;
  --text-shaded: #99a4ac;
  --white-smoke: #ebf1f2;
}

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

body {
  color: #333;
  font-family: EB Garamond, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  letter-spacing: -.01rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  letter-spacing: -.01rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  color: #ffffffd9;
  margin-bottom: 0;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

li {
  margin-bottom: .25rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.text-color-black {
  color: #000;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.button {
  border: 1px solid var(--red);
  background-color: var(--red);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: .875rem;
  font-weight: 400;
  transition: opacity .2s;
  display: flex;
}

.button:hover {
  opacity: .8;
}

.button.w--current {
  border-color: var(--black);
  background-color: var(--outline);
  box-shadow: inset 0 0 0 1px var(--black);
  color: #fff;
  cursor: default;
}

.heading-medium {
  color: var(--dark-two);
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.35;
}

.heading-medium.smallers {
  font-size: 2.3rem;
}

.text-size-large {
  color: var(--dark-two);
  font-size: 1.75rem;
}

.text-size-regular {
  color: var(--dark-two);
  font-size: 1.25rem;
  line-height: 1.65;
}

.text-size-regular.red {
  color: var(--red);
}

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

.heading-xlarge {
  color: var(--dark-two);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.25;
}

.form-input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.page-wrapper {
  background-color: #f2ede4;
}

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

.text-size-tiny.text-style-allcaps {
  color: var(--black);
}

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

.page-padding {
  width: 100%;
  max-width: 93vw;
  padding-left: 7vw;
  padding-right: 7vw;
}

.form-field-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border-bottom: 1px solid var(--outline);
  flex-direction: column;
  padding: 4rem 0 0;
  display: flex;
}

.form-message-error {
  background-color: #aa1b1b;
  margin-top: .75rem;
  padding: 1rem 1.5rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-xsmall {
  margin: .5rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2.5rem;
}

.margin-large {
  margin: 3.25rem;
}

.text-style-allcaps {
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

.heading-small {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.page-content {
  color: #fff;
  justify-content: space-between;
  display: flex;
}

.page-sections {
  z-index: 10;
  background-color: var(--beige);
  color: #fff;
  flex-direction: column;
  flex: 1;
  padding-left: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.navbar {
  background-color: var(--beige);
  position: absolute;
  inset: 0% 0% auto;
}

.nav-content {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  height: 5rem;
  padding-right: 0;
  display: grid;
}

.nav-menu {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: flex-end;
  margin-right: -1.75rem;
  display: flex;
}

.nav-link {
  color: var(--dark-two);
  justify-content: center;
  align-items: center;
  padding: 1rem 1.75rem;
  font-size: .95rem;
  display: flex;
}

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

.brand {
  color: #fff;
  text-transform: none;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding-top: 0;
  padding-right: 0;
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
}

.brand.w--current {
  width: auto;
  padding-top: 0;
  padding-right: .1rem;
}

.underline-link {
  align-items: center;
  text-decoration: none;
  display: flex;
}

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

.sidebar-menu-item {
  align-items: center;
  margin-left: -2.6px;
  padding: .75rem 2rem .75rem .5rem;
  font-size: 3rem;
  font-weight: 500;
  display: flex;
  position: relative;
}

.menu-link-background {
  background-color: var(--royal-blue);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.mega-menu-trigger {
  z-index: 0;
  width: 7vw;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.service-item {
  grid-column-gap: 4.75rem;
  grid-row-gap: 4.75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 110vh;
  margin-bottom: 0;
  display: grid;
}

.image-base {
  width: 100%;
  height: 79vh;
  max-height: 64rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
  position: sticky;
  top: 10.5vh;
  overflow: hidden;
}

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

.project-card {
  z-index: 20;
  color: #fff;
  width: 100%;
  height: 50vw;
  min-height: 100%;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.project-item {
  position: relative;
}

.faq-item {
  border-bottom: 1px solid var(--outline);
}

.faq-top {
  z-index: 1;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.faq-tab-link {
  background-color: #ddd0;
  padding: 0;
}

.faq-tab-link.w--current {
  background-color: #c8c8c800;
}

.work-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  color: #fff;
  flex-direction: column;
  height: 26vw;
  padding: 2rem;
  display: flex;
  position: relative;
}

.section-footer {
  background-color: var(--beige);
  width: 100%;
  overflow: hidden;
}

.footer-component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  min-height: 85vh;
  padding-top: 6rem;
  display: flex;
}

.social-link {
  box-shadow: inset 0 0 0 1px var(--outline);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  font-size: .6rem;
  transition: box-shadow .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.social-link:hover {
  box-shadow: inset 0 0 0 2px var(--slate-grey);
}

.social-link-list {
  grid-column-gap: .75rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: none;
}

.section-about-hero {
  border-bottom: 1px none var(--outline);
  margin-bottom: 4rem;
}

.about-hero-component {
  grid-column-gap: 4rem;
  grid-row-gap: 0rem;
  flex-direction: row;
  grid-template-rows: 1fr auto;
  grid-template-columns: 50% 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  min-height: 75vh;
  padding-top: 10rem;
  padding-bottom: 0;
  display: grid;
}

.about-hero-right {
  flex-direction: column;
  justify-content: center;
  max-width: 30rem;
  min-height: 100vh;
  margin-top: -10rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  display: flex;
}

.about-image {
  flex-flow: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-bottom: -4.5rem;
  padding: 4rem 2rem;
  display: flex;
  position: sticky;
  bottom: 0;
  overflow: hidden;
}

.about-history {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  border-top: 1px none var(--azure);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 30rem;
  min-height: 110vh;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20rem;
  display: flex;
}

.about-hero-intro {
  margin-left: auto;
  margin-right: auto;
}

.portrait-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.title-stacked {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.history-info {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  display: flex;
}

.footer-bottom {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-top: 1px solid var(--dim-grey);
  color: #ffffffb3;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: .875rem;
  font-weight: 300;
  display: grid;
}

.page-sections-wrapper {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.footer-email-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  display: flex;
}

.services-list-item {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  flex-direction: column;
  min-height: 100%;
  margin-top: -1px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 0;
  display: flex;
}

.portrait {
  object-fit: contain;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  transform: scale(1.02);
}

.text-block {
  color: var(--dark-two);
}

.text-block-5 {
  color: var(--dim-grey);
}

.heading {
  color: #323230;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
}

.footer-socials {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-socials-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--dark-two);
  align-items: center;
  transition: all .3s;
  display: flex;
}

.footer-socials-item:hover {
  opacity: .5;
}

.image {
  width: 13px;
}

.text-block-10 {
  color: var(--black);
  margin-top: 1rem;
}

.primary-link {
  color: var(--red);
  transition: opacity .3s;
}

.primary-link:hover {
  opacity: .5;
}

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

.input {
  color: #1a1c1e;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1.75px solid #e4e4e4;
  min-height: 50px;
  margin-bottom: 0;
  padding: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  transition: color .3s, border-color .3s;
}

.input:focus {
  border-color: #4a3aff #4a3aff var(--red);
  color: #1a1c1e;
}

.input::placeholder {
  color: #00000040;
  font-size: 1rem;
  font-weight: 500;
}

.text-area {
  color: #1a1c1e;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1.75px solid #e4e4e4;
  min-height: 120px;
  padding: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  transition: box-shadow .3s, color .3s, border-color .3s;
}

.text-area:focus {
  border-color: #4a3aff #4a3aff var(--red);
  color: #1a1c1e;
}

.text-area::placeholder {
  color: #00000040;
  font-size: 1rem;
  font-weight: 500;
}

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

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

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

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

.form-block-2 {
  width: 100%;
  max-width: 600px;
}

@media screen and (min-width: 1440px) {
  .form-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

@media screen and (max-width: 991px) {
  .heading-medium {
    font-size: 2.25rem;
  }

  .heading-xlarge {
    font-size: 3.5rem;
  }

  .page-padding {
    max-width: none;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

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

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

  .brand {
    padding-left: 0;
  }

  .mega-menu-trigger {
    display: block;
  }

  .service-item {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 6rem;
  }

  .image-base {
    width: 70%;
    height: 70vw;
  }

  .work-card {
    min-width: 50vw;
    height: 50vw;
  }

  .section-footer {
    position: relative;
  }

  .footer-component {
    min-height: 75vh;
  }

  .section-about-hero {
    margin-bottom: 0;
  }

  .about-hero-component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-right {
    max-width: 35rem;
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
  }

  .about-image {
    height: auto;
    margin-bottom: 0;
    position: relative;
  }

  .about-history {
    min-height: auto;
    padding-bottom: 12rem;
  }

  .footer-bottom {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column-reverse;
    grid-template-columns: .55fr;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4rem;
    display: flex;
  }

  .footer-email-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }

  .heading-medium {
    font-size: 2rem;
  }

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

  .heading-xlarge {
    font-size: 2.875rem;
  }

  .page-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

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

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

  .heading-small {
    font-size: 1.25rem;
  }

  .nav-menu {
    flex-flow: wrap;
  }

  .sidebar-menu-item {
    padding-right: 0;
    font-size: 2rem;
  }

  .service-item {
    padding-bottom: 6rem;
  }

  .image-base {
    width: 100%;
    height: 110vw;
  }

  .project-card {
    height: 120vw;
    padding: 3rem 2.5rem;
  }

  .section-footer {
    position: relative;
  }

  .about-hero-intro {
    padding-bottom: 2rem;
  }

  .title-stacked {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .history-info {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .footer-bottom {
    order: 1;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
  }

  .footer-email-wrapper {
    grid-column-gap: 1.75rem;
    grid-row-gap: 1.75rem;
    order: -1;
    padding-top: 3rem;
    padding-bottom: 0;
  }

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

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

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

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

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

@media screen and (max-width: 479px) {
  .heading-xlarge {
    font-size: 2.75rem;
  }

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

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

  .nav-content {
    grid-template-columns: 1fr 2fr;
    align-items: baseline;
  }

  .nav-menu {
    margin-right: 0;
  }

  .nav-link {
    padding: 1.5rem .5rem .5rem;
    font-size: .9rem;
  }

  .sidebar-menu-item {
    padding-right: 0;
  }

  .service-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-bottom: 0;
  }

  .project-card {
    padding: 2rem 1.5rem;
  }

  .work-card {
    min-width: 85vw;
    height: 85vw;
  }

  .section-footer {
    position: sticky;
  }

  .footer-component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    min-height: 65vh;
  }

  .social-link-list {
    grid-column-gap: .75rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .about-hero-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: 1fr;
    padding-top: 6rem;
  }

  .about-hero-component.hero-paddin {
    padding-top: 10rem;
  }

  .about-image {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-history, .about-hero-intro {
    padding-bottom: 0;
  }

  .title-stacked {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .footer-bottom {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    font-size: .875rem;
  }

  .footer-email-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .services-list-item {
    grid-column-gap: 1.75rem;
    grid-row-gap: 1.75rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer-socials {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

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

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

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

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

#w-node-_92df7f08-4550-2ccb-f118-0d835670ec3d-f9029ad0 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_92df7f08-4550-2ccb-f118-0d835670ec40-f9029ad0 {
  align-self: start;
}

#scroll.w-node-_92df7f08-4550-2ccb-f118-0d835670ec49-f9029ad0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1880b8c0-ee9f-15b3-1902-62f06f33afc0-f9029ad0 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_1880b8c0-ee9f-15b3-1902-62f06f33afcc-f9029ad0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbce4e83-cf33-47e6-4d5c-76853d34bf07-f9029ad0 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-bbce4e83-cf33-47e6-4d5c-76853d34bf0a-f9029ad0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6dd24e2c-c095-c3b8-69b6-e04324208f1b-f9029ad0 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_6dd24e2c-c095-c3b8-69b6-e04324208f1e-f9029ad0, #w-node-_1df5e09f-b9bb-33b6-1d59-28b9384873fe-2329c88f, #Sahkoposti.w-node-_78536492-762b-6602-c5e1-8e6c4ce66f48-2329c88f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_78536492-762b-6602-c5e1-8e6c4ce66f4c-2329c88f, #w-node-d784cfd4-2d84-c7e0-90ef-0ef604285182-2329c88f {
  justify-self: start;
}

#w-node-a95d2cc1-eb1b-582b-6a77-ab7a9b5dcd0f-2329c88f, #w-node-c0e0c310-bb95-be16-11b8-4df399a64339-99a64332 {
  justify-self: end;
}

#w-node-_92df7f08-4550-2ccb-f118-0d835670ec3d-27da4459 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_92df7f08-4550-2ccb-f118-0d835670ec40-27da4459 {
  align-self: start;
}

#scroll.w-node-_92df7f08-4550-2ccb-f118-0d835670ec49-27da4459 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1880b8c0-ee9f-15b3-1902-62f06f33afc0-27da4459 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_1880b8c0-ee9f-15b3-1902-62f06f33afcc-27da4459 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbce4e83-cf33-47e6-4d5c-76853d34bf07-27da4459 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-bbce4e83-cf33-47e6-4d5c-76853d34bf0a-27da4459 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6dd24e2c-c095-c3b8-69b6-e04324208f1b-27da4459 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_6dd24e2c-c095-c3b8-69b6-e04324208f1e-27da4459, #Email.w-node-e0132daf-af30-d63a-cce6-6fb9291f4563-924b39d7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0132daf-af30-d63a-cce6-6fb9291f4567-924b39d7, #w-node-fbadcc0d-577a-5077-a1eb-1bfb924b39ef-924b39d7 {
  justify-self: start;
}

#w-node-d5fa76c7-c16c-7a95-f1b8-c24abae7d39d-924b39d7, #w-node-_0eb4b262-d21f-ab76-401a-2875a914272a-a9142722 {
  justify-self: end;
}

#w-node-_92df7f08-4550-2ccb-f118-0d835670ec3d-0f8764a8 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_92df7f08-4550-2ccb-f118-0d835670ec40-0f8764a8 {
  align-self: start;
}

#scroll.w-node-_92df7f08-4550-2ccb-f118-0d835670ec49-0f8764a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1880b8c0-ee9f-15b3-1902-62f06f33afc0-0f8764a8 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_1880b8c0-ee9f-15b3-1902-62f06f33afcc-0f8764a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bbce4e83-cf33-47e6-4d5c-76853d34bf07-0f8764a8 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-bbce4e83-cf33-47e6-4d5c-76853d34bf0a-0f8764a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6dd24e2c-c095-c3b8-69b6-e04324208f1b-0f8764a8 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_6dd24e2c-c095-c3b8-69b6-e04324208f1e-0f8764a8, #Sahkoposti-ja.w-node-_73b85d3a-9ec1-aef3-7395-4f3bb5c2c3f0-3317a890 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_73b85d3a-9ec1-aef3-7395-4f3bb5c2c3f4-3317a890, #w-node-_027b1699-653f-af2f-76c4-cfb53317a8a8-3317a890 {
  justify-self: start;
}

#w-node-_8217e44d-02f1-7c18-1286-9e7030fc73de-3317a890, #w-node-_1181b3ba-cc8f-bb8d-5c2f-dc2402531b8c-02531b84 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_92df7f08-4550-2ccb-f118-0d835670ec3d-f9029ad0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_92df7f08-4550-2ccb-f118-0d835670ec40-f9029ad0 {
    order: -9999;
  }

  #w-node-_1880b8c0-ee9f-15b3-1902-62f06f33afc0-f9029ad0, #w-node-bbce4e83-cf33-47e6-4d5c-76853d34bf07-f9029ad0, #w-node-_6dd24e2c-c095-c3b8-69b6-e04324208f1b-f9029ad0, #w-node-_92df7f08-4550-2ccb-f118-0d835670ec3d-27da4459 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_92df7f08-4550-2ccb-f118-0d835670ec40-27da4459 {
    order: -9999;
  }

  #w-node-_1880b8c0-ee9f-15b3-1902-62f06f33afc0-27da4459, #w-node-bbce4e83-cf33-47e6-4d5c-76853d34bf07-27da4459, #w-node-_6dd24e2c-c095-c3b8-69b6-e04324208f1b-27da4459, #w-node-_92df7f08-4550-2ccb-f118-0d835670ec3d-0f8764a8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_92df7f08-4550-2ccb-f118-0d835670ec40-0f8764a8 {
    order: -9999;
  }

  #w-node-_1880b8c0-ee9f-15b3-1902-62f06f33afc0-0f8764a8, #w-node-bbce4e83-cf33-47e6-4d5c-76853d34bf07-0f8764a8, #w-node-_6dd24e2c-c095-c3b8-69b6-e04324208f1b-0f8764a8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_78536492-762b-6602-c5e1-8e6c4ce66f4a-2329c88f {
    grid-column: span 1 / span 1;
  }

  #w-node-d784cfd4-2d84-c7e0-90ef-0ef604285182-2329c88f {
    justify-self: center;
  }

  #w-node-e0132daf-af30-d63a-cce6-6fb9291f4565-924b39d7 {
    grid-column: span 1 / span 1;
  }

  #w-node-fbadcc0d-577a-5077-a1eb-1bfb924b39ef-924b39d7 {
    justify-self: center;
  }

  #w-node-_73b85d3a-9ec1-aef3-7395-4f3bb5c2c3f2-3317a890 {
    grid-column: span 1 / span 1;
  }

  #w-node-_027b1699-653f-af2f-76c4-cfb53317a8a8-3317a890 {
    justify-self: center;
  }
}


