:root {
  --background-color--background-tertiary: var(--base-color-brand--white);
  --text-color--text-primary: var(--base-color-brand--blue-dark);
  --background-color--background-secondary: var(--base-color-brand--blue);
  --background-color--background-primary: var(--base-color-neutral--black-primary);
  --text-color--text-alternate: var(--base-color-brand--white);
  --text-color--text-secondary: var(--base-color-brand--black);
  --background-color--background-success: var(--base-color-system--success-green);
  --text-color--text-success: var(--base-color-system--success-green-dark);
  --border-color--border-primary: var(--base-color-neutral--neutral-lightest);
  --link-color--link-primary: var(--base-color-brand--blue);
  --background-color--background-error: var(--base-color-system--error-red);
  --text-color--text-error: var(--base-color-system--error-red-dark);
  --background-color--color-secondary-dark-blue: var(--base-color-brand--blue-dark);
  --background-color--background-color-yellow: var(--base-color-brand--yellow-gold);
  --border-color--border-alternate: var(--base-color-neutral--neutral-darker);
  --background-color--background-warning: var(--base-color-system--warning-yellow);
  --text-color--text-warning: var(--base-color-system--warning-yellow-dark);
  --link-color--link-alternate: var(--base-color-neutral--white-primary);
  --text-color--text-accent: var(--background-color--background-color-yellow);
  --base-color-brand--blue-dark: #172b46;
  --text-color--text-neutral: var(--base-color-neutral--neutral-lighter);
  --border-color--border-secondary: var(--base-color-brand--blue);
  --link-color--link-secondary: var(--base-color-neutral--black-primary);
  --base-color-brand--black: #0c0c0f;
  --base-color-brand--blue: #2b4f79;
  --base-color-brand--yellow-gold: #aea551;
  --base-color-brand--white: #f5f5fa;
  --base-color-neutral--black-primary: #0c0c0f;
  --base-color-neutral--white-primary: #f5f5fa;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #cef5ca;
  --base-color-system--success-green-dark: #114e0b;
  --base-color-system--warning-yellow: #fcf8d8;
  --base-color-system--warning-yellow-dark: #5e5515;
  --base-color-system--error-red: #f8e4e4;
  --base-color-system--error-red-dark: #3b0b0b;
  --base-color-system--focus-state: #2d62ff;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  background-color: var(--background-color--background-tertiary);
  color: var(--text-color--text-primary);
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5625rem;
  font-weight: 600;
  line-height: 1.1;
}

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

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

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

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

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
}

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

li {
  margin-bottom: .25rem;
}

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

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

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

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

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

