:root {
  --background-color--background-primary: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --base-color-neutral--neutral-light: #8d8d8d;
  --link-color--link-primary: var(--base-color-neutral--black);
  --base-color-neutral--black: #1e1e1e;
  --base-color-neutral--white: #fff;
  --text-color--text-alternate: var(--base-color-neutral--white);
  --base-color-neutral--neutral-lightest: #eee;
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --background-color--background-alternate: var(--base-color-neutral--black);
  --background-color--background-error: var(--base-color-system--error-red-light);
  --text-color--text-error: var(--base-color-system--error-red);
  --border-color--border-alternate: var(--base-color-neutral--white);
  --border-color--border-primary: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #363636;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #027a48;
  --base-color-system--success-green-light: #ecfdf3;
  --base-color-system--error-red: #b42318;
  --base-color-system--error-red-light: #fef3f2;
  --background-color--background-secondary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-success: var(--base-color-system--success-green-light);
  --border-color--border-secondary: var(--base-color-neutral--neutral-dark);
  --link-color--link-secondary: var(--base-color-neutral--neutral-light);
  --text-color--text-secondary: var(--base-color-neutral--black);
  --text-color--text-success: var(--base-color-system--success-green);
}

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

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  background-image: none;
  font-family: Bdogrotesk Vf, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.6;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

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

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

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

p {
  margin-bottom: 0;
  line-height: 1.8;
}

a {
  color: var(--base-color-neutral--neutral-light);
  text-decoration: none;
  transition: color .2s;
}

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

