@font-face {
  font-family: Opensauceone;
  src: url('../fonts/OpenSauceOne-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensauceone;
  src: url('../fonts/OpenSauceOne-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensauceone;
  src: url('../fonts/OpenSauceOne-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensauceone;
  src: url('../fonts/OpenSauceOne-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0c0c0c;
  --link-hover: #e5e5e5;
  --primary: #0c0c0c;
  --white: #f9f9f9;
  --hover: #1b1b1b;
  --paragraph-dark: #545454;
}

.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: #0c0c0cd9;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}

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

h2 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3em;
}

h3 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5em;
}

h4 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensauceone, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4em;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Opensauceone, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

p {
  margin-bottom: .75rem;
  line-height: 1.6em;
}

a {
  color: #000;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

a:hover {
  opacity: .7;
}

li {
  margin-bottom: .5rem;
  font-size: 1rem;
}

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

.section-hero {
  color: #fff;
  align-items: center;
  height: 110vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-hero.small {
  justify-content: flex-start;
  align-items: flex-end;
  height: 75vh;
  padding-bottom: 160px;
}

.nav {
  color: #fff;
  background-color: #ddd0;
  flex-direction: row;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
}

.container.container-nav {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.container.container-center.container-full-width {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.container.container-center.gap-5rem {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
}

.container.gap-6rem {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
}

.nav-brand {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom-style: none;
  font-size: 1.2em;
  font-weight: 500;
}

.nav-menu-button {
  padding: 0;
  display: block;
}

.nav-menu {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.nav-link {
  color: #fff;
  cursor: pointer;
  border-bottom-style: none;
  padding: 0;
  font-size: .87em;
  line-height: 1.2em;
}

.nav-link:hover {
  opacity: 1;
  color: var(--link-hover);
}

.nav-link.w--current {
  color: #fff;
}

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

.title-wrapper {
  z-index: 10;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  max-width: 600px;
  display: flex;
  position: relative;
}

.button-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: center;
  display: flex;
}

.button {
  border: 1px solid var(--black);
  background-color: var(--black);
  opacity: 1;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s linear;
}

.button:hover {
  opacity: 1;
  color: #000;
  background-color: #fff;
  box-shadow: 0 1px 50px #ffffff1a;
}

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

.button.primary:hover {
  color: #fff;
  background-color: #e24400;
}

.button.white {
  background-color: var(--white);
  color: var(--black);
  font-weight: 600;
}

.button.white.small {
  padding: .75rem 1.25rem;
}

.button-text {
  color: #fff;
  cursor: pointer;
  border-bottom-style: none;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s linear;
}

.hero-overlay-shadow {
  z-index: 1;
  background-image: linear-gradient(#0c0c0c80, #0c0c0ccc);
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-overlay-shadow.light {
  background-image: linear-gradient(#0f0f0f4d, #0f0f0f73);
}

.hero-overlay-stars {
  z-index: 1;
  opacity: .1;
  background-image: url('../images/musta-polykuva.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  inset: 0%;
}

.hero-overlay-clouds {
  z-index: 1;
  opacity: .05;
  background-image: url('../images/abstrakti-valkoinen-muoto.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

._2-1-grid {
  grid-column-gap: 75px;
  grid-row-gap: 150px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: left;
  flex-direction: column;
  display: flex;
}

.night-sky {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: #fff;
  background-image: linear-gradient(#0f0f0f99, #0f0f0f99), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  display: flex;
  position: relative;
  box-shadow: 0 16px 50px #273a711a;
}

.night-sky._2, .night-sky._1, .night-sky._3 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.h2-center {
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
  display: block;
}

.content-center {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-card-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
  inset: 0%;
}

.grid-item-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.grid-item-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  text-align: left;
  justify-content: space-between;
  display: flex;
}

.grid-item-wrapper.no-margin {
  margin-bottom: 0;
}

.grid-item-image-wrapper {
  width: 100%;
}

.grid-item-content {
  text-align: left;
  align-items: center;
  width: 100%;
  display: flex;
}

.illustration-fullwidth {
  background-image: linear-gradient(50deg, #96506f, #273a71 73%);
  height: 100vh;
  display: none;
  position: relative;
  overflow: hidden;
}

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

.grid-card-image-wrapper {
  object-fit: fill;
  margin-bottom: 0;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

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

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

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

.contact {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

._3-1-grid {
  grid-column-gap: 42px;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 0;
}

.grid-card-image-overlay {
  opacity: 1;
  background-image: url('../images/musta-polykuva.jpg'), linear-gradient(26deg, #273a7180 49%, #96506f80);
  background-position: 50%, 0 0;
  background-size: auto, auto;
  display: none;
  position: absolute;
  inset: 0%;
}

.section-background-image {
  background-image: linear-gradient(#0f0f0fa3, #0f0f0fa3), url('../images/areena-tyo-tiimi.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: static;
  inset: 0%;
}

.title {
  text-align: center;
}

.nav-logo {
  width: 160px;
}

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

.hero-icons {
  z-index: 10;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: relative;
}

.icons {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  display: flex;
}

.social-icon {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--white);
  border-bottom-style: none;
  align-items: center;
  font-size: 1rem;
  display: flex;
}

.social-icon:hover {
  transform: scale(1.1);
}

.subheader-text {
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 600;
}

.icon-large {
  object-fit: contain;
  width: 32px;
  max-width: 32px;
  height: 32px;
  max-height: 32px;
}

.icon-large.larger {
  max-width: 2.5rem;
}

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

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

.section.section-heading {
  padding-bottom: 0;
}

.section.section-full {
  color: #fff;
  height: 90vh;
  padding-top: 0;
  padding-bottom: 0;
}

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

.section.legal {
  padding-top: 12rem;
}

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

.hero-image {
  width: 20px;
}

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

.submit-button {
  background-color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

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

.submit-button.full-width {
  width: 100%;
}

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

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

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

.white-link {
  color: var(--white);
  border-bottom-style: none;
  text-decoration: none;
}

.white-link.bold, .white-link.bold.w--current {
  font-weight: 500;
}

.field-label {
  margin-bottom: 8px;
  font-size: .9rem;
  font-weight: 500;
}

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

.text-field {
  color: #000;
  background-color: #fff;
  border: 1px #000;
  border-bottom: 1px solid #eee;
}

.text-field:hover {
  border-bottom-color: var(--black);
}

.text-field:focus {
  border-color: var(--black);
}

.text-field.is-area {
  color: #000;
  height: 150px;
}

.space {
  height: 16px;
}

.space._6rem {
  height: 6rem;
}

.space._3rem {
  height: 3rem;
}

.footer-logo {
  width: 200px;
}

.h3-small {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.4em;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 95vh;
  max-height: 100%;
  padding-top: 60px;
  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;
}

.text-block {
  margin-top: 10px;
  font-size: 1rem;
}

.utility-nav-background {
  background-color: #000;
  height: 86px;
  position: fixed;
  inset: 0% 0% auto;
}

.h1-small {
  font-size: 3rem;
}

.form-wrap {
  background-color: #fff;
  border-radius: 6px;
  width: 50%;
  margin-top: 0;
  padding: 30px;
  box-shadow: 0 1px 14px 4px #2a64660f;
}

.form-wrap.full-width {
  width: 100%;
  box-shadow: 0 1px 14px 4px #5f5f5f0f;
}

.service-rich-text h2 {
  color: var(--black);
  margin-bottom: .75rem;
  font-size: 1.75rem;
}

.service-rich-text h3 {
  color: var(--black);
  margin-bottom: .75rem;
  font-size: 1.5rem;
}

.service-rich-text strong {
  color: var(--black);
}

.main-service {
  flex: 0 auto;
}

.success-msg {
  color: #fff;
  text-align: center;
  background-color: #10a76b;
  border-radius: 4px;
  padding: 65px 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.service-wrapper-default {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

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

.contact-title {
  color: var(--black);
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4em;
}

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

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

.legal-rich-text-block h1 {
  margin-bottom: .75rem;
  font-size: 2.5rem;
}

.legal-rich-text-block h2 {
  margin-bottom: .75rem;
  font-size: 1.75rem;
}

.link-arrow-image {
  width: 18px;
}

.text-link-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: flex-end;
  line-height: 1em;
  display: flex;
}

.margin-bottom-1-5rem {
  margin-bottom: 1.5rem;
}

.div-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 850px;
  display: grid;
}

.font-height-1-75em {
  line-height: 1.75em;
}

.font-height-2-5em {
  line-height: 2.5em;
}

.products-grid {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1000px;
  display: grid;
}

.product-link-block {
  width: 100%;
  position: relative;
}

.footer-legal {
  font-size: .9rem;
}

.whatsapp-image {
  display: none;
}

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

.lightbox-link {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.content-center-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 45ch;
  display: flex;
}

.nav-link-2 {
  color: #fff;
  cursor: pointer;
  border-bottom-style: none;
  padding: 0;
  font-size: .9em;
  line-height: 1.2em;
}

.nav-link-2:hover {
  opacity: 1;
  color: #e5e5e5;
}

.nav-link-2.w--current {
  color: #fff;
}

.nav-link-2.w--current:hover {
  color: #e5e5e5;
}

.nav-2 {
  color: #fff;
  background-color: #ddd0;
  flex-direction: row;
  align-items: center;
  height: 107.203px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.hero-overlay-shadow-2 {
  z-index: 1;
  opacity: .75;
  background-image: linear-gradient(#0f0f0f80, #0f0f0f);
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-image-2 {
  width: 18px;
}

.nav-logo-2 {
  width: 200px;
}

.social-icon-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  border-bottom-style: none;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.tabs {
  width: 100%;
}

.slider-base {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-bottom: 5%;
  display: flex;
}

.load-bar-base {
  background-color: #fff3;
  max-width: 220px;
  height: 4px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.tab-image-2 {
  width: 34px;
  margin-right: 12px;
}

.tabs-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: absolute;
  inset: auto 0% 15%;
}

.hero {
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.slider-heading {
  z-index: 9;
  color: #fff;
  text-align: center;
  letter-spacing: -.03em;
  max-width: 640px;
  font-size: 3.5rem;
  line-height: 1.1;
  position: relative;
}

.tabs-content {
  overflow: visible;
}

.standard-tab {
  opacity: .7;
  color: #fffc;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  margin-right: 5px;
  padding-bottom: 20px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 13px;
  display: flex;
}

.standard-tab.w--current {
  opacity: 1;
  color: #fff;
  background-color: #0000;
  border-bottom: 2px solid #ffffff1a;
  position: relative;
}

.text-span {
  color: #fff9;
}

.slider-background {
  background-image: linear-gradient(#0c0c0c80, #0c0c0ccc), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  inset: 0%;
}

.slider-background.background-02 {
  background-image: linear-gradient(#0c0c0c80, #0c0c0ccc), url('../images/areena-nosturi-tyo.jpg');
}

.slider-background.background-03 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/areena-tyo-tiimi.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slider-background.background-03.filter {
  background-image: linear-gradient(#00000057, #00000057), url('../images/rakennus-auringonlasku-nosturi.jpg');
}

.slider-background._1 {
  background-image: linear-gradient(#0c0c0c80, #0c0c0ccc), url('../images/rakennus-nosturi-aurinko.jpg');
}

.slider-background._4 {
  background-image: linear-gradient(#0c0c0c80, #0c0c0ccc), url('../images/rakennus-tyomaa-pilvinen.jpg');
}

.slider-background._5 {
  background-image: linear-gradient(#0c0c0c80, #0c0c0ccc), url('../images/tyhja-koripalloareena.jpg');
}

.slider-background._6 {
  background-image: linear-gradient(#0c0c0c80, #0c0c0ccc), url('../images/ryhmakuva-sisalla-juhla.jpg');
}

.load-bar {
  background-color: #fff;
  width: 0%;
  height: 4px;
}

.link-medium {
  font-weight: 500;
}

.logo_component-slider {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 2200px;
  display: flex;
}

.logo-slider-img {
  object-fit: contain;
  width: 60px;
  height: 60px;
}

.logo-slider-img.longer {
  width: 120px;
}

.logo-carousel {
  margin-top: 3em;
  overflow: hidden;
}

.logo-carousel.splide {
  margin-top: 0;
}

.splide__track {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.splide__list {
  display: flex;
}

.splide__slide {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  object-fit: cover;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  padding-left: 3em;
  padding-right: 3em;
  display: flex;
}

.splide__slide.flex-horizontal {
  flex-flow: row;
}

.logo {
  opacity: .5;
  object-fit: contain;
  width: 72px;
  height: 72px;
}

.logo.small {
  width: 70px;
}

.logo.large {
  width: auto;
  height: 23px;
}

.logo.large.padding {
  padding-bottom: 3px;
}

.open-nav {
  z-index: 101;
  justify-content: flex-end;
  align-items: center;
  max-width: 90rem;
  height: 6rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 1.5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav__link {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--white);
  letter-spacing: .1rem;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff26;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 13px;
  font-weight: 500;
  transition: padding .2s cubic-bezier(.39, .575, .565, 1);
  display: flex;
}

.nav__link:hover {
  padding-left: 2rem;
}

.nav__link.last-one {
  border-bottom-style: none;
}

.brand {
  z-index: 102;
  position: relative;
}

.nav__content {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #0c0c0ce6;
  border-radius: .5rem;
  flex-flow: column;
  width: auto;
  min-width: 25rem;
  display: flex;
  overflow: auto;
}

.nav__main {
  border-top: 1px solid #fff3;
}

.language-link {
  color: #111;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 45px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
}

.language-link:hover {
  color: #2daeeb;
}

.icon-small {
  width: 1rem;
  height: 1rem;
  color: var(--black);
  object-fit: contain;
}

.language-toggle {
  border-radius: 4px;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-right: 45px;
  transition: all .2s;
  display: flex;
}

.top-bar {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 6rem;
  display: flex;
  position: relative;
}

.text-large {
  font-size: 1rem;
  line-height: 150%;
}

.text-large.c2 {
  color: #fff;
}

.nav-3 {
  z-index: 101;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 90rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.5rem 1.5rem;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.text-regular {
  font-size: .7rem;
  line-height: 150%;
}

.text-regular.c2-60 {
  color: #fffc;
}

.text-regular.hidden-phone.larger {
  font-size: 1.05rem;
  font-weight: 500;
}

.container-2 {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.brand__asset {
  object-fit: contain;
  height: 1.7rem;
}

.burger__icon {
  object-fit: contain;
  width: 1.5rem;
}

.navbar {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.close-nav {
  background-color: #fff;
  border-radius: 4rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
  display: flex;
}

.close-nav:hover {
  opacity: .8;
}

.nav-head__button {
  height: 2.5rem;
  color: var(--black);
  background-color: #fff;
  border-radius: 4rem;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: color .2s cubic-bezier(.39, .575, .565, 1), background-color .2s cubic-bezier(.39, .575, .565, 1);
  display: flex;
}

.nav-head__button:hover {
  background-color: #fffc;
}

.language-list {
  background-color: #d99f9f;
}

.language-list.w--open {
  background-color: #fff;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  min-width: 200px;
  padding: 8px 16px;
  box-shadow: 18px 18px 45px 19px #4f5e781a;
}

.nav__button {
  z-index: 200;
  background-color: var(--black);
  border-radius: 4rem;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  transition: background-color .2s cubic-bezier(.39, .575, .565, 1);
  display: flex;
  position: relative;
}

.nav__head {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

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

.flag {
  object-fit: cover;
  background-image: url('../images/union-jack-lippu.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  margin-right: 14px;
}

.flag.sweden {
  background-image: url('../images/ruotsin-lippu-kuva.jpg');
}

.flag.poland {
  background-image: url('../images/puolan-kansallislippu.jpg');
}

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

.nav-container {
  width: 100%;
  max-width: 90rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.logo-2 {
  height: 2.5rem;
}

.footer-bottom {
  border-bottom: 1px solid #fff3;
  justify-content: space-between;
  margin-top: 42px;
  display: flex;
}

.footer-06-grid {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  align-items: start;
}

.footer-link-wrapper {
  flex-wrap: wrap;
  max-width: 390px;
  display: flex;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  padding-right: 40px;
  display: flex;
}

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

.footer-06 {
  background-color: #080808;
  padding: 92px 3% 54px;
}

.secondary-link-dark {
  color: #ffffffbf;
  margin-right: 32px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.text-rights {
  color: #ffffffbf;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.social-link {
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 10px;
  display: flex;
}

.footer-column-flat {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
  display: flex;
}

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

.footer-link-large {
  color: #e5e5e5;
  letter-spacing: .01em;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.footer-link-large:hover {
  opacity: .5;
}

.social-wrap {
  display: flex;
}

.image-2 {
  height: 3rem;
}

.image-2.aaa {
  background-color: var(--black);
  padding: .5rem 1rem;
}

.h1-syle {
  font-size: 3.4rem;
  line-height: 1.1em;
}

.div-block-4 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.code-embed {
  width: 24px;
  height: 24px;
  color: var(--black);
  transition: opacity .2s;
}

.code-embed:hover {
  opacity: .7;
}

.link {
  color: var(--black);
  text-decoration: underline;
}

.filter {
  filter: grayscale(5%) contrast(105%) saturate(90%);
}

.link-2 {
  color: #ffffffbf;
}

.image-3 {
  width: 32px;
  height: 32px;
}

.div-block-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

@media screen and (min-width: 1280px) {
  .service-wrapper-default {
    grid-template-columns: 1.75fr 1fr;
  }
}

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

  h2 {
    font-size: 1.75em;
  }

  h3 {
    font-size: 1.5em;
  }

  .section-hero {
    height: 90vh;
  }

  .container {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    max-width: 100%;
  }

  .container.container-center {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .nav-brand {
    padding-left: 0;
  }

  .nav-menu-button {
    z-index: 11;
    padding: 0;
  }

  .nav-menu-button.w--open {
    z-index: 10;
    background-color: #c8c8c800;
  }

  .nav-menu {
    z-index: 100;
    text-align: center;
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .nav-link {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .title-wrapper {
    z-index: 5;
    align-items: flex-start;
    max-width: 100%;
  }

  .button-wrapper {
    flex-direction: row;
    justify-content: flex-start;
  }

  .night-sky {
    min-height: 400px;
  }

  .content-center {
    max-width: 45ch;
  }

  .grid-item-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
  }

  .grid-item-wrapper.no-margin {
    flex-direction: column-reverse;
  }

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

  .grid-card {
    margin-bottom: 0;
  }

  ._3-1-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-icons {
    justify-content: center;
    padding-bottom: 25px;
    display: none;
    position: absolute;
    inset: auto 0% 0%;
  }

  .icons {
    flex-wrap: nowrap;
    margin-top: 25px;
  }

  .social-icon {
    margin-left: 25px;
    margin-right: 25px;
  }

  .subheader-text {
    font-size: 1rem;
  }

  .icon-large {
    max-width: 2rem;
  }

  .section.section-full {
    height: 80vh;
  }

  .footer-logo {
    width: 300px;
  }

  .h1-small {
    font-size: 2.5rem;
  }

  .form-wrap {
    width: 90%;
  }

  .service-wrapper-default {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .content-center-2 {
    max-width: 45ch;
  }

  .nav-link-2 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .social-icon-2 {
    margin-left: 25px;
    margin-right: 25px;
  }

  .slider-heading {
    font-size: 3rem;
  }

  .logo_component-slider {
    grid-column-gap: 3rem;
  }

  .logo-slider-img {
    width: 174px;
  }

  .open-nav {
    z-index: 100;
  }

  .close-nav {
    transition-property: none;
  }

  .close-nav:hover {
    opacity: 1;
  }

  .nav-head__button {
    transition-property: none;
  }

  .nav-head__button:hover {
    color: #fff;
    background-color: #111;
  }

  .nav__button {
    transition-property: none;
  }

  .nav__button:hover {
    background-color: #111;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-column {
    padding-right: 20px;
  }

  .h1-syle {
    font-size: 3rem;
  }
}

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

  h2 {
    font-size: 1.5em;
  }

  .section-hero {
    height: 90vh;
  }

  .nav {
    padding-top: 2rem;
  }

  .container {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .container.container-center {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  ._2-1-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    display: grid;
  }

  .night-sky {
    min-height: 300px;
    padding: 75px 50px;
  }

  .h2-center {
    font-size: 2em;
  }

  .grid-item-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    display: flex;
  }

  .grid-item-wrapper.no-margin {
    object-fit: fill;
    flex-direction: column-reverse;
    display: flex;
    position: static;
  }

  .grid-item-image-wrapper, .grid-item-content {
    width: 100%;
    max-width: 100%;
  }

  .card-grid {
    flex-direction: column;
    display: flex;
  }

  .grid-card-image-wrapper {
    padding-top: 75%;
  }

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

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

  .section.section-full {
    height: 70vh;
  }

  .form-wrap {
    width: 90%;
  }

  .service-rich-text {
    margin-right: 0;
  }

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

  .service-wrapper-default {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

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

  .nav-2 {
    padding-top: 2rem;
  }

  .load-bar-base {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .tabs-menu {
    flex-wrap: wrap;
  }

  .slider-heading {
    font-size: 2.5rem;
  }

  .standard-tab {
    justify-content: flex-start;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 11px;
  }

  .logo_component-slider {
    grid-row-gap: 2rem;
    flex-direction: row;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
  }

  .logo-slider-img {
    width: 125px;
  }

  .open-nav {
    height: 5rem;
    padding-left: 1rem;
  }

  .nav__content {
    width: 100%;
    min-width: 0;
  }

  .top-bar {
    height: 5rem;
  }

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

  .nav-3 {
    padding: .5rem 1rem 1rem;
  }

  .text-regular.hidden-phone {
    display: none;
  }

  .container-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav__button {
    width: 3rem;
    height: 3rem;
  }

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

  .footer-06-grid {
    text-align: center;
    grid-template-columns: 2fr;
    place-items: center;
  }

  .footer-column {
    padding-right: 0;
  }

  .h1-syle {
    font-size: 2.5rem;
  }

  .div-block-5 {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-6 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.2rem;
    line-height: 1.3em;
  }

  h2 {
    font-size: 1.5em;
  }

  .section-hero {
    height: 100vh;
  }

  .section-hero.small {
    height: 55vh;
    padding-bottom: 100px;
  }

  .container {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .container.container-center {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .nav-menu {
    width: 100vw;
  }

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

  ._2-1-grid {
    flex-direction: column;
    display: flex;
  }

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

  .night-sky {
    color: #fff;
    min-height: 70vh;
    padding: 50px 25px;
  }

  .night-sky._2, .night-sky._1, .night-sky._3 {
    min-height: 275px;
  }

  .h2-center {
    font-size: 1.5em;
  }

  .grid-item-wrapper {
    margin-bottom: 75px;
  }

  .grid-card-content {
    padding: 1.5rem;
  }

  .contact {
    margin-top: 0;
  }

  .section-background-image {
    padding-left: 25px;
    padding-right: 25px;
  }

  .title {
    font-size: 1.5em;
  }

  .nav-logo {
    width: 80px;
  }

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

  .section.section-footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .text-field, .text-field.is-area {
    border-radius: 0;
  }

  .footer-logo {
    width: 140px;
  }

  .utility-nav-background {
    z-index: 1;
    height: 133.047px;
  }

  .form-wrap {
    width: auto;
    margin-bottom: 0;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-wrap.full-width {
    margin-left: 0;
    margin-right: 0;
  }

  .service-rich-text h2 {
    font-size: 1.6rem;
    line-height: 1.4em;
  }

  .success-msg {
    padding-left: 15px;
    padding-right: 15px;
  }

  .legal-rich-text-block h1 {
    font-size: 2rem;
  }

  .legal-rich-text-block h2 {
    font-size: 1.25rem;
  }

  .div-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

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

  .tabs-menu {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 1rem;
    padding-right: 1rem;
    display: grid;
  }

  .slider-heading {
    margin-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .standard-tab {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo_component-slider {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    overflow: hidden;
  }

  .logo-slider-img {
    width: 100px;
  }

  .logo-carousel.splide {
    margin-top: 1em;
  }

  .nav__link {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand {
    margin-top: 6px;
  }

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

  .logo-2 {
    margin-bottom: 32px;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    margin-top: 6rem;
  }

  .footer-06-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto auto;
    grid-template-columns: 2fr;
  }

  .secondary-link-dark {
    margin-right: 32px;
  }

  .text-rights {
    text-align: left;
    margin-right: 0;
  }

  .footer-column-flat {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .image-2 {
    height: 2.5rem;
  }

  .h1-syle {
    font-size: 2.2rem;
  }

  .div-block-6 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

#w-node-_54ffa258-4946-c0fa-1e29-e1239195e20a-9195e1f6 {
  justify-self: center;
}

#w-node-_6df5f360-8c9c-85b5-a1cc-d2bfe0e8887f-e0e8887b {
  justify-self: end;
}

#w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a044-17e0a03c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_9ab74399-4385-ce9b-e718-8baa19c127b9-4a277287, #w-node-_9ab74399-4385-ce9b-e718-8baa19c127bd-4a277287, #w-node-_9ab74399-4385-ce9b-e718-8baa19c127c5-4a277287, #w-node-_9ab74399-4385-ce9b-e718-8baa19c127c9-4a277287 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-_14a9979f-57eb-8326-532f-94994aecdcb7-4aecdcb6 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a044-17e0a03c {
    justify-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_54ffa258-4946-c0fa-1e29-e1239195e20a-9195e1f6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_14a9979f-57eb-8326-532f-94994aecdcb7-4aecdcb6 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_6200fd70-cd87-8303-ffd8-aeed17e0a044-17e0a03c {
    justify-self: center;
  }

  #w-node-_9ab74399-4385-ce9b-e718-8baa19c127b9-4a277287, #w-node-_9ab74399-4385-ce9b-e718-8baa19c127bd-4a277287, #w-node-_9ab74399-4385-ce9b-e718-8baa19c127c5-4a277287, #w-node-_9ab74399-4385-ce9b-e718-8baa19c127c9-4a277287 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Opensauceone';
  src: url('../fonts/OpenSauceOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensauceone';
  src: url('../fonts/OpenSauceOne-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensauceone';
  src: url('../fonts/OpenSauceOne-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensauceone';
  src: url('../fonts/OpenSauceOne-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}