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

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

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

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-LightItalic.woff2') format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.woff2') format("woff2"), url('../fonts/Satoshi-VariableItalic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.woff2') format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

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

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

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

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

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --color--background-color: #efefef;
  --font-family--satoshi: Satoshi, sans-serif;
  --color--font-color: #151515;
  --text-size--regular: 1rem;
  --heading-style--h2: 5rem;
  --text-size--tiny: .75rem;
  --text-size--medium: 1.125rem;
  --text-size--small: .875rem;
  --text-size--huge: 2rem;
  --heading-style--h1: 7.75rem;
  --heading-style--h5: 3.5rem;
  --heading-style--h6: 2.5rem;
  --text-size--large: 1.5rem;
  --heading-style--h3: 4.875rem;
  --color--black: black;
  --color--white: white;
  --color--primary-color: #e28e2a;
  --heading-style--h4: 4rem;
  --secondary-button--gap: 1rem;
  --font-family--satoshi-variable: "Satoshi Variable", sans-serif;
  --color--stroke: #9b8f7e;
}

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

@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(--color--background-color);
  font-family: var(--font-family--satoshi);
  color: var(--color--font-color);
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--color--font-color);
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

.heading-2 {
  font-size: var(--heading-style--h2);
  line-height: .95;
}

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

.container.small {
  max-width: 90rem;
}

