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

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

.w-checkbox::before {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

.w-checkbox::after {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  clear: both;
}

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

.w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

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

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

.w-form-formradioinput--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

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

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

body {
  background-color: #000;
  font-family: Manrope, sans-serif;
  color: #333;
  font-size: 1rem;
  line-height: 1.6rem;
}

h1 {
  margin-top: 0px;
  color: #fff;
  font-size: 2.5rem;
  line-height: 130%;
  font-weight: 800;
}

h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 2rem;
  line-height: 135%;
  font-weight: 800;
}

h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 150%;
  font-weight: 800;
}

h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 155%;
  font-weight: 800;
}

h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 160%;
  font-weight: 800;
}

h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 1rem;
  line-height: 160%;
  font-weight: 800;
}

p {
  margin-bottom: 10px;
  color: #8a8a8a;
  line-height: 165%;
}

a {
  text-decoration: underline;
}

ul {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 0px;
}

li {
  color: #edf2f0;
}

blockquote {
  margin-bottom: 10px;
  padding: 10px 20px;
  border-left: 5px solid #e2e2e2;
  color: #edf2f0;
  font-size: 18px;
  line-height: 22px;
}

.fs-styleguide_header {
  background-color: #627bfc;
}

.fs-styleguide_label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.25rem 0.75rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0073e6;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}

.fs-styleguide_label.is-tag {
  background-color: #be4aa5;
}

.margin-tiny {
  margin: 0.125rem;
}

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

.container-small.is-relative {
  position: relative;
}

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

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

.padding-xlarge {
  padding: 4rem;
}

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

.background-color-black {
  background-color: #000;
  color: #f5f5f5;
}

.padding-medium {
  padding: 2rem;
}

.form_radio-icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0rem;
  margin-right: 0.5rem;
  margin-left: 0rem;
  border-color: #edf2f0;
}

.form_radio-icon.w--redirected-checked {
  width: 1rem;
  height: 1rem;
  border-width: 1px;
  border-color: #627bfc;
  background-color: #627bfc;
}

.form_radio-icon.w--redirected-focus {
  width: 1rem;
  height: 1rem;
  border-color: #627bfc;
  background-color: #627bfc;
  box-shadow: none;
}

.padding-xhuge {
  padding: 8rem;
}

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

.padding-xxlarge {
  padding: 5rem;
}

.fs-styleguide_empty-box {
  position: relative;
  z-index: -1;
  height: 3rem;
  min-width: 3rem;
  border-style: dashed;
  border-width: 1px;
  border-color: #0073e6;
  background-color: rgba(0, 115, 230, 0.1);
}

.padding-custom2 {
  padding: 2.5rem;
}

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

.heading-style-h3.height-custom {
  line-height: 1.4;
}

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

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

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

.margin-xxlarge {
  margin: 5rem;
}

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

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

.margin-custom2 {
  margin: 2.5rem;
}

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

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

.form_component {
  display: block;
  margin-bottom: 0rem;
}

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

.fs-styleguide_background {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.1);
}

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

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

.padding-huge {
  position: relative;
  z-index: 1;
  padding: 6rem;
  background-color: #000;
}

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

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

.padding-0 {
  padding: 0rem;
}

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

.container-large.is-relative {
  position: relative;
  z-index: 10;
}

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

.fs-styleguide_2-col.is-align-start {
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.margin-large {
  margin: 3rem;
}

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

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

.fs-styleguide_spacing {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
  justify-items: stretch;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-align-content: start;
  -ms-flex-line-pack: start;
  align-content: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 115, 230, 0.1)), to(hsla(0, 0%, 100%, 0)));
  background-image: linear-gradient(0deg, rgba(0, 115, 230, 0.1), hsla(0, 0%, 100%, 0));
}

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

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

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

.margin-0 {
  margin: 0rem;
}

.margin-small {
  margin: 1rem;
}

.heading-style-h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
}

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

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

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

.margin-huge {
  margin: 6rem;
}

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

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

.padding-xxhuge {
  padding: 12rem;
}