ul {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

ol {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  padding-left: 1rem;
  display: flex;
}

li {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-weight: 400;
}

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

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

blockquote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

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

.max-width-full {
  width: 100%;
  max-width: none;
}

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

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

.utility_form {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.padding-xxsmall {
  padding: .5rem;
}

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

.form_radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.form_checkbox-label {
  margin-bottom: 0;
}

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

.button {
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  text-transform: uppercase;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 3rem;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  line-height: 100%;
  text-decoration: none;
  transition-property: opacity;
  transition-duration: .2s;
  transition-timing-function: ease;
  display: flex;
}

.button:hover {
  opacity: .8;
  color: var(--text-color--text-alternate);
}

.button.w--current:hover {
  color: var(--text-color--text-alternate);
}

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

.text-style-italic {
  font-style: italic;
}

.form_radio-label {
  margin-bottom: 0;
}

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

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

.text-weight-xbold {
  font-weight: 800;
}

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

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

.form_input {
  border: 1px solid var(--base-color-neutral--neutral-lightest);
  background-color: var(--base-color-neutral--white);
  color: var(--text-color--text-primary);
  border-radius: 4px;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

.background-color-white {
  background-color: var(--base-color-neutral--white);
}

.text-style-muted {
  opacity: .6;
}

.text-style-nowrap {
  white-space: nowrap;
}

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

.background-color-black {
  background-color: var(--base-color-neutral--black);
}

.text-style-allcaps {
  text-transform: uppercase;
}

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

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

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

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

.text-rich-text figcaption {
  border-left: 2px solid var(--text-color--text-primary);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.form_checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

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

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

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 10rem;
}

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

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

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

.form_message-success-wrapper {
  padding: 0;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

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

.navbar_logo {
  width: 10.1rem;
  transition: opacity .2s;
}

.navbar_logo:hover {
  opacity: .8;
}

.navbar_menu-container {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  font-weight: 500;
  display: flex;
}

.divider {
  background-color: var(--base-color-neutral--neutral-lightest);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 1.5px;
  min-height: 1.5px;
  margin-left: 0;
  margin-right: auto;
  overflow: hidden;
}

.navbar {
  z-index: 999999;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #0000;
  flex-flow: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
}

.button_label-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #ebebeb;
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  height: 3rem;
  min-height: 3rem;
  font-size: 1rem;
  line-height: 1em;
  text-decoration: none;
  transition: border-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button_label-container:hover {
  border-color: #1b1b1b;
}

.link_label-hidden {
  color: var(--text-color--text-alternate);
  display: none;
  position: absolute;
}

.link_label-visible {
  color: var(--text-color--text-alternate);
}

.section_hero {
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  height: 100%;
}

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

.padding-global.height-full {
  height: 100%;
}

._8-colums-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: center;
  width: 100%;
  display: grid;
  position: relative;
}

._8-colums-grid.height-full {
  z-index: 0;
  height: 100%;
}

.notification_dot-background {
  z-index: 1;
  background-color: #b2ff6080;
  border-radius: 50%;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  position: absolute;
  inset: 50% 0% 0% 50%;
  transform: translate(-50%, -50%);
}

.container-large {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container-large.height-full {
  height: 100%;
}

.hero_component {
  z-index: 0;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-bottom: 1rem;
}

.hero_component.is-alternate {
  display: flex;
}

.hero {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
}

.hero.secondary {
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  min-height: auto;
}

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

.footer_legal-links {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  display: flex;
}

.footer_copyright {
  color: #ededed;
  font-weight: 300;
}

.divider-dark {
  background-color: #363636;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 1.5px;
  min-height: 1.5px;
  margin-left: 0;
  margin-right: auto;
  overflow: hidden;
}

.footer {
  min-width: 100%;
  position: relative;
}

.footer_legal-link {
  color: #ededed;
  text-align: center;
  font-size: .875rem;
  text-decoration: none;
  transition: opacity .2s;
}

.footer_legal-link:hover {
  opacity: .5;
  color: #ededed;
}

.footer_legal-link.w--current {
  color: #ededed;
}

.footer_copyright-link {
  color: #ededed;
  text-align: center;
  text-decoration: none;
  transition: opacity .2s;
}

.footer_copyright-link:hover {
  opacity: .5;
  color: #ededed;
}

.footer_location {
  color: var(--base-color-neutral--white);
  font-size: .875rem;
  font-weight: 300;
}

.display-flex-column {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: space-between;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

.section_testimonials {
  padding-left: 0;
  position: relative;
  overflow: hidden;
}

.section_navbar {
  z-index: 800;
  margin-left: auto;
  margin-right: auto;
}

.navbar_component {
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  position: relative;
}

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

.padding-section-xsmall {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

.heading-style-h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.text-size-medium {
  font-size: 1.875rem;
}

.typeface-sample-primary {
  text-align: right;
  letter-spacing: .1em;
  text-transform: capitalize;
  align-self: flex-start;
  font-size: 4.75rem;
  line-height: 1em;
}

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

.header.sticky-header {
  height: 100vh;
  position: sticky;
  top: 0;
}

.doc-heading {
  color: #ededed;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #1c1c1c;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  padding: .5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3em;
}

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

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

.display-flex-row.flex-wrap {
  flex-flow: wrap;
}

.heading-style-h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

.text-style-quote {
  border-left: .1875rem solid #1c1c1c;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.section_doc-header {
  border-bottom: 1px solid #d9d9d9;
}

.text-size-large {
  font-size: 2.5rem;
  line-height: 1.3;
}

.form_message-success {
  color: #53b77c;
  background-color: #ecfdf3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.doc_sticky-column {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  flex-flow: column;
  align-self: stretch;
  display: flex;
  position: sticky;
  top: 4rem;
}

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

.doc_tag {
  color: #1c1c1c;
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #ededed;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  padding: .5rem 1rem;
  font-size: .875rem;
  line-height: 1em;
  display: flex;
}

.section_doc-navbar {
  border-bottom: 1px solid #d9d9d9;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

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

.swatch {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-radius: .25rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h2 {
  font-size: 3rem;
  line-height: 1.2;
}

.text-style-link {
  color: #1c1c1c;
  text-decoration: underline;
}

.doc_component {
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  max-width: 100%;
  padding-left: 0;
  position: static;
}

.swatch_color {
  border: 1.5px solid #d9d9d9;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  min-height: 4rem;
  display: flex;
  overflow: hidden;
}

.form_checkbox-icon {
  cursor: pointer;
  border: 1px solid #d9d9d9;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form_field-container {
  width: 100%;
  position: relative;
}

.swatch_text {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  font-size: 4rem;
  line-height: 1;
  display: flex;
}

.form_field-label {
  color: #1c1c1c;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: .8rem;
  font-weight: 400;
}

.form_component {
  width: 100%;
}

.form_radio-icon {
  cursor: pointer;
  border: 1px solid #d9d9d9;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form_radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.height-full {
  height: 100%;
}

.banner_container {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: center;
  align-items: center;
  width: 120%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 400;
  display: flex;
}

.banner_component {
  white-space: nowrap;
  flex-direction: column;
  display: flex;
}

.section_banner {
  background-color: var(--background-color--background-primary);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.section_logo {
  overflow: hidden;
}

.logo_component {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.logo_list {
  grid-column-gap: 4rem;
  grid-row-gap: 1rem;
  white-space: nowrap;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  place-items: center start;
  margin-right: 2rem;
  display: grid;
}

.logo_container {
  justify-content: center;
  align-items: flex-start;
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
}

.logo_embed {
  justify-content: center;
  align-items: center;
  max-height: 2rem;
  display: flex;
}

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

.cta_heading-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.services_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 6rem;
  display: grid;
  position: relative;
}

.navbar_logo-container {
  z-index: 1;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.footer_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: center;
  width: 100%;
  display: grid;
  position: relative;
}

.footer_logo {
  color: var(--base-color-neutral--white);
  width: 100%;
}

.padding-section-xxsmall {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

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

.parallax-image_component {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.parallax-image_component.ratio-landscape {
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
}

.text-reveal_text {
  white-space: nowrap;
  font-size: 10vw;
  font-weight: 500;
  line-height: 120%;
  display: block;
}

.text-reveal_text.text-color-neutral-lightest {
  color: var(--base-color-neutral--neutral-lightest);
  display: block;
}

.text-reveal_text.hide {
  display: none;
}

.text-reveal_text-container {
  position: relative;
}

.parallax-image_picture {
  object-fit: cover;
  width: 100%;
  height: 120%;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.text-reveal_hover-text {
  position: absolute;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

.text-reveal_main-text {
  position: relative;
}

.services_paragraph {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 400;
}

.services_paragraph.is-large {
  font-size: 1.75rem;
}

.images-grid_image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}

.hero_heading {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: var(--text-color--text-alternate);
  white-space: nowrap;
  font-size: 20vw;
  font-weight: 500;
  display: flex;
  overflow: hidden;
}

.heading-large_container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.heading-large_text {
  letter-spacing: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
}

.images_grid-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: stretch;
  align-self: flex-end;
  place-items: center;
  width: 100%;
  height: 80vh;
  display: grid;
  position: relative;
}

.hero_heading_container {
  position: relative;
}

.hero_heading-span {
  font-size: 8vw;
  line-height: 1.3;
  display: inline-block;
}

.interaction-bloc_heading-container {
  overflow: hidden;
}

.divider-static {
  background-color: var(--base-color-neutral--neutral-lightest);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 1.5px;
  min-height: 1.5px;
  margin-left: 0;
  margin-right: auto;
  overflow: hidden;
}

.toggle_element {
  background-color: var(--background-color--background-tertiary);
  border-radius: 999px;
  justify-content: flex-end;
  align-items: center;
  width: 5rem;
  min-width: 5rem;
  height: 3rem;
  padding-right: .25rem;
  display: flex;
}

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

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

.cta_heading-span {
  white-space: nowrap;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.notification_label {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
}

.notification_dot-container {
  background-color: #b2ff60;
  border-radius: 50%;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  position: relative;
}

.section_parallax-image {
  overflow: hidden;
}

.scroll_element {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--base-color-neutral--white);
  white-space: nowrap;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2rem;
  font-weight: 500;
  display: flex;
  overflow: hidden;
}

.scroll_icon {
  flex-flow: column;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  min-height: 2rem;
  display: flex;
  overflow: hidden;
}

.text-weight-semibold {
  font-weight: 600;
}

.testimonials_arrow-icon {
  color: var(--border-color--border-alternate);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.testimonials_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.testimonials_mask {
  width: 32%;
  overflow: visible;
}

.testimonials_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.testimonials_slide {
  padding-right: 8rem;
}

.testimonials_slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 8rem;
  position: relative;
}

.testimonials_container {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.testimonials_image {
  align-self: flex-start;
  width: 10rem;
  height: auto;
  min-height: 3rem;
}

.testimonials_image-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
}

.testimonials_arrow {
  border: 1px solid var(--border-color--border-primary);
  background-color: var(--background-color--background-alternate);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.testimonials_arrow:hover {
  opacity: .8;
}

.testimonials_arrow.is-left {
  left: auto;
  right: 5rem;
}

.testimonials_divider {
  background-color: var(--border-color--border-primary);
  width: 1rem;
  height: 4px;
}

.testimonials_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.testimonials_heading {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 400;
}

.testimonials_paragraph {
  font-weight: 400;
  line-height: 1.6;
}

.portfolio_project-client {
  font-size: 1.5rem;
  font-weight: 400;
}

.portfolio_heading {
  z-index: 1;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: center;
  width: 100%;
  display: grid;
  position: relative;
}

.portfolio_project-name {
  font-size: 3.5rem;
  font-weight: 500;
}

.portfolio_item {
  width: 100%;
  height: 100%;
}

.portfolio_header {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  cursor: none;
  flex-flow: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  margin-top: 2rem;
  display: flex;
}

.portfolio_body {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  display: grid;
  overflow: hidden;
}

.portfolio_project-date {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 400;
}

.portfolio_image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio_images-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: block;
}

.portfolio_project-infos {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  width: 80%;
  display: flex;
}

.portfolio_project-recognition {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.portfolio_project-recognition-heading, .portfolio_project_recognition-award {
  font-size: 1rem;
  font-weight: 400;
}

.portfolio_project-details {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.portfolio_bottom-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-self: stretch;
  display: flex;
}

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

.notification-text_paragraph {
  flex: 1;
  font-size: 1.75rem;
  font-weight: 400;
}

.services_heading {
  font-size: 2rem;
  font-weight: 500;
}

.parallax-image_text {
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 6vw;
  font-weight: 400;
  line-height: 1.3;
  position: relative;
}

.notification-text_content {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.tag_element {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  white-space: nowrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tag_dot {
  background-color: var(--base-color-neutral--white);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-top: 3px;
}

.parallax-image_text-span {
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.parallax-image_text-container {
  z-index: 1;
  color: var(--text-color--text-alternate);
  position: relative;
}

.cursor_text {
  text-transform: uppercase;
}

.cursor_element {
  z-index: 100;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0;
}

.cursor_container {
  z-index: 90;
  background-color: var(--background-color--background-alternate);
  opacity: 0;
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: 50%;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 156px;
  height: 156px;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.tag_label {
  color: var(--text-color--text-alternate);
  font-size: .83rem;
}

.navbar_link {
  color: var(--link-color--link-alternate);
  transition: opacity .2s;
}

.navbar_link:hover {
  opacity: .6;
  color: var(--link-color--link-alternate);
}

.header_index {
  font-size: 1.875rem;
  font-weight: 400;
}

.bottom-spacer {
  width: 100%;
  height: 16rem;
}

.portfolio_container, .portfolio_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.banner_item {
  font-size: 4rem;
  font-weight: 600;
}

.services_content-container {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.footer_nav-link {
  color: var(--link-color--link-alternate);
  font-weight: 400;
  text-decoration: none;
  transition: opacity .2s;
}

.footer_nav-link:hover {
  opacity: .6;
  color: var(--link-color--link-alternate);
}

.footer_nav-link.is-email {
  font-size: 3rem;
}

.footer_nav-link.is-phone {
  font-weight: 300;
}

.footer_nav-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.footer_nav-container.is-social {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer_nav-container.is-documentation {
  flex-flow: row;
}

.parallax-image_overlay {
  background-color: var(--background-color--background-alternate);
  opacity: .25;
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  height: 100%;
  position: relative;
}

.parallax-image_container {
  position: absolute;
  inset: 0%;
}

.hero_image-container {
  z-index: auto;
  background-color: #afafaf;
  align-self: stretch;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  position: absolute;
  inset: 0%;
}

.hero_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.doc-navbar_menu {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.doc_sticky-column-links {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  flex-flow: column;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.doc_image {
  width: 25%;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.divider-2 {
  background-color: #d9d9d9;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 1.5px;
  min-height: 1.5px;
  margin-left: 0;
  margin-right: auto;
  overflow: hidden;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.utility_block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 20rem;
  display: flex;
}

.hero_heading-container {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: static;
}

.hero_top {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.hero_top.secondary {
  padding-bottom: 8rem;
}

.hero_logo-image {
  filter: invert();
  width: 8rem;
}

.legal_component {
  z-index: 99;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
}

.notification_dot-background-2 {
  z-index: 1;
  background-color: #b2ff6080;
  border-radius: 50%;
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  position: absolute;
  inset: 50% 0% 0% 50%;
  transform: translate(-50%, -50%);
}

.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}

.navbar_info {
  color: var(--text-color--text-alternate);
  white-space: nowrap;
  font-weight: 500;
}

.hero_image-overlay {
  background-color: var(--base-color-neutral--black);
  opacity: .4;
  position: absolute;
  inset: 0%;
}

.navbar_menu-inner {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.portfolio_info {
  font-size: 1rem;
  font-weight: 400;
}

.footer_contact {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: space-between;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.portfolio_image-container {
  overflow: hidden;
}

.spline-scene {
  z-index: 100;
  position: absolute;
  inset: 0%;
}

.works {
  margin-top: 0;
  padding: 38px;
}

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

.box {
  border-radius: 3.1rem;
  position: relative;
  overflow: hidden;
}

.rad-slika {
  opacity: .88;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.naslov-rada {
  color: #000;
  text-transform: lowercase;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 120%;
  position: absolute;
  inset: 3% auto auto 6%;
}

.clients-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 28px;
  display: grid;
}

.clients-div {
  justify-content: center;
  align-items: center;
  padding: 48px;
  display: flex;
}

.clients-logo {
  mix-blend-mode: multiply;
}

.clients-logo.manji {
  mix-blend-mode: multiply;
  padding: 19px;
}

.clients-logo.najmanji {
  padding: 27px;
}

.photos {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100vw;
  padding: 63px;
  display: grid;
}

.image {
  border-radius: 2.7rem;
  width: 100%;
  margin-bottom: 40px;
}

.lightbox-link {
  width: 100%;
  height: 100%;
}

.image-2 {
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

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

  .spacer-medium.tablet-display-none {
    display: none;
  }

  .spacer-xxhuge {
    padding-top: 7.5rem;
  }

  .navbar_menu {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    position: relative;
  }

  .navbar_menu.is-social {
    display: none;
  }

  .navbar_toggle {
    padding: 0;
  }

  .navbar_toggle.w--open {
    color: #ebebeb;
    background-color: #0000;
  }

  .navbar_menu-container {
    z-index: 0;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    background-color: #1b1b1b;
    flex-flow: column;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    width: 100%;
    min-width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    inset: 0%;
  }

  .divider {
    display: block;
  }

  .navbar {
    z-index: 1;
    background-color: #1b1b1b;
  }

  .button_label-container {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  ._8-colums-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

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

  .footer_copyright.is-right {
    text-align: right;
  }

  .divider-dark {
    display: block;
  }

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

  .section_navbar {
    width: 100%;
    position: fixed;
    top: 0;
  }

  .navbar_component {
    max-width: none;
    overflow: visible;
  }

  .heading-style-h3, .text-size-medium {
    font-size: 2.25rem;
  }

  .typeface-sample-primary {
    font-size: 3.5rem;
  }

  .header {
    position: static;
  }

  .header.sticky-header {
    position: relative;
    top: auto;
  }

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

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

  .display-flex-row.tablet-flex-wrap {
    flex-flow: wrap;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

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

  .doc_sticky-column {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    margin-bottom: 4rem;
    position: static;
  }

  .doc_tag {
    font-size: .8125rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .doc_component {
    max-width: none;
  }

  .banner_container {
    font-size: 4rem;
  }

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

  .cta_container {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
  }

  .services_grid, .footer_grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

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

  .divider-static {
    display: block;
  }

  .cta_heading-span {
    font-size: 2.75rem;
  }

  .scroll_element {
    margin-bottom: 1.5rem;
  }

  .testimonials_slide {
    padding-right: 4rem;
  }

  .portfolio_project-name {
    font-size: 3rem;
  }

  .portfolio_images-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .portfolio_project-infos {
    width: 100%;
    padding-top: 2rem;
  }

  .services_heading {
    font-size: 3rem;
  }

  .tag_element {
    display: none;
  }

  .navbar_link {
    font-size: 2rem;
  }

  .header_index {
    font-size: 2.25rem;
  }

  .portfolio_container, .portfolio_content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .banner_item {
    font-size: 2.5rem;
  }

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

  .footer_nav-container.is-social {
    justify-content: flex-start;
    align-items: center;
  }

  .doc-navbar_menu, .doc_sticky-column-links {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .divider-2 {
    display: block;
  }

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

  .hero_top {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .navbar_info {
    display: none;
  }

  .navbar_menu-inner {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0%;
  }

  .portfolio_info {
    display: none;
  }

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

  .works {
    padding: 27px;
  }

  .box {
    border-radius: 2.1rem;
  }

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

  .clients-div {
    padding: 19px;
  }

  .clients-logo.manji {
    padding: 9px;
  }

  .clients-logo.najmanji {
    padding: 18px;
  }

  .photos {
    padding: 49px;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xxhuge {
    padding-top: 5rem;
  }

  .navbar_menu, .navbar_menu-container {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .navbar {
    z-index: 9999999;
  }

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

  ._8-colums-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer_legal-links {
    grid-auto-flow: row;
  }

  .footer_copyright {
    text-align: center;
  }

  .display-flex-column {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .padding-section-xsmall {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .heading-style-h3, .text-size-medium {
    font-size: 2rem;
  }

  .typeface-sample-primary {
    font-size: 2.25rem;
  }

  .doc-heading {
    font-size: 1.125rem;
  }

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

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .text-style-quote, .heading-style-h6 {
    font-size: 1.125rem;
  }

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

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

  .doc_tag {
    font-size: .8125rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

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

  .logo_list {
    grid-column-gap: 1rem;
    grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
    padding-top: 1rem;
  }

  .logo_container {
    padding: .75rem 1rem;
  }

  .logo_embed {
    max-height: 3rem;
  }

  .services_grid, .footer_grid {
    grid-template-columns: 1fr 1fr;
  }

  .padding-section-xxsmall {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .services_paragraph.is-large {
    font-size: 1.5rem;
  }

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

  .images_grid-container {
    grid-template-columns: 1fr 1fr;
  }

  .cta_heading {
    flex-flow: column;
  }

  .cta_heading-span {
    font-size: 2.25rem;
  }

  .scroll_element {
    display: none;
  }

  .testimonials_mask {
    width: 100%;
  }

  .testimonials_arrow.is-left {
    right: 5rem;
  }

  .portfolio_heading {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 2rem;
  }

  .portfolio_project-name {
    font-size: 2.5rem;
  }

  .portfolio_project-recognition {
    flex-flow: column;
  }

  .notification-text_paragraph {
    font-size: 1.5rem;
  }

  .services_heading {
    font-size: 2rem;
  }

  .header_index {
    font-size: 1.25rem;
  }

  .portfolio_container, .portfolio_content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .banner_item {
    font-size: 2rem;
  }

  .footer_nav-link {
    transition: opacity .2s;
  }

  .footer_nav-link:hover {
    opacity: .6;
  }

  .footer_nav-link.is-email {
    align-self: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 2rem;
  }

  .footer_nav-container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: space-between;
    align-items: center;
  }

  .footer_nav-container.is-social, .footer_nav-container.is-documentation {
    flex-flow: column;
  }

  .doc-navbar_menu {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 1.5rem;
  }

  .doc_sticky-column-links, .hero_heading-container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

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

  .legal_component {
    align-items: flex-start;
  }

  .spacer-xsmall {
    padding-top: .75rem;
  }

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

  .works {
    padding: 18px;
  }

  .photos {
    padding: 32px;
  }
}

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

  .navbar_logo {
    width: 9rem;
  }

  .banner_container {
    font-size: 3rem;
  }

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

  .logo_list {
    justify-content: center;
  }

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

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

  .naslov-rada {
    font-size: 6vw;
  }

  .clients-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 41px;
  }

  .clients-div {
    padding: 9px;
  }

  .clients-logo.manji {
    padding: 10px;
  }

  .clients-logo.najmanji {
    padding: 24px;
  }

  .photos {
    grid-template-columns: 1fr 1fr;
    padding: 21px;
  }

  .image {
    margin-bottom: 18px;
  }
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addc83-998d8e67 {
  grid-area: 1 / 1 / 2 / 3;
  place-self: start;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addc85-998d8e67 {
  grid-area: 1 / 3 / 2 / 4;
  place-self: start;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addc82-998d8e67 {
  grid-area: 1 / 4 / 2 / 8;
  place-self: start stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addc97-998d8e67 {
  grid-area: 1 / 8 / 2 / 9;
  place-self: start end;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addc9b-998d8e67 {
  grid-area: 2 / 7 / 3 / -1;
  place-self: center end;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addca8-998d8e67 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: end stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addcbc-998d8e67 {
  grid-area: 1 / 7 / 2 / -1;
  place-self: end;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addccc-998d8e67, #w-node-_482497cc-887a-b8b3-0b1a-a69528addccd-998d8e67 {
  grid-area: 1 / 1 / 2 / -1;
  place-self: center start;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addcd4-998d8e67, #w-node-_482497cc-887a-b8b3-0b1a-a69528addcd6-998d8e67 {
  grid-area: 1 / 7 / 2 / -1;
  place-self: end;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addcdf-998d8e67 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: start;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addce9-998d8e67 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: stretch stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addcea-998d8e67 {
  grid-area: 2 / 1 / 3 / 2;
  place-self: stretch stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addceb-998d8e67 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: stretch stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addcec-998d8e67 {
  grid-area: 1 / 3 / 2 / 4;
  place-self: stretch stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addced-998d8e67 {
  grid-area: 1 / 4 / 2 / 5;
  place-self: stretch stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addcee-998d8e67 {
  grid-area: 2 / 3 / 3 / 5;
  place-self: stretch stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addcf5-998d8e67 {
  grid-area: 1 / 1 / 2 / -1;
  place-self: center stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addd0d-998d8e67, #w-node-_482497cc-887a-b8b3-0b1a-a69528addd0e-998d8e67 {
  grid-area: 1 / 1 / 2 / -1;
  place-self: center start;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addd15-998d8e67, #w-node-_482497cc-887a-b8b3-0b1a-a69528addd17-998d8e67 {
  grid-area: 1 / 7 / 2 / -1;
  place-self: end;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addd20-998d8e67 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: start;
}

#w-node-_8eca68f0-21af-9167-9748-b33a309b539b-998d8e67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_8eca68f0-21af-9167-9748-b33a309b539d-998d8e67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8eca68f0-21af-9167-9748-b33a309b539f-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53a1-998d8e67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_8eca68f0-21af-9167-9748-b33a309b53a3-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53a5-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53a7-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53a9-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53ab-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53ad-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53af-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53b1-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53b3-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53b5-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53b7-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53b9-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53bb-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53bd-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53bf-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53c1-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53c3-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53c5-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53c7-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53c9-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53cb-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53cd-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53cf-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53d1-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53d3-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53d5-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53d7-998d8e67, #w-node-_8eca68f0-21af-9167-9748-b33a309b53d9-998d8e67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528adddcb-998d8e67, #w-node-_482497cc-887a-b8b3-0b1a-a69528adddcc-998d8e67 {
  grid-area: 1 / 1 / 2 / -1;
  place-self: center start;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528adddd3-998d8e67, #w-node-_482497cc-887a-b8b3-0b1a-a69528adddd5-998d8e67 {
  grid-area: 1 / 7 / 2 / -1;
  place-self: end;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528adddde-998d8e67 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  place-self: start;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70de-998d8e67 {
  grid-area: span 3 / span 3 / span 3 / span 3;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70e4-998d8e67 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70e8-998d8e67 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70ee-998d8e67 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70f2-998d8e67 {
  grid-area: span 2 / span 3 / span 2 / span 3;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70f8-998d8e67 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70fc-998d8e67 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7100-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7104-998d8e67 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f710a-998d8e67 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7110-998d8e67 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7116-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f711d-998d8e67 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7123-998d8e67 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7129-998d8e67 {
  grid-area: span 2 / span 3 / span 2 / span 3;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f712f-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7135-998d8e67 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f713b-998d8e67 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7141-998d8e67 {
  grid-area: span 2 / span 3 / span 2 / span 3;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528adde7c-998d8e67 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_92d5c6fb-9276-e207-4fcb-67c06316a688-998d8e67 {
  grid-area: 1 / 4 / 2 / 8;
  place-self: start;
}

#w-node-ce9266ea-a90d-3093-6284-b16e6040864a-998d8e67, #w-node-ce9266ea-a90d-3093-6284-b16e6040864e-998d8e67 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b8555bca-eb24-182d-b56e-6989092c165b-998d8e67 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: stretch start;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addeb2-998d8e67 {
  grid-area: 1 / 6 / 2 / 9;
  place-self: start end;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addecb-998d8e67 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addee2-998d8e67 {
  grid-area: 1 / 1 / 2 / -1;
  align-self: start;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addeee-998d8e67 {
  grid-area: 1 / 1 / 2 / -1;
  place-self: center stretch;
}

#w-node-_482497cc-887a-b8b3-0b1a-a69528addef3-998d8e67 {
  grid-area: 1 / 7 / 2 / 9;
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc83-998d8e67 {
    grid-column-end: 2;
    align-self: center;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc82-998d8e67 {
    grid-column: 2 / 4;
    justify-self: end;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc9b-998d8e67 {
    grid-area: 1 / 4 / 2 / 5;
    place-self: start end;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addca8-998d8e67 {
    grid-column-end: 4;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addcbc-998d8e67 {
    grid-column: 4 / 5;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addccc-998d8e67 {
    grid-column-end: 4;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addcd4-998d8e67 {
    grid-column: 4 / 5;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addcdf-998d8e67 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addd0d-998d8e67 {
    grid-column-end: 4;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addd15-998d8e67 {
    grid-column: 4 / 5;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addd20-998d8e67 {
    grid-column: span 4 / span 4;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528adddcb-998d8e67 {
    grid-column-end: 4;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528adddd3-998d8e67 {
    grid-column: 4 / 5;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528adddde-998d8e67 {
    grid-column: span 4 / span 4;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528adde7c-998d8e67 {
    grid-column-end: -1;
  }

  #w-node-_92d5c6fb-9276-e207-4fcb-67c06316a688-998d8e67, #w-node-b8555bca-eb24-182d-b56e-6989092c165b-998d8e67 {
    grid-area: 2 / 1 / 3 / -1;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addeb2-998d8e67 {
    grid-column: 1 / -1;
    justify-self: start;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addef3-998d8e67 {
    grid-column: 4 / 5;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc83-998d8e67 {
    grid-column-end: -1;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc82-998d8e67 {
    grid-column: 1 / 9;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc9b-998d8e67 {
    grid-column: 2 / 3;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addca8-998d8e67 {
    grid-column-end: -1;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addccc-998d8e67 {
    grid-column-end: 3;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addcd4-998d8e67 {
    grid-column: 2 / 3;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addcdf-998d8e67 {
    grid-column: span 2 / span 2;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addcea-998d8e67 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addceb-998d8e67 {
    grid-row-start: 2;
    grid-column-start: 1;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addcec-998d8e67 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addced-998d8e67 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addcee-998d8e67 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addd0d-998d8e67 {
    grid-column-end: 3;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addd15-998d8e67 {
    grid-column: 2 / 3;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addd20-998d8e67 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528adddcb-998d8e67 {
    grid-column-end: 2;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528adddd3-998d8e67 {
    grid-column: 2 / 3;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528adddde-998d8e67 {
    grid-column: span 2 / span 2;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addef3-998d8e67 {
    grid-area: 3 / 1 / 4 / -1;
    place-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc85-998d8e67 {
    grid-column: 1 / 2;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc82-998d8e67 {
    grid-column-end: -1;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc97-998d8e67 {
    grid-column: 1 / 2;
  }

  #w-node-_482497cc-887a-b8b3-0b1a-a69528addc9b-998d8e67 {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
  }

  #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70de-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70e4-998d8e67 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70e8-998d8e67 {
    grid-column: span 1 / span 1;
  }

  #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70ee-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70f2-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70f8-998d8e67 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f70fc-998d8e67 {
    grid-column: span 1 / span 1;
  }

  #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7100-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7104-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f710a-998d8e67 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7110-998d8e67 {
    grid-column: span 1 / span 1;
  }

  #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7116-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f711d-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7123-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7129-998d8e67 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f712f-998d8e67 {
    grid-column: span 1 / span 1;
  }

  #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7135-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f713b-998d8e67, #w-node-_578c8b3e-546f-e468-67b4-8ad65c4f7141-998d8e67 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Bdogrotesk Vf';
  src: url('../fonts/BDOGrotesk-VF.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}