.utility-page_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-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.margin-custom2 {
  margin: 2.5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

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

.padding-xhuge {
  padding: 8rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.padding-0 {
  padding: 0;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-huge {
  padding: 6rem;
}

.margin-large {
  margin: 3rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.padding-custom3 {
  padding: 3.5rem;
}

.padding-large {
  padding: 3rem;
}

.margin-tiny {
  margin: .125rem;
}

.padding-small {
  padding: 1rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.margin-huge {
  margin: 6rem;
}

.padding-medium {
  padding: 2rem;
}

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

.margin-xxlarge {
  margin: 5rem;
}

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

.margin-xhuge {
  margin: 8rem;
}

.padding-tiny {
  padding: .125rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

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

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

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

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

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

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

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

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

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

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

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

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_background {
  border: 1px solid rgba(0, 0, 0, .1);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, rgba(45, 64, 234, .1), rgba(255, 255, 255, 0));
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: stretch;
  display: grid;
  position: relative;
}

.icon-1x1-small {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
}

.overflow-auto {
  overflow: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

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

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

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

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.fs-styleguide_item.background-dark {
  background-image: linear-gradient(to bottom, var(--background-color--background-secondary), var(--background-color--background-secondary));
}

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

.fs-styleguide_item-header {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  width: 100%;
  padding-bottom: 2rem;
}

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

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

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

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

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

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.form_message-success {
  background-color: var(--background-color--background-success);
  color: var(--text-color--text-success);
  padding: 1.25rem;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h3 {
  font-size: 2.25rem;
  line-height: 1.2;
}

.text-rich-text h1, .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 ul, .text-rich-text ol {
  margin-bottom: 1.5rem;
}

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

.text-rich-text ul, .text-rich-text ol {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.text-rich-text img {
  border-radius: 10px;
}

.pointer-events-auto {
  pointer-events: auto;
}

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

.icon-height-small {
  height: 1rem;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.heading-style-h1 {
  line-height: 1.1;
}

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

.padding-global.header-1_padding-top-custom {
  padding-top: 5rem;
}

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

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

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

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

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

.pointer-events-none {
  pointer-events: none;
}

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

.overflow-hidden {
  overflow: hidden;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--border-color--border-primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

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

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

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

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: rgba(45, 64, 234, .05);
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

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

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

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

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

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

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

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

.max-width-medium {
  width: 100%;
  max-width: 700px;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: start;
  display: grid;
}

.background-color-gradient {
  z-index: 1;
  background-image: linear-gradient(180deg, var(--background-color--background-primary), var(--background-color--background-secondary));
  position: relative;
}

.background-color-gradient._2 {
  background-image: linear-gradient(270deg, var(--background-color--background-primary), var(--background-color--background-secondary));
}

.background-color-gradient._3 {
  background-image: linear-gradient(0deg, var(--background-color--background-primary), var(--background-color--background-secondary));
}

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

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

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

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

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

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

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

.form_input {
  border: 1px solid var(--border-color--border-primary);
  background-color: rgba(0, 0, 0, 0);
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form_input::placeholder {
  color: var(--text-color--text-secondary);
}

.form_input.is-select-input {
  color: var(--text-color--text-secondary);
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

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

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

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

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

.fs-styleguide_header {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  background-image: radial-gradient(circle at 100% 100%, rgba(221, 35, 187, .25), rgba(0, 0, 0, 0) 40%), radial-gradient(circle at 0 100%, rgba(45, 98, 255, .3), rgba(0, 0, 0, 0) 60%);
}

.heading-style-h2 {
  line-height: 1.2;
}

.fs-styleguide_label {
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: var(--background-color--background-tertiary);
}

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

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

.icon-height-medium {
  height: 2rem;
}

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

.overflow-scroll {
  overflow: scroll;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  margin-top: .75rem;
  padding: .75rem;
}

.icon-height-large {
  height: 3rem;
}

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

.form_component {
  margin-bottom: 0;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.button {
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: .75rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .1s;
}

.button:hover {
  background-color: var(--background-color--color-secondary-dark-blue);
  box-shadow: 0 2px 5px 0 var(--background-color--color-secondary-dark-blue);
  transform: translate(0, -2px);
}

.button.is-text {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0);
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-form-submit {
  background-color: var(--background-color--background-tertiary);
  color: var(--text-color--text-primary);
}

.button.is-form-submit:hover {
  background-color: var(--background-color--background-color-yellow);
  transform: none;
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-secondary {
  border: 1px solid var(--border-color--border-alternate);
  color: var(--text-color--text-primary);
  background-color: rgba(0, 0, 0, 0);
}

.button.is-secondary.white {
  border-color: var(--background-color--background-tertiary);
  color: var(--text-color--text-alternate);
}

.button.is-secondary.white:hover {
  box-shadow: none;
  transform: scale(.95);
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is-third {
  border: 1px solid var(--background-color--background-tertiary);
  background-color: var(--background-color--background-tertiary);
  color: var(--text-color--text-primary);
}

.button.is-third:hover {
  box-shadow: none;
  transform: scale(.95);
}

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

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

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

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

.hide {
  display: none;
}

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

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

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

.fs-styleguide_spacing-all {
  display: none;
}

.spacer-huge {
  width: 100%;
  padding-top: 5rem;
  display: block;
}

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

.fs-styleguide_spacer-box {
  background-color: rgba(45, 64, 234, .1);
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

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

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

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

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

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

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

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-large {
  padding-top: 3rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.fs-styleguide_message {
  background-color: var(--background-color--background-warning);
  color: var(--text-color--text-warning);
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.nav_component {
  background-color: #000;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav_logo {
  width: 10rem;
}

.nav_menu_link {
  color: #fff;
  padding: 1rem;
}

.nav_button {
  padding: 1rem;
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.fs-styleguide_heading-header {
  font-size: 6rem;
}

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

.navbar_logo-link {
  padding-left: 0;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.home-navbar_component {
  z-index: 3;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
  position: fixed;
  overflow: visible;
}

.navbar2_dropdwn-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
}

.navbar2_dropdwn-toggle:hover {
  color: var(--link-color--link-primary);
}

.navbar_dropdown-list.w--open {
  border: 1px solid var(--background-color--background-secondary);
  background-color: var(--background-color--background-tertiary);
  border-radius: 12px;
  padding: 1rem;
  position: absolute;
}

.navbar_container {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.navbar_menu-button {
  padding: 0;
}

.navbar2_link {
  padding: .5rem .75rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}

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

.navbar2_link.w--current {
  color: var(--text-color--text-accent);
}

.navbar_button-wrapper {
  grid-column-gap: 1rem;
  margin-left: 1rem;
  display: flex;
}

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

.navbar_menu {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.navbar_menu.is-page-height-tablet {
  justify-content: center;
  align-items: center;
  margin-right: 75px;
}

.dropdown-list_link {
  color: var(--text-color--text-primary);
  border-radius: 12px;
  width: 300px;
  padding: .5rem;
  text-decoration: none;
  transition: all .2s;
}

.dropdown-list_link:hover {
  background-color: rgba(174, 165, 81, .5);
}

.navbar_language-link {
  color: var(--link-color--link-alternate);
  padding: .75rem 1.5rem .75rem .75rem;
  font-weight: 600;
  text-decoration: none;
}

.navbar_language-link.navbar2_link, .navbar_language-link.hide-desktop {
  display: none;
}

.header-1_right-content {
  flex-flow: column;
  height: 90%;
  display: flex;
  position: relative;
  left: auto;
  overflow: visible;
}

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

.section_header-1 {
  overflow: hidden;
}

.header-home_component {
  grid-column-gap: 0rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: stretch;
  height: 100vh;
  display: grid;
  position: relative;
}

.header-home_image-wrapper {
  flex: 1;
  width: 700px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -156px;
  right: 0;
  overflow: visible;
}

.header-home_content {
  z-index: 2;
  max-width: 45rem;
  margin-top: 5rem;
  margin-right: 0;
  position: relative;
}

.header-home {
  height: 100vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.header-home.background-color-gradient {
  background-image: linear-gradient(0deg, var(--background-color--background-primary), var(--background-color--background-secondary));
  width: 40%;
  display: none;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

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

.vertical-divider {
  background-color: var(--background-color--background-primary);
  width: 1px;
}

.header-home_footer-right {
  max-width: 140px;
}

.header-home_footer-left {
  text-align: right;
}

.baackground-photo-mobile, .mobile-button-wrapper {
  display: none;
}

.section_home-about {
  overflow: hidden;
}

.hero-header_grid {
  grid-column-gap: 18px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
  position: relative;
}

.hero-header_image-wrapper {
  position: relative;
}

.hero-image {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hero-image.training-1 {
  background-image: url('../images/pedro-miranda-3QzMBrvCeyQ-unsplash-3.png');
  background-position: 0 0;
  background-size: auto;
}

.hero-image.training-2 {
  display: block;
}

.hero-header_caption-text {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-header_caption-text-line {
  background-color: var(--background-color--background-color-yellow);
  width: 30px;
  height: 2px;
}

.caption-text {
  color: var(--text-color--text-accent);
  text-transform: uppercase;
  font-weight: 600;
}

.about-button {
  color: var(--text-color--text-alternate);
  width: 130px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.about-button_text {
  padding-top: 5px;
  padding-bottom: 5px;
}

.about-button_text:hover {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.background-squre {
  z-index: 0;
  background-image: linear-gradient(rgba(43, 79, 121, .2), rgba(255, 255, 255, 0));
  border-radius: 12px;
  width: 350px;
  height: 350px;
  position: absolute;
  top: 60px;
  left: 315px;
}

.background-squre.yellow {
  z-index: 0;
  background-image: linear-gradient(rgba(174, 165, 81, .2), rgba(255, 255, 255, 0));
  width: 300px;
  top: 187px;
  left: 35px;
}

.background-squre.header.blue {
  top: auto;
  bottom: -212px;
  left: auto;
  right: 40px;
}

.background-squre.header.yellow {
  background-image: linear-gradient(rgba(174, 165, 81, .15), rgba(255, 255, 255, 0));
  width: 450px;
  top: auto;
  bottom: -183px;
  left: -17px;
  right: 0%;
}

.background-squre.cooperate.blue {
  width: 450px;
  top: 56px;
  bottom: 0%;
  left: auto;
  right: 166px;
}

.background-squre.contact.yellow {
  z-index: 0;
  height: 200px;
  top: 53%;
  bottom: 0%;
  left: auto;
  right: -495px;
}

.div-block-4 {
  z-index: 1;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section_home-stats {
  overflow: hidden;
}

.home-stats_component {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: stretch;
  display: grid;
}

.stats_card {
  border-left: 2px solid var(--background-color--background-secondary);
}

.home-stats_card_stats-number-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
}

.stats-number {
  font-size: 5rem;
  font-weight: 500;
}

.stats-unit {
  color: var(--text-color--text-accent);
  font-size: 5rem;
  font-weight: 500;
}

.stats-card_footer {
  margin-left: 1.5rem;
  font-weight: 500;
}

.section-divider {
  background-color: var(--background-color--background-secondary);
  width: 85%;
  height: 1px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.section_services {
  overflow: hidden;
}

.services_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.services_component._2-col {
  grid-template-columns: 1fr 1fr;
  align-items: end;
  justify-items: center;
}

.services_component.en {
  align-items: end;
  justify-items: center;
}

.services_card {
  flex-flow: column;
  max-width: 400px;
  display: flex;
  position: relative;
}

.services-card_divider {
  background-color: var(--background-color--background-secondary);
  width: 100%;
  height: 1px;
}

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

.square-element-small {
  z-index: -1;
  background-color: rgba(174, 165, 81, .5);
  border-radius: 12px;
  width: 215px;
  height: 120px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
}

.square-element-small.home-process {
  background-color: rgba(174, 165, 81, .63);
  top: 50px;
  right: -70px;
}

.square-element-small.testimonials.right {
  top: 170px;
  right: -70px;
}

.square-element-small.testimonials.left {
  top: auto;
  bottom: 130px;
  left: -70px;
  right: auto;
}

.square-element-small.about-gallery {
  top: 90px;
  bottom: auto;
  left: -70px;
  right: auto;
}

.square-element-small.about-gallery.left {
  top: auto;
  bottom: 100px;
  left: auto;
  right: -70px;
}

.square-element-small.private.left {
  top: 296px;
  bottom: auto;
  left: -70px;
  right: auto;
}

.square-element-small.private.right {
  top: auto;
  bottom: 152px;
  left: auto;
  right: -70px;
}

.square-element-small.cooperate {
  top: -20px;
  bottom: 0;
  right: 130px;
}

.square-element-small.cooperate.right {
  left: -46px;
  right: auto;
}

.square-element-small.xsmall {
  width: 180px;
  height: 80px;
}

.square-element-small.xsmall.industry {
  top: -10px;
  bottom: 0;
  right: 64px;
}

.services_card-content {
  flex-flow: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.header-section-left_component {
  max-width: 700px;
}

.background-square-element_wrapper {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section_why {
  z-index: 2;
  overflow: hidden;
}

.central-header_component {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.central-header_content-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

.why_card {
  border-right: 1px solid var(--background-color--background-tertiary);
  border-bottom: 1px solid var(--background-color--background-tertiary);
  border-bottom-right-radius: 12px;
  flex-flow: column;
  padding: 1.5rem;
  display: flex;
}

.why_card.central {
  border-left: 1px solid var(--background-color--background-tertiary);
  border-bottom-left-radius: 12px;
}

.why_card.right {
  border-left: 1px solid var(--background-color--background-tertiary);
  border-right-style: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 12px;
}

.why_destription {
  font-size: 1rem;
}

.section_process {
  background-color: var(--background-color--background-tertiary);
  position: relative;
  overflow: hidden;
}

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

.timeline1_line {
  background-color: var(--background-color--background-secondary);
  width: 2px;
  height: 100%;
}

.timeline1_circle {
  z-index: 2;
  background-image: linear-gradient(180deg, var(--background-color--background-primary), var(--background-color--background-secondary));
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-top: 2rem;
}

.timeline1_fade-overlay-top {
  z-index: 1;
  background-image: linear-gradient(0deg, var(--background-color--background-secondary), white);
  width: 2px;
  height: 4rem;
  position: absolute;
}

.timeline1_content-left {
  padding-right: 1rem;
  position: -webkit-sticky;
  position: sticky;
  top: 5rem;
}

.timeline1_fade-overlay-bottom {
  z-index: 0;
  background-image: linear-gradient(180deg, var(--background-color--background-secondary), var(--background-color--background-tertiary));
  width: 2px;
  height: 4rem;
  position: absolute;
  bottom: 0%;
}

.timeline1_circle-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: flex-start;
  width: 8rem;
  height: 100%;
  margin-left: -8rem;
  display: flex;
  position: absolute;
}

.timeline1_row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  position: relative;
}

.timeline1_progress {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 2rem;
  height: 100%;
  display: flex;
  position: absolute;
}

.timeline1_component {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  display: grid;
  position: relative;
}

.timeline1_item {
  z-index: 2;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 12rem 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1rem;
  display: flex;
}

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

.process_image-wrapper {
  height: 450px;
}

.image {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.scroll-content {
  margin-bottom: 0;
  padding-left: 3rem;
  position: relative;
}

.cta3_background-image {
  object-fit: cover;
  background-image: url('../images/założone-dłonie-na-białym-stolne-ze-stojącym-laptopem.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.button-group-6 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.section_cta {
  position: relative;
  overflow: hidden;
}

.cta_content {
  width: 100%;
  max-width: 55rem;
}

.cta_background-wrapper {
  z-index: -1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cta_background-gradient {
  z-index: 1;
  background-image: linear-gradient(90deg, var(--background-color--background-primary), var(--background-color--background-secondary) 49%, rgba(43, 79, 121, 0));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section_testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial_client-image-wrapper {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
}

.testimonial_content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonial_component {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 4rem;
}

.testimonial_slide-nav {
  color: var(--base-color-brand--blue-dark);
  height: 1.75rem;
  font-size: .5rem;
}

.testimonial_client-image {
  object-fit: contain;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.testimonial_slide {
  padding-left: 4rem;
  padding-right: 4rem;
}

.testimonial_arrow-icon {
  color: var(--background-color--color-secondary-dark-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.testimonial_arrow {
  border: 1px solid var(--background-color--color-secondary-dark-blue);
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.testimonial_arrow.hide-mobile-landscape {
  border-style: solid;
  transition: transform .1s;
}

.testimonial_arrow.hide-mobile-landscape:hover {
  transform: scale(.9);
}

.testimonial_logo {
  max-height: 3.5rem;
}

.flex-horizontal {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.flex-horizontal.hide-mobile-portrait {
  overflow: visible;
}

.logo_logo-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: center;
  justify-items: center;
  display: grid;
  overflow: hidden;
}

.section_logo {
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
  overflow: hidden;
}

.logo_wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.logo_content-left {
  max-width: 25rem;
}

.logo2_logo {
  width: 100%;
  height: 50%;
}

.logo_component {
  grid-column-gap: 4rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo_flex {
  z-index: 0;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  height: 100px;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.logo_box-gradient {
  z-index: 1;
  background-image: linear-gradient(90deg, var(--background-color--background-tertiary), var(--background-color--background-tertiary) 42%, rgba(255, 255, 255, 0));
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.logo_box {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

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

.footer_link {
  color: var(--text-color--text-neutral);
  padding-top: .5rem;
  padding-bottom: .3rem;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.footer_link:hover {
  color: var(--text-color--text-alternate);
  text-decoration: none;
}

.footer_link.header {
  color: var(--text-color--text-alternate);
  font-size: 1rem;
  font-weight: 600;
}

.footer_link.header:hover, .footer_link.header.w--current:hover {
  color: var(--text-color--text-neutral);
}

.footer_link-list {
  color: var(--text-color--text-alternate);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: flex-start;
  justify-items: start;
  display: flex;
}

.footer_menu-wrapper {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  justify-items: stretch;
  margin-top: 3.125rem;
}

.footer_details-wrapper.text-color-alternate {
  max-width: 580px;
}

.footer_social-link {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 5px;
  font-size: 14px;
  text-decoration: none;
  transition: transform .1s;
  display: flex;
}

.footer_social-link:hover {
  transform: scale(1.1);
}

.footer_logo-link {
  float: none;
  padding-left: 0;
}

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

.footer_legal-list {
  grid-column-gap: 1.5rem;
  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;
  display: grid;
}

.footer_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: start;
}

.footer_credit-text {
  color: var(--text-color--text-neutral);
  font-size: .875rem;
}

.footer_bottom-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

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

.footer_legal-link {
  color: var(--text-color--text-neutral);
  font-size: .875rem;
  text-decoration: none;
}

.contact-link {
  color: var(--link-color--link-alternate);
  font-size: .9rem;
  text-decoration: none;
  transition: all .1s;
  display: block;
}

.contact-link:hover {
  transform: scale(1.02);
}

.contact-link.contact-card {
  font-size: 1.25rem;
}

.fs-cc-prefs_space-small {
  margin-bottom: .75rem;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-banner_text-link {
  font-size: .875rem;
  text-decoration: underline;
}

.fs-cc-banner_text-link.fs-cc-banner_text-link-alt {
  color: var(--text-color--text-alternate);
  font-size: 1.25rem;
}

.fs-cc-prefs_button {
  border: 1px solid var(--background-color--background-tertiary);
  background-color: rgba(56, 152, 236, 0);
  border-radius: 12px;
  margin-right: .5rem;
  padding: .5rem 1.5rem;
  font-size: .875rem;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  background-color: var(--background-color--background-tertiary);
  color: var(--text-color--text-primary);
  -webkit-text-stroke-color: #2b2a28;
  border-radius: 12px;
}

.fs-cc-banner_text {
  color: #fcfcfc;
  margin-right: 1.5rem;
  font-size: 1rem;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  margin-left: .75rem;
  padding: .625rem;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, .1);
}

.fs-cc-prefs_option {
  border-bottom: 1px solid rgba(51, 51, 51, .15);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-prefs_title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs-cc-prefs_form {
  background-color: var(--background-color--color-secondary-dark-blue);
  border-radius: 1rem;
  width: 100%;
  max-width: 36rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.link {
  color: var(--background-color--background-color-yellow);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 2.5rem;
}

.fs-cc-prefs_text {
  font-size: .75rem;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.fs-cc-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-right: -.5rem;
  display: flex;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.fs-cc-prefs_label {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.fs-cc-banner_trigger {
  display: none;
}

.text-span-3 {
  color: var(--background-color--background-color-yellow);
  font-weight: 500;
}

.fs-cc-prefs_close {
  z-index: 1;
  background-color: var(--background-color--background-tertiary);
  color: var(--text-color--text-primary);
  cursor: pointer;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  top: -.75rem;
  bottom: auto;
  left: auto;
  right: -.75rem;
  box-shadow: -1px 1px 12px rgba(51, 51, 51, .1);
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: var(--background-color--color-secondary-dark-blue);
  border-top: 1px solid rgba(67, 83, 255, .16);
  padding: 1.5rem 2rem;
  display: none;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: rgba(3, 5, 36, .6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fs-cc-prefs_content {
  color: var(--text-color--text-alternate);
  height: 100%;
  padding: 2.5rem 2rem;
  overflow: scroll;
}

.fs-cc-banner_close-icon {
  color: var(--background-color--color-secondary-dark-blue);
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-banner_button {
  color: #292929;
  text-align: center;
  background-color: #e0e0e0;
  border-radius: 12px;
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.fs-cc-banner_button.fs-cc-banner_button-alt {
  color: #fcfcfc;
  background-color: rgba(43, 42, 40, 0);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.fs-cc-prefs_close-icon {
  color: var(--background-color--color-secondary-dark-blue);
  width: 1rem;
  height: 1rem;
}

.social-logo {
  transition: all .1s;
}

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

.lottie-wrapper {
  position: relative;
  top: auto;
  bottom: 0;
  left: 0%;
  right: auto;
}

.lottie-wrapper.hide-mobile-portrait {
  z-index: 1;
}

.lottie-wrapper.hide-mobile-portrait.cooperation {
  bottom: 8px;
  left: -6px;
}

.lottie-wrapper.about {
  top: auto;
  bottom: 0;
  left: auto;
  right: auto;
}

.lottie-animation {
  width: 50px;
  height: 50px;
}

.main-navbar_component {
  background-color: var(--background-color--background-tertiary);
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
  position: fixed;
  top: auto;
}

.main-navbar_container {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.main-navbar_language-link {
  color: var(--text-color--text-primary);
  padding: .75rem 1.5rem .75rem .75rem;
  font-weight: 600;
  text-decoration: none;
}

.main-navbar_menu {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.image-overlay-layer {
  z-index: 1;
  background-image: linear-gradient(270deg, var(--background-color--background-primary), var(--background-color--color-secondary-dark-blue) 48%, rgba(245, 245, 250, 0) 85%);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section_about-header {
  position: relative;
  overflow: hidden;
}

.about-header_background-image-wrapper {
  z-index: -1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.about-header_content {
  justify-content: flex-end;
  align-items: center;
  min-height: 100svh;
  max-height: 60rem;
  display: flex;
  position: relative;
}

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

.button-group-7 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.about-header_background-image {
  object-fit: cover;
  background-image: url('../images/file.webp');
  background-position: 25% 100%;
  background-repeat: no-repeat;
  background-size: 800px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lottie-animation-2 {
  width: 50px;
  height: 50px;
}

.achievements_content-item {
  border: 1.5px solid var(--background-color--background-secondary);
  background-color: var(--background-color--background-tertiary);
  border-radius: 12px;
  margin-bottom: 2rem;
  padding: 2rem;
  position: -webkit-sticky;
  position: sticky;
}

.achievements_content-item.content-item-4 {
  top: 36%;
}

.achievements_content-item.content-item-2 {
  top: 32%;
}

.achievements_content-item.content-item-3 {
  top: 34%;
}

.achievements_content-item.content-item-1 {
  background-image: linear-gradient(to bottom, var(--background-color--background-tertiary), var(--background-color--background-tertiary));
  top: 30%;
}

.achievements_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.section_achievements {
  position: relative;
  overflow: visible;
}

.achievements_content-left {
  position: -webkit-sticky;
  position: sticky;
  top: 30%;
}

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

.achievements_card-number {
  background-color: rgba(174, 165, 81, .5);
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
}

.achievements_number {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
}

.stats-second_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.section_stats-second {
  overflow: hidden;
}

.stats-second_item-list {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.section_about-gallery {
  position: relative;
  overflow: hidden;
}

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

.about-gallery_image-list-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  column-count: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  column-gap: 1.5rem;
  width: 100%;
  height: 100%;
  margin-top: -120%;
  display: grid;
}

.about-gallery_image-wrapper {
  width: 100%;
  padding-top: 120%;
  position: relative;
}

.about-gallery_content-right {
  grid-column-gap: 1rem;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.about-gallery_image {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.about-gallery_component {
  grid-column-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: stretch;
  display: grid;
}

.about-gallery_images-layout {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.about-gallery_image-list-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.about-private_image-wrapper2 {
  width: 100%;
}

.about-private_image3 {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: static;
  top: auto;
}

.about-private_image-wrapper3 {
  width: 100%;
  position: relative;
}

.about-private_image-wrapper1 {
  width: 100%;
  margin-top: 15%;
  margin-bottom: 15%;
}

.about-private_image2 {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.about-private_image-group {
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr .4fr;
  grid-auto-columns: 1fr;
  align-content: end;
  align-items: start;
  justify-items: stretch;
  display: grid;
}

.section_about-private {
  position: relative;
  overflow: hidden;
}

.about-private_image1 {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.header-2_content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.section_header-2 {
  position: relative;
  overflow: hidden;
}

.padding-header {
  margin-top: 4rem;
}

.div-block-4-copy {
  z-index: 1;
  background-image: url('../images/photo-4-horizontal-small-1.webp');
  background-position: 50%;
  background-size: cover;
  max-width: 80rem;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.header-1_component {
  z-index: 1;
  grid-column-gap: 0rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: stretch;
  height: 100vh;
  display: grid;
  position: relative;
}

.header-1_content {
  z-index: 1;
  max-width: 45rem;
  margin-top: 9.5rem;
  margin-right: 0;
  position: relative;
}

.header-1_image-wrapper {
  background-image: url('../images/photo-4-horizontal-small-1.webp');
  background-position: 57% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 700px;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.header-1_image-wrapper.industry {
  background-image: url('../images/industry-4.0-header.png');
  background-position: 100%;
  background-size: auto;
}

.header-1_image-wrapper.training {
  z-index: 0;
  background-image: url('../images/photo-3-1.webp');
  background-size: cover;
  position: relative;
}

.header-1_padding-top-custom {
  z-index: 2;
  padding-top: 4.375rem;
}

.header-1_background-photo-mobile {
  z-index: 1;
  display: none;
}

.cooperation-service_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
}

.section_cooperation-service {
  position: relative;
  overflow: hidden;
}

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

.cooperation-service_heading-wrapper {
  position: relative;
}

.cooperation-service_item-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

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

.section_cooperate-why {
  overflow: hidden;
}

.cooperate-why_list-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--text-color--text-alternate);
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: .5rem;
  display: flex;
}

.cooperate-why_list {
  max-width: 550px;
}

.div-block-4-copy {
  z-index: 1;
  background-image: none;
  max-width: 80rem;
  height: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 0;
  position: relative;
}

.cooperate-why_stats-square-element-1 {
  z-index: 0;
  color: var(--text-color--text-alternate);
  background-color: rgba(23, 43, 70, .5);
  border-radius: 12px;
  width: 200px;
  height: 200px;
  padding: 1.5rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: -32px;
  right: auto;
}

.square-element-1_text {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.5;
}

.square-element-1_text-2 {
  font-size: 1.2rem;
  font-weight: 600;
}

.square-element-1_text-2.en {
  font-size: 1.1rem;
}

.cooperate-why_stats-square-element-2 {
  z-index: 1;
  color: var(--text-color--text-alternate);
  background-color: rgba(174, 165, 81, .5);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 150px;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  top: 160px;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.cooperate-why_square-element-3 {
  z-index: 1;
  color: var(--text-color--text-alternate);
  background-color: rgba(43, 79, 121, .5);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 150px;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 78px;
  left: 0%;
  right: auto;
}

.form_checkbox-label-2 {
  color: var(--text-color--text-alternate);
  margin-bottom: 0;
}

.form_field-wrapper-2 {
  position: relative;
}

.success-text {
  color: var(--text-color--text-alternate);
  font-weight: 600;
}

.section_contact {
  position: relative;
  overflow: hidden;
}

.contact_component {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
  overflow: hidden;
}

.form_checkbox-icon-2 {
  border: 1px solid var(--border-color--border-primary);
  cursor: pointer;
  border-radius: 6px;
  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-2.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

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

.error-message {
  border-radius: 12px;
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.form_field-label {
  color: var(--text-color--text-alternate);
  text-align: left;
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: 500;
}

.error-text {
  color: #e23939;
}

.form_input-2 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--background-color--background-tertiary);
  color: var(--\<unknown\|relume-variable-text-color-1\>);
  border-radius: 12px;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

.form_input-2::placeholder {
  color: rgba(23, 43, 70, .6);
  font-size: .8rem;
}

.form_input-2.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

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

.form_field-2col {
  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;
}

.success-message {
  background-color: var(--\<unknown\|relume-variable-color-neutral-3\>);
  padding: 1.5rem;
}

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

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

.relative-box {
  z-index: 1;
  position: relative;
}

.industry-square-element {
  z-index: 2;
  background-color: rgba(23, 43, 70, .8);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 150px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 120px;
  left: -33px;
  right: 0;
}

.text-block-2 {
  color: var(--text-color--text-alternate);
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
}

.section_industry-services {
  position: relative;
  overflow: hidden;
}

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

.industry-services_header {
  position: relative;
}

.industry-services_content {
  flex-flow: column;
  display: flex;
}

.industry-services_list-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-bottom: .5rem;
  display: flex;
}

.industry-services_list-item_icon-wrapper {
  flex: none;
  align-self: flex-start;
}

.graph-image-1 {
  z-index: 0;
  position: absolute;
  top: auto;
  bottom: 103px;
  left: -264px;
  right: auto;
}

.graph-image-2 {
  z-index: 0;
  position: absolute;
  top: 190px;
  bottom: auto;
  left: auto;
  right: -5px;
}

.graph-image-3 {
  z-index: 0;
  position: absolute;
  top: 127px;
  bottom: 0;
  left: -31px;
  right: 518px;
}

.section_training {
  z-index: 1;
  background-color: var(--background-color--background-tertiary);
  position: relative;
  overflow: hidden;
}

.training_list-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--text-color--text-primary);
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: .5rem;
  display: flex;
}

.training_square-element-1 {
  z-index: 1;
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 70px;
  left: -35px;
  right: auto;
}

.training_square-element-2 {
  z-index: 1;
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 70px;
  left: 58px;
  right: auto;
}

.training_square-element-3 {
  z-index: 1;
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 300px;
  height: 100px;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -45px;
  left: -35px;
  right: auto;
}

.text-block-4 {
  font-size: .9rem;
}

.div-block-5 {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  position: relative;
}

.training_circle-element-1 {
  background-color: var(--background-color--color-secondary-dark-blue);
  box-shadow: 0 3px 8px 0 var(--background-color--color-secondary-dark-blue);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  position: absolute;
  top: 70px;
  bottom: auto;
  left: 115px;
  right: 0%;
}

.text-block-5 {
  color: var(--text-color--text-alternate);
  font-weight: 600;
}

.training_circle-element-2 {
  background-color: var(--background-color--color-secondary-dark-blue);
  box-shadow: 0 3px 8px 0 var(--background-color--color-secondary-dark-blue);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  position: absolute;
  top: 160px;
  bottom: auto;
  left: 20px;
  right: 0%;
}

.training_circle-element-3 {
  background-color: var(--background-color--color-secondary-dark-blue);
  box-shadow: 0 3px 8px 0 var(--background-color--color-secondary-dark-blue);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  position: absolute;
  top: 299px;
  bottom: auto;
  left: 115px;
  right: 0%;
}

.contact_hero-box {
  background-color: var(--background-color--background-tertiary);
  border-top-right-radius: 12px;
  width: 60%;
  position: relative;
}

.contact_hero-image-wrapper {
  width: 500px;
  height: 400px;
  padding-top: 1rem;
}

.contact-hero-image {
  object-fit: cover;
  background-image: url('../images/photo-4-small.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 800px;
  height: 100%;
}

.div-block-8 {
  padding-left: 2.5rem;
  display: flex;
  position: relative;
}

.contact_hero-container {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.contact_card-wrapper {
  background-color: var(--background-color--color-secondary-dark-blue);
  border-radius: 12px;
  justify-content: center;
  align-items: flex-start;
  width: 400px;
  height: 200px;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  top: 59px;
  bottom: 0%;
  left: auto;
  right: -109px;
}

.contact_card-wrapper.background-color-gradient {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 300px;
  position: absolute;
  top: auto;
  bottom: 12%;
  left: 76%;
  right: 0%;
}

.text-block-6 {
  color: var(--text-color--text-alternate);
  font-size: 2rem;
  font-weight: 600;
}

.contact_card_social-link {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.div-block-9 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  display: flex;
}

.about-button_underline-white {
  background-image: url('../images/Vector-11.png');
  background-position: 50% 100%;
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 4px;
  position: relative;
  top: -3px;
}

.about-button_underline-yellow {
  background-image: url('../images/Vector-10.png');
  background-position: 50% 100%;
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 4px;
  position: relative;
  top: -8px;
  left: 0;
}

.social-link {
  flex-flow: column;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.div-block-10 {
  z-index: -1;
  background-image: linear-gradient(90deg, var(--background-color--background-tertiary), var(--background-color--background-tertiary) 60%, #294a70 60%, #294a70);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.logo_logo-mobile {
  max-height: 3.5rem;
}

.section_logo-mobile {
  display: none;
  overflow: hidden;
}

.logo_component-mobile {
  display: flex;
}

.logo_list-mobile {
  grid-column-gap: 1.5rem;
  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;
  align-items: center;
  justify-items: start;
  margin-right: 2rem;
  display: grid;
}

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

.div-block-11 {
  width: 100%;
  height: 100%;
}

.columns---item {
  width: 25%;
  height: 100vh;
  position: relative;
}

.columns---item.x-overflow {
  display: block;
  overflow: hidden;
}

.preloader {
  display: flex;
  position: fixed;
}

.preloader.x-back {
  z-index: 10;
  z-index: 999;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.column---bg-line-2 {
  background-color: #fff;
  width: .0625rem;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  transform: translate(0, 100%);
}

.columns---bg {
  background-color: var(--background-color--background-primary);
  height: 100%;
  transform: translate(100%);
}

.loader3_image-overlay {
  z-index: 1;
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loader3_content-wrapper {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12rem;
  position: relative;
}

.loader3_background {
  background-image: linear-gradient(0deg, var(--background-color--background-primary), var(--background-color--color-secondary-dark-blue));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loader3_component {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

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

.offset {
  position: absolute;
  top: -70px;
}

.image-5 {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  left: 83px;
}

.header_image-wrapper-copy {
  flex: 1;
  width: 700px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -156px;
  right: 0;
  overflow: visible;
}

.section_home-header {
  position: relative;
  overflow: hidden;
}

.header-home-1_component {
  justify-content: flex-end;
  align-items: center;
  display: block;
}

.header-home-1_grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2rem;
  display: grid;
  position: relative;
}

.image-6 {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100svh;
  max-height: 60rem;
  position: relative;
  bottom: 0;
  left: -140px;
  overflow: visible;
}

.header_image-wrapper {
  flex-flow: column;
  width: auto;
  min-height: 100svh;
  max-height: 900px;
  position: relative;
}

.first-section_background {
  z-index: 0;
  background-image: linear-gradient(180deg, #294a70 20%, var(--background-color--background-primary));
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.header36_image {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  max-height: 60rem;
  overflow: visible;
}

.header36_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

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

.header36_image-wrapper {
  margin-top: 70px;
  padding-top: 0;
}

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

.header36_content {
  max-width: 35rem;
  margin-left: 5vw;
  margin-right: 5rem;
}

.button-group-8 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-2 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-2.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

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

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

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

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

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

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

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

.image-6-copy {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100svh;
  max-height: 60rem;
  position: relative;
  bottom: 0;
  left: 0;
  overflow: visible;
}

.div-block-13-copy {
  position: relative;
  overflow: visible;
}

.header-image {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: none;
  position: relative;
  bottom: 0;
  left: 0;
  overflow: visible;
}

.header-image.home, .header-image.cooperation {
  left: -120px;
}

.div-block-15 {
  height: 100%;
}

.header-image-industry {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 80%;
  position: relative;
  overflow: visible;
}

.header_image-wrapper_industry {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  max-height: 900px;
  display: flex;
  position: relative;
}

.navbar_dropdown-list-2.w--open {
  background-color: #f5f5fa;
  border: 1px solid #2b4f79;
  border-radius: 12px;
  padding: 1rem;
  position: absolute;
}

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

.button-3 {
  color: #f5f5fa;
  text-align: center;
  background-color: #2b4f79;
  border-radius: .75rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .1s;
}

.button-3:hover {
  background-color: #172b46;
  transform: translate(0, -2px);
  box-shadow: 0 2px 5px #172b46;
}

.button-3.is-third {
  color: #172b46;
  background-color: #f5f5fa;
  border: 1px solid #f5f5fa;
}

.button-3.is-third:hover {
  box-shadow: none;
  transform: scale(.95);
}

.main-navbar_language-link-2 {
  color: #172b46;
  padding: .75rem 1.5rem .75rem .75rem;
  font-weight: 600;
  text-decoration: none;
}

.main-navbar_menu-2 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.navbar2_dropdwn-toggle-2 {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
}

.navbar2_dropdwn-toggle-2:hover {
  color: #2b4f79;
}

.dropdown-list_link-2 {
  color: #172b46;
  border-radius: 12px;
  width: 300px;
  padding: .5rem;
  text-decoration: none;
  transition: all .2s;
}

.dropdown-list_link-2:hover {
  background-color: rgba(174, 165, 81, .5);
}

.main-navbar_component-2 {
  background-color: #f5f5fa;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
  position: fixed;
  top: auto;
}

.navbar_language-link-2 {
  color: #f5f5fa;
  padding: .75rem 1.5rem .75rem .75rem;
  font-weight: 600;
  text-decoration: none;
}

.navbar_language-link-2.navbar2_link {
  display: none;
}

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

.navbar2_link-2 {
  padding: .5rem .75rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}

.navbar2_link-2:hover {
  color: #2b4f79;
}

.navbar2_link-2.w--current {
  color: #aea551;
}

.text-span-4, .link-3 {
  color: var(--text-color--text-accent);
}

.list-4, .list-item-4 {
  list-style-type: disc;
}

.meetnocode_link {
  color: var(--text-color--text-neutral);
  margin-top: 1rem;
  padding-top: 0;
  font-size: .7rem;
  text-decoration: none;
  display: block;
}

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

  .padding-xlarge {
    padding: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

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

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

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

  .hide-tablet {
    display: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

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

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

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

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

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

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

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

  .spacer-xhuge {
    padding-top: 6rem;
  }

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

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .nav_button {
    color: #fff;
  }

  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .menu-icon_line-bottom {
    background-color: var(--background-color--color-secondary-dark-blue);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-bottom.home {
    background-color: var(--background-color--background-tertiary);
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .dropdown-chevron {
    top: auto;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .menu-icon_line-top {
    background-color: var(--background-color--color-secondary-dark-blue);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-top.home {
    background-color: var(--background-color--background-tertiary);
  }

  .navbar2_dropdwn-toggle {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: var(--link-color--link-alternate);
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: .75rem;
    display: flex;
  }

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

  .navbar_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar_dropdown-list.w--open {
    border-style: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: static;
  }

  .navbar_container {
    grid-template-columns: .25fr 1fr;
    display: flex;
  }

  .navbar2_menu-dropdown {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar_menu-button {
    padding: 0;
  }

  .navbar_menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .navbar2_link {
    color: var(--link-color--link-alternate);
    text-align: center;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: .75rem 0;
  }

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

  .navbar_button-wrapper {
    align-items: center;
  }

  .menu-icon_line-middle {
    background-color: var(--background-color--color-secondary-dark-blue);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-middle.home {
    background-color: var(--background-color--background-tertiary);
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_menu {
    border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
    background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .navbar_menu.is-page-height-tablet {
    background-image: linear-gradient(0deg, var(--background-color--background-primary), #284970);
    width: 100%;
    height: 100dvh;
    margin-right: 0;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .navbar_language-link {
    padding-right: .75rem;
  }

  .navbar_language-link.hide-tablet {
    display: none;
  }

  .navbar_language-link.hide-desktop {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .section_header-1 {
    position: relative;
  }

  .header-home_image-wrapper {
    width: 660px;
    left: -180px;
  }

  .header-home_content {
    margin-top: 5rem;
  }

  .header-home.background-color-gradient {
    width: 34%;
    height: 100%;
    display: block;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0%;
  }

  .baackground-photo-mobile {
    display: none;
  }

  .hero-header_grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1.25fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .hero-header_image-wrapper {
    padding-top: 2rem;
  }

  .hero-image {
    object-fit: cover;
    display: block;
  }

  .hero-image.training-1 {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero-image.training-2 {
    background-size: contain;
  }

  .background-squre.header.blue {
    width: 300px;
    height: 300px;
    bottom: -36px;
    right: 26px;
  }

  .background-squre.header.yellow {
    z-index: 0;
    width: 300px;
    height: 200px;
    bottom: -16px;
    left: 42px;
  }

  .background-squre.cooperate.blue {
    width: 300px;
    height: 300px;
    top: 60px;
    right: 216px;
  }

  .div-block-4 {
    background-image: linear-gradient(270deg, var(--background-color--background-primary), rgba(255, 255, 255, 0)), url('../images/photo-1-1.webp');
    background-position: 0 0, 0 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, contain;
    padding-top: 5rem;
  }

  .home-stats_component {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: stretch;
  }

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

  .services_card {
    max-width: 350px;
    height: 300px;
    max-height: 400px;
  }

  .square-element-small {
    top: 53px;
  }

  .square-element-small.about-gallery.right, .square-element-small.about-gallery.left, .square-element-small.private.left {
    z-index: -1;
  }

  .services_card-content {
    flex: 1;
  }

  .timeline1_circle-wrapper {
    width: 6rem;
    margin-left: -6rem;
  }

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

  .timeline1_item {
    grid-template-columns: 1fr 10rem 1fr;
  }

  .scroll-content {
    width: auto;
  }

  .logo_logo-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: column;
  }

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

  .logo_content-left {
    max-width: 24rem;
  }

  .logo2_logo {
    flex: none;
  }

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

  .logo_box-gradient {
    background-image: linear-gradient(90deg, var(--background-color--background-tertiary), var(--background-color--background-tertiary) 48%, rgba(255, 255, 255, 0));
  }

  .footer_top-wrapper {
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .contact-link.contact-card {
    font-size: 1rem;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .lottie-wrapper.hide-mobile-portrait.cooperation {
    bottom: 9px;
    left: 183px;
  }

  .lottie-wrapper.about {
    bottom: 0;
    left: auto;
    right: auto;
  }

  .main-navbar_container {
    grid-template-columns: .25fr 1fr;
    display: flex;
  }

  .main-navbar_language-link {
    padding-right: .75rem;
  }

  .main-navbar_menu {
    border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
    background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .main-navbar_menu.is-page-height-tablet {
    background-image: linear-gradient(0deg, var(--background-color--background-primary), #284970);
    width: 100%;
    height: 100dvh;
    margin-right: 0;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .image-overlay-layer {
    background-image: linear-gradient(270deg, var(--background-color--background-primary), var(--background-color--color-secondary-dark-blue) 40%, rgba(245, 245, 250, 0));
  }

  .about-header_background-image {
    object-fit: cover;
    background-position: 50% 100%;
    background-size: 800px;
  }

  .achievements_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .stats-second_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .stats-second_item-list {
    grid-column-gap: 2rem;
    grid-row-gap: 3rem;
  }

  .about-gallery_content-right {
    height: 40rem;
  }

  .about-gallery_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 6rem;
  }

  .div-block-4-copy {
    background-image: linear-gradient(270deg, var(--background-color--background-primary), rgba(255, 255, 255, 0)), url('../images/photo-1-1.webp');
    background-position: 0 0, 0 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, auto 600px;
    padding-top: 5rem;
  }

  .header-1_component {
    grid-template-columns: 1fr 1fr;
  }

  .header-1_image-wrapper {
    width: 660px;
    left: -207px;
  }

  .header-1_image-wrapper.training {
    background-position: 50% 100%;
    background-size: contain;
    width: 600px;
    left: auto;
    right: 0;
  }

  .header-1_background-photo-mobile {
    display: none;
  }

  .cooperation-service_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .div-block-4-copy {
    background-image: linear-gradient(270deg, var(--background-color--background-primary), rgba(255, 255, 255, 0));
    justify-content: flex-end;
    align-items: center;
    height: auto;
    margin-left: auto;
    padding-top: 5rem;
  }

  .cooperate-why_stats-square-element-1 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 150px;
    height: 150px;
    display: flex;
    top: 55px;
    bottom: 0;
    left: 148px;
    right: 0;
  }

  .square-element-1_text {
    font-size: 3rem;
  }

  .square-element-1_text-2 {
    font-size: 1rem;
  }

  .cooperate-why_stats-square-element-2 {
    width: 150px;
    height: 120px;
    top: 231px;
    right: 15%;
  }

  .cooperate-why_square-element-3 {
    width: 150px;
    height: 120px;
    left: 24%;
  }

  .industry-square-element {
    right: 100px;
  }

  .graph-image-1 {
    object-fit: contain;
    width: 200px;
    bottom: 54px;
    right: 0;
  }

  .graph-image-2 {
    object-fit: contain;
    width: 200px;
    height: 150px;
    top: 234px;
    left: 268px;
    right: 0;
  }

  .graph-image-3 {
    object-fit: contain;
    width: 200px;
    height: 200px;
    top: 189px;
    left: -121px;
    right: 0;
  }

  .training_square-element-1 {
    margin-top: 1.5rem;
    bottom: 120px;
    left: 10px;
  }

  .training_square-element-2 {
    margin-top: 1.5rem;
    position: absolute;
    bottom: 120px;
    left: 100px;
  }

  .training_square-element-3 {
    margin-top: 1.5rem;
    position: absolute;
    bottom: 10px;
    left: 10px;
  }

  .div-block-5 {
    width: 100%;
    height: 500px;
  }

  .training_circle-element-1 {
    top: 0;
    left: 250px;
  }

  .training_circle-element-2 {
    top: 60px;
    left: 115px;
  }

  .training_circle-element-3 {
    top: 170px;
    left: 250px;
  }

  .contact-hero-image {
    background-position: 50% 0;
  }

  .contact_card-wrapper.background-color-gradient {
    width: 400px;
  }

  .div-block-10 {
    background-image: linear-gradient(90deg, var(--background-color--background-tertiary), var(--background-color--background-tertiary) 65%, #294a70 65%, #294a70);
  }

  .div-block-11 {
    margin-left: auto;
    margin-right: auto;
  }

  .image-5 {
    left: 15px;
  }

  .header_image-wrapper-copy {
    width: 620px;
    left: -27px;
  }

  .header-home-1_component {
    max-height: none;
  }

  .header-home-1_grid {
    margin-top: 4rem;
  }

  .image-6 {
    right: 0;
  }

  .header_image-wrapper {
    opacity: .5;
  }

  .header_image-wrapper.home {
    opacity: 1;
  }

  .first-section_background {
    width: 35%;
  }

  .header36_image {
    height: auto;
    max-height: none;
  }

  .header36_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 6rem;
  }

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

  .header36_content {
    margin-left: 5%;
    margin-right: 5%;
  }

  .spacer-large-2 {
    padding-top: 2.5rem;
  }

  .spacer-xlarge-2 {
    padding-top: 3.5rem;
  }

  .spacer-xxlarge-2 {
    padding-top: 4.5rem;
  }

  .spacer-huge-2 {
    padding-top: 5rem;
  }

  .spacer-xhuge-2 {
    padding-top: 6rem;
  }

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

  .image-6-copy, .header-image {
    right: 0;
  }

  .header-image.cooperation {
    left: 0;
  }

  .header-image-industry {
    opacity: .6;
    object-fit: cover;
    height: 60%;
    top: -119px;
    bottom: 0;
    right: 0;
  }

  .div-block-16 {
    position: relative;
  }

  .navbar_dropdown-list-2 {
    position: static;
    overflow: hidden;
  }

  .navbar_dropdown-list-2.w--open {
    border-style: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: static;
  }

  .menu-icon_line-bottom-2 {
    background-color: #172b46;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .main-navbar_language-link-2 {
    padding-right: .75rem;
  }

  .main-navbar_menu-2 {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .main-navbar_menu-2.is-page-height-tablet {
    background-image: linear-gradient(0deg, #0c0c0f, #284970);
    width: 100%;
    height: 100dvh;
    margin-right: 0;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .navbar2_dropdwn-toggle-2 {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: #f5f5fa;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: .75rem;
    display: flex;
  }

  .navbar2_dropdwn-toggle-2:hover {
    color: #f5f5fa;
  }

  .menu-icon_line-middle-2 {
    background-color: #172b46;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-middle-inner-2 {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_language-link-2 {
    padding-right: .75rem;
  }

  .menu-icon_line-top-2 {
    background-color: #172b46;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar2_link-2 {
    color: #f5f5fa;
    text-align: center;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: .75rem 0;
  }

  .navbar2_link-2:hover {
    color: #f5f5fa;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

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

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

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

  .hide-mobile-landscape {
    display: none;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

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

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

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

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

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

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

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

  .heading-style-h6 {
    font-size: .75rem;
  }

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

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

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

  .button.is-third.is-blue {
    background-color: var(--background-color--background-secondary);
    color: var(--text-color--text-alternate);
  }

  .button-group {
    justify-content: center;
    align-items: center;
  }

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

  .spacer-huge {
    padding-top: 3.5rem;
  }

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

  .spacer-xhuge {
    padding-top: 4rem;
  }

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

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .menu-icon_line-bottom, .menu-icon_line-bottom.home, .menu-icon_line-top, .menu-icon_line-top.home {
    background-color: var(--background-color--color-secondary-dark-blue);
  }

  .home-navbar_component {
    min-height: 4rem;
  }

  .menu-icon_line-middle, .menu-icon_line-middle.home, .menu-icon_line-middle-inner {
    background-color: var(--background-color--color-secondary-dark-blue);
  }

  .navbar_menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .header-1_right-content {
    opacity: .33;
    width: 100%;
    position: absolute;
  }

  .text-size-medium-3 {
    font-size: 1rem;
  }

  .header-home_component {
    grid-template-columns: 1fr;
    height: 600px;
  }

  .header-home_image-wrapper {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    display: flex;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .header-home_content {
    text-align: center;
    margin-top: 5rem;
  }

  .header-home.background-color-gradient {
    width: 100%;
    display: none;
  }

  .header-home_footer {
    flex-flow: row;
    justify-content: center;
    align-items: stretch;
  }

  .header-home_footer-right {
    text-align: left;
    align-self: center;
  }

  .baackground-photo-mobile {
    opacity: .6;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    width: 100%;
    height: auto;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: absolute;
    top: 60px;
    bottom: 0;
  }

  .hero-header_grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    object-fit: cover;
    display: block;
  }

  .hero-image.training-2 {
    background-position: 60% 100%;
    background-size: cover;
  }

  .background-squre {
    width: 350px;
    height: 300px;
    top: 174px;
    left: 353px;
  }

  .background-squre.yellow {
    width: 300px;
    height: 150px;
    top: 268px;
    left: 43px;
  }

  .background-squre.header.blue {
    width: 200px;
    height: 200px;
    bottom: 63px;
    right: 9px;
  }

  .background-squre.header.yellow {
    z-index: 0;
    width: 200px;
    height: 200px;
    display: block;
    top: 106px;
    bottom: 0;
    left: 18px;
  }

  .background-squre.cooperate.blue {
    z-index: -1;
    width: 250px;
    height: 250px;
    display: block;
    top: 294px;
    right: -5px;
  }

  .background-squre.contact.yellow {
    width: 200px;
    height: 150px;
    top: 56%;
    right: -267px;
  }

  .div-block-4 {
    z-index: 1;
    background-image: linear-gradient(270deg, var(--background-color--background-primary), rgba(255, 255, 255, 0)), url('../images/photo-1-1.webp');
    background-position: 0 0, 0 100%;
    background-size: auto, contain;
    padding-top: 5rem;
  }

  .stats-number, .stats-unit {
    font-size: 3rem;
  }

  .section-divider {
    width: 90%;
  }

  .services_component {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    max-width: none;
  }

  .services_component._2-col {
    grid-template-columns: 1fr;
  }

  .services_card {
    height: auto;
  }

  .square-element-small {
    width: 180px;
    height: 80px;
    top: 94px;
  }

  .square-element-small.cooperate, .square-element-small.cooperate.right {
    left: 0;
  }

  .square-element-small.xsmall.industry {
    height: 50px;
    top: -10px;
    left: 0;
    right: auto;
  }

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

  .timeline1_content-right {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .timeline1_circle {
    margin-top: 1.75rem;
  }

  .timeline1_content-left {
    z-index: 1;
    padding-right: 0;
    position: relative;
    top: 0;
  }

  .timeline1_circle-wrapper {
    width: 2rem;
    margin-left: 0;
  }

  .timeline1_progress {
    z-index: 0;
  }

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

  .timeline1_item {
    grid-template-rows: auto auto;
    grid-template-columns: 4rem 1fr;
    margin-left: 3rem;
  }

  .testimonial_component {
    padding-bottom: 3rem;
  }

  .testimonial_slide {
    padding-left: 0;
    padding-right: 0;
  }

  .logo_logo-list {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    padding-top: 1rem;
  }

  .logo_wrapper {
    justify-content: center;
    align-items: center;
    padding: .75rem 1rem;
  }

  .logo2_logo {
    max-height: 3rem;
  }

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

  .logo_flex {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
  }

  .logo_box-gradient {
    background-image: linear-gradient(90deg, var(--background-color--background-tertiary), var(--background-color--background-tertiary) 50%, rgba(255, 255, 255, 0));
  }

  .footer_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .footer_details-wrapper.text-color-alternate {
    max-width: 480px;
  }

  .footer_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }

  .footer_top-wrapper {
    grid-row-gap: 3rem;
  }

  .footer_credit-text {
    margin-top: 2rem;
  }

  .footer_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .spacer-small-2 {
    padding-top: 1.25rem;
  }

  .contact-link.contact-card {
    font-size: .9rem;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 1.25rem;
  }

  .lottie-wrapper.hide-mobile-portrait.cooperation {
    top: auto;
    bottom: 2%;
    left: 0%;
    right: auto;
  }

  .lottie-animation {
    margin-left: auto;
    margin-right: auto;
  }

  .main-navbar_component {
    min-height: 4rem;
  }

  .main-navbar_menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .image-overlay-layer {
    background-image: linear-gradient(270deg, var(--background-color--background-primary), rgba(23, 43, 70, .65));
  }

  .text-size-medium-10 {
    font-size: 1rem;
  }

  .achievements_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .achievements_content-left {
    position: static;
  }

  .stats-second_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .stats-second_item-list {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .about-gallery_content-right {
    height: 30rem;
  }

  .about-gallery_component {
    padding-top: 4rem;
  }

  .about-private_image-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .header-1_component {
    grid-template-columns: 1fr;
    height: 600px;
  }

  .header-1_image-wrapper {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    width: 100%;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .header-1_image-wrapper.industry {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
  }

  .header-1_padding-top-custom {
    padding-top: 1.5rem;
  }

  .header-1_background-photo-mobile {
    z-index: auto;
    opacity: .6;
    background-image: url('../images/photo-4-horizontal-small-1.webp');
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 750px;
    width: 100%;
    height: auto;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: absolute;
    top: 60px;
    bottom: 0;
  }

  .header-1_background-photo-mobile.industry {
    background-image: url('../images/industry-4.0-header.png');
    background-position: 50%;
    background-size: 450px;
  }

  .cooperation-service_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .div-block-4-copy {
    z-index: 1;
    background-image: none;
    background-position: 0 0;
    padding-top: 5rem;
  }

  .cooperate-why_stats-square-element-1 {
    width: 150px;
    height: 120px;
    top: 39px;
    left: 44px;
  }

  .square-element-1_text {
    font-size: 2rem;
  }

  .square-element-1_text-2 {
    font-size: .9rem;
  }

  .cooperate-why_stats-square-element-2 {
    width: 120px;
    height: 100px;
    top: 155px;
    left: auto;
    right: 47px;
  }

  .cooperate-why_square-element-3 {
    bottom: 10px;
    left: 69px;
  }

  .form_field-2col.is-mobile-1col {
    grid-template-columns: 1fr;
  }

  .industry-square-element {
    width: 120px;
    height: 80px;
    bottom: 36px;
    left: 52px;
    right: 0;
  }

  .text-block-2 {
    font-size: 1rem;
  }

  .industry-services_component {
    grid-template-columns: 1fr;
  }

  .graph-image-1 {
    bottom: 43px;
    left: 0;
  }

  .graph-image-2 {
    top: 136px;
    bottom: auto;
    left: auto;
    right: 0;
  }

  .graph-image-3 {
    top: 50px;
    bottom: auto;
    left: 0;
    right: 0;
  }

  .training_square-element-1 {
    bottom: 120px;
    left: 10px;
  }

  .training_square-element-2 {
    bottom: 120px;
  }

  .training_circle-element-1 {
    width: 70px;
    height: 70px;
    top: 55px;
    left: 124px;
  }

  .text-block-5 {
    font-size: .8rem;
  }

  .training_circle-element-2 {
    width: 100px;
    height: 100px;
    top: 130px;
    left: 93px;
  }

  .training_circle-element-3 {
    width: 70px;
    height: 70px;
    top: 200px;
    left: 180px;
  }

  .contact_hero-image-wrapper {
    width: 400px;
    max-width: 380px;
  }

  .contact-hero-image {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .contact_card-wrapper.background-color-gradient {
    width: 300px;
    height: 200px;
    bottom: 4%;
    left: 52%;
  }

  .text-block-6 {
    font-size: 1rem;
  }

  .div-block-10 {
    background-image: linear-gradient(90deg, var(--background-color--background-tertiary), var(--background-color--background-tertiary) 66%, var(--background-color--background-tertiary) 65.5%, var(--background-color--background-tertiary));
  }

  .logo_logo-mobile {
    max-height: 3rem;
  }

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

  .logo_wrapper-mobile {
    padding: .75rem 1rem;
  }

  .div-block-11 {
    margin-left: auto;
    margin-right: auto;
  }

  .image-5 {
    object-fit: cover;
    flex: 0 auto;
    width: 450px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    bottom: auto;
    overflow: visible;
  }

  .header_image-wrapper-copy {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    justify-content: center;
    align-items: flex-end;
    width: auto;
    display: flex;
    position: relative;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .header-home-1_component {
    max-height: none;
  }

  .header-home-1_grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .image-6 {
    height: auto;
    max-height: none;
    left: 0;
    right: auto;
  }

  .header_image-wrapper {
    opacity: 1;
    min-height: 0;
    max-height: none;
  }

  .first-section_background {
    display: none;
  }

  .header36_component {
    padding-top: 4rem;
  }

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

  .text-size-medium-11 {
    font-size: 1rem;
  }

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

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

  .spacer-large-2 {
    padding-top: 2rem;
  }

  .spacer-xlarge-2 {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge-2 {
    padding-top: 3rem;
  }

  .spacer-huge-2 {
    padding-top: 3.5rem;
  }

  .spacer-xhuge-2 {
    padding-top: 4rem;
  }

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

  .div-block-14 {
    justify-content: center;
    align-items: center;
    display: block;
  }

  .image-6-copy {
    height: auto;
    max-height: none;
    left: 0;
    right: auto;
  }

  .header-image {
    left: 0;
    right: auto;
  }

  .header-image.home {
    left: 0;
  }

  .header-image.cooperation {
    left: -36px;
  }

  .header-image-industry {
    object-fit: cover;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    top: -14px;
    left: 0;
    right: auto;
  }

  .header_image-wrapper_industry {
    min-height: 0;
    max-height: none;
  }

  .menu-icon_line-bottom-2 {
    background-color: #172b46;
  }

  .main-navbar_menu-2.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .menu-icon_line-middle-2, .menu-icon_line-middle-inner-2 {
    background-color: #172b46;
  }

  .main-navbar_component-2 {
    min-height: 4rem;
  }

  .menu-icon_line-top-2 {
    background-color: #172b46;
  }
}

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

  h2 {
    font-size: 1.8rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

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

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

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

  .icon-1x1-small {
    margin-top: 5px;
  }

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

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

  .padding-global.header-1_padding-top-custom {
    padding-top: 0;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .text-size-large.text-weight-medium.text-align-left {
    text-align: left;
  }

  .container-large {
    max-width: none;
  }

  .button-group {
    justify-content: center;
    align-items: center;
  }

  .navbar2_menu-dropdown, .navbar2_link {
    width: auto;
  }

  .navbar_menu.is-page-height-tablet {
    flex-flow: column;
  }

  .header-1_right-content {
    opacity: 1;
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
    position: relative;
  }

  .text-size-medium-3 {
    font-size: .9rem;
  }

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

  .header-home_image-wrapper {
    background-size: contain;
    height: 300px;
    position: relative;
  }

  .header-home_content {
    text-align: center;
    max-width: none;
    margin-top: 7rem;
  }

  .header-home.background-color-gradient {
    display: none;
  }

  .header-home_footer {
    grid-column-gap: 1rem;
    grid-row-gap: 6px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .vertical-divider {
    width: 80%;
    height: 1px;
  }

  .header-home_footer-right, .header-home_footer-left {
    text-align: center;
  }

  .baackground-photo-mobile {
    display: none;
  }

  .mobile-button-wrapper {
    display: block;
  }

  .hero-image.training-2 {
    background-image: linear-gradient(to bottom, null, null);
    display: block;
  }

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

  .about-button {
    text-align: center;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    width: 140px;
  }

  .background-squre {
    width: 250px;
    height: 250px;
    top: 320px;
    left: 246px;
  }

  .background-squre.yellow {
    width: 200px;
    height: 200px;
    top: 151px;
  }

  .background-squre.header.blue {
    width: 120px;
    height: 120px;
    bottom: 122px;
    right: 39px;
  }

  .background-squre.header.yellow {
    width: 120px;
    height: 120px;
    top: 139px;
  }

  .background-squre.cooperate.blue {
    top: 345px;
  }

  .div-block-4 {
    padding-top: 3rem;
  }

  .home-stats_component {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  .stats_card {
    border-bottom: 2px solid var(--background-color--background-secondary);
    text-align: center;
    border-left-style: none;
    padding-bottom: .5rem;
  }

  .home-stats_card_stats-number-wrapper {
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }

  .stats-card_footer {
    margin-left: 0;
  }

  .section-divider {
    width: 90%;
  }

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

  .services_component._2-col {
    grid-template-columns: 1fr;
  }

  .services_card {
    height: auto;
  }

  .square-element-small {
    top: 0;
    right: 30px;
  }

  .square-element-small.xsmall.industry {
    height: 60px;
    top: 0;
  }

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

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

  .timeline1_content-right {
    grid-row-gap: 2rem;
  }

  .timeline1_row {
    grid-column-gap: 1rem;
  }

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

  .timeline1_item {
    grid-template-columns: 3rem 1fr;
  }

  .flex-horizontal {
    flex-flow: column;
  }

  .logo_logo-list {
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
  }

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

  .logo_content-left {
    text-align: center;
    max-width: none;
  }

  .logo_flex {
    position: relative;
  }

  .footer_menu-wrapper {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .footer_details-wrapper.text-color-alternate {
    text-align: left;
  }

  .footer_social-link {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .footer_legal-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .footer_top-wrapper {
    grid-column-gap: 1vw;
    grid-row-gap: 1.5rem;
  }

  .contact-link.contact-card {
    font-size: .7rem;
  }

  .fs-cc-prefs_button {
    margin-bottom: .5rem;
  }

  .fs-cc-banner_close {
    position: absolute;
    top: -1.5rem;
    bottom: auto;
    left: auto;
    right: .75rem;
  }

  .fs-cc-prefs_component {
    padding: 1.5rem;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .lottie-wrapper.hide-mobile-portrait.cooperation {
    bottom: 12%;
  }

  .lottie-animation {
    margin-left: auto;
    margin-right: auto;
  }

  .main-navbar_menu.is-page-height-tablet {
    flex-flow: column;
  }

  .about-header_background-image {
    background-position: 25%;
  }

  .achievements_component, .achievements_card {
    grid-template-columns: 1fr;
  }

  .achievements_card-number {
    align-items: center;
    width: 100%;
  }

  .stats-second_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .stats-second_item-list {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .about-gallery_component {
    grid-template-columns: 1fr;
  }

  .about-private_image-wrapper1 {
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .about-private_image-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    align-content: end;
    align-items: start;
    justify-items: stretch;
  }

  .about-private_image1 {
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .padding-header {
    margin-top: 4rem;
  }

  .header-1_component {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-content: center;
    height: auto;
  }

  .header-1_content {
    text-align: center;
    max-width: none;
    margin-top: 6rem;
  }

  .header-1_image-wrapper {
    background-image: url('../images/photo-4-horizontal-small-1.webp');
    background-position: 76% 100%;
    background-size: cover;
    height: 300px;
    position: relative;
  }

  .header-1_image-wrapper.industry {
    background-image: url('../images/industry-4.0-header.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    overflow: visible;
  }

  .header-1_image-wrapper.training {
    background-image: url('../images/photo-3-1.webp');
    background-repeat: no-repeat;
    background-size: contain;
    width: 230px;
    margin-left: auto;
    margin-right: auto;
  }

  .header-1_background-photo-mobile {
    display: none;
  }

  .header-1_background-photo-mobile.industry {
    background-image: url('../images/industry-4.0-header.png');
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .cooperation-service_component {
    grid-template-columns: 1fr;
  }

  .div-block-4-copy {
    padding-top: 3rem;
  }

  .cooperate-why_stats-square-element-1 {
    justify-content: center;
    align-items: flex-start;
    width: 120px;
    height: 90px;
    padding: 1rem;
    top: 7px;
    left: -16px;
  }

  .square-element-1_text {
    font-size: 1rem;
  }

  .square-element-1_text-2 {
    font-size: .8rem;
  }

  .cooperate-why_stats-square-element-2 {
    width: 90px;
    height: 70px;
    padding: 1rem;
    top: 133px;
    left: -15px;
  }

  .cooperate-why_square-element-3 {
    width: 100px;
    height: 80px;
    padding: 1rem;
    top: 105px;
    bottom: 0;
    left: 114px;
    right: 0;
  }

  .industry-square-element {
    justify-content: center;
    align-items: center;
    bottom: 17px;
    right: 0;
  }

  .graph-image-1 {
    width: 120px;
    top: 112px;
    bottom: 0;
    left: 0;
  }

  .graph-image-2 {
    width: 120px;
    top: -25px;
    left: 0;
    right: 0;
  }

  .graph-image-3 {
    width: 100px;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .training_square-element-1 {
    width: 70px;
    height: 70px;
    left: 10px;
  }

  .training_square-element-2 {
    width: 70px;
    height: 70px;
    left: 90px;
  }

  .training_square-element-3 {
    flex-flow: column;
    width: auto;
    max-width: 240px;
    margin-right: 10px;
    left: 10px;
  }

  .text-block-4 {
    font-size: .7rem;
  }

  .training_circle-element-1 {
    left: 30px;
  }

  .training_circle-element-2 {
    left: 7px;
  }

  .training_circle-element-3 {
    left: 94px;
  }

  .contact_hero-box {
    border-top-right-radius: 0;
    width: 100%;
  }

  .contact_hero-image-wrapper {
    width: auto;
  }

  .contact-hero-image {
    background-position: 50% 100%;
    background-size: cover;
    overflow: visible;
  }

  .div-block-8 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contact_hero-container {
    max-width: none;
  }

  .contact_card-wrapper.background-color-gradient {
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 160px;
    margin-right: 0;
    padding: 1rem;
    display: block;
    top: auto;
    bottom: 8%;
    left: auto;
    right: 10px;
  }

  .contact_card {
    flex-flow: column;
    padding-bottom: 0;
    display: block;
  }

  .contact_card_social-link {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
    display: block;
  }

  .about-button_underline-white, .about-button_underline-yellow {
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 108px;
    width: auto;
  }

  .social-link {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .section_logo-mobile {
    display: block;
  }

  .logo_list-mobile {
    justify-content: center;
  }

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

  .div-block-11 {
    width: 240px;
    height: 200px;
    margin-left: 0;
    margin-right: 0;
  }

  .header_image-wrapper-copy {
    background-size: contain;
    width: 250px;
    position: relative;
  }

  .header-home-1_grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .div-block-12 {
    height: auto;
  }

  .image-6 {
    height: auto;
    max-height: none;
  }

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

  .image-6-copy, .header-image, .header-image-industry {
    height: auto;
    max-height: none;
  }

  .main-navbar_menu-2.is-page-height-tablet {
    flex-flow: column;
  }

  .navbar2_link-2 {
    width: auto;
  }
}

#w-node-_0a73b1e4-a135-fa96-75f6-0ddeac8830b3-652f27e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_0a73b1e4-a135-fa96-75f6-0ddeac8830b5-652f27e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_0a73b1e4-a135-fa96-75f6-0ddeac8830dc-652f27e5 {
  justify-self: end;
}

#w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325b7-652f27e5 {
  align-self: center;
}

#w-node-b65a525e-371e-4eb8-2a3c-b2cc365f0caa-652f27e5 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-fa67a66d-696c-b1ba-93e0-bd571d576e08-652f27e5 {
  justify-self: stretch;
}

#w-node-_06da3ec8-f355-2e82-6f4d-6f4b2509921a-652f27e5 {
  align-self: center;
}

#w-node-f5559a31-70ac-0280-cd1b-3ae362290ead-652f27e5, #w-node-_76c72f4b-f219-f220-68e1-0423d62fa0d4-652f27e5, #w-node-_8b58fdfc-4af3-9604-b71e-008cba64bc23-652f27e5, #w-node-_3b8f3fd7-ef5f-e9b5-7e54-b2082a9cc1a7-652f27e5, #w-node-_3b8f3fd7-ef5f-e9b5-7e54-b2082a9cc1b7-652f27e5, #w-node-_09f973f3-4118-97a8-fef5-16c3674cfda7-652f27e5, #w-node-a7049d08-8096-b4bd-92a9-5a1c96d9ebca-652f27e5, #w-node-ee2d0d92-5174-eacc-437a-d6f0afba5bb0-652f27e5, #w-node-e0f15f83-b0a5-b7eb-a7a8-b160ea0154dd-652f27e5, #w-node-e55f5c95-2b25-d27b-036c-3ab2139db95f-652f27e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_76b75b3a-2f9b-1def-88ed-ac564e8f45c9-4e8f4597 {
  align-self: end;
  justify-self: end;
}

#w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb371-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb373-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb375-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb377-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb379-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb37b-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb37d-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb37f-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb382-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb384-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb386-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb388-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb38a-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb38c-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb38e-980fb366, #w-node-_43a321b4-33a9-a9ce-0c1d-613a980fb390-980fb366, #w-node-_03837807-6633-251e-3fd7-04e67a89182c-7a891820, #w-node-_03837807-6633-251e-3fd7-04e67a891834-7a891820, #w-node-_03837807-6633-251e-3fd7-04e67a891837-7a891820, #w-node-_03837807-6633-251e-3fd7-04e67a89183f-7a891820 {
  justify-self: center;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-652f27e8 {
  justify-self: start;
}

#w-node-_5d224905-8a1e-1460-7532-d38cb7ec37c1-652f27e8, #w-node-_40538c8c-870b-b365-34c4-2a06f0f8567d-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-652f27e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-652f27e8 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-652f27e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-652f27e8 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-652f27e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-652f27e8 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-652f27e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-652f27e8 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-652f27e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-652f27e8, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-652f27e8 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-652f27e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-652f27e8 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-652f27e8, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd98-652f27e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-652f27e8 {
  justify-self: start;
}

#w-node-_5309e4da-0a46-c930-d1d4-fc45040835af-fe7d6f57 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_22520918-4a22-9171-0cf8-cc0b741ca1b5-fe7d6f57, #w-node-_6476fb78-086b-6a65-8a0f-01f318595145-fe7d6f57, #w-node-_7190be3f-e7b7-e0cb-bece-55852a345f4b-fe7d6f57, #w-node-_5af797ae-d33f-a06d-ec5b-63cdfbdc9689-fe7d6f57 {
  align-self: center;
}

#w-node-a960485d-1a0c-8706-41b7-46f5537fc473-fe7d6f57, #w-node-_0f0a7ec7-368c-aebd-6bbf-9c29dd03cff9-fe7d6f57, #w-node-f62c6e0e-458a-c449-07fa-73cf380a30bb-fe7d6f57, #w-node-_1c7b2894-d88b-4028-ae74-40841bb12f7e-fe7d6f57, #w-node-fd45814b-7986-fb42-5f72-cdb62770c4fc-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de79-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de7a-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de7b-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de7c-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de7e-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de7f-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de80-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de81-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de82-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de83-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de84-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de85-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de86-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de88-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de89-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de8a-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de8b-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de8c-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de8d-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de8e-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de8f-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de90-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de91-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de92-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de93-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de94-fe7d6f57, #w-node-_60739b57-7352-6f1c-4b90-c23e11f6de95-fe7d6f57 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_748d3c76-f59b-cbc4-927a-691cb54823c3-fe7d6f57 {
  align-self: start;
}

#w-node-_645efcdd-9b97-7ff9-410b-7fce8014e94b-8014e949 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_645efcdd-9b97-7ff9-410b-7fce8014e94d-8014e949 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_645efcdd-9b97-7ff9-410b-7fce8014e974-8014e949 {
  justify-self: end;
}

#w-node-_89e4b49b-55aa-6cf8-3297-49cf7729a33b-b3d57673, #w-node-_89e4b49b-55aa-6cf8-3297-49cf7729a34b-b3d57673 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2066688c-65c3-e07c-26a1-742de46f8142-dd352fb5 {
  align-self: center;
}

#w-node-_2066688c-65c3-e07c-26a1-742de46f815c-dd352fb5 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-a7e0d897-1352-45a7-d1bf-e150127a5792-dd352fb5, #w-node-a7e0d897-1352-45a7-d1bf-e150127a5798-dd352fb5, #w-node-a7e0d897-1352-45a7-d1bf-e150127a579e-dd352fb5, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f09-dd352fb5, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f0f-dd352fb5, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f15-dd352fb5 {
  align-self: start;
}

#w-node-_2c531448-8874-ac76-f1eb-114063991920-dd352fb5 {
  align-self: center;
}

#w-node-_2c531448-8874-ac76-f1eb-11406399191e-dd352fb5 {
  justify-self: stretch;
}

#w-node-_5bd8668f-e97b-ebb5-32f5-7b4ccadf10f2-dd352fb5, #w-node-_5bd8668f-e97b-ebb5-32f5-7b4ccadf1104-dd352fb5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9698ee29-235e-d6b1-0414-4977a5b0fe42-a5b0fe23 {
  justify-self: center;
}

#w-node-f81952dc-51ba-eeae-52d4-209cb027aff3-94f9af5d {
  align-self: center;
}

#w-node-f81952dc-51ba-eeae-52d4-209cb027afff-94f9af5d {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f81952dc-51ba-eeae-52d4-209cb027b001-94f9af5d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a9cc5757-c6a3-5d39-f3ef-6b22ec56bf9e-94f9af5d {
  align-self: stretch;
}

#w-node-a9cc5757-c6a3-5d39-f3ef-6b22ec56bfbe-94f9af5d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_09137ef7-a2f9-55a9-d444-c42ef6b8ab1b-0235179d {
  align-self: center;
}

#w-node-_09137ef7-a2f9-55a9-d444-c42ef6b8ab27-0235179d {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-e7b9b875-4ab2-44f5-806b-382f5cfd5c72-0235179d, #w-node-e7b9b875-4ab2-44f5-806b-382f5cfd5c82-0235179d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a73b1e4-a135-fa96-75f6-0ddeac8830b3-29cba49e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_0a73b1e4-a135-fa96-75f6-0ddeac8830b5-29cba49e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_0a73b1e4-a135-fa96-75f6-0ddeac8830dc-29cba49e {
  justify-self: end;
}

#w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325b7-29cba49e {
  align-self: center;
}

#w-node-b65a525e-371e-4eb8-2a3c-b2cc365f0caa-29cba49e {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-fa67a66d-696c-b1ba-93e0-bd571d576e08-29cba49e {
  justify-self: stretch;
}

#w-node-_06da3ec8-f355-2e82-6f4d-6f4b2509921a-29cba49e {
  align-self: center;
}

#w-node-f5559a31-70ac-0280-cd1b-3ae362290ead-29cba49e, #w-node-_76c72f4b-f219-f220-68e1-0423d62fa0d4-29cba49e, #w-node-_8b58fdfc-4af3-9604-b71e-008cba64bc23-29cba49e, #w-node-_3b8f3fd7-ef5f-e9b5-7e54-b2082a9cc1a7-29cba49e, #w-node-_3b8f3fd7-ef5f-e9b5-7e54-b2082a9cc1b7-29cba49e, #w-node-_09f973f3-4118-97a8-fef5-16c3674cfda7-29cba49e, #w-node-a7049d08-8096-b4bd-92a9-5a1c96d9ebca-29cba49e, #w-node-ee2d0d92-5174-eacc-437a-d6f0afba5bb0-29cba49e, #w-node-e0f15f83-b0a5-b7eb-a7a8-b160ea0154dd-29cba49e, #w-node-e55f5c95-2b25-d27b-036c-3ab2139db95f-29cba49e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7ba60930-0adf-d68c-5645-ee283455dd25-3455dcf3 {
  align-self: end;
  justify-self: end;
}

#w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef932b-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef932d-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef932f-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9331-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9333-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9335-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9337-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9339-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef933c-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef933e-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9340-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9342-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9344-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9346-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef9348-01ef9320, #w-node-_1142d9f9-4fda-0fe0-96d3-473e01ef934a-01ef9320, #w-node-_2b183665-bd38-5786-8559-7d86284b6cde-284b6cd2, #w-node-_2b183665-bd38-5786-8559-7d86284b6ce6-284b6cd2, #w-node-_2b183665-bd38-5786-8559-7d86284b6ce9-284b6cd2, #w-node-_2b183665-bd38-5786-8559-7d86284b6cf1-284b6cd2 {
  justify-self: center;
}

#w-node-_5309e4da-0a46-c930-d1d4-fc45040835af-1e1c3aa0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_22520918-4a22-9171-0cf8-cc0b741ca1b5-1e1c3aa0, #w-node-_6476fb78-086b-6a65-8a0f-01f318595145-1e1c3aa0, #w-node-_7190be3f-e7b7-e0cb-bece-55852a345f4b-1e1c3aa0, #w-node-_5af797ae-d33f-a06d-ec5b-63cdfbdc9689-1e1c3aa0 {
  align-self: center;
}

#w-node-a960485d-1a0c-8706-41b7-46f5537fc473-1e1c3aa0, #w-node-_0f0a7ec7-368c-aebd-6bbf-9c29dd03cff9-1e1c3aa0, #w-node-f62c6e0e-458a-c449-07fa-73cf380a30bb-1e1c3aa0, #w-node-_1c7b2894-d88b-4028-ae74-40841bb12f7e-1e1c3aa0, #w-node-fd45814b-7986-fb42-5f72-cdb62770c4fc-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae6b-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae6c-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae6d-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae6e-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae70-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae71-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae72-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae73-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae74-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae75-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae76-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae77-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae78-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae7a-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae7b-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae7c-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae7d-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae7e-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae7f-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae80-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae81-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae82-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae83-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae84-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae85-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae86-1e1c3aa0, #w-node-_665d8840-6061-e674-a18b-8d5c90ffae87-1e1c3aa0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_748d3c76-f59b-cbc4-927a-691cb54823c3-1e1c3aa0 {
  align-self: start;
}

#w-node-_0239f26f-1a93-ef2d-03ce-f6fa2ca8e19f-2ca8e19d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_0239f26f-1a93-ef2d-03ce-f6fa2ca8e1a1-2ca8e19d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_0239f26f-1a93-ef2d-03ce-f6fa2ca8e1cd-2ca8e19d {
  justify-self: end;
}

#w-node-_89e4b49b-55aa-6cf8-3297-49cf7729a33b-6a3ed563, #w-node-_89e4b49b-55aa-6cf8-3297-49cf7729a34b-6a3ed563 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2066688c-65c3-e07c-26a1-742de46f8142-6d985d05 {
  align-self: center;
}

#w-node-_2066688c-65c3-e07c-26a1-742de46f815c-6d985d05 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-a7e0d897-1352-45a7-d1bf-e150127a5792-6d985d05, #w-node-a7e0d897-1352-45a7-d1bf-e150127a5798-6d985d05, #w-node-a7e0d897-1352-45a7-d1bf-e150127a579e-6d985d05, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f09-6d985d05, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f0f-6d985d05, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f15-6d985d05 {
  align-self: start;
}

#w-node-_2c531448-8874-ac76-f1eb-114063991920-6d985d05 {
  align-self: center;
}

#w-node-_2c531448-8874-ac76-f1eb-11406399191e-6d985d05 {
  justify-self: stretch;
}

#w-node-_60d4edad-05b0-8930-8f53-2d1509bf3098-6d985d05, #w-node-_60d4edad-05b0-8930-8f53-2d1509bf30ac-6d985d05 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6ca49149-4261-79a6-4e4d-4b1564effeb4-64effe97 {
  justify-self: center;
}

#w-node-_09137ef7-a2f9-55a9-d444-c42ef6b8ab1b-da04ac83 {
  align-self: center;
}

#w-node-_09137ef7-a2f9-55a9-d444-c42ef6b8ab27-da04ac83 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-e7b9b875-4ab2-44f5-806b-382f5cfd5c72-da04ac83, #w-node-e7b9b875-4ab2-44f5-806b-382f5cfd5c82-da04ac83 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f81952dc-51ba-eeae-52d4-209cb027aff3-31c08284 {
  align-self: center;
}

#w-node-f81952dc-51ba-eeae-52d4-209cb027afff-31c08284 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f81952dc-51ba-eeae-52d4-209cb027b001-31c08284 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a9cc5757-c6a3-5d39-f3ef-6b22ec56bf9e-31c08284 {
  align-self: stretch;
}

#w-node-a9cc5757-c6a3-5d39-f3ef-6b22ec56bfbe-31c08284 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2066688c-65c3-e07c-26a1-742de46f8142-d73dde69 {
  align-self: center;
}

#w-node-_2066688c-65c3-e07c-26a1-742de46f815c-d73dde69 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-a7e0d897-1352-45a7-d1bf-e150127a5792-d73dde69, #w-node-a7e0d897-1352-45a7-d1bf-e150127a5798-d73dde69, #w-node-a7e0d897-1352-45a7-d1bf-e150127a579e-d73dde69, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f09-d73dde69, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f0f-d73dde69, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f15-d73dde69 {
  align-self: start;
}

#w-node-cb6d3ea2-6f23-1758-0723-68183c61239f-d73dde69 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2066688c-65c3-e07c-26a1-742de46f8142-12706cf5 {
  align-self: center;
}

#w-node-_2066688c-65c3-e07c-26a1-742de46f815c-12706cf5 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-a7e0d897-1352-45a7-d1bf-e150127a5792-12706cf5, #w-node-a7e0d897-1352-45a7-d1bf-e150127a5798-12706cf5, #w-node-a7e0d897-1352-45a7-d1bf-e150127a579e-12706cf5, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f09-12706cf5, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f0f-12706cf5, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f15-12706cf5 {
  align-self: start;
}

#w-node-b34e78ba-24a4-2e30-64d4-07e0d09fecd8-12706cf5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_3b8f3fd7-ef5f-e9b5-7e54-b2082a9cc1a7-652f27e5, #w-node-_89e4b49b-55aa-6cf8-3297-49cf7729a33b-b3d57673, #w-node-_5bd8668f-e97b-ebb5-32f5-7b4ccadf10f2-dd352fb5, #w-node-e7b9b875-4ab2-44f5-806b-382f5cfd5c72-0235179d, #w-node-_3b8f3fd7-ef5f-e9b5-7e54-b2082a9cc1a7-29cba49e, #w-node-_89e4b49b-55aa-6cf8-3297-49cf7729a33b-6a3ed563, #w-node-_60d4edad-05b0-8930-8f53-2d1509bf3098-6d985d05, #w-node-e7b9b875-4ab2-44f5-806b-382f5cfd5c72-da04ac83, #w-node-cb6d3ea2-6f23-1758-0723-68183c61239f-d73dde69, #w-node-b34e78ba-24a4-2e30-64d4-07e0d09fecd8-12706cf5 {
    align-self: stretch;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325b7-652f27e5 {
    align-self: center;
  }

  #w-node-b65a525e-371e-4eb8-2a3c-b2cc365f0caa-652f27e5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fa67a66d-696c-b1ba-93e0-bd571d576e08-652f27e5 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-_598bd9b4-4649-81d6-5579-286aec2bfb54-652f27e5 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-a7049d08-8096-b4bd-92a9-5a1c96d9ebca-652f27e5 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-e0f15f83-b0a5-b7eb-a7a8-b160ea0154dd-652f27e5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e55f5c95-2b25-d27b-036c-3ab2139db95f-652f27e5 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_412ef3c3-38e3-f5e1-6856-c1a5f2b6eff7-652f27e5 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-f8bf8ffd-6bfb-ad8b-9117-2f5ef0a10056-fe7d6f57 {
    order: -9999;
  }

  #w-node-f1e57842-be4c-f822-66f5-3f3d87049f01-dd352fb5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2c531448-8874-ac76-f1eb-11406399191e-dd352fb5 {
    grid-area: 2 / 1 / 2 / 2;
    justify-self: stretch;
  }

  #w-node-ce378c55-6752-bce7-f19c-826bd33c25d1-0235179d, #w-node-_8c1dbf87-c1c0-61b2-4894-b459f3d22cc8-0235179d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: stretch;
  }

  #w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325b7-29cba49e {
    align-self: center;
  }

  #w-node-b65a525e-371e-4eb8-2a3c-b2cc365f0caa-29cba49e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fa67a66d-696c-b1ba-93e0-bd571d576e08-29cba49e {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-_598bd9b4-4649-81d6-5579-286aec2bfb54-29cba49e {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-a7049d08-8096-b4bd-92a9-5a1c96d9ebca-29cba49e {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-e0f15f83-b0a5-b7eb-a7a8-b160ea0154dd-29cba49e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e55f5c95-2b25-d27b-036c-3ab2139db95f-29cba49e {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_412ef3c3-38e3-f5e1-6856-c1a5f2b6eff7-29cba49e {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-f8bf8ffd-6bfb-ad8b-9117-2f5ef0a10056-1e1c3aa0 {
    order: -9999;
  }

  #w-node-f1e57842-be4c-f822-66f5-3f3d87049f01-6d985d05 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2c531448-8874-ac76-f1eb-11406399191e-6d985d05 {
    grid-area: 2 / 1 / 2 / 2;
    justify-self: stretch;
  }

  #w-node-ce378c55-6752-bce7-f19c-826bd33c25d1-da04ac83, #w-node-_8c1dbf87-c1c0-61b2-4894-b459f3d22cc8-da04ac83 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: stretch;
  }

  #w-node-f1e57842-be4c-f822-66f5-3f3d87049f01-d73dde69, #w-node-f1e57842-be4c-f822-66f5-3f3d87049f01-12706cf5 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325c0-652f27e5, #w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325c7-652f27e5, #w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325c8-652f27e5, #w-node-_512b8fef-ba48-6eda-48db-3ae1e0681720-652f27e5 {
    justify-self: center;
  }

  #w-node-_598bd9b4-4649-81d6-5579-286aec2bfb54-652f27e5, #w-node-a7049d08-8096-b4bd-92a9-5a1c96d9ebca-652f27e5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e0f15f83-b0a5-b7eb-a7a8-b160ea0154dd-652f27e5 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-e55f5c95-2b25-d27b-036c-3ab2139db95f-652f27e5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_76b75b3a-2f9b-1def-88ed-ac564e8f45c9-4e8f4597 {
    justify-self: start;
  }

  #w-node-a960485d-1a0c-8706-41b7-46f5537fc473-fe7d6f57, #w-node-_0f0a7ec7-368c-aebd-6bbf-9c29dd03cff9-fe7d6f57, #w-node-f62c6e0e-458a-c449-07fa-73cf380a30bb-fe7d6f57, #w-node-_1c7b2894-d88b-4028-ae74-40841bb12f7e-fe7d6f57, #w-node-_2c531448-8874-ac76-f1eb-11406399191e-dd352fb5, #w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325c0-29cba49e, #w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325c7-29cba49e, #w-node-_0ba7e1b7-679c-4b9d-8e9e-ca7f3e1325c8-29cba49e, #w-node-_512b8fef-ba48-6eda-48db-3ae1e0681720-29cba49e {
    justify-self: center;
  }

  #w-node-_598bd9b4-4649-81d6-5579-286aec2bfb54-29cba49e, #w-node-a7049d08-8096-b4bd-92a9-5a1c96d9ebca-29cba49e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e0f15f83-b0a5-b7eb-a7a8-b160ea0154dd-29cba49e {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-e55f5c95-2b25-d27b-036c-3ab2139db95f-29cba49e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7ba60930-0adf-d68c-5645-ee283455dd25-3455dcf3 {
    justify-self: start;
  }

  #w-node-a960485d-1a0c-8706-41b7-46f5537fc473-1e1c3aa0, #w-node-_0f0a7ec7-368c-aebd-6bbf-9c29dd03cff9-1e1c3aa0, #w-node-f62c6e0e-458a-c449-07fa-73cf380a30bb-1e1c3aa0, #w-node-_1c7b2894-d88b-4028-ae74-40841bb12f7e-1e1c3aa0, #w-node-_2c531448-8874-ac76-f1eb-11406399191e-6d985d05 {
    justify-self: center;
  }
}