.form_form.center-align {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.form_checkbox-icon {
  width: 1rem;
  height: 1rem;
  margin: 0rem 0.5rem 0rem 0rem;
  border-radius: 0.125rem;
}

.form_checkbox-icon.w--redirected-checked {
  width: 1rem;
  height: 1rem;
  margin: 0rem 0.5rem 0rem 0rem;
  border-color: #627bfc;
  border-radius: 4px;
  background-color: #627bfc;
  background-size: 95%;
}

.form_checkbox-icon.w--redirected-focus {
  width: 0.875rem;
  height: 0.875rem;
  margin: 0rem 0.5rem 0rem 0rem;
  border-radius: 0.125rem;
  box-shadow: 0 0 0.25rem 0rem #3898ec;
}

.hide {
  display: none;
}

.margin-xxhuge {
  margin: 12rem;
}

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

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

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

.padding-custom3 {
  padding: 3.5rem;
}

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

.margin-custom1 {
  margin: 1.5rem;
}

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

.button {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  background-color: #4bffb6;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  color: #000a06;
  font-weight: 600;
  text-align: center;
}

.button:hover {
  background-color: #627bfc;
}

.button.is-text {
  border: 2px solid transparent;
  background-color: transparent;
  color: #627bfc;
}

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

.button.is-large.secondary {
  border-style: solid;
  border-width: 1px;
  border-color: #627bfc;
  background-color: transparent;
  color: #627bfc;
}

.button.is-large.secondary:hover {
  background-color: #627bfc;
  color: #000;
}

.button.is-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-decoration: none;
}

.button.is-secondary {
  border-style: solid;
  border-width: 1px;
  border-color: #627bfc;
  background-color: transparent;
  color: #627bfc;
}

.button.is-secondary:hover {
  background-color: #627bfc;
  color: #000a06;
}

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

.button.is-tertiary {
  border-style: solid;
  border-width: 1px;
  border-color: #e762fc;
  background-color: transparent;
  color: #e762fc;
}

.button.is-link {
  border-bottom: 1px solid #627bfc;
  background-color: transparent;
  color: #627bfc;
}

.button.is-link:hover {
  color: #4bffb6;
}

.margin-xsmall {
  margin: 0.5rem;
}

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

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

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

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

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

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

.padding-small {
  padding: 1rem;
}

.text-color-grey {
  color: grey;
}

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

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

.page-wrapper {
  overflow: hidden;
}