.container.medium {
  max-width: 100rem;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.small {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-box {
  max-width: 27rem;
}

.text-box.large {
  max-width: 60rem;
}

.hero-style-guide-content {
  grid-row-gap: 1.5rem;
  color: #f3f3f3;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-size-regular {
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

.hero-style-guide-wrapper {
  background-image: linear-gradient(0deg, #12121263, #12121200);
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
  padding: 13rem 2rem 2rem;
  overflow: hidden;
}

.button-text {
  flex-direction: column;
  display: flex;
  position: relative;
}

.text-size-tiny {
  font-size: var(--text-size--tiny);
}

.section-style-guide {
  margin-top: 5.75rem;
}

.style-guide-header {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 4.5rem;
  display: flex;
}

.text-size-medium {
  font-size: var(--text-size--medium);
}

.button {
  grid-row-gap: .25rem;
  color: #3f3f3f;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.button-line {
  background-color: #3f3f3f;
  width: 100%;
  height: 1px;
}

.button-text-absolute {
  position: absolute;
  bottom: -2rem;
}

.class-name-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.class-name-wrapper.margin-bottom-0 {
  margin-bottom: 0;
}

.color-palette-text {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.text-size-small {
  font-size: var(--text-size--small);
}

.text-weight-light {
  font-weight: 300;
}

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

.text-size-xsmall.text-style-caps {
  text-transform: uppercase;
}

.style-gudie-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-gudie-content.grid {
  grid-column-gap: 3rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-size: 2rem;
  display: grid;
}

.style-gudie-content.horizontal {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: row;
}

.color-palette {
  border-radius: 1rem;
  width: 100%;
  height: 10rem;
}

.color-palette.black {
  background-color: #121212;
}

.color-palette.white {
  background-color: #f3f3f3;
  border: 1px solid #bbb;
}

.color-palette-card {
  grid-row-gap: 2rem;
  border: 1px solid #dfddda;
  border-radius: 1rem;
  flex-direction: column;
  padding: .5rem .5rem 2rem;
  display: flex;
}

.text-size-huge {
  font-size: var(--text-size--huge);
  font-weight: 300;
  line-height: 1.3;
}

.heading-1 {
  font-size: var(--heading-style--h1);
  line-height: .95;
}

.text-weight-regular {
  font-weight: 400;
}

.text-weight-bold {
  font-weight: 700;
}

.typography-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.style-guide-menu {
  grid-row-gap: 1.5rem;
  color: #121212;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.heading-5 {
  font-size: var(--heading-style--h5);
  line-height: 1.15;
}

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

.text-weight-medium.caps.regular-vw-small {
  font-size: .8vw;
}

.style-guide-content {
  margin-bottom: 6rem;
}

.style-guide-menu-links {
  grid-row-gap: 1.5rem;
  opacity: .5;
  color: #121212;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.style-guide-menu-links:hover, .style-guide-menu-links.w--current {
  opacity: 1;
}

.sticky-menu {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 4rem;
}

.heading-6 {
  font-size: var(--heading-style--h6);
  line-height: 1.15;
}

.text-size-large {
  font-size: var(--text-size--large);
  line-height: 1.3;
}

.style-guide-menu-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.heading-3 {
  font-size: var(--heading-style--h3);
  line-height: 1;
}

.style-tag {
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #0000001f;
  border-radius: 10rem;
  padding: .625rem 1.5rem;
  font-weight: 500;
}

.typography-content {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-guide-component {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

.divider-line {
  background-color: #dfddda;
  height: 1px;
}

.caps {
  text-transform: uppercase;
}

.speakers-card {
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.5rem 2rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.pricing-button {
  background-color: var(--color--black);
  color: var(--color--white);
  text-align: center;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .8rem 1rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-button.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-button.password {
  margin-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.opacity-50 {
  opacity: .5;
}

.faq-component {
  grid-column-gap: 0px;
  grid-row-gap: 4.8125rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.faq-list {
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  position: relative;
}

.faq-item {
  cursor: pointer;
  border-radius: .5rem;
  flex-flow: column;
  padding: 1.5rem;
  display: flex;
  position: relative;
}

.faq-item:hover {
  background-color: var(--color--white);
}

.empty-state {
  text-align: center;
  background-color: #0000;
}

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

.faq-title-wrapper {
  z-index: 10;
  height: 100%;
  padding-right: 5rem;
  position: relative;
}

.faq-action-wrapper {
  z-index: 25;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0 0% auto;
}

.arrow {
  width: auto;
  height: auto;
}

.arrow.second {
  position: relative;
  top: 1rem;
}

.faq-bottom {
  z-index: 10;
  margin-right: 12rem;
  position: relative;
  overflow: hidden;
}

.faq-bottom-content {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  opacity: .8;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  display: grid;
}

.team-member-component {
  flex-direction: column;
  margin-top: 15vh;
  padding-left: 6rem;
  padding-right: 6rem;
  display: flex;
}

.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6 {
  margin-bottom: 15px;
  line-height: 1.2;
}

.rich-text p {
  margin-bottom: 1rem;
}

.event-item {
  cursor: pointer;
  flex-flow: column;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.event-button {
  background-color: var(--color--primary-color);
  color: var(--color--white);
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .7rem 1.4rem;
  font-family: Cabinetgrotesk;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.event-button.w--current {
  font-family: Cabinetgrotesk;
}

.button-hover {
  background-color: var(--color--black);
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  position: absolute;
}

.relative {
  z-index: 5;
  position: relative;
}

.button-submit-hover {
  background-color: var(--color--primary-color);
  border-radius: 50%;
  width: 35rem;
  height: 35rem;
  position: absolute;
}

.button-submit-hover.small {
  width: 16rem;
  height: 16rem;
}

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

.utility-page-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.not-fount-text-size {
  font-size: 22rem;
  font-weight: 300;
  line-height: 1;
}

.button-home {
  background-color: var(--color--black);
  color: var(--color--white);
  text-align: center;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .6rem 3.5rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-home.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-field-contact {
  color: var(--color--black);
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #15151526;
  border-radius: 0;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
  font-size: 1rem;
  transition: all .4s;
}

.text-field-contact:hover {
  border-width: 1px;
  border-color: transparent transparent var(--color--primary-color);
  padding-left: 1.2rem;
}

.text-field-contact:active {
  color: #212121;
}

.text-field-contact:focus {
  border-color: var(--color--primary-color);
  color: var(--color--black);
  border-radius: .5rem;
}

.submit-button {
  z-index: 3;
  color: #0000;
  background-color: #0000;
  position: absolute;
  inset: 0%;
}

.max-width-70ch {
  max-width: 70ch;
}

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

.divider-line-instructions {
  background-color: var(--color--black);
  opacity: .1;
  width: 100%;
  height: 1px;
}

.instruction-content-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  margin-top: 15vh;
  display: flex;
}

.heading-2-instruction {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}

.heading-2-instruction.text-weight-bold {
  font-weight: 700;
}

.instruction-heading {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

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

.align-middle {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.max-width-50ch {
  max-width: 50ch;
}

.instructions-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.instructions {
  grid-column-gap: 1.3125rem;
  grid-row-gap: 1.3125rem;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.double-button-component {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.hero-changelog-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 1rem;
  flex-flow: column;
  width: 100%;
  margin-top: 1rem;
  padding-top: 12rem;
  padding-bottom: 3rem;
  padding-right: 3rem;
  display: flex;
  overflow: hidden;
}

.style-guide-heading {
  font-size: 6.125vw;
  font-weight: 300;
  line-height: 1;
}

.changelog-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 82%);
  width: 100%;
}

.style-guide-text {
  font-size: 2.75rem;
  line-height: 1.55;
}

.opacity-85 {
  opacity: .8;
}

.style-guide-button {
  grid-row-gap: .25rem;
  color: var(--color--black);
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  overflow: hidden;
}

.style-guide-button:hover {
  opacity: .5;
}

.license-content {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.license-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.heading-4 {
  font-size: var(--heading-style--h4);
  line-height: 1.3;
}

.font-color {
  background-color: var(--color--font-color);
  color: var(--color--font-color);
}

.primary-color {
  background-color: var(--color--primary-color);
  color: var(--color--primary-color);
}

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

.bento-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 7.5rem;
  display: flex;
}

.bento-header {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.tag-marquee {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  white-space: nowrap;
  align-items: center;
  max-width: 15rem;
  display: flex;
  overflow: hidden;
}

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

.elipse {
  background-color: var(--color--primary-color);
  border-radius: 50%;
  width: .35rem;
  height: .35rem;
}

.heading-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

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

.bento-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.card-small {
  border: .1px solid #9b8f7e66;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 50vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-big {
  border: .1px solid #9b8f7e66;
  border-radius: .5rem;
  align-items: flex-start;
  width: 65%;
  height: 50vh;
  padding: 2.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-image {
  position: absolute;
  inset: 0%;
}

.card-big-content {
  z-index: 2;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.secondary-button {
  grid-column-gap: var(--secondary-button--gap);
  grid-row-gap: var(--secondary-button--gap);
  align-items: center;
  display: flex;
}

.arrow-wrapper {
  display: flex;
}

.bento-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.card-overlay {
  z-index: 1;
  background-color: #272727e6;
  width: 100%;
  height: 100%;
  position: absolute;
}

.max-width-40ch {
  max-width: 40ch;
}

.max-width-60ch {
  max-width: 60ch;
}

.primary-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--color--primary-color);
  background-color: var(--color--white);
  border-radius: .25rem;
  align-items: center;
  padding: 1rem 1.5rem;
  transition: all .25s;
  display: flex;
  position: relative;
}

.primary-button:hover {
  border-bottom-width: 4px;
}

.sticky-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  margin-top: 12rem;
  display: flex;
  position: relative;
}

.sticky-component {
  width: 50%;
  height: 90vh;
  position: sticky;
  top: 5vh;
  bottom: 5vh;
  overflow: hidden;
}

.sticky-content {
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  padding-bottom: 20vh;
  display: flex;
  position: relative;
}

.sticky-big-image {
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.sticky-text {
  grid-column-gap: 2.8vw;
  grid-row-gap: 2.8vw;
  flex-flow: column;
  align-items: flex-start;
  margin-top: 10vw;
  margin-left: 4vw;
  margin-right: 2rem;
  display: flex;
}

.content {
  grid-column-gap: 1.667vw;
  grid-row-gap: 1.667vw;
  flex-flow: column;
  align-items: flex-start;
  max-width: 36vw;
  display: flex;
}

.content.max-width-34vw {
  max-width: 34vw;
}

.sticky-paragraph {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-flow: column;
  align-items: flex-start;
  max-width: 30vw;
  display: flex;
}

.sticky-small-image {
  flex: none;
  align-self: flex-end;
  width: 12vw;
  height: 12vw;
  margin-top: 7.5vw;
  margin-right: 10vw;
  overflow: hidden;
}

.sticky-medium-image {
  flex: none;
  align-self: flex-end;
  width: 60%;
  height: 60vh;
  margin-top: 13.5vh;
  position: relative;
  overflow: hidden;
}

.products-wrapper {
  grid-column-gap: 2.8rem;
  grid-row-gap: 2.8rem;
  flex-flow: column;
  margin-top: 10rem;
  display: flex;
}

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

.products-heading {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

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

.icon-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.opacity-60 {
  opacity: .6;
}

.button-wrapper {
  z-index: 4;
  align-self: center;
  position: relative;
}

.black-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--color--black);
  color: var(--color--white);
  border-radius: .25rem;
  align-items: center;
  padding: 1rem 2rem;
  transition: all .25s;
  display: flex;
}

.black-button:hover {
  border-bottom-width: 4px;
  transform: translate(0, 3px);
}

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

.product-link {
  background-color: var(--color--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  display: flex;
  position: relative;
}

.product-card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-card-info {
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1.5rem;
  display: flex;
}

.info {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.mask-frame {
  background-color: #e5e5e5;
  position: absolute;
  inset: auto 0% 0%;
}

.faq-wrapper {
  grid-column-gap: 3.25rem;
  grid-row-gap: 3.25rem;
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  display: flex;
}

.faq-heading {
  text-align: center;
  max-width: 50ch;
}

.faq-hover {
  border-radius: .5rem;
  transition: background-color .45s;
}

.faq-hover:hover {
  background-color: var(--color--white);
}

.products-main-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.max-width-85ch {
  max-width: 85ch;
}

.products-component {
  grid-column-gap: 4.8rem;
  grid-row-gap: 4.8rem;
  flex-flow: column;
  margin-top: 15vh;
  display: flex;
}

.text-size-medium-vw {
  font-size: 1vw;
  font-weight: 400;
}

.text-size-medium-contact {
  font-size: 1.125rem;
}

.form-content {
  width: 100%;
}

.contact-button {
  background-color: #1d1d1f;
  border-radius: .3rem;
  transition: all .25s;
}

.contact-button.align-center {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.max-width-60ch-2 {
  max-width: 60ch;
}

.contact-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  display: flex;
}

.error-message {
  text-align: center;
  background-color: #e54e4e;
  border-radius: .5rem;
}

.hero-component {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.text-size-contact {
  font-size: 1.375rem;
}

.form-wrapper {
  width: 50%;
  margin-bottom: 0;
}

.name-wrapper-contact {
  width: 100%;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.success-message {
  color: #000;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: .6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.brand {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  max-width: 8rem;
  display: flex;
}

.brand.w--current {
  justify-content: flex-start;
  align-items: center;
  transition: transform .25s, opacity .25s;
}

.brand.w--current:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.navbar {
  z-index: 50;
  background-color: #fff0;
  position: fixed;
  inset: 0% 0% auto;
}

.links-navbar {
  border-radius: .5rem .5rem .5rem .5px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: .5rem 1rem;
  transition: background-color .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.links-navbar:hover {
  color: #283849;
  background-color: #f6f9fc;
}

.links-navbar.w--current {
  border: 1px solid #f6f9fc;
}

.nav-menu {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.right-navbar-content {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  align-items: center;
  display: flex;
}

.nav-menu-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.nav-link {
  padding-left: .5rem;
  padding-right: .5rem;
  transition: all .25s;
}

.nav-link:hover {
  opacity: .6;
  transform: translate(0, 1px);
}

.navbar-component {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #ffffff38;
  border-radius: 1.375rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem 2.2rem 1rem 2.25rem;
  display: flex;
}

.overlay-navbar {
  z-index: 1;
  opacity: 0;
  background-color: #040404;
  width: 100%;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}

.image-parallax {
  height: 110%;
}

.hero-heading {
  z-index: 5;
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 63ch;
  margin-bottom: 3rem;
  margin-left: 3.5rem;
  display: flex;
  position: relative;
}

.hero-grid {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  margin-left: 4.375rem;
  margin-right: 4.375rem;
  display: grid;
  position: absolute;
  inset: 0%;
}

.hero-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.circle-hover {
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
  background-color: #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.circle-hero {
  background-color: #fff;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}

.hero-hover {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  border-bottom: 1px solid var(--color--primary-color);
  background-color: var(--color--white);
  white-space: nowrap;
  border-radius: .0625rem .3125rem .3125rem;
  align-items: flex-start;
  padding: .75rem 1rem;
  display: flex;
  position: absolute;
  left: .5rem;
  overflow: hidden;
}

.hover-content {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.hover-relative {
  position: relative;
}

.arrow-hero {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: stretch;
  width: 1rem;
  height: .9rem;
  margin-top: .4rem;
  display: flex;
  overflow: hidden;
}

.button-hero {
  z-index: 5;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
}

.button-image {
  position: relative;
  inset: 0%;
}

.circular-text {
  padding: .5rem;
  position: absolute;
}

.button-arrow {
  position: absolute;
}

.hero-arrow-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 1.5rem;
  height: 2rem;
  display: flex;
  overflow: hidden;
}

.read-more-tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--color--black);
  background-color: #efefef;
  border-radius: 2.3125rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
  text-decoration: none;
  display: flex;
}

.vertical-line-tag {
  background-color: var(--color--black);
  opacity: .5;
  color: #fff;
  width: 1px;
  height: 1rem;
}

.read-more-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  transition: all .25s;
  display: flex;
}

.read-more-button:hover {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
}

.product-title {
  max-width: 70ch;
}

.product-info {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 6rem;
  display: flex;
}

.product-component {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: start center;
  margin-bottom: 4rem;
  display: grid;
}

.product-image {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  width: 40vw;
  max-width: 50rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-description {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 50ch;
  display: flex;
}

.product-wrapper {
  width: 100%;
  margin-top: 15vh;
}

.price-tag {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--color--white);
  border: .5px solid #bebebe;
  border-radius: 2px;
  align-items: center;
  padding: .625rem;
  display: flex;
}

.info-tag {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  align-items: center;
  display: flex;
}

.multi-images {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border-radius: .5rem;
  width: 100%;
  height: 15vh;
  display: flex;
  overflow: hidden;
}

.lightbox-link {
  border-radius: .5rem;
  height: 38vh;
  overflow: hidden;
}

.product-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--color--black);
  color: var(--color--white);
  border-radius: 20rem;
  align-items: center;
  margin-top: 2.1rem;
  padding: 1.6rem 3.1rem 1.6rem 3.6rem;
  display: flex;
}

.lightbox-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

.footer-grid-wrap {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.credits-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-grid {
  grid-column-gap: 5rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.footer-heading {
  justify-content: flex-start;
  align-items: flex-start;
  height: 3rem;
  margin-bottom: 5rem;
  display: flex;
  position: relative;
}

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

.footer-component {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 3rem;
  display: flex;
}

.footer-social {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: .7rem;
  transition: all .3s;
  display: flex;
}

.footer-social:hover {
  background-color: var(--color--primary-color);
  color: #c9d4d8;
  transform: translate(0, -2px);
}

.icon-embed {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.credits {
  text-decoration: none;
  transition: opacity .2s;
}

.credits:hover {
  opacity: .8;
}

.vertical-line {
  background-color: #8e8c87;
  width: 1px;
  height: .8rem;
}

.footer-links {
  grid-column-gap: 1.1rem;
  grid-row-gap: 1.1rem;
  align-items: center;
  display: flex;
}

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

.footer-link {
  color: #8e8c87;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .25s;
}

.footer-link:hover {
  color: #151515;
  transform: translate(0, -2px);
}

.footer-social-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 4.8rem;
  margin-bottom: 11rem;
  display: flex;
}

.paragraph {
  color: #00000080;
}

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

.max-width-80ch {
  max-width: 80ch;
}

.button-navbar {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--color--primary-color);
  background-color: var(--color--white);
  border-radius: .25rem;
  align-items: center;
  padding: 1rem 1.5rem;
  transition: all .25s;
  display: flex;
  position: relative;
}

.button-navbar:hover {
  border-bottom-width: 2px;
}

.button-navbar.margin-left {
  margin-left: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button-border {
  border-radius: .25rem;
  justify-content: center;
  align-items: flex-end;
  max-height: 2.3rem;
  display: flex;
  overflow: hidden;
}

.heading-vw {
  font-size: 4.8vw;
  line-height: 1;
}

.regular-vw {
  font-size: 1.1vw;
}

.modal-text {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  flex-flow: column;
  display: flex;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.modal-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.modal-button {
  color: #fbfbfb;
  text-align: center;
  cursor: pointer;
  background-color: #101011;
  border-radius: .5rem;
  width: 100%;
  padding: .8rem 1rem;
  text-decoration: none;
  transition: all .25s;
}

.modal-button:hover {
  background-color: #101011cc;
  transform: scale(.98);
}

.modal-embed {
  display: flex;
}

.delete-this {
  z-index: 20;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fbfbfb;
  border-radius: .75rem;
  flex-flow: column;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
}

.webflix-link {
  color: #101828;
}

.opacity-80 {
  opacity: .8;
}

.modal-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.max-width-37ch {
  max-width: 37ch;
}

.logo-footer {
  width: 11rem;
  height: auto;
}

.logo-navbar {
  width: 8rem;
}

.modal-buttons {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.exit {
  z-index: 5;
  background-color: var(--color--background-color);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  bottom: 1rem;
  left: .5rem;
}

.code-embed {
  width: .8rem;
  height: .8rem;
  display: flex;
}

.awards-holder {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.process-bottom-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.title-caps {
  text-transform: uppercase;
  margin-top: 0;
  font-style: normal;
}

.process-top-content {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.process-component {
  grid-column-gap: 3.75rem;
  grid-row-gap: 3.75rem;
  flex-flow: column;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: sticky;
  top: 0;
}

.process-line {
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 10px;
  height: 25rem;
  display: flex;
  overflow: hidden;
}

.heading-style-h2 {
  font-weight: 700;
}

.heading-7 {
  font-size: 40px;
}

.project-text-container {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 120px;
}

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

.process-third-hover-line {
  background-color: #262626;
  width: 100%;
  height: 35%;
}

.awards-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 30px;
  display: grid;
}

.section-spacing {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
}

.vertical-line-2 {
  background-color: #000;
  width: 2px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.process-number {
  background-color: #fff;
  border-radius: 100%;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2.6875rem;
  height: 2.6875rem;
  display: flex;
}

.process-number.first {
  flex: none;
}

.process-card-wrapper {
  justify-content: center;
  align-items: flex-end;
  width: 29.5625rem;
  display: flex;
  position: relative;
}

.process-card-wrapper.fast {
  justify-content: center;
  align-items: flex-end;
}

.process-card-content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.process-line-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-process {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.process-card-image {
  border-radius: 1.875rem;
  height: 232px;
}

.process-card-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: sticky;
  top: 0;
}

.container-2 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 3em 2em;
  position: relative;
}

.paragraph-holder {
  max-width: 400px;
}

.process-card {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  background-color: #f5f5f5;
  background-image: linear-gradient(#ededed, #f5f5f5);
  border: 8px solid #fff;
  border-radius: 1.875rem;
  flex-flow: column;
  width: 100%;
  max-width: 23.25rem;
  padding: .5rem .5rem 1.5rem;
  display: flex;
  box-shadow: 0 0 20px #00000012;
}

.process-card.third {
  margin-left: auto;
  position: absolute;
  right: 0;
  transform: translate(219px);
}

.process-card.first {
  flex: none;
  width: 23.25rem;
  margin-left: auto;
  position: absolute;
  right: 0;
  transform: translate(232px);
}

.process-card.second {
  position: absolute;
  left: 0;
  transform: translate(-223px);
}

.line {
  background-color: #000;
  width: 100%;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
}

.project-grid-holder {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  padding-left: 40px;
  display: flex;
  position: relative;
}

.process-second-hover-line, .process-hover-line {
  background-color: #262626;
  width: 100%;
  height: 35%;
}

.text-size-regular-2 {
  color: #5d5d5d;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-decoration: none;
}

.text-size-regular-2.w--current {
  color: #080808;
}

.text-base {
  letter-spacing: normal;
  font-size: 1rem;
  line-height: 1.5;
}

.footer_logo-wrap {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.section_footer {
  overflow: clip;
}

.padding-global-2 {
  padding-left: 3.25rem;
  padding-right: 3.25rem;
}

.padding-global-2.is-footer {
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.footer_top {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer_bottom {
  background-color: #ffffff0a;
  border-radius: 2rem;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem 2rem;
  display: flex;
}

.footer_group {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 63%;
  display: flex;
}

.footer_column {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  display: flex;
}

.footer-link-2 {
  color: #a0a0a0;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  padding: .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color .2s;
}

.footer-link-2:hover {
  color: #fff;
}

.footer-link-2.w--current {
  opacity: 1;
  color: #fff;
  font-weight: 600;
}

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

.footer_content {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  color: #fff;
  background-color: #111;
  border-radius: 1.25rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 2rem 2rem;
  display: flex;
}

.why-choose-me-card {
  max-width: 690px;
}

.why-choose-me-card-text-content-block {
  grid-column-gap: 16px;
  justify-content: space-between;
  padding: 40px 36px 38px 24px;
  display: flex;
}

.why-choose-me-card-wrapper {
  border-radius: 12px;
  width: 100%;
  text-decoration: none;
}

.why-choose-me-card-wrapper.background-color-black-50.w--current {
  cursor: default;
}

.why-choose-me--headline-content-wrapper {
  justify-content: space-between;
  display: flex;
}

.button-normal-white-wrapper-2 {
  grid-column-gap: 4px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  align-items: center;
  padding: 10px 12px;
  text-decoration: none;
  display: inline-flex;
}

.why-choose-me-headline {
  display: inline-block;
}

.button-white-arrow-image-white-2 {
  object-fit: cover;
  width: 12px;
  height: 12px;
  display: none;
  position: absolute;
  inset: 2.81px auto auto 2.67px;
}

.section-headline-text {
  display: inline-block;
}

.section-headline-text.text-3xl.text-weight-semibold {
  font-weight: 600;
}

.why-choose-me-content-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-white-arrow-image-black-2 {
  object-fit: cover;
  width: 12px;
  height: 12px;
  position: absolute;
  inset: 2.81px auto auto 2.67px;
}

.why-choose-me-card-headline-text.text-xl-2.text-weight-semibold {
  font-weight: 600;
}

.why-choose-me-card-number-block {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.button-normal-white-arrow-block-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.why-choose-me-card-text-block {
  width: 100%;
  max-width: 250px;
}

.why-choose-me-button-wrappe {
  display: inline-block;
}

.why-choose-me-horizonta-line {
  background-color: #e5e5e5;
  height: 1px;
}

@media screen and (min-width: 1440px) {
  .projects-wrapper {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
  }

  .section-spacing {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .container-2 {
    max-width: 1300px;
  }

  .project-grid-holder {
    padding-left: 4em;
  }
}

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

  .container {
    max-width: 90vw;
  }

  .section-style-guide {
    margin-top: 4rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
  }

  .heading-1 {
    font-size: 4rem;
  }

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

  .text-weight-medium.caps.regular-vw-small {
    font-size: 1rem;
  }

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

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

  .style-guide-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .speakers-card {
    padding: 1rem 1rem 2rem;
  }

  .faq-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

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

  .faq-title-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 3rem;
    display: flex;
  }

  .faq-action-wrapper {
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    right: 0;
  }

  .faq-bottom {
    margin-right: 0;
  }

  .faq-bottom-content {
    grid-template-columns: 1fr;
  }

  .team-member-component {
    grid-row-gap: 4rem;
    padding-left: 0;
    padding-right: 0;
  }

  .event-item {
    padding-left: 0;
    padding-right: 0;
  }

  .button-submit-hover {
    width: 52rem;
    height: 52rem;
  }

  .heading-2-instruction {
    font-size: 4.5rem;
  }

  .max-width-50ch {
    max-width: none;
  }

  .style-guide-heading {
    font-size: 7rem;
  }

  .changelog-component {
    flex-flow: column;
    display: flex;
  }

  .style-guide-text {
    font-size: 2rem;
  }

  .license-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 5.3rem;
    margin-bottom: 6rem;
  }

  .heading-4 {
    font-size: 2.7rem;
  }

  .bento-header {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .bento-row {
    flex-flow: column;
  }

  .card-small {
    order: 1;
    width: 100%;
  }

  .card-big {
    width: 100%;
  }

  .sticky-wrapper {
    margin-top: 8rem;
  }

  .content, .content.max-width-34vw {
    max-width: none;
  }

  .sticky-paragraph {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    max-width: none;
  }

  .products-wrapper {
    margin-top: 8rem;
  }

  .faq-wrapper, .products-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .text-size-medium-vw {
    font-size: 1.125rem;
  }

  .max-width-60ch-2 {
    max-width: 70%;
  }

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

  .form-wrapper {
    width: 100%;
  }

  .form {
    justify-content: flex-start;
    align-items: center;
  }

  .menu-icon {
    color: #1e3251;
  }

  .menu-button {
    border-radius: 4px;
    overflow: hidden;
  }

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

  .links-navbar {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    background-color: #fffc;
    border-radius: 1.375rem;
    justify-content: center;
    align-items: center;
    width: 90vw;
    margin-top: 1rem;
    padding: 2rem;
    position: absolute;
    left: 5vw;
    right: 5vw;
  }

  .right-navbar-content {
    display: flex;
  }

  .nav-menu-wrap {
    justify-content: center;
    align-items: center;
  }

  .nav-link {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
    display: flex;
  }

  .navbar-component {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 1rem;
    position: relative;
  }

  .hero-heading {
    max-width: 50ch;
  }

  .hero-grid {
    display: none;
  }

  .hero-wrapper {
    justify-content: flex-end;
    align-items: stretch;
    height: 100svh;
    display: flex;
  }

  .circular-text {
    height: 7rem;
  }

  .product-info {
    order: -1;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
  }

  .product-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }

  .product-image {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
  }

  .product-description {
    justify-content: flex-start;
    align-items: center;
  }

  .info-tag {
    flex-flow: column;
  }

  .lightbox-link {
    height: 40vh;
  }

  .product-button {
    margin-top: 1rem;
  }

  .footer-heading {
    margin-bottom: 4rem;
  }

  .footer-component {
    min-height: 0;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .footer-social-wrapper {
    margin-bottom: 4rem;
  }

  .footer-text-size {
    font-size: 1.4rem;
  }

  .button-navbar.margin-left {
    margin-left: 0;
  }

  .heading-vw {
    font-size: 2.7rem;
    line-height: 1.2;
  }

  .regular-vw {
    font-size: 1rem;
  }

  .process-bottom-content {
    height: auto;
  }

  .process-top-content {
    width: 100%;
  }

  .process-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    height: auto;
    position: static;
  }

  .page-lode {
    height: auto;
  }

  .heading-style-h6 {
    letter-spacing: 1px;
  }

  .process-card-wrapper {
    width: auto;
  }

  .process-line-wrapper {
    display: none;
  }

  .section-process {
    padding: 2.5rem 1.875rem;
  }

  .process-card-image {
    height: auto;
  }

  .process-card-list-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    position: static;
  }

  .container-2 {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .process-card.third {
    max-width: none;
    margin-left: 0;
    position: static;
    transform: none;
  }

  .process-card.first {
    width: 100%;
    max-width: none;
    margin-left: 0;
    position: static;
    transform: none;
  }

  .process-card.second {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: none;
    position: static;
    transform: none;
  }

  .padding-global-2 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .footer_top {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .footer_bottom {
    justify-content: center;
    align-items: center;
  }

  .footer_group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .footer-link-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .footer_content {
    padding: 2rem;
  }

  .why-choose-me-card-text-content-block {
    grid-row-gap: 11px;
    flex-flow: column;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 3rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 8rem;
  }

  .style-guide-header {
    font-size: .875rem;
  }

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

  .text-size-huge {
    line-height: 1.3;
  }

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

  .style-guide-menu {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-5 {
    font-size: 2.3rem;
    line-height: 1.15;
  }

  .heading-6 {
    font-size: 2rem;
    line-height: 1.3;
  }

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

  .style-guide-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .speakers-card {
    height: 100%;
  }

  .faq-bottom-content {
    padding-bottom: 0;
  }

  .team-member-component {
    grid-row-gap: 3rem;
  }

  .button-submit-hover {
    width: 42rem;
    height: 42rem;
  }

  .not-fount-text-size {
    font-size: 14rem;
  }

  .heading-2-instruction {
    font-size: 4rem;
  }

  .style-guide-heading {
    font-size: 6rem;
  }

  .style-guide-heading.mobile {
    font-size: 4rem;
  }

  .changelog-component {
    grid-template-columns: 1fr;
  }

  .style-guide-text {
    font-size: 2rem;
    line-height: 1.15;
  }

  .license-content {
    grid-row-gap: 4rem;
    flex-direction: column;
  }

  .license-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    margin-top: 4.2rem;
    margin-bottom: 5.7rem;
  }

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

  .bento-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 6rem;
  }

  .card-big {
    padding-top: 1.5rem;
    padding-left: 1.5rem;
  }

  .sticky-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    width: 100%;
    margin-top: 4rem;
  }

  .sticky-component {
    width: 100%;
    height: 50vh;
    position: relative;
  }

  .sticky-content {
    width: 100%;
    padding-bottom: 0;
  }

  .sticky-text {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: 4rem;
    margin-left: 2rem;
  }

  .sticky-paragraph {
    max-width: none;
  }

  .sticky-small-image {
    width: 10rem;
    height: 10rem;
    margin-top: 4rem;
    margin-right: 4rem;
  }

  .sticky-medium-image, .products-wrapper {
    margin-top: 6rem;
  }

  .products-cards {
    flex-flow: column;
    display: flex;
  }

  .contact-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .navbar-component {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1rem;
  }

  .hero-heading {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .button-hero {
    display: none;
    position: relative;
    left: 0;
  }

  .product-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .credits-wrapper {
    flex-flow: column;
    margin-top: 1rem;
  }

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

  .footer-heading {
    height: 2rem;
  }

  .footer-component {
    padding-top: 4rem;
  }

  .footer-text-size {
    font-size: 1.3rem;
  }

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

  .text-size-medium-2 {
    font-size: 1.2rem;
  }

  .delete-this {
    left: 1.5rem;
  }

  .title-caps {
    font-size: 40px;
  }

  .projects-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    display: flex;
  }

  .heading-style-h6 {
    letter-spacing: .32px;
  }

  .section-process {
    padding: 1.875rem 1.5rem;
  }

  .process-card-list-wrapper {
    flex-flow: column;
    display: flex;
  }

  .project-grid-holder {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 0;
    padding-left: 0;
  }

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

  .padding-global-2.is-footer {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer_bottom {
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .footer_group {
    grid-row-gap: .25rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-link-2 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

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

  .why-choose-me-card {
    max-width: 100%;
  }

  .button-normal-white-wrapper-2 {
    display: inline-flex;
  }

  .section-headline-text.text-3xl {
    font-size: 40px;
    font-weight: 400;
  }

  .section-headline-text.text-3xl.text-weight-semibold {
    font-weight: 600;
  }

  .why-choose-me-content-wrapper {
    grid-template-columns: 1fr;
  }

  .why-choose-me-button-wrappe {
    display: none;
  }
}

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

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

  .hero-style-guide-wrapper {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .style-guide-menu {
    grid-column-gap: 1rem;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .heading-5 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .style-guide-content {
    margin-bottom: 6rem;
  }

  .sticky-menu {
    width: 100%;
  }

  .heading-6 {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .style-guide-menu-wrapper {
    width: 100%;
  }

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

  .style-guide-component, .divider-line {
    width: 100%;
  }

  .faq-title-wrapper {
    padding-right: 3.5rem;
  }

  .faq-bottom-content {
    display: flex;
  }

  .button-submit-hover {
    width: 25rem;
    height: 25rem;
  }

  .not-fount-text-size {
    font-size: 7rem;
  }

  .divider-line-instructions {
    width: 100%;
  }

  .heading-2-instruction {
    font-size: 3rem;
    line-height: 1.1;
  }

  .double-button-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: center;
    width: 100%;
  }

  .hero-changelog-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .style-guide-heading {
    font-size: 5rem;
    line-height: 1.1;
  }

  .style-guide-heading.mobile {
    font-size: 3rem;
  }

  .changelog-component {
    width: 100%;
  }

  .style-guide-text {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .license-component {
    grid-row-gap: 1.75rem;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }

  .heading-4 {
    font-size: 2.2rem;
  }

  .content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .products-wrapper {
    margin-top: 4rem;
  }

  .products-header {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .products-heading {
    justify-content: flex-start;
    align-items: center;
  }

  .button-wrapper {
    align-self: auto;
  }

  .max-width-60ch-2 {
    max-width: none;
  }

  .form-wrapper, .form {
    width: 100%;
  }

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

  .links-navbar {
    border-top-right-radius: 0;
    border-bottom-left-radius: .5rem;
  }

  .nav-menu {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .read-more-tag {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    border-radius: 1rem;
    flex-flow: row;
    width: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .credits-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    place-items: flex-start center;
  }

  .footer-heading {
    height: auto;
  }

  .footer-links {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-links-wrapper {
    text-align: center;
  }

  .footer-social-wrapper {
    margin-bottom: 2rem;
  }

  .footer-text-size {
    font-size: 1.2rem;
  }

  .overlay-mobile {
    z-index: 2;
    background-image: linear-gradient(0deg, var(--color--background-color), #efefef00);
    height: 50vh;
    position: absolute;
    inset: auto 0% 0;
  }

  .heading-vw {
    font-size: 2.2rem;
  }

  .text-size-medium-2 {
    font-size: 1.125rem;
  }

  .modal-link {
    flex-flow: wrap;
  }

  .title-caps {
    font-size: 30px;
  }

  .process-top-content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .process-component {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
  }

  .awards-grid {
    flex-flow: column;
    display: flex;
  }

  .section-process {
    padding: 1.25rem 1rem;
  }

  .process-card-list-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .container-2 {
    padding: 2em 1em;
  }

  .text-size-regular-2 {
    font-size: .875rem;
    line-height: 1.375rem;
  }

  .text-base {
    font-size: .875rem;
  }

  .footer_logo-wrap {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .padding-global-2 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .padding-global-2.is-footer {
    padding-bottom: .75rem;
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .footer_bottom {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .footer_group {
    grid-column-gap: 3.2rem;
    grid-row-gap: .25rem;
    flex-flow: wrap;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .footer_column {
    min-width: 7rem;
  }

  .footer-link-2 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .container-xlarge {
    max-width: 100%;
  }

  .footer_content {
    border-radius: 1rem;
    padding: 1.5rem;
  }
}

#w-node-_7024a331-9708-6ce6-9941-a7b8c36682d5-e37b1c46, #w-node-_7024a331-9708-6ce6-9941-a7b8c36682df-e37b1c46, #w-node-_7024a331-9708-6ce6-9941-a7b8c36682e8-e37b1c46, #w-node-_7024a331-9708-6ce6-9941-a7b8c36682f2-e37b1c46, #w-node-_7024a331-9708-6ce6-9941-a7b8c36682fb-e37b1c46 {
  align-self: end;
}

#w-node-_7024a331-9708-6ce6-9941-a7b8c366830f-e37b1c46, #w-node-_7024a331-9708-6ce6-9941-a7b8c3668316-e37b1c46, #w-node-_7024a331-9708-6ce6-9941-a7b8c366832b-e37b1c46 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_27cdc4ca-a824-91eb-49eb-ab35f8054e02-e37b1c50, #w-node-bdc51d0e-da8c-85e8-0820-4fad353d80b5-e37b1c59 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_7024a331-9708-6ce6-9941-a7b8c366830f-e37b1c46, #w-node-_7024a331-9708-6ce6-9941-a7b8c3668316-e37b1c46, #w-node-_7024a331-9708-6ce6-9941-a7b8c366832b-e37b1c46 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2'), url('../fonts/Satoshi-VariableItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}