.fs-styleguide_version {
  z-index: 5;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

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

.text-color-white {
  color: #fff;
}

.padding-tiny {
  padding: 0.125rem;
}

.form_input {
  min-height: 3rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 1rem;
  border-style: none none solid;
  border-width: 1px;
  border-color: #000 #000 #edf2f0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.form_input:focus {
  border-bottom-width: 2px;
  border-bottom-color: #4bffb6;
  background-color: rgba(75, 255, 182, 0.05);
}

.form_input::-webkit-input-placeholder {
  color: #8a8a8a;
}

.form_input:-ms-input-placeholder {
  color: #8a8a8a;
}

.form_input::-ms-input-placeholder {
  color: #8a8a8a;
}

.form_input::placeholder {
  color: #8a8a8a;
}

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

.form_input.is-text-area::-webkit-input-placeholder {
  color: #8a8a8a;
}

.form_input.is-text-area:-ms-input-placeholder {
  color: #8a8a8a;
}

.form_input.is-text-area::-ms-input-placeholder {
  color: #8a8a8a;
}

.form_input.is-text-area::placeholder {
  color: #8a8a8a;
}

.form_input.is-select-input {
  color: #8a8a8a;
}

.form_input.large {
  width: 100%;
  max-width: 40vw;
  min-height: 4rem;
  min-width: 40rem;
  margin-bottom: 0rem;
  border-style: none;
  border-color: #414141;
  border-radius: 4px;
  color: #4bffb6;
}

.form_input.large::-webkit-input-placeholder {
  font-size: 1.1rem;
}

.form_input.large:-ms-input-placeholder {
  font-size: 1.1rem;
}

.form_input.large::-ms-input-placeholder {
  font-size: 1.1rem;
}

.form_input.large::placeholder {
  font-size: 1.1rem;
}

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

.form_message-error {
  margin-top: 0.75rem;
  padding: 0.75rem;
}

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

.padding-xsmall {
  padding: 0.5rem;
}

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

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

.padding-custom1 {
  padding: 1.5rem;
}

.form_message-success {
  padding: 5.05rem;
  border-radius: 15px;
  background-color: #1b1b1b;
  color: #627bfc;
}

.fs-styleguide_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.background-color-white {
  background-color: #fff;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

.heading-style-h2 {
  overflow: visible;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
}

.heading-style-h2.text-align-center.max-width-large {
  margin-right: auto;
  margin-left: auto;
}

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

.text-rich-text blockquote {
  border-left-color: #edf2f0;
}

.text-rich-text li {
  padding-left: 30px;
  background-image: url('../images/Bullet.svg');
  background-position: 0px 4px;
  background-size: auto 1rem;
  background-repeat: no-repeat;
}

.text-rich-text h2 {
  margin-bottom: 20px;
}

.text-rich-text h4 {
  margin-bottom: 10px;
}

.text-rich-text h5 {
  margin-bottom: 10px;
}

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

.overflow-visible {
  overflow: visible;
}

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

.form_checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
  padding-left: 0rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #8a8a8a;
}

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

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

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

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

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

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

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

.padding-section-large.content {
  padding-top: 14rem;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.fs-styleguide_item-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

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

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

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

.background-color-grey {
  background-color: #edf2f0;
}

.form_radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
  padding-left: 0rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #edf2f0;
}

.form_checkbox-label {
  color: #edf2f0;
}

.margin-xxsmall {
  margin: 0.25rem;
}

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

.icon-1x1-small {
  width: 1rem;
  height: 1rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

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

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

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

.fs-styleguide_3-col.is-align-start {
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.margin-medium {
  margin: 2rem;
}

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

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

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

.button-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.overflow-scroll {
  overflow: scroll;
}

.form_label {
  color: #fff;
}

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

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

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

.margin-custom3 {
  margin: 3.5rem;
}

.padding-large {
  padding: 3rem;
}

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

.margin-xlarge {
  margin: 4rem;
}

.margin-xhuge {
  margin: 8rem;
}

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

.heading-style-h6 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 800;
}

.padding-xxsmall {
  padding: 0.25rem;
}

.overflow-auto {
  overflow: auto;
}

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

.text-size-regular.text-color-white.text-style-muted {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-decoration: none;
}

.text-size-regular.text-color-white.text-style-muted:hover {
  color: #4bffb6;
}

.thingsix_navbar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 1000;
  background-color: rgba(5, 5, 5, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.navbar-logo-left-container {
  z-index: 5;
  width: 1030px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 15px 20px;
  background-color: transparent;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 80rem;
  margin-bottom: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.navbar-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-menu-two {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-link {
  margin-right: 5px;
  margin-left: 5px;
  padding: 5px 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6rem;
  letter-spacing: 0.25px;
  text-decoration: none;
}

.nav-link:hover {
  color: #4bffb6;
}

.nav-link:focus-visible {
  border-radius: 4px;
  outline-color: #0050bd;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
  color: #4bffb6;
}

.nav-link[data-wf-focus-visible] {
  border-radius: 4px;
  outline-color: #0050bd;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
  color: #4bffb6;
}

.nav-dropdown {
  margin-right: 5px;
  margin-left: 5px;
}

.nav-dropdown.display-none {
  display: none;
}

.nav-dropdown-toggle {
  padding: 5px 30px 5px 10px;
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: 0.25px;
}

.nav-dropdown-toggle:hover {
  color: rgba(26, 27, 31, 0.75);
}

.nav-dropdown-toggle:focus-visible {
  border-radius: 5px;
  outline-color: #0050bd;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
  color: #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  border-radius: 5px;
  outline-color: #0050bd;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
  color: #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
  color: #fff;
}

.nav-dropdown-list {
  border-radius: 12px;
  background-color: #fff;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  min-width: 10rem;
  border: 1px solid #000;
  background-color: #0c0c0c;
}

.nav-dropdown-link {
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #fff;
  font-size: 14px;
}

.nav-dropdown-link:hover {
  border-radius: 5px;
  background-color: rgba(75, 255, 182, 0.1);
}

.nav-dropdown-link:focus-visible {
  border-radius: 5px;
  outline-color: #0050bd;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
  color: #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  border-radius: 5px;
  outline-color: #0050bd;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
  color: #0050bd;
}

.nav-divider {
  width: 1px;
  height: 22px;
  margin-right: 15px;
  margin-left: 15px;
  background-color: #e4ebf3;
}

.nav-link-accent {
  margin-right: 20px;
  margin-left: 5px;
  padding: 5px 10px;
  color: #1a1b1f;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.25px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: rgba(26, 27, 31, 0.75);
}

.mobile-margin-top-10.left-margin-12 {
  margin-left: 12px;
}

.button-primary {
  padding: 12px 25px;
  background-color: #1a1b1f;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.button-primary:active {
  background-color: #43464d;
}

.button-primary.footer-form-button {
  position: absolute;
  right: 8px;
  padding: 8px 18px;
}

.body {
  background-color: #000;
  color: #fff;
}

.brand-logo {
  max-width: 150px;
}

.nav-link-dropdown {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6rem;
}

.heading {
  line-height: 160%;
}

.heading-2 {
  font-size: 1.4rem;
  line-height: 160%;
}

.heading-3 {
  font-size: 1.8rem;
  line-height: 145%;
}

.heading-4 {
  font-size: 2.2rem;
  line-height: 135%;
}

.background-color-spring-green {
  background-color: #4bffb6;
}

.background-color-cornflower {
  background-color: #627bfc;
}

.background-color-heliotrope {
  background-color: #e762fc;
}

.section_hero {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  min-height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
}

.hero-animation {
  position: absolute;
  left: 25%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100vw;
  height: 100%;
}

.subheading-hero {
  color: #edf2f0;
  font-size: 1.5rem;
  line-height: 150%;
}

.subheading-hero.text-style-muted.text-align-center {
  opacity: 1;
}

.max-width-big {
  max-width: 46%;
}

.max-width-hero {
  max-width: 56%;
}

.highlighted-text {
  background-image: -webkit-gradient(linear, left top, right top, from(#4bffb6), to(#2ff553));
  background-image: linear-gradient(90deg, #4bffb6, #2ff553);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.usp-section {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
}

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

.usp-wrapper.is-relative {
  position: relative;
  z-index: 10;
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.usp-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  border-radius: 15px;
  background-color: hsla(0, 0%, 100%, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.usp-block.text-align-center {
  background-color: rgba(255, 255, 255, 0.04);
}

.usp-block.text-align-center.middle {
  position: relative;
  top: -40px;
}

.usp-block.text-align-center.left {
  position: relative;
  bottom: -80px;
}

.usp-block.text-align-center.right {
  position: relative;
  bottom: -120px;
}

.background-shape {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  width: 40%;
  height: 100%;
  background-image: url('../images/ThingsIX-Purple-Mesh.svg');
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.background-shape.right {
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-image: url('../images/ThingsIX-Blue-Mesh.svg');
  background-position: 100% 50%;
}

.background-shape.center {
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  background-image: url('../images/ThingsIX-Mesh.svg');
  background-position: 50% 100%;
}

.section-intro {
  position: relative;
  z-index: 1;
  background-color: #0a0a0a;
}

.intro-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-row-gap: 50px;
}

.logo-grid {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  grid-template-areas: ".";
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.logo-image {
  height: 3rem;
  max-width: 10rem;
  -webkit-filter: brightness(1000%) saturate(0%);
  filter: brightness(1000%) saturate(0%);
}

.section-roadmap {
  position: relative;
}

.timeline_component {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.timeline_progress {
  position: absolute;
  z-index: -1;
  width: 3px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: #313131;
}

.timeline_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.timeline_item {
  position: relative;
  z-index: 4;
  display: -ms-grid;
  display: grid;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 180px 1fr;
  grid-template-columns: 1fr 180px 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.timeline_item.highlighted {
  padding-right: 50px;
  padding-left: 50px;
  border-radius: 20px;
  background-color: rgba(15, 15, 15, 0.85);
  box-shadow: 0 35px 20px -3px rgba(98, 123, 252, 0.1);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  outline-color: #627bfc;
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 1px;
}

.margin-bottom-medium {
  margin-bottom: 32px;
}

.timeline_progress-bar {
  position: fixed;
  left: auto;
  top: 0px;
  right: auto;
  bottom: 10vh;
  z-index: -1;
  width: 3px;
  height: 50vh;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#627bfc), to(#4bffb6));
  background-image: linear-gradient(180deg, #627bfc, #4bffb6);
}

.timeline_left {
  position: relative;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: right;
}

.nr {
  color: #353535;
  font-size: 2.5rem;
  font-weight: 400;
}

.timeline_date-text {
  position: -webkit-sticky;
  position: sticky;
  top: 48vh;
  color: #fff;
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.overlay-fade-bottom {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  height: 80px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(240, 239, 236, 0)));
  background-image: linear-gradient(0deg, #000, rgba(240, 239, 236, 0));
}

.overlay-fade-top {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  height: 80px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(rgba(240, 239, 236, 0)));
  background-image: linear-gradient(180deg, #000, rgba(240, 239, 236, 0));
}

.timeline_circle {
  position: -webkit-sticky;
  position: sticky;
  top: 50vh;
  width: 2rem;
  height: 2rem;
  border-radius: 20px;
  background-color: #2a2a2a;
}

.button-2 {
  position: static;
  padding: 15px 20px;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  border-radius: 0px;
  background-color: rgba(193, 39, 45, 0);
  background-image: url('../images/noun-arrow-2262898-FFFFFF.svg');
  background-position: 125% 50%;
  background-size: auto 1.6rem;
  background-repeat: no-repeat;
  -webkit-transition: all 200ms cubic-bezier(.175, .885, .32, 1.275);
  transition: all 200ms cubic-bezier(.175, .885, .32, 1.275);
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button-2:hover {
  padding-right: 44px;
  background-color: rgba(170, 4, 10, 0);
  background-image: url('../images/noun-arrow-2262898-FFFFFF.svg');
  background-position: 95% 50%;
  background-size: auto 1.6rem;
  background-repeat: no-repeat;
}

.margin-bottom-xlarge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.paragraph-proces {
  margin-bottom: 25px;
  color: #afafaf;
  font-size: 1rem;
  line-height: 1.7rem;
}

.timeline_centre {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.timeline-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  grid-row-gap: 16px;
}

.text-label-small {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 5px;
  background-color: #1a1a1a;
  color: #627bfc;
  font-size: 1rem;
  font-weight: 500;
}

.text-label-small.primary {
  background-color: #292929;
  color: #4bffb6;
}

.roadmap-warp-background {
  position: fixed;
  bottom: 0px;
  z-index: -1;
  width: 100%;
  height: 50vh;
  background-image: url('../images/Horizontal-Warp.svg');
  background-position: 50% 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.section-news {
  position: relative;
  display: none;
  background-color: #000;
}

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

.news-article {
  padding: 40px;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.cta-section {
  position: relative;
  background-color: #000;
}

.input-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-style: solid;
  border-width: 1px;
  border-color: #4d4d4d;
  border-radius: 10px;
}

.background-maplines {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #000, rgba(0, 0, 0, 0.75)), url('../images/ThingsIX-Map-Lines.svg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, fixed;
}

.footer-subscribe {
  position: relative;
  z-index: 1;
  padding: 50px 30px 40px;
  border-bottom: 1px solid #e4ebf3;
  background-color: #000;
}

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

.footer-form-two {
  margin-bottom: 40px;
  padding: 64px;
  background-color: #f5f7fa;
}

.footer-form-container-two {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

.footer-form-block-two {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-form-input {
  width: 460px;
  height: 48px;
  margin-bottom: 0px;
  padding: 12px 180px 12px 20px;
  border: 1px none #000;
}

.footer-form-input::-webkit-input-placeholder {
  color: rgba(26, 27, 31, 0.8);
}

.footer-form-input:-ms-input-placeholder {
  color: rgba(26, 27, 31, 0.8);
}

.footer-form-input::-ms-input-placeholder {
  color: rgba(26, 27, 31, 0.8);
}

.footer-form-input::placeholder {
  color: rgba(26, 27, 31, 0.8);
}

.footer-wrapper-three {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-block-three {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-link-three {
  margin-right: 40px;
  color: #1a1b1f;
  text-decoration: none;
}

.footer-link-three:hover {
  color: rgba(26, 27, 31, 0.75);
}

.footer-social-block-three {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -32px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-social-link-three {
  margin-left: 32px;
}

.footer-divider-two {
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: #252525;
}

.footer-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-copyright {
  color: #8a8a8a;
}

.footer-legal-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-legal-link {
  margin-left: 24px;
  color: #8a8a8a;
  text-decoration: none;
}

.footer-legal-link:hover {
  color: #3a4554;
}

.icon-1x1-regular {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-1x1-regular.margin-right.margin-xsmall {
  margin-top: 0rem;
  margin-bottom: 0rem;
  margin-left: 0rem;
}

.content-section {
  position: relative;
}

.content-page-background-shape {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 50vw;
  height: 100vh;
  background-image: url('../images/ThingsIX-Blue-Mesh.svg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.mobile-hero-image {
  display: none;
}

.lottie-animation {
  max-height: 10rem;
  max-width: 10rem;
  margin-right: auto;
  margin-left: auto;
}

.text-block {
  color: #8a8a8a;
}

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

.text-span-2 {
  white-space: nowrap;
}

.display-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

.display-flex.align-top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.display-flex.align-top.justify-spaceinbetween {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.display-flex.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.display-flex.align-center.justify-spaceinbetween {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.display-flex.text-color-white.text-weight-medium.margin-top.margin-small {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  cursor: pointer;
}

.display-flex.text-color-white.text-weight-medium.margin-top.margin-small:hover {
  opacity: 0.6;
}

.display-flex.text-color-white.text-weight-medium.margin-top.margin-small.postion-relative.z100 {
  position: relative;
  z-index: 9999;
}

.footer-logo-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column-gap: 1rem;
}

.footer-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #1a1a1a;
}

.footer-logo-icon {
  width: 1.7rem;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.footer-logo-icon:hover {
  -webkit-filter: brightness(1000%) saturate(0%);
  filter: brightness(1000%) saturate(0%);
}

.mail-icon-wrapper {
  margin-right: 0.5rem;
  cursor: pointer;
}

.link-2 {
  color: #4bffb6;
  font-weight: 700;
  text-decoration: none;
}

.div-block {
  position: static;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 11;
  width: 100%;
  height: 100%;
  color: red;
}

.div-block-2 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
}

.done {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: block;
  border-radius: 20px;
  background-color: #4bffb6;
  background-image: url('../images/noun-check-4574820-FFFFFF-1.svg');
  background-position: 50% 50%;
  background-size: 1.2rem;
  background-repeat: no-repeat;
}

.pending {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: block;
  border-radius: 20px;
  background-color: #4bffb6;
  background-image: url('../images/noun-loading-4238109-FFFFFF.svg');
  background-position: 50% 50%;
  background-size: 1.4rem;
  background-repeat: no-repeat;
}

.planned {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: block;
  border-radius: 20px;
  background-color: #4bffb6;
  background-image: url('../images/noun-future-2496468-FFFFFF.svg');
  background-position: 50% 50%;
  background-size: 1.1rem;
  background-repeat: no-repeat;
}

.section-blog-header {
  padding-top: 6px;
}

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

.page-global.is-relative {
  position: relative;
}

.padding-section-hero {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.blog-header-breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}

.blog-title-component {
  padding: 2.5rem;
  border-radius: 15px;
  background-color: hsla(0, 0%, 100%, 0.03);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.post-type {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 5px;
  background-color: #627bfc;
}

.post-type.margin-bottom.margin-medium {
  margin-top: 0rem;
  margin-right: 0rem;
  margin-left: 0rem;
  box-shadow: 1px 1px 20px 3px #3447aa;
}

.post-title {
  max-width: 65%;
}

.post-title.margin-bottom.margin-medium {
  margin-top: 0rem;
  margin-right: 0rem;
  margin-left: 0rem;
}

.flex-fix {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.radial-custom-1 {
  position: absolute;
  left: -120%;
  top: -164%;
  right: auto;
  bottom: auto;
  z-index: -1;
  width: 200rem;
  height: 200rem;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #4bffb6, transparent 48%);
  opacity: 0.17;
}

.section-2 {
  background-color: rgba(5, 5, 5, 0);
}

.radial-custom-2 {
  position: absolute;
  left: -13%;
  top: -219%;
  right: auto;
  bottom: auto;
  z-index: -1;
  width: 200rem;
  height: 200rem;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #627bfc, transparent 48%);
  opacity: 0.17;
}

.background-dots {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-image: url('../images/Mask-group.svg');
  background-position: 100% 100%;
  background-size: cover;
}

.section-blog-summary {
  position: relative;
  z-index: 4;
  min-height: 30rem;
  background-color: #000;
}

.back-to-home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #627bfc;
  box-shadow: 1px 1px 20px 13px rgba(34, 54, 156, 0.37);
  text-decoration: none;
}

.display-inline {
  display: inline-block;
}

.display-inline.margin-bottom.margin-medium {
  margin-top: 0rem;
  margin-right: 0rem;
  margin-left: 0rem;
}

.display-inline.margin-bottom.margin-xlarge {
  margin-top: 0rem;
  margin-right: 0rem;
  margin-left: 0rem;
}

.mail-link {
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .padding-xlarge {
    padding: 3rem;
  }

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

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

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

  .margin-xxlarge {
    margin: 4rem;
  }

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

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

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

  .padding-huge {
    padding: 5rem;
  }

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

  .margin-large {
    margin: 2.5rem;
  }

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

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

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

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

  .margin-huge {
    margin: 5rem;
  }

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

  .padding-xxhuge {
    padding: 8rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

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

  .form_input.large {
    min-width: 60vw;
  }

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

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

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

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-radius: 10px;
  }

  .padding-section-large.content {
    padding-top: 10rem;
  }

  .padding-section-large.hero-content {
    padding-top: 10rem;
  }

  .hide-tablet {
    display: none;
  }

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

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

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

  .margin-medium {
    margin: 1.5rem;
  }

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

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

  .padding-large {
    padding: 2.5rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .container {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: #1a1a1a;
  }

  .nav-menu-two {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    padding: 20px;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    background-color: rgba(24, 24, 24, 0.9);
    box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .nav-link {
    padding-right: 5px;
    padding-left: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: rgba(75, 255, 182, 0.1);
  }

  .section_hero {
    padding-right: 35px;
    padding-left: 35px;
  }

  .hero-animation {
    display: none;
  }

  .usp-section {
    padding-right: 35px;
    padding-left: 35px;
  }

  .usp-wrapper.is-relative {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .section-intro {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-roadmap {
    padding-right: 35px;
    padding-left: 35px;
  }

  .timeline_item {
    -ms-grid-columns: minmax(200px, 1fr) 130px 1fr;
    grid-template-columns: minmax(200px, 1fr) 130px 1fr;
  }

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

  .button-2 {
    font-size: 0.9rem;
    line-height: 0.9rem;
  }

  .section-news {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .cta-section {
    padding-right: 20px;
    padding-left: 35px;
  }

  .footer-subscribe {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .footer-form-two {
    padding: 40px;
  }

  .footer-form-title {
    margin-right: 15px;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

  .footer-wrapper-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-social-block-three {
    margin-top: 40px;
  }

  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-row-gap: 16px;
  }

  .footer-legal-link {
    margin-right: 32px;
    margin-left: 0px;
  }

  .content-section {
    padding-right: 30px;
    padding-left: 30px;
  }

  .mobile-hero-image {
    position: absolute;
    left: auto;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: block;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), color-stop(47%, #000)), url('../images/ThingsIX-Dotted-Warp.svg');
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), #000 47%), url('../images/ThingsIX-Dotted-Warp.svg');
    background-position: 0px 0px, 100% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
  }

  .hamburger-icon {
    width: 2rem;
    height: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .text-size-large {
    font-size: 1.25rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

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

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

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

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

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

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

  .margin-xxlarge {
    margin: 3rem;
  }

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

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

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

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

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

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

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

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

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

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

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

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

  .margin-huge {
    margin: 3.5rem;
  }

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

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

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

  .fs-styleguide_version {
    font-size: 0.875rem;
  }

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

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

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

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

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

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

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

  .margin-medium {
    margin: 1.25rem;
  }

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

  .padding-large {
    padding: 1.5rem;
  }

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

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

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

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0px;
  }

  .nav-menu-two {
    padding-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 20px;
  }

  .nav-link {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.05);
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    height: 1px;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    display: inline-block;
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .max-width-hero {
    max-width: 75%;
  }

  .timeline_progress {
    left: 6px;
  }

  .timeline_item {
    width: 100%;
    -ms-grid-columns: 64px 1fr;
    grid-template-columns: 64px 1fr;
  }

  .timeline_left {
    text-align: left;
  }

  .timeline_date-text {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .margin-bottom-xlarge {
    margin-bottom: 48px;
  }

  .timeline_centre {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .cta-section {
    padding-right: 35px;
  }

  .footer-subscribe {
    padding-right: 35px;
    padding-left: 35px;
  }

  .footer-form-container-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-form-title {
    margin-right: 0px;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-block-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-link-three {
    margin-bottom: 10px;
  }

  .footer-social-block-three {
    margin-top: 10px;
  }

  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-legal-block {
    margin-top: 15px;
    margin-left: -24px;
  }

  .footer-legal-link {
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width: 479px) {
  .padding-horizontal {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

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

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

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

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

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

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

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

  .form_checkbox-icon.w--redirected-checked {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

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

  .button {
    display: block;
  }

  .form_input.large {
    min-width: 50vw;
  }

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

  .heading-style-h2.text-align-center.max-width-large {
    font-size: 1.6rem;
    line-height: 1.6;
  }

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

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

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

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

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

  .form_checkbox-label.text-style-muted {
    font-size: 0.8rem;
    line-height: 1.4rem;
  }

  .form_checkbox-label.text-style-muted.form-label {
    font-size: 0.7rem;
  }

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

  .container {
    max-width: none;
  }

  .nav-menu-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .nav-menu-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-color: rgba(22, 22, 22, 0.95);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .nav-link {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-dropdown {
    margin-right: 0px;
    margin-left: 0px;
  }

  .nav-dropdown-toggle {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 5px;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    width: 100%;
    border-style: none;
  }

  .mobile-margin-top-10.left-margin-12 {
    margin-left: 0px;
  }

  .button-primary.footer-form-button {
    position: relative;
    right: 0px;
  }

  .menu-button {
    padding: 8px;
  }

  .menu-button.w--open {
    padding: 8px;
    border-radius: 10px;
    background-color: rgba(75, 255, 182, 0.1);
  }

  .subheading-hero.text-style-muted {
    font-size: 1.2rem;
    line-height: 165%;
  }

  .max-width-hero {
    max-width: 100%;
  }

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

  .usp-wrapper.is-relative {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .logo-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .timeline_progress {
    left: 13px;
  }

  .timeline_item {
    -ms-grid-columns: 48px 1fr;
    grid-template-columns: 48px 1fr;
  }

  .timeline_item.highlighted {
    z-index: 10;
    display: block;
    grid-auto-flow: row;
    -ms-grid-columns: 48px 1fr;
    grid-template-columns: 48px 1fr;
  }

  .margin-bottom-medium {
    margin-bottom: 24px;
  }

  .timeline_date-text {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .timeline_circle.highlight-section {
    display: none;
  }

  .button-2 {
    width: 100%;
    padding: 16px;
    border-width: 2px;
    background-image: none;
    font-size: 0.8rem;
    line-height: 0.8rem;
    text-align: center;
  }

  .button-2:hover {
    padding-right: 16px;
    border-style: solid;
    border-color: #000;
    background-color: #000;
    background-image: none;
  }

  .timeline_centre.planned-fix {
    position: absolute;
    left: 5%;
    top: 3%;
    right: auto;
    bottom: auto;
    padding-top: 0px;
  }

  .timeline-block {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

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

  .news-article {
    padding: 32px;
  }

  .container-2 {
    max-width: none;
  }

  .footer-form-two {
    padding: 20px;
  }

  .footer-form-block-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-form-input {
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .footer-social-block-three {
    margin-top: 35px;
  }

  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-legal-block {
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-row-gap: 16px;
  }

  .content-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hamburger-icon {
    width: 2rem;
    height: 2rem;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .footer-logo-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-row-gap: 1rem;
  }

  .footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

#w-node-_8b40f794-d88e-340d-5590-b5e1f2f3b304-f8b78121 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-daf67a54-5399-cc85-730c-f1283d46ff8a-f8b78121 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-d1ace7d2-1a93-293b-71ce-a76351ef71bf-f8b78121 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_313db549-96c1-ae9f-54f0-062370320cd3-f8b78121 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_881fe9f6-f627-65d3-8c46-42ec5f80db5e-f8b78121 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_84050946-7dd2-266d-b8f7-23604deb3e02-f8b78121 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1a9d-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1aa1-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1aa6-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1aaa-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1aaf-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1ab3-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1ab8-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1abc-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1ac1-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1ac5-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1aca-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_2c95b65d-69a8-2072-a9a8-5c1ac5fb1ace-c5fb1a96 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b291f-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2924-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2929-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b292e-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2934-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b293a-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2940-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2a4d-acb78123 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2a66-acb78123 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2a69-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2a6b-acb78123 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2a6e-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2ac0-acb78123 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2aca-acb78123 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2acb-acb78123 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b39-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b3e-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b43-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b48-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b4d-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b52-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b5c-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b61-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b66-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b6b-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b70-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b75-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b7a-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b7f-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b84-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b89-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b8e-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b92-acb78123 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b93-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b95-acb78123 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b98-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2b9d-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2ba2-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bb7-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bbc-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bc1-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bc6-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bcb-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bd0-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bda-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bdf-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2be4-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2be9-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bee-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bf3-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bf8-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2bfd-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2c02-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2c07-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2c0c-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2c10-acb78123 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2c11-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2c16-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2c1b-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2c20-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2ca6-acb78123 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_6411db7c-e30f-69b1-2237-0b994e0b2d02-acb78123 {
  -ms-grid-column-align: start;
  justify-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-_84050946-7dd2-266d-b8f7-23604deb3e10-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_84050946-7dd2-266d-b8f7-23604deb3e15-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_7c92f21a-e222-8870-286c-ddd8496fd658-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_7c92f21a-e222-8870-286c-ddd8496fd65e-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_84050946-7dd2-266d-b8f7-23604deb3e02-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_84050946-7dd2-266d-b8f7-23604deb3e07-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_84050946-7dd2-266d-b8f7-23604deb3e09-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
  }

  #w-node-_87aa7bc4-18d6-92e9-af16-df1e6d322bbb-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_87aa7bc4-18d6-92e9-af16-df1e6d322bc1-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_84050946-7dd2-266d-b8f7-23604deb3e1c-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-cf2fd8cc-776c-557f-cfc5-b7671ace6384-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-cf2fd8cc-776c-557f-cfc5-b7671ace638a-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_618a2c75-4b9e-8d4b-a9df-ea8b7a3ed0f2-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-_618a2c75-4b9e-8d4b-a9df-ea8b7a3ed0f8-f8b78121 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }
}

