:root {
  --link-color--link-primary: var(--base-color-brand--blue);
  --base-color-neutral--black: #000;
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --text-color--text-secondary: var(--base-color-neutral--neutral-darker);
  --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);
  --background-color--background-alternate: var(--base-color-neutral--white);
  --background-color--background-secondary: var(--base-color-brand--blue);
  --background-color--background-primary: var(--base-color-brand--pink-dark);
  --background-color--background-tertiary: var(--base-color-brand--pink);
  --background-color--background-error: var(--base-color-system--error-red);
  --text-color--text-error: var(--base-color-system--error-red-dark);
  --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);
  --border-color--border-secondary: var(--base-color-brand--blue);
  --link-color--link-secondary: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --base-color-brand--blue-light: #d9e5ff;
  --base-color-brand--blue: #2d62ff;
  --base-color-brand--blue-dark: #080331;
  --base-color-brand--pink-light: #ffaefe;
  --base-color-brand--pink: #dd23bb;
  --base-color-brand--pink-dark: #3c043b;
  --base-color-neutral--white: #fff;
  --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 {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.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 {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

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

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

body {
  color: #000;
  background-color: #151312;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

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

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

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

p {
  margin-bottom: 0;
}

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

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 {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  max-width: 20rem;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  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-top.padding-medium {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

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

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

.margin-bottom.margin-xxlarge {
  text-align: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

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

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

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

.margin-bottom.margin-xxsmall {
  text-align: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  text-align: left;
  text-align: left;
  text-align: left;
  text-align: left;
  text-align: left;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

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

.margin-bottom.margin-small {
  text-align: left;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.margin-bottom.margin-xxlarge, .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-vertical.padding-xxlarge {
  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-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-bottom.padding-xxlarge {
  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 {
  width: .875rem;
  height: .875rem;
  border-radius: .125rem;
  margin: 0 .5rem 0 0;
}

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

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

.fs-styleguide_background {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .1);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  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 {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.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-weight-semibold {
  font-weight: 600;
}

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

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

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

.background-color-primary {
  background-color: var(--base-color-neutral--black);
  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 {
  width: 100%;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  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: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

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

.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 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.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 {
  width: 100%;
  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;
  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 {
  width: 100%;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_empty-box {
  z-index: -1;
  height: 3rem;
  min-width: 3rem;
  background-color: rgba(45, 64, 234, .05);
  border: 1px dashed #2d40ea;
  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 {
  width: 100%;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  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: 32rem;
}

.fs-styleguide_item-wrapper {
  width: 100%;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  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-alternate {
  background-color: var(--background-color--background-alternate);
}

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

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

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

.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 {
  width: .875rem;
  height: .875rem;
  border-width: .25rem;
}

.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 {
  min-height: 3rem;
  border: 1px solid var(--border-color--border-primary);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

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

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

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

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

.fs-styleguide_3-col {
  width: 100%;
  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;
  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 {
  font-size: 3rem;
  font-weight: 700;
  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;
  font-weight: 700;
  line-height: 1.5;
}

.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-primary);
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.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-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-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-brand {
  background-color: var(--background-color--background-secondary);
}

.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: 1rem;
  grid-row-gap: 1rem;
  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: 6rem;
}

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

.fs-styleguide_spacer-box {
  width: 100%;
  background-color: rgba(45, 64, 234, .1);
  border: 1px dashed #2d40ea;
  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: .125rem;
}

.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 {
  width: 100%;
  background-color: #000;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav_container {
  width: 100%;
  max-width: 80rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  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 / 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_hero-label {
  color: var(--text-color--text-primary);
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.hero_content {
  max-width: 70rem;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: start;
  display: grid;
  position: relative;
}

.hero_image {
  border-radius: 1rem;
  margin-top: 0;
}

.hero_heading {
  font-size: 4rem;
}

.section_hero {
  min-height: 100svh;
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 0 100%, rgba(45, 98, 255, .3), rgba(0, 0, 0, 0) 50%), radial-gradient(circle at 100% 60%, rgba(45, 98, 255, .3), rgba(17, 17, 17, 0) 20%), radial-gradient(circle at 100% 100%, rgba(214, 0, 196, .2), rgba(0, 0, 0, 0) 45%);
  flex-direction: column;
  justify-content: center;
  display: flex;
  position: relative;
}

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

.nav_fixed {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

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

.menu-icon4_line-bottom {
  width: 24px;
  height: 2px;
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
}

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

.navbar4_dropdown-list.w--open {
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  position: static;
}

.navbar4_menu-dropdown {
  margin-left: 0;
  font-size: 24px;
}

.menu-icon_line-middle-base {
  width: 24px;
  height: 2px;
  background-color: #000;
  position: absolute;
}

.navbar4_menu-button {
  padding: 0;
}

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

.navbar4_component {
  width: 100%;
  min-height: 4.5rem;
  border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

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

.dropdown-chevron.is-navbar4 {
  width: 1.5rem;
  height: 1.5rem;
}

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

.navbar4_dropdown-toggle {
  grid-column-gap: 1rem;
  align-items: center;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem 0;
  display: flex;
}

.navbar4_dropdown-link {
  margin-top: .5rem;
  margin-bottom: .5rem;
  margin-left: 1.5rem;
  padding: .5rem 0;
  font-size: 24px;
}

.navbar4_dropdown-link.w--current {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
}

.navbar4_link {
  margin-top: .5rem;
  margin-bottom: .5rem;
  margin-left: 0;
  padding: .5rem 0;
  font-size: 24px;
  display: inline-block;
  position: static;
}

.navbar4_link.w--current {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
}

.menu-icon4_wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar4_container {
  width: 100%;
  height: 100%;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.navbar4_menu {
  height: 100dvh;
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  display: flex;
  position: absolute;
  overflow: auto;
}

.menu-icon4_line-top {
  width: 24px;
  height: 2px;
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  padding-bottom: 0;
  padding-right: 0;
}

.navbar4_menu-wrapper {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -4.5rem;
  display: flex;
}

.menu-icon4 {
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.menu-icon4_line-middle {
  width: 24px;
  height: 2px;
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  justify-content: center;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 6px;
  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-navbar4-button {
  z-index: 1;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

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

.button-2.is-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-2.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.menu-icon_line-middle-top {
  z-index: 2;
  width: 24px;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.pogressbar {
  z-index: 9999;
  width: 100%;
  height: 5px;
  perspective-origin: 50%;
  transform-origin: 0%;
  object-fit: fill;
  background-color: rgba(213, 36, 36, .64);
  background-image: linear-gradient(120deg, #574d4d 19%, #b89f9f 48%, gray);
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.menu-icon4_line-top-2 {
  width: 24px;
  height: 2px;
  background-image: linear-gradient(#fff, #fff);
  padding-bottom: 0;
  padding-right: 0;
}

.navbar4_link-2 {
  color: #fff;
  text-align: left;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin: .5rem 0 .5rem 0;
  padding: .5rem 0;
  font-size: 24px;
  display: flex;
  position: static;
}

.menu-icon4_line-middle-2 {
  width: 24px;
  height: 2px;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.navbar4_wrapper-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 16px;
  flex-flow: column-reverse;
  flex: 1;
  order: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.navbar {
  mix-blend-mode: normal;
}

.navbar4_menu-button-2 {
  padding: 0;
}

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

.heading-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-left: 0;
  font-size: 20px;
  display: flex;
}

.heading-2._1 {
  justify-content: center;
  align-items: center;
  margin-right: 0;
  font-size: 40px;
}

.menu-icon4-2 {
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
  position: relative;
}

.menu-icon4_line-bottom-2 {
  width: 24px;
  height: 2px;
  background-image: linear-gradient(#fff, #fff);
}

.navbar4_menu-2 {
  height: 100dvh;
  color: #fff;
  border: 1px solid #000;
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  display: flex;
  position: absolute;
  overflow: auto;
}

.menu-icon_line-middle-base-2 {
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
}

.navbar4_logo-2 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.heading {
  order: 1;
  justify-content: flex-start;
  align-items: center;
  margin-right: 0;
  display: block;
}

.div-block-11 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #080808;
  text-align: left;
  background-color: rgba(0, 0, 0, .81);
  border-radius: 18px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-left: 10em;
  margin-right: 10em;
  padding: 0 20px 0;
  display: grid;
}

.navbar4_logo-link-2 {
  padding-left: 0;
}

.menu-icon4_wrapper-2 {
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar4_menu-wrapper-2 {
  height: 100%;
  color: #fff;
  flex-direction: column;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: stretch;
  margin-top: 0;
  display: flex;
}

.navbar-desktop {
  width: 100%;
  min-height: 4.5rem;
  color: #000;
  background-image: url('../images/Eloxierter-Metallhintergrund-erweitert-1919.png');
  background-position: 0 0;
  background-size: auto;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  align-items: center;
  margin-bottom: 0;
  padding-left: 5%;
  padding-right: 5%;
  display: block;
}

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

.footer3_social-list {
  grid-column-gap: .75rem;
  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;
  align-items: start;
  justify-items: start;
  padding-bottom: 15px;
  display: grid;
}

.footer-section {
  background-image: linear-gradient(#000, #000);
}

.footer7_link {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.heading-8 {
  color: #fff;
}

.text-block-5 {
  color: #fff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 39%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer3_details-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: auto;
  margin-top: 0;
  margin-bottom: 23px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  display: block;
  position: relative;
}

.footer7_logo-link {
  margin-bottom: 2rem;
  padding-left: 0;
}

.footer3_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.padding-global-4 {
  padding-left: 5%;
  padding-right: 5%;
}

.line-divider {
  width: 100%;
  height: 1px;
}

.div-block-10 {
  text-align: center;
}

.image-4 {
  margin-top: 20px;
  margin-left: 0;
  padding-left: 10px;
}

.text-size-small-2 {
  color: #fff;
  font-size: .875rem;
}

.text-size-small-2.text-weight-semibold {
  color: #fff;
}

.footer7_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  justify-items: start;
  display: grid;
}

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

.link-3 {
  color: #fff;
}

.footer7_top-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr .75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

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

.text-block-3 {
  color: #fff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
}

.header138_image2 {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.header138_image {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header138_image-wrapper2 {
  width: 20%;
  position: absolute;
  bottom: -15%;
  right: 5%;
}

.header138_image-group {
  flex-direction: column;
  flex: 1;
  display: flex;
  position: relative;
}

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

.header138_content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 5%;
  display: grid;
}

.header138_component {
  height: 50svh;
  min-height: 40svh;
  flex-direction: column;
  display: flex;
}

.padding-global-5 {
  padding-left: 5%;
  padding-right: 5%;
}

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

.header138_image-wrapper {
  flex: 1;
  position: relative;
}

.div-block-30._2 {
  display: none;
}

.image-10 {
  width: 100%;
}

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

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

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

.layout192_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;
  justify-items: stretch;
  display: grid;
}

.padding-global-6 {
  padding-left: 5%;
  padding-right: 5%;
}

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

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

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

.button-15 {
  color: #000;
  background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
  margin-top: 1em;
  margin-bottom: 0;
  padding: .75rem 40px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

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

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

.gallery14_arrow.hide-mobile-landscape {
  bottom: 4rem;
}

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

.gallery14_image-wrapper {
  width: 100%;
}

.gallery14_image-wrapper:focus {
  opacity: .5;
}

.gallery14_image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

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

.gallery14_mask {
  overflow: visible;
}

.gallery14_arrow-icon {
  width: 1rem;
  height: 1rem;
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gallery14_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
}

.section_gallery14 {
  overflow: hidden;
}

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

.menu-icon4_line-top-3 {
  width: 24px;
  height: 2px;
  background-image: linear-gradient(#fff, #fff);
  padding-bottom: 0;
  padding-right: 0;
}

.menu-icon4_line-middle-3 {
  width: 24px;
  height: 2px;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.navbar4_wrapper-3 {
  grid-column-gap: 1rem;
  grid-row-gap: 16px;
  flex-flow: column-reverse;
  flex: 1;
  order: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.navbar4_menu-button-3 {
  padding: 0;
}

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

.heading-10 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-left: 0;
  font-size: 20px;
  display: flex;
}

.heading-10._1 {
  justify-content: center;
  align-items: center;
  margin-right: 0;
  font-size: 40px;
}

.heading-10._9 {
  text-align: center;
  margin-left: 16em;
  margin-right: 4.1em;
  font-size: 20px;
}

.heading-10._9._2 {
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  margin-left: 0;
  margin-right: 0;
  font-size: 20px;
}

.menu-icon4-3 {
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
  position: relative;
}

.menu-icon4_line-bottom-3 {
  width: 24px;
  height: 2px;
  background-image: linear-gradient(#fff, #fff);
}

.navbar4_menu-3 {
  height: 100dvh;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0);
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  display: flex;
  position: absolute;
  overflow: auto;
}

.navbar4_logo-3 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.heading-11 {
  order: 1;
  justify-content: flex-start;
  align-items: center;
  margin-right: 0;
  display: block;
}

.div-block-35 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #080808;
  text-align: left;
  background-color: rgba(0, 0, 0, .81);
  border-radius: 18px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-left: 10em;
  margin-right: 10em;
  padding: 0 20px 0;
  display: grid;
}

.navbar4_menu-wrapper-3 {
  height: 100%;
  flex-direction: column;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: stretch;
  margin-top: 0;
  display: flex;
}

.header121_image2 {
  width: 400px;
  height: 600px;
  aspect-ratio: 3 / 2;
  text-align: left;
  -webkit-text-fill-color: inherit;
  object-fit: cover;
  background-clip: border-box;
  margin-left: 2.6em;
  display: inline-block;
}

.padding-global-15 {
  padding-left: 5%;
  padding-right: 5%;
}

.bold-text-9 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 0;
  padding-bottom: 10px;
  font-size: 2.5rem;
  display: flex;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
}

.bold-text-9._1 {
  margin-left: 0;
  margin-right: 0%;
}

.bold-text-10 {
  color: #000;
}

.header121_image-wrapper1 {
  width: 100%;
}

.header121_image-group {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: .65fr 1fr .65fr;
  grid-auto-columns: 1fr;
  align-items: end;
  margin-top: 20px;
  display: grid;
}

.button-group-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 0;
  display: flex;
}

.button-group-4._1 {
  margin-left: 0;
}

.header121_content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: 0%;
  display: grid;
}

.header121_image3 {
  width: 500px;
  height: 400px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.button-12 {
  color: #fff;
  background-image: linear-gradient(56deg, #574d4d, gray);
  border-radius: 0;
  padding-top: .75rem;
  padding-bottom: .75rem;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.header121_image-wrapper2 {
  width: 100%;
  margin-top: 15%;
  margin-bottom: 15%;
  position: static;
}

.header121_image1 {
  width: 300px;
  height: 400px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.header121_image-wrapper3 {
  width: 100%;
}

.button-13 {
  color: #000;
  background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
  margin-top: 0;
  margin-bottom: 0;
  padding: .75rem 40px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.bold-text-11 {
  color: #000;
}

.button-group-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 0;
  display: flex;
}

.button-group-5._1 {
  margin-left: 0;
}

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

.button-16 {
  color: #fff;
  background-image: linear-gradient(56deg, #574d4d, gray);
  border-radius: 0;
  padding-top: .75rem;
  padding-bottom: .75rem;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.bold-text-12 {
  color: #000;
}

.div-block-36 {
  text-align: center;
}

.button-group-6 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 0;
  display: flex;
}

.button-group-6._1 {
  margin-left: 0;
}

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

.button-17 {
  color: #fff;
  background-image: linear-gradient(56deg, #574d4d, gray);
  border-radius: 0;
  padding-top: .75rem;
  padding-bottom: .75rem;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.bold-text-13 {
  color: #000;
}

.button-18, .button-19 {
  color: #fff;
  background-image: linear-gradient(56deg, #574d4d, gray);
  border-radius: 0;
  padding-top: .75rem;
  padding-bottom: .75rem;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.bold-text-14 {
  color: #000;
}

.text-size-medium-5 {
  text-align: center;
  font-size: 1.125rem;
}

.product-header7_arrow-icon-copy {
  width: 1rem;
  height: 1rem;
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header102_slide-image-wrapper {
  object-fit: none;
  flex: 1;
  position: relative;
}

.header102_slider {
  width: 100%;
  max-height: 60rem;
  min-height: 100vh;
  background-color: var(--\<unknown\|relume-variable-color-neutral-3\>);
}

.header102_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  top: auto;
  bottom: 2.625rem;
  left: 2rem;
  right: auto;
}

.header102_arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 2rem;
  left: auto;
  right: 2rem;
}

.header102_arrow.is-left {
  right: 6rem;
}

.header102_slide-image {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  position: absolute;
}

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

.header102_slide-content {
  background-color: var(--\<unknown\|relume-variable-color-neutral-3\>);
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 2rem 8rem;
  position: relative;
}

.header102_slide-wrapper {
  height: 100%;
  flex-direction: column;
  grid-template-rows: auto max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

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

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

.header102_component {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 50% 50%;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.header102_slide-content-wrapper {
  width: 100%;
  max-width: 48rem;
}

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

.button-3 {
  color: #000;
  background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
  margin-top: 0;
  margin-bottom: 0;
  padding: .75rem 40px;
  font-weight: 700;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.button-4 {
  color: #000;
  background-image: linear-gradient(56deg, #574d4d, gray);
  border-radius: 0;
  padding-top: .75rem;
  padding-bottom: .75rem;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.bold-text-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #574d4d 33%, #b89f9f 78%, #f9f6f6 100%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
}

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

.text-size-medium-6 {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  display: block;
}

.text-size-medium-6.text-weight-bold {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
}

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

.content27_component {
  grid-column-gap: 4rem;
  grid-row-gap: 2rem;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  grid-template-rows: auto;
  grid-template-columns: 20rem 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: grid;
}

.text-1 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.5rem;
}

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

.bold-text-1 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 0;
  padding-bottom: 0;
  font-size: 2.5rem;
  display: flex;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
}

.padding-global-11 {
  padding-left: 5%;
  padding-right: 5%;
}

.text-block-6 {
  color: #fff;
}

.div-block-16 {
  text-align: center;
}

.bold-text-18 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 0;
  padding-bottom: 1rem;
  font-size: 2.5rem;
  display: flex;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
}

.image-8 {
  text-align: left;
  background-color: #fff;
  margin-bottom: 10px;
  padding: 10px;
}

.div-block-17 {
  margin-top: 1em;
  margin-bottom: 6em;
}

.heading-13 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-left: 0;
  font-size: 20px;
  display: flex;
}

.heading-13._5 {
  font-size: 20px;
}

.text-rich-text-3 {
  color: #fff;
}

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

.padding-section-large-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: grid;
}

.content1_image-wrapper {
  width: 100%;
  height: 100%;
  flex: 1;
}

.button-20 {
  color: #000;
  background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
  margin-top: 1em;
  margin-bottom: 0;
  padding: .75rem 40px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

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

.padding-global-10 {
  padding-left: 5%;
  padding-right: 5%;
}

.div-block-37 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.italic-text-4, .italic-text-5 {
  text-align: center;
}

.content1_image {
  width: 100%;
  margin-top: 69px;
  display: inline-block;
}

.bold-text-20 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 0;
  padding-bottom: 0;
  font-size: 2.5rem;
  display: flex;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
}

.padding-section-large-8 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: grid;
}

.content1_image-wrapper-2 {
  width: 80%;
  height: 100%;
  flex: 1;
}

.button-21 {
  color: #000;
  background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
  margin-top: 1em;
  margin-bottom: 0;
  padding: .75rem 40px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.bold-text-21 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
  padding-bottom: 0;
  font-size: 2.5rem;
  display: flex;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
}

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

.padding-global-16 {
  padding-left: 5%;
  padding-right: 5%;
}

.div-block-38 {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.content1_image-2 {
  width: 80%;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
  display: inline-block;
}

.padding-section-large-9 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: grid;
}

.button-22 {
  color: #000;
  background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
  margin-top: 1em;
  margin-bottom: 0;
  padding: .75rem 40px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.bold-text-23 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
  padding-bottom: 0;
  font-size: 2.5rem;
  display: flex;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
}

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

.padding-global-17 {
  padding-left: 5%;
  padding-right: 5%;
}

.div-block-39 {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.padding-section-large-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: grid;
}

.button-23 {
  color: #000;
  background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
  margin-top: 1em;
  margin-bottom: 0;
  padding: .75rem 40px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.bold-text-25 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
  padding-bottom: 0;
  font-size: 2.5rem;
  display: flex;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
}

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

.padding-global-18 {
  padding-left: 5%;
  padding-right: 5%;
}

.div-block-40 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.italic-text-8, .italic-text-9, .heading-14, .bold-text-27, .heading-15 {
  text-align: center;
}

.body, .body-2, .body-3 {
  background-color: #151312;
}

.bold-text-28 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 0;
  padding-bottom: 10px;
  font-size: 2.5rem;
  display: flex;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
}

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

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

.padding-global-19 {
  padding-left: 5%;
  padding-right: 5%;
}

.text-weight-semibold {
  color: #151312;
  font-weight: 600;
}

.form_field-label {
  color: #fff;
  margin-bottom: .5rem;
  font-weight: 400;
}

.error-message {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

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

.heading-16 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-left: 0;
  font-size: 20px;
  display: flex;
}

.error-text {
  color: #e23939;
}

.contact9_form-block {
  color: #000;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.success-message {
  padding: 1.5rem;
}

.button-24 {
  color: #000;
  background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
  margin-top: 0;
  margin-bottom: 0;
  padding: .75rem 40px;
  font-weight: 700;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

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

.form_input-2 {
  height: auto;
  min-height: 2.75rem;
  background-image: linear-gradient(#fff, #fff);
  border-style: solid;
  border-width: 1px;
  border-radius: 8px;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

.form_input-2::-ms-input-placeholder {
  color: rgba(0, 0, 0, .6);
}

.form_input-2::placeholder {
  color: rgba(0, 0, 0, .6);
}

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

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

.contact9_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.padding-global-20 {
  padding-left: 5%;
  padding-right: 5%;
}

.bold-text-29 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 0;
  padding-bottom: 10px;
  font-size: 2.5rem;
  display: flex;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
}

.text-weight-semibold {
  color: #151312;
  font-weight: 600;
}

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

.contact30_image-wrapper {
  width: 100%;
  height: 100%;
}

.heading-17 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-left: 0;
  font-size: 20px;
  display: flex;
}

.contact30_tab-pane {
  height: 100%;
}

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

.text-size-medium-7 {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.contact30_tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.contact30_tabs-link {
  background-color: rgba(0, 0, 0, 0);
  border-left: 2px solid rgba(0, 0, 0, 0);
  padding: 0 0 0 2rem;
  display: block;
}

.contact30_tabs-link.w--current {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  border-left-style: none;
  border-left-color: #000;
}

.menu-icon4_line-top-4 {
  width: 24px;
  height: 2px;
  background-image: linear-gradient(#fff, #fff);
  padding-bottom: 0;
  padding-right: 0;
}

.menu-icon4_line-middle-4 {
  width: 24px;
  height: 2px;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.navbar4_wrapper-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 16px;
  flex-flow: column-reverse;
  flex: 1;
  order: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.heading-18 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-left: 0;
  font-size: 20px;
  display: flex;
}

.heading-18._1 {
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-right: 0;
  font-size: 40px;
}

.menu-icon4-4 {
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
  position: relative;
}

.menu-icon4_line-bottom-4 {
  width: 24px;
  height: 2px;
  background-image: linear-gradient(#fff, #fff);
}

.navbar4_menu-4 {
  height: 100dvh;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  background-color: rgba(255, 12, 12, .07);
  border: 1px solid rgba(255, 255, 255, 0);
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  display: flex;
  position: absolute;
  overflow: auto;
}

.navbar4_logo-4 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.heading-19 {
  order: 1;
  justify-content: flex-start;
  align-items: center;
  margin-right: 0;
  display: block;
}

.div-block-42 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #080808;
  text-align: left;
  background-color: rgba(0, 0, 0, .81);
  border-radius: 18px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-left: 10em;
  margin-right: 10em;
  padding: 0 20px 0;
  display: grid;
}

.navbar4_menu-wrapper-4 {
  height: 100%;
  flex-direction: column;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: stretch;
  margin-top: 0;
  display: flex;
}

.gallery15_image-wrapper {
  width: 100%;
}

.gallery15_image-wrapper:focus {
  opacity: .5;
}

.gallery15_image {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery15_slide {
  padding-left: 7rem;
  padding-right: 7rem;
}

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

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

.gallery15_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
}

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

.padding-global-21 {
  padding-left: 5%;
  padding-right: 5%;
}

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

.gallery15_arrow-icon {
  width: 1rem;
  height: 1rem;
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.gallery15_mask {
  overflow: hidden;
}

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

.gallery15_arrow.hide-mobile-landscape {
  bottom: 4rem;
}

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

.button-25 {
  color: #000;
  background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
  margin-top: 1em;
  margin-bottom: 0;
  padding: .75rem 40px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
}

.menu-icon4-5 {
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
  position: relative;
}

.heading-21 {
  order: 1;
  justify-content: flex-start;
  align-items: center;
  margin-right: 0;
  display: block;
}

.navbar4_menu-wrapper-5 {
  height: 100%;
  flex-direction: column;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: stretch;
  margin-top: 0;
  display: flex;
}

.navbar4_menu-5 {
  height: 100dvh;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  background-color: rgba(255, 12, 12, .07);
  border: 1px solid rgba(255, 255, 255, 0);
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  display: flex;
  position: absolute;
  overflow: auto;
}

.menu-icon4_line-top-5 {
  width: 24px;
  height: 2px;
  background-image: linear-gradient(#fff, #fff);
  padding-bottom: 0;
  padding-right: 0;
}

.heading-22 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-left: 0;
  font-size: 20px;
  display: flex;
}

.heading-22._1 {
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-right: 0;
  font-size: 40px;
}

.navbar4_logo-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.menu-icon4_line-middle-5 {
  width: 24px;
  height: 2px;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.div-block-44 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #080808;
  text-align: left;
  background-color: rgba(0, 0, 0, .81);
  border-radius: 18px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-left: 10em;
  margin-right: 10em;
  padding: 0 20px 0;
  display: grid;
}

.navbar4_wrapper-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 16px;
  flex-flow: column-reverse;
  flex: 1;
  order: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.menu-icon4_line-bottom-5 {
  width: 24px;
  height: 2px;
  background-image: linear-gradient(#fff, #fff);
}

@media screen and (min-width: 1280px) {
  .heading-2 {
    text-align: center;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-2._1 {
    margin-right: 0;
    font-size: 40px;
  }

  .navbar4_logo-link-2 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar4_menu-wrapper-2 {
    margin-top: 0;
  }

  .navbar-desktop {
    display: flex;
  }

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

  .text-block-5 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 39%, #860404);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .div-block-9 {
    text-align: center;
    margin-bottom: 0;
  }

  .text-block-3 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .button-15 {
    color: #000;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border-radius: 0;
    margin-top: 1em;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .heading-10 {
    text-align: center;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-10._1 {
    margin-right: 0;
    font-size: 40px;
  }

  .navbar4_menu-wrapper-3 {
    margin-top: 0;
  }

  .bold-text-9 {
    text-align: center;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    margin-left: 0;
  }

  .button-13 {
    color: #000;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border-radius: 0;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .button-3 {
    color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border-radius: 0;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bold-text-17 {
    color: #000;
  }

  .bold-text-1 {
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    margin-left: 0;
  }

  .text-block-6 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .bold-text-18 {
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    margin-left: 0;
  }

  .heading-13 {
    text-align: center;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .button-20 {
    color: #000;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border-radius: 0;
    margin-top: 1em;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .bold-text-20 {
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    margin-left: 0;
  }

  .content1_image-wrapper-2 {
    width: 80%;
  }

  .button-21 {
    color: #000;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border-radius: 0;
    margin-top: 1em;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bold-text-21 {
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    margin-top: 0;
    margin-left: 0;
  }

  .content1_image-2 {
    margin-top: 0;
    margin-left: 0;
    padding-left: 0;
  }

  .button-22 {
    color: #000;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border-radius: 0;
    margin-top: 1em;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bold-text-23 {
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    margin-top: 0;
    margin-left: 0;
  }

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

  .button-23 {
    color: #000;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border-radius: 0;
    margin-top: 1em;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bold-text-25 {
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    margin-top: 0;
    margin-left: 0;
  }

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

  .bold-text-28 {
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    margin-left: 0;
  }

  .heading-16 {
    text-align: center;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .button-24 {
    color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border-radius: 0;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bold-text-29 {
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    margin-left: 0;
  }

  .heading-17, .heading-18 {
    text-align: center;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-18._1 {
    margin-right: 0;
    font-size: 40px;
  }

  .navbar4_menu-wrapper-4 {
    margin-top: 0;
  }

  .button-25 {
    color: #000;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border-radius: 0;
    margin-top: 1em;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .navbar4_menu-wrapper-5 {
    margin-top: 0;
  }

  .heading-22 {
    text-align: center;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-22._1 {
    margin-right: 0;
    font-size: 40px;
  }
}

@media screen and (min-width: 1440px) {
  .heading-2 {
    min-width: 14px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  .heading-2._1 {
    margin-right: 0;
    font-size: 38px;
  }

  .navbar4_menu-wrapper-2 {
    margin-top: 0;
  }

  .navbar-desktop {
    display: flex;
  }

  .text-weight-semibold {
    color: #fff;
  }

  .button-15 {
    color: #000;
    background-color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border: 0 solid #000;
    border-radius: 0;
    margin-top: 1em;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .heading-10 {
    min-width: 14px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  .heading-10._1 {
    margin-right: 0;
    font-size: 38px;
  }

  .heading-10._9 {
    margin-left: 17em;
    margin-right: 0;
  }

  .heading-10._9._2 {
    margin-left: 0;
    margin-right: 0;
    font-size: 20px;
  }

  .navbar4_menu-wrapper-3 {
    margin-top: 0;
  }

  .bold-text-9 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }

  .bold-text-9._1, .button-group-4._1 {
    margin-left: 0;
  }

  .button-13 {
    color: #000;
    background-color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border: 0 solid #000;
    border-radius: 0;
    margin-top: 0;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .button-group-5._1, .button-group-6._1 {
    margin-left: 0;
  }

  .header102_slider {
    min-height: 60vh;
  }

  .button-3 {
    color: #000;
    background-color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border: 0 solid #000;
    border-radius: 0;
    margin-top: 0;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .bold-text-1, .bold-text-18 {
    justify-content: center;
    align-items: center;
  }

  .heading-13 {
    min-width: 14px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  .text-rich-text-3 {
    font-size: 20px;
  }

  .button-20 {
    color: #000;
    background-color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border: 0 solid #000;
    border-radius: 0;
    margin-top: 1em;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

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

  .content1_image {
    margin-top: 0;
  }

  .bold-text-20 {
    justify-content: center;
    align-items: center;
  }

  .button-21 {
    color: #000;
    background-color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border: 0 solid #000;
    border-radius: 0;
    margin-top: 1em;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .bold-text-21 {
    justify-content: center;
    align-items: center;
  }

  .content1_image-2 {
    width: 90%;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
  }

  .button-22 {
    color: #000;
    background-color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border: 0 solid #000;
    border-radius: 0;
    margin-top: 1em;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .bold-text-23 {
    justify-content: center;
    align-items: center;
  }

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

  .button-23 {
    color: #000;
    background-color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border: 0 solid #000;
    border-radius: 0;
    margin-top: 1em;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .bold-text-25 {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .italic-text-8, .heading-14 {
    text-align: center;
  }

  .bold-text-28 {
    justify-content: center;
    align-items: center;
  }

  .heading-16 {
    min-width: 14px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  .button-24 {
    color: #000;
    background-color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border: 0 solid #000;
    border-radius: 0;
    margin-top: 0;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .bold-text-29 {
    justify-content: center;
    align-items: center;
  }

  .heading-17, .heading-18 {
    min-width: 14px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  .heading-18._1 {
    margin-right: 0;
    font-size: 38px;
  }

  .navbar4_menu-wrapper-4 {
    margin-top: 0;
  }

  .button-25 {
    color: #000;
    background-color: #fff;
    background-image: linear-gradient(47deg, #860404, #ea1605 36%, #d86a06);
    border: 0 solid #000;
    border-radius: 0;
    margin-top: 1em;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .navbar4_menu-wrapper-5 {
    margin-top: 0;
  }

  .heading-22 {
    min-width: 14px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  .heading-22._1 {
    margin-right: 0;
    font-size: 38px;
  }
}

@media screen and (min-width: 1920px) {
  .margin-bottom.margin-xsmall {
    color: #333;
  }

  .margin-bottom.margin-small {
    text-align: center;
  }

  .margin-bottom.margin-xxlarge {
    color: #333;
  }

  .margin-bottom.margin-xxsmall, .margin-bottom.margin-small, .margin-bottom.margin-small, .margin-bottom.margin-small, .margin-bottom.margin-small, .margin-bottom.margin-small, .margin-bottom.margin-small {
    text-align: center;
  }

  .pogressbar {
    background-color: rgba(213, 36, 36, 0);
    background-image: linear-gradient(#574d4d 19%, #b89f9f 48%, gray);
  }

  .heading-2 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    -webkit-background-clip: text;
    background-clip: text;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-2._1 {
    margin-right: 0;
    font-size: 40px;
  }

  .menu-icon4-2 {
    margin-right: 0;
  }

  .navbar4_logo-2 {
    margin-left: 40px;
  }

  .heading {
    margin-right: 0;
  }

  .div-block-11 {
    margin-top: -35em;
    margin-left: 40em;
    margin-right: 40em;
  }

  .navbar4_menu-wrapper-2 {
    margin-top: 0;
  }

  .navbar-desktop {
    color: #000;
    background-size: cover;
    display: flex;
  }

  .text-size-small-2 {
    text-align: left;
  }

  .heading-10 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    -webkit-background-clip: text;
    background-clip: text;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-10._1 {
    margin-right: 0;
    font-size: 40px;
  }

  .menu-icon4-3 {
    margin-right: 0;
  }

  .navbar4_logo-3 {
    margin-left: 40px;
  }

  .heading-11 {
    margin-right: 0;
  }

  .div-block-35 {
    margin-top: -35em;
    margin-left: 40em;
    margin-right: 40em;
  }

  .navbar4_menu-wrapper-3 {
    margin-top: 0;
  }

  .padding-global-15 {
    border: 1px #000;
  }

  .bold-text-9 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }

  .button-12 {
    color: #000;
    background-color: rgba(0, 0, 0, .47);
  }

  .button-13 {
    margin-top: 0;
  }

  .button-16, .button-17, .button-18, .button-19 {
    color: #000;
    background-color: rgba(0, 0, 0, .47);
  }

  .button-3 {
    margin-top: 0;
  }

  .button-4 {
    background-color: rgba(0, 0, 0, .47);
  }

  .bold-text-2 {
    font-size: 16px;
  }

  .text-rich-text-2, .link-5 {
    color: #fff;
  }

  .heading-13 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    -webkit-background-clip: text;
    background-clip: text;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-13._19 {
    text-align: center;
  }

  .text-rich-text-3 {
    text-align: center;
    font-size: 20px;
  }

  .padding-section-large-7 {
    color: #fff;
  }

  .content1_image {
    width: 500px;
    margin-top: 51px;
  }

  .padding-section-large-8 {
    color: #fff;
  }

  .content1_image-wrapper-2 {
    width: 90%;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .bold-text-21 {
    align-self: auto;
    margin-top: 0;
  }

  .content1_image-2 {
    width: 70%;
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-section-large-9 {
    color: #fff;
  }

  .bold-text-23 {
    align-self: auto;
    margin-top: 0;
  }

  .padding-section-large-10 {
    color: #fff;
  }

  .bold-text-25 {
    align-self: auto;
    margin-top: 0;
  }

  .heading-16 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    -webkit-background-clip: text;
    background-clip: text;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .button-24 {
    margin-top: 0;
  }

  .padding-section-large-11 {
    color: #fff;
  }

  .text-weight-semibold, .max-width-large-3 {
    color: #333;
  }

  .heading-17 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    -webkit-background-clip: text;
    background-clip: text;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .padding-section-large-12 {
    color: #fff;
  }

  .heading-18 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    -webkit-background-clip: text;
    background-clip: text;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-18._1 {
    margin-right: 0;
    font-size: 40px;
  }

  .menu-icon4-4 {
    margin-right: 0;
  }

  .navbar4_logo-4 {
    margin-left: 40px;
  }

  .heading-19 {
    margin-right: 0;
  }

  .div-block-42 {
    margin-top: -35em;
    margin-left: 40em;
    margin-right: 40em;
  }

  .navbar4_menu-wrapper-4 {
    margin-top: 0;
  }

  .menu-icon4-5, .heading-21 {
    margin-right: 0;
  }

  .navbar4_menu-wrapper-5 {
    margin-top: 0;
  }

  .heading-22 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    -webkit-background-clip: text;
    background-clip: text;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-22._1 {
    margin-right: 0;
    font-size: 40px;
  }

  .navbar4_logo-5 {
    margin-left: 40px;
  }

  .div-block-44 {
    margin-top: -35em;
    margin-left: 40em;
    margin-right: 40em;
  }
}

@media screen and (max-width: 991px) {
  .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;
  }

  .section_hero {
    padding-top: 3rem;
  }

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

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

  .menu-icon4_line-bottom {
    width: 24px;
    height: 2px;
    background-color: #000;
    padding-bottom: 0;
    padding-right: 0;
  }

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

  .navbar4_dropdown-list.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .navbar4_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    display: block;
    position: relative;
  }

  .menu-icon_line-middle-base {
    width: 24px;
    height: 2px;
    background-color: #000;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .navbar4_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

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

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

  .dropdown-chevron.is-navbar4 {
    width: 1.25rem;
    height: 1.25rem;
  }

  .navbar4_dropdown-toggle {
    width: 100%;
    align-items: center;
    margin: 0;
    padding: .75rem 2rem .75rem 0;
    display: flex;
    position: relative;
  }

  .navbar4_dropdown-link {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 0;
    font-size: 20px;
  }

  .navbar4_link {
    margin-top: 0;
    margin-bottom: 0;
    padding: .75rem 0;
    font-size: 1.25rem;
    position: static;
  }

  .menu-icon4_wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .navbar4_container {
    grid-auto-columns: 1fr;
  }

  .navbar4_menu {
    z-index: 1;
    background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    display: block;
  }

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

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

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

  .menu-icon_line-middle-top {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .pogressbar {
    background-image: linear-gradient(120deg, #574d4d 19%, #b89f9f 48%, gray);
  }

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

  .navbar4_link-2 {
    margin-top: 0;
    margin-bottom: 0;
    padding: .75rem 0;
    font-size: 1.25rem;
    position: static;
  }

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

  .navbar4_menu-button-2 {
    margin-left: 0;
    padding: 0;
  }

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

  .heading-2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .heading-2._1 {
    margin-left: 0%;
    margin-right: 0;
  }

  .menu-icon4-2 {
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .menu-icon4_line-bottom-2 {
    width: 24px;
    height: 2px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar4_menu-2 {
    z-index: 1;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    display: block;
  }

  .menu-icon_line-middle-base-2 {
    width: 24px;
    height: 2px;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .navbar4_logo-2 {
    padding-top: 5px;
    padding-bottom: 5px;
    overflow: hidden;
  }

  .heading {
    margin-right: 0;
  }

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

  .menu-icon4_wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .navbar4_menu-wrapper-2 {
    margin-top: 0;
  }

  .navbar-desktop {
    display: block;
  }

  .header138_content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .header138_component {
    height: 40svh;
    min-height: 40svh;
  }

  .header138_image-wrapper, .div-block-30._2 {
    display: none;
  }

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

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

  .button-15 {
    margin-top: 1em;
    margin-bottom: 0;
  }

  .gallery14_arrow.hide-mobile-landscape {
    width: 3rem;
    height: 3rem;
  }

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

  .gallery14_image-wrapper {
    padding-top: 25%;
  }

  .menu-icon4_line-top-3 {
    width: 24px;
    height: 2px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon4_line-middle-3 {
    width: 24px;
    height: 2px;
    background-color: #000;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .navbar4_menu-button-3 {
    margin-left: 0;
    padding: 0;
  }

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

  .heading-10 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .heading-10._1 {
    margin-left: 0%;
    margin-right: 0;
  }

  .heading-10._9._2 {
    margin-left: 0;
  }

  .menu-icon4-3 {
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .menu-icon4_line-bottom-3 {
    width: 24px;
    height: 2px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar4_menu-3 {
    z-index: 1;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    display: block;
  }

  .navbar4_logo-3 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .heading-11 {
    margin-right: 0;
  }

  .div-block-35 {
    margin-left: 10em;
    margin-right: 10em;
  }

  .navbar4_menu-wrapper-3 {
    margin-top: 0;
  }

  .header121_image2 {
    margin-left: 0;
  }

  .bold-text-9 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .bold-text-9._1 {
    margin-left: 0;
  }

  .header121_image-group {
    grid-template-columns: .4fr .75fr .9fr;
    margin-top: 2em;
  }

  .button-group-4 {
    margin-top: 0;
    margin-left: 5%;
    margin-right: 5%;
  }

  .button-group-4._1 {
    margin-left: 5%;
    margin-right: 5%;
  }

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

  .button-13 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .button-group-5 {
    margin-top: 0;
    margin-left: 5%;
    margin-right: 5%;
  }

  .button-group-5._1 {
    margin-left: 5%;
    margin-right: 5%;
  }

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

  .button-group-6 {
    margin-top: 0;
    margin-left: 0%;
    margin-right: 0%;
  }

  .button-group-6._1 {
    margin-left: 5%;
    margin-right: 5%;
  }

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

  .header102_slider {
    width: 100vw;
    max-width: 100%;
    min-height: 100vh;
  }

  .header102_slide-wrapper {
    grid-template-rows: 60% 40%;
  }

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

  .header102_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    padding-top: 6rem;
  }

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

  .button-3 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .text-size-medium-6 {
    justify-content: center;
    align-items: center;
  }

  .content27_component {
    grid-column-gap: 3rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .bold-text-1, .bold-text-18 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
  }

  .heading-13 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .content1_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto auto auto;
  }

  .padding-section-large-7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .button-20 {
    margin-top: 1em;
    margin-bottom: 0;
  }

  .bold-text-20 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
  }

  .padding-section-large-8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .content1_image-wrapper-2 {
    width: 60%;
    height: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .button-21 {
    margin-top: 1em;
    margin-bottom: 0;
  }

  .bold-text-21 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
  }

  .content1_image-2 {
    width: 100%;
    max-width: 100em;
    margin-left: 0;
    padding-left: 0;
  }

  .padding-section-large-9 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .button-22 {
    margin-top: 1em;
    margin-bottom: 0;
  }

  .bold-text-23 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
  }

  .padding-section-large-10 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .button-23 {
    margin-top: 1em;
    margin-bottom: 0;
  }

  .bold-text-25, .bold-text-28 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
  }

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

  .text-weight-semibold {
    color: #151312;
  }

  .heading-16 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .button-24 {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .bold-text-29 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
  }

  .text-weight-semibold {
    color: #151312;
  }

  .heading-17 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }

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

  .text-size-medium-7 {
    margin-bottom: 1rem;
  }

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

  .contact30_tabs-link.w--current {
    border-left-style: none;
  }

  .menu-icon4_line-top-4 {
    width: 24px;
    height: 2px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon4_line-middle-4 {
    width: 24px;
    height: 2px;
    background-color: #000;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .heading-18 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .heading-18._1 {
    margin-top: 1rem;
    margin-left: 0%;
    margin-right: 0;
  }

  .menu-icon4-4 {
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .menu-icon4_line-bottom-4 {
    width: 24px;
    height: 2px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar4_menu-4 {
    z-index: 1;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    display: block;
  }

  .navbar4_logo-4 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .heading-19 {
    margin-right: 0;
  }

  .div-block-42 {
    margin-left: 10em;
    margin-right: 10em;
  }

  .navbar4_menu-wrapper-4 {
    margin-top: 0;
  }

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

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

  .gallery15_arrow.hide-mobile-landscape {
    width: 3rem;
    height: 3rem;
  }

  .button-25 {
    margin-top: 1em;
    margin-bottom: 0;
  }

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

  .heading-21 {
    margin-right: 0;
  }

  .navbar4_menu-wrapper-5 {
    margin-top: 0;
  }

  .navbar4_menu-5 {
    z-index: 1;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    display: block;
  }

  .menu-icon4_line-top-5 {
    width: 24px;
    height: 2px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }

  .heading-22 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .heading-22._1 {
    margin-top: 1rem;
    margin-left: 0%;
    margin-right: 0;
  }

  .navbar4_logo-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .menu-icon4_line-middle-5 {
    width: 24px;
    height: 2px;
    background-color: #000;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .div-block-44 {
    margin-left: 10em;
    margin-right: 10em;
  }

  .menu-icon4_line-bottom-5 {
    width: 24px;
    height: 2px;
    background-color: #fff;
    padding-bottom: 0;
    padding-right: 0;
  }
}

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

  .margin-bottom.margin-small, .margin-bottom.margin-xxlarge {
    margin-left: 5%;
    margin-right: 5%;
  }

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

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

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

  .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-large {
    padding-top: 1.5rem;
  }

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

  .navbar4_component {
    min-height: 4rem;
  }

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

  .navbar4_link-2 {
    color: #fff;
    align-self: center;
    margin-right: 0;
  }

  .heading-2 {
    text-align: center;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    margin-bottom: 0;
    margin-left: 0%;
    margin-right: 0%;
  }

  .heading-2._1 {
    margin-left: 0%;
    font-size: 40px;
  }

  .menu-icon4-2 {
    margin-right: 0;
  }

  .navbar4_logo-2 {
    margin-right: 0;
    padding-right: 0;
  }

  .heading {
    margin-right: 0;
  }

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

  .navbar-desktop {
    min-height: 4rem;
    display: block;
  }

  .footer7_link-list {
    grid-column-gap: 0px;
    grid-row-gap: 1.5rem;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer7_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 1rem;
  }

  .footer7_credit-text {
    margin-top: 2rem;
  }

  .header138_image {
    object-fit: cover;
  }

  .header138_image-wrapper2 {
    width: 30%;
  }

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

  .header138_content-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .header138_component {
    height: auto;
    max-height: none;
    min-height: 40svh;
  }

  .header138_image-wrapper {
    flex: 1;
  }

  .div-block-30._2 {
    display: none;
  }

  .image-10 {
    height: 400px;
    object-fit: cover;
    overflow: hidden;
  }

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

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

  .layout192_component {
    grid-row-gap: 3rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .button-15 {
    margin-top: 1em;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

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

  .gallery14_image-wrapper {
    padding-top: 10%;
  }

  .gallery14_slider {
    padding-bottom: 3rem;
  }

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

  .gallery14_slide {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .heading-10 {
    text-align: center;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    margin-bottom: 0;
    margin-left: 0%;
    margin-right: 0%;
  }

  .heading-10._1 {
    margin-left: 0%;
    font-size: 40px;
  }

  .heading-10._9 {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-10._9._2 {
    margin-left: 0;
    margin-right: 0;
  }

  .menu-icon4-3 {
    margin-right: 0;
  }

  .heading-11 {
    margin-right: 0;
  }

  .div-block-35 {
    margin-left: 5em;
    margin-right: 5em;
  }

  .header121_image2 {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .bold-text-9 {
    text-align: center;
    margin-left: 0;
  }

  .bold-text-9._1 {
    margin-left: 0;
  }

  .header121_image-group {
    grid-template-rows: auto auto auto;
    margin-top: 3rem;
  }

  .button-group-4 {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 0%;
    margin-right: 0%;
  }

  .button-group-4._1 {
    margin-left: 5%;
  }

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

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

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

  .header121_image-wrapper3 {
    object-fit: fill;
  }

  .button-13 {
    margin-top: 0;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .button-group-5 {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 0%;
    margin-right: 0%;
  }

  .button-group-5._1 {
    margin-left: 5%;
  }

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

  .button-group-6 {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 0%;
    margin-right: 0%;
  }

  .button-group-6._1 {
    margin-left: 5%;
  }

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

  .text-size-medium-5 {
    text-align: center;
    font-size: 1rem;
  }

  .header102_mask {
    overflow: visible;
  }

  .header102_slider {
    max-height: 80rem;
    min-height: 100vh;
    display: block;
  }

  .header102_slide-nav {
    bottom: 2rem;
  }

  .header102_arrow.is-left {
    right: 5.5rem;
  }

  .header102_slide-image {
    height: 100%;
  }

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

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

  .header102_slide-wrapper {
    grid-template-rows: 70% 30%;
  }

  .header102_component {
    padding-top: 4rem;
  }

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

  .button-3 {
    margin-top: 0;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .text-size-medium-6 {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 2.5rem;
  }

  .bold-text-1, .bold-text-18 {
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .heading-13 {
    text-align: center;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
    margin-bottom: 0;
    margin-left: 0%;
    margin-right: 0%;
  }

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

  .padding-section-large-7 {
    grid-template-rows: auto auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .button-20 {
    margin-top: 1em;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .bold-text-20 {
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .padding-section-large-8 {
    grid-template-rows: auto auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .content1_image-wrapper-2 {
    width: 80%;
    padding-left: 0;
    padding-right: 0;
  }

  .button-21 {
    margin-top: 1em;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .bold-text-21 {
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .content1_image-2 {
    padding-left: 0;
  }

  .padding-section-large-9 {
    grid-template-rows: auto auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .button-22 {
    margin-top: 1em;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .bold-text-23 {
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .padding-section-large-10 {
    grid-template-rows: auto auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .button-23 {
    margin-top: 1em;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .bold-text-25, .bold-text-28 {
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .contact9_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-16 {
    text-align: center;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  }

  .button-24 {
    margin-top: 0;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

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

  .bold-text-29 {
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .heading-17 {
    text-align: center;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  }

  .contact30_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

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

  .contact30_tabs-link.w--current {
    border-left-style: none;
  }

  .heading-18 {
    text-align: center;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  }

  .heading-18._1 {
    margin-top: 1rem;
    margin-left: 0%;
    font-size: 40px;
  }

  .menu-icon4-4 {
    margin-right: 0;
  }

  .heading-19 {
    margin-right: 0;
  }

  .div-block-42 {
    margin-left: 5em;
    margin-right: 5em;
  }

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

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

  .gallery15_slider {
    padding-bottom: 3rem;
  }

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

  .button-25 {
    margin-top: 1em;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .menu-icon4-5 {
    margin-right: 0;
  }

  .heading-21 {
    margin-right: 0;
  }

  .heading-22 {
    text-align: center;
    background-image: linear-gradient(120deg, #574d4d 33%, #b89f9f 78%, gray);
  }

  .heading-22._1 {
    margin-top: 1rem;
    margin-left: 0%;
    font-size: 40px;
  }

  .div-block-44 {
    margin-left: 5em;
    margin-right: 5em;
  }
}

@media screen and (max-width: 479px) {
  .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;
  }

  .margin-bottom.margin-small {
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .margin-bottom.margin-xxlarge {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-left: 5%;
    margin-right: 5%;
    display: block;
  }

  .margin-bottom.margin-small {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
  }

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

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

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

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

  .max-width-large.align-center {
    max-width: 48rem;
  }

  .container-large {
    max-width: 100rem;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    grid-template-columns: 1fr;
  }

  .hero_heading {
    font-size: 2.5rem;
  }

  .pogressbar {
    background-color: rgba(255, 255, 255, .64);
  }

  .menu-icon4_line-top-2 {
    border: 1px solid #fff;
  }

  .navbar4_wrapper-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: grid;
  }

  .heading-2 {
    margin-left: 0%;
    margin-right: 0%;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-2._1 {
    margin-left: 0%;
    margin-right: 0%;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
  }

  .menu-icon4-2 {
    margin-right: 0;
    padding-right: 0;
  }

  .menu-icon4_line-bottom-2 {
    background-color: #fff;
  }

  .div-block-32 {
    display: none;
  }

  .menu-icon_line-middle-base-2 {
    background-color: #fff;
  }

  .navbar4_logo-2 {
    outline-offset: 0px;
    outline: 3px #d9d9d9;
    overflow: visible;
  }

  .heading {
    margin-right: 0;
  }

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

  .navbar4_logo-link-2 {
    aspect-ratio: auto;
    flex: 0 auto;
    display: none;
    overflow: hidden;
  }

  .navbar-desktop {
    background-image: url('../images/Eloxierter-Metallhintergrund-erweitert-1919.png');
    background-position: 0 0;
    background-size: auto;
    display: block;
  }

  .footer3_details-wrapper, .div-block-10 {
    text-align: center;
  }

  .footer7_top-wrapper {
    grid-template-rows: auto auto auto auto auto;
  }

  .header138_image {
    aspect-ratio: auto;
    object-fit: none;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .header138_image-wrapper2 {
    top: auto;
    bottom: 0%;
    left: auto;
    right: 15%;
  }

  .header138_content-wrapper {
    grid-template-columns: 1fr;
  }

  .header138_component {
    min-height: 60svh;
    object-fit: fill;
  }

  .header138_image-wrapper {
    display: block;
    position: relative;
  }

  .div-block-33 {
    display: none;
  }

  .div-block-30 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    aspect-ratio: auto;
    object-fit: cover;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    display: none;
    overflow: auto;
  }

  .div-block-30._2 {
    display: block;
  }

  .image-10 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-image: url('../images/Hochkant-Bild-Deltagrill-320px.png');
    background-position: 0 0;
    background-size: auto;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding-right: 0;
    display: inline-flex;
    overflow: visible;
  }

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

  .padding-global-6 {
    margin-top: 2rem;
  }

  .text-weight-semibold {
    color: #fff;
  }

  .button-15 {
    text-align: left;
    margin-top: 1em;
    font-weight: 700;
  }

  .padding-section-large-3 {
    padding-top: 0;
  }

  .gallery14_image-wrapper {
    padding-top: 0%;
  }

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

  .gallery14_slider {
    overflow: visible;
  }

  .gallery14_slide {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-icon4_line-top-3 {
    border: 1px solid #fff;
  }

  .navbar4_wrapper-3 {
    grid-column-gap: 1rem;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: grid;
  }

  .heading-10 {
    margin-left: 0%;
    margin-right: 0%;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-10._1 {
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
  }

  .heading-10._9 {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-10._9._2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .menu-icon4-3 {
    margin-right: 0;
    padding-right: 0;
  }

  .menu-icon4_line-bottom-3 {
    background-color: #fff;
  }

  .div-block-34 {
    display: none;
  }

  .navbar4_logo-3 {
    outline-offset: 0px;
    outline: 3px #d9d9d9;
    overflow: visible;
  }

  .heading-11 {
    margin-right: 0;
  }

  .div-block-35 {
    margin-left: 2em;
    margin-right: 2em;
  }

  .header121_image2 {
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .padding-global-15 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .bold-text-9 {
    text-align: center;
    align-self: center;
    margin-left: 0;
  }

  .bold-text-9._1 {
    width: 100%;
    min-width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    font-size: 2rem;
    line-height: 40px;
  }

  .bold-text-9._2 {
    font-size: 1.5rem;
  }

  .bold-text-10 {
    color: #000;
  }

  .header121_image-wrapper1 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .header121_image-group {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .button-group-4 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin-top: 0;
    margin-left: 0;
    margin-right: 10px;
    padding-left: 10px;
    display: grid;
  }

  .button-group-4._1 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-left: 0%;
    margin-right: 0%;
    display: grid;
  }

  .header121_component, .header121_content-wrapper {
    margin-left: 0%;
    margin-right: 0%;
  }

  .header121_image3 {
    padding-bottom: 20px;
  }

  .button-12 {
    color: #fff;
  }

  .header121_image1 {
    width: 100%;
    height: 100%;
    display: block;
  }

  .button-13 {
    margin-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 700;
  }

  .bold-text-11 {
    color: #000;
  }

  .button-group-5 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin-top: 0;
    margin-left: 0;
    margin-right: 10px;
    padding-left: 10px;
    display: grid;
  }

  .button-group-5._1 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-left: 0%;
    margin-right: 0%;
    display: grid;
  }

  .padding-section-large-5 {
    padding-bottom: 2rem;
  }

  .button-16 {
    color: #fff;
  }

  .bold-text-12 {
    color: #000;
  }

  .button-group-6 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin-top: 0;
    margin-left: 0;
    margin-right: 10px;
    padding-left: 10px;
    display: grid;
  }

  .button-group-6._1 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-left: 0%;
    margin-right: 0%;
    display: grid;
  }

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

  .button-17 {
    color: #fff;
  }

  .bold-text-13 {
    color: #000;
  }

  .button-18, .button-19 {
    color: #fff;
  }

  .bold-text-14 {
    color: #000;
  }

  .header102_slide-image-wrapper {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  .header102_slider {
    min-height: 60vh;
    margin-bottom: 4rem;
    display: block;
  }

  .header102_slide-nav {
    bottom: -2.6rem;
  }

  .header102_arrow, .header102_arrow.is-left {
    bottom: -3rem;
  }

  .header102_slide-image {
    height: 500px;
    object-fit: cover;
  }

  .header102_slide-content {
    width: 100%;
    align-content: flex-end;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .header102_slide-wrapper {
    grid-template-rows: auto auto;
  }

  .header102_slide {
    text-align: left;
  }

  .header102_component {
    overflow: hidden;
  }

  .header102_slide-content-wrapper {
    flex-direction: column;
  }

  .button-3 {
    text-align: left;
    margin-top: 0;
    font-weight: 700;
  }

  .button-4 {
    color: #fff;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    display: block;
  }

  .bold-text-3 {
    color: #000;
  }

  .bold-text-2 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .text-size-medium-6 {
    display: none;
  }

  .section-6 {
    margin-left: 0%;
    margin-right: 0%;
  }

  .max-width-large-2 {
    max-width: none;
    margin-left: 0%;
    margin-right: 0%;
  }

  .content27_component {
    padding-left: 0%;
    padding-right: 0%;
  }

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

  .bold-text-1 {
    width: 100%;
    min-width: 50%;
    text-align: center;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    justify-content: center;
    align-items: center;
    margin: 0 0%;
    padding: 1rem 0;
    font-size: 2rem;
    line-height: 40px;
    display: flex;
  }

  .section-7 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .bold-text-18 {
    width: 100%;
    min-width: 50%;
    text-align: center;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    justify-content: center;
    align-items: center;
    margin: 0 0%;
    padding: 1rem 0;
    font-size: 2rem;
    line-height: 20px;
    display: flex;
  }

  .heading-13 {
    margin-left: 0%;
    margin-right: 0%;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .button-20 {
    text-align: left;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    font-weight: 700;
    display: flex;
  }

  .div-block-37 {
    margin-top: 2rem;
  }

  .bold-text-20 {
    width: 100%;
    min-width: 50%;
    text-align: center;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    justify-content: center;
    align-items: center;
    margin: 0 0%;
    padding: 1rem 0;
    font-size: 2.5rem;
    line-height: 20px;
    display: flex;
  }

  .content1_image-wrapper-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .button-21 {
    text-align: left;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    font-weight: 700;
    display: flex;
  }

  .bold-text-21 {
    width: 100%;
    min-width: 50%;
    text-align: center;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    justify-content: center;
    align-items: center;
    margin: 0 0%;
    padding: 1rem 0;
    font-size: 2.5rem;
    line-height: 20px;
    display: flex;
  }

  .div-block-38 {
    margin-top: 2rem;
  }

  .content1_image-2 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .button-22 {
    text-align: left;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    font-weight: 700;
    display: flex;
  }

  .bold-text-23 {
    width: 100%;
    min-width: 50%;
    text-align: center;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    justify-content: center;
    align-items: center;
    margin: 0 0%;
    padding: 1rem 0;
    font-size: 2.5rem;
    line-height: 20px;
    display: flex;
  }

  .div-block-39 {
    margin-top: 2rem;
  }

  .button-23 {
    text-align: left;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    font-weight: 700;
    display: flex;
  }

  .bold-text-25 {
    width: 100%;
    min-width: 50%;
    text-align: center;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    justify-content: center;
    align-items: center;
    margin: 0 0%;
    padding: 1rem 0;
    font-size: 2.5rem;
    line-height: 20px;
    display: flex;
  }

  .div-block-40 {
    margin-top: 2rem;
  }

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

  .bold-text-27 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .body, .body-2, .body-3 {
    background-color: #151312;
  }

  .bold-text-28 {
    text-align: center;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    justify-content: center;
    align-items: center;
    margin-left: 0%;
    margin-right: 0%;
    font-size: 1.5rem;
    line-height: 20px;
    display: block;
  }

  .contact9_form {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
  }

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

  .padding-global-19 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .text-weight-semibold {
    color: #151312;
  }

  .heading-16 {
    margin-left: 0%;
    margin-right: 0%;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .button-24 {
    text-align: left;
    margin-top: 0;
    font-weight: 700;
  }

  .padding-section-large-11 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bold-text-29 {
    text-align: center;
    background-image: linear-gradient(50deg, #ea1605, #d86b06 25%, #860404);
    justify-content: center;
    align-items: center;
    margin-left: 0%;
    margin-right: 0%;
    font-size: 1.5rem;
    line-height: 20px;
    display: block;
  }

  .text-weight-semibold {
    color: #151312;
  }

  .max-width-large-3 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .heading-17 {
    margin-left: 0%;
    margin-right: 0%;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

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

  .text-size-medium-7 {
    color: #fff;
    margin-bottom: 1rem;
  }

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

  .contact30_tabs-link.w--current {
    text-align: center;
    border-left-style: none;
    padding-left: 0;
  }

  .section-8 {
    margin-right: 0%;
  }

  .menu-icon4_line-top-4 {
    border: 1px solid #fff;
  }

  .navbar4_wrapper-4 {
    grid-column-gap: 1rem;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: grid;
  }

  .heading-18 {
    margin-left: 0%;
    margin-right: 0%;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-18._1 {
    margin-top: 1rem;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
  }

  .menu-icon4-4 {
    margin-right: 0;
    padding-right: 0;
  }

  .menu-icon4_line-bottom-4 {
    background-color: #fff;
  }

  .div-block-41 {
    display: none;
  }

  .navbar4_logo-4 {
    outline-offset: 0px;
    outline: 3px #d9d9d9;
    overflow: visible;
  }

  .heading-19 {
    margin-right: 0;
  }

  .div-block-42 {
    margin-left: 2em;
    margin-right: 2em;
  }

  .gallery15_image {
    object-fit: contain;
  }

  .heading-20 {
    padding-bottom: 40px;
  }

  .button-25 {
    text-align: left;
    margin-top: 1em;
    font-weight: 700;
  }

  .menu-icon4-5 {
    margin-right: 0;
    padding-right: 0;
  }

  .heading-21 {
    margin-right: 0;
  }

  .menu-icon4_line-top-5 {
    border: 1px solid #fff;
  }

  .div-block-43 {
    display: none;
  }

  .heading-22 {
    margin-left: 0%;
    margin-right: 0%;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-22._1 {
    margin-top: 1rem;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
  }

  .navbar4_logo-5 {
    outline-offset: 0px;
    outline: 3px #d9d9d9;
    overflow: visible;
  }

  .div-block-44 {
    margin-left: 2em;
    margin-right: 2em;
  }

  .navbar4_wrapper-5 {
    grid-column-gap: 1rem;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    display: grid;
  }

  .menu-icon4_line-bottom-5 {
    background-color: #fff;
  }
}

#w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f42-cf59c8ed {
  grid-area: 1 / 1 / 2 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f50-cf59c8ed {
  grid-area: 2 / 1 / 3 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f58-cf59c8ed {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-b144e21e-b537-529c-018b-9b442be3222a-cf59c8ed {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-b144e21e-b537-529c-018b-9b442be3222c-cf59c8ed {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_45895a17-dc23-77ef-56fd-2435a8c8eebe-cf59c8ed {
  justify-self: center;
}

#w-node-_45895a17-dc23-77ef-56fd-2435a8c8eec0-cf59c8ed {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_45895a17-dc23-77ef-56fd-2435a8c8eec1-cf59c8ed {
  align-self: center;
  justify-self: center;
}

#w-node-_45895a17-dc23-77ef-56fd-2435a8c8eec2-cf59c8ed {
  grid-area: 1 / 1 / 2 / 2;
  align-self: center;
  justify-self: center;
}

#w-node-_45895a17-dc23-77ef-56fd-2435a8c8eec4-cf59c8ed {
  grid-area: 3 / 2 / 4 / 3;
  align-self: center;
  justify-self: center;
}

#w-node-_45895a17-dc23-77ef-56fd-2435a8c8eecf-cf59c8ed {
  order: -9999;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_45895a17-dc23-77ef-56fd-2435a8c8eee1-cf59c8ed {
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-b224ec27-30fa-be84-48bf-7ed471542af3-cf59c8f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-cf59c8f0 {
  justify-self: start;
}

#w-node-_5d224905-8a1e-1460-7532-d38cb7ec37c1-cf59c8f0, #w-node-_40538c8c-870b-b365-34c4-2a06f0f8567d-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-cf59c8f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-cf59c8f0 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-cf59c8f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-cf59c8f0 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-cf59c8f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-cf59c8f0 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-cf59c8f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-cf59c8f0 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-cf59c8f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-cf59c8f0, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-cf59c8f0 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-cf59c8f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-cf59c8f0 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-cf59c8f0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd98-cf59c8f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-cf59c8f0 {
  justify-self: start;
}

#w-node-ea6685d8-857c-3502-53b4-c5d96c5dc707-2202e9e2 {
  grid-area: 1 / 1 / 2 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-ea6685d8-857c-3502-53b4-c5d96c5dc715-2202e9e2 {
  grid-area: 2 / 1 / 3 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-ea6685d8-857c-3502-53b4-c5d96c5dc71d-2202e9e2 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc112-2202e9e2 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: center;
  justify-self: center;
}

#w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc115-2202e9e2 {
  grid-area: 1 / 1 / 2 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc118-2202e9e2 {
  grid-area: 3 / 1 / 4 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc126-2202e9e2 {
  align-self: start;
}

#w-node-d359ffd1-8469-1d8a-7f49-a2d80e39522d-2202e9e2 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
  justify-self: center;
}

#w-node-d359ffd1-8469-1d8a-7f49-a2d80e395230-2202e9e2 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: center;
  justify-self: center;
}

#w-node-d359ffd1-8469-1d8a-7f49-a2d80e395233-2202e9e2 {
  grid-area: 3 / 1 / 4 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-d359ffd1-8469-1d8a-7f49-a2d80e395241-2202e9e2 {
  align-self: start;
}

#w-node-d29c4520-d81c-2058-e971-0eccb78de843-2202e9e2 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
  justify-self: center;
}

#w-node-d29c4520-d81c-2058-e971-0eccb78de846-2202e9e2 {
  grid-area: 3 / 2 / 4 / 3;
  align-self: center;
  justify-self: center;
}

#w-node-d29c4520-d81c-2058-e971-0eccb78de84f-2202e9e2 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: center;
  justify-self: center;
}

#w-node-d29c4520-d81c-2058-e971-0eccb78de857-2202e9e2 {
  align-self: start;
}

#w-node-bf715447-c3d7-3a22-c498-9df704feb351-2202e9e2 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
  justify-self: center;
}

#w-node-bf715447-c3d7-3a22-c498-9df704feb354-2202e9e2 {
  grid-area: 2 / 1 / 3 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-bf715447-c3d7-3a22-c498-9df704feb35f-2202e9e2 {
  grid-area: 3 / 1 / 4 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-bf715447-c3d7-3a22-c498-9df704feb36d-2202e9e2 {
  align-self: start;
}

#w-node-_868c6858-a526-dd4c-f818-c93fc1b17ff1-2202e9e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_868c6858-a526-dd4c-f818-c93fc1b17ffd-2202e9e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd1f78c6-174b-fc35-a6a4-82c06080e309-2202e9e2 {
  justify-self: center;
}

#w-node-bd1f78c6-174b-fc35-a6a4-82c06080e30b-2202e9e2 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-bd1f78c6-174b-fc35-a6a4-82c06080e30c-2202e9e2 {
  align-self: center;
  justify-self: center;
}

#w-node-bd1f78c6-174b-fc35-a6a4-82c06080e30d-2202e9e2 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: center;
  justify-self: center;
}

#w-node-bd1f78c6-174b-fc35-a6a4-82c06080e30f-2202e9e2 {
  grid-area: 3 / 2 / 4 / 3;
  align-self: center;
  justify-self: center;
}

#w-node-bd1f78c6-174b-fc35-a6a4-82c06080e31a-2202e9e2 {
  order: -9999;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-bd1f78c6-174b-fc35-a6a4-82c06080e32c-2202e9e2 {
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-c1cff434-622a-918d-6494-98e65d91010c-b96aec0b {
  grid-area: 1 / 1 / 2 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-c1cff434-622a-918d-6494-98e65d91011a-b96aec0b {
  grid-area: 2 / 1 / 3 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-c1cff434-622a-918d-6494-98e65d910122-b96aec0b {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_6596d409-75c4-2e9b-f6c8-fde09b12ba33-b96aec0b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: center;
  justify-self: center;
}

#w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf812-b96aec0b {
  justify-self: center;
}

#w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf814-b96aec0b {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf815-b96aec0b {
  align-self: center;
  justify-self: center;
}

#w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf816-b96aec0b {
  grid-area: 1 / 1 / 2 / 2;
  align-self: center;
  justify-self: center;
}

#w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf818-b96aec0b {
  grid-area: 3 / 2 / 4 / 3;
  align-self: center;
  justify-self: center;
}

#w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf823-b96aec0b {
  order: -9999;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf835-b96aec0b {
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-f75b3df0-9145-afe9-1c8c-25caaf806274-915e358a {
  grid-area: 1 / 1 / 2 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-f75b3df0-9145-afe9-1c8c-25caaf806282-915e358a {
  grid-area: 2 / 1 / 3 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-f75b3df0-9145-afe9-1c8c-25caaf80628a-915e358a {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263b7-915e358a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263b8-915e358a, #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ba-915e358a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ec-915e358a {
  grid-area: 1 / 2 / 2 / 3;
  align-self: end;
  justify-self: end;
}

#w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ee-915e358a {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544162c-915e358a {
  justify-self: center;
}

#w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544162e-915e358a {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544162f-915e358a {
  align-self: center;
  justify-self: center;
}

#w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae5441630-915e358a {
  grid-area: 1 / 1 / 2 / 2;
  align-self: center;
  justify-self: center;
}

#w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae5441632-915e358a {
  grid-area: 3 / 2 / 4 / 3;
  align-self: center;
  justify-self: center;
}

#w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544163d-915e358a {
  order: -9999;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544164f-915e358a {
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c13-edd402ea {
  grid-area: 1 / 1 / 2 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c21-edd402ea {
  grid-area: 2 / 1 / 3 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c29-edd402ea {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_12123ccf-0d84-a8e8-c149-81a27f1ea2d1-edd402ea {
  justify-self: start;
}

#w-node-_6075dca3-5146-f7db-6e67-a6b3877b6c3f-edd402ea {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_6075dca3-5146-f7db-6e67-a6b3877b6c40-edd402ea {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e7c-edd402ea {
  justify-self: center;
}

#w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e7e-edd402ea {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e7f-edd402ea {
  align-self: center;
  justify-self: center;
}

#w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e80-edd402ea {
  grid-area: 1 / 1 / 2 / 2;
  align-self: center;
  justify-self: center;
}

#w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e82-edd402ea {
  grid-area: 3 / 2 / 4 / 3;
  align-self: center;
  justify-self: center;
}

#w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e8d-edd402ea {
  order: -9999;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e9f-edd402ea {
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: auto;
  justify-self: auto;
}

@media screen and (min-width: 1920px) {
  #w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f42-cf59c8ed {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f58-cf59c8ed {
    grid-area: 1 / 1 / 3 / 4;
    align-self: start;
    justify-self: start;
  }

  #w-node-ea6685d8-857c-3502-53b4-c5d96c5dc707-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-ea6685d8-857c-3502-53b4-c5d96c5dc71d-2202e9e2 {
    grid-area: 1 / 1 / 3 / 4;
    align-self: start;
    justify-self: start;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb351-2202e9e2 {
    grid-area: 1 / 2 / 2 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb354-2202e9e2, #w-node-bf715447-c3d7-3a22-c498-9df704feb35f-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-c1cff434-622a-918d-6494-98e65d91010c-b96aec0b {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-c1cff434-622a-918d-6494-98e65d910122-b96aec0b {
    grid-area: 1 / 1 / 3 / 4;
    align-self: start;
    justify-self: start;
  }

  #w-node-f75b3df0-9145-afe9-1c8c-25caaf806274-915e358a {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-f75b3df0-9145-afe9-1c8c-25caaf80628a-915e358a {
    grid-area: 1 / 1 / 3 / 4;
    align-self: start;
    justify-self: start;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263b7-915e358a {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ec-915e358a {
    grid-area: 1 / 2 / 2 / 3;
    align-self: center;
    justify-self: end;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ee-915e358a {
    grid-area: 2 / 1 / 4 / 3;
  }

  #w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c13-edd402ea {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c29-edd402ea {
    grid-area: 1 / 1 / 3 / 4;
    align-self: start;
    justify-self: start;
  }

  #w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e8d-edd402ea {
    align-self: center;
  }

  #w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e9f-edd402ea {
    align-self: center;
    justify-self: center;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc115-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e39522d-2202e9e2 {
    grid-area: 1 / 2 / 2 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e395230-2202e9e2, #w-node-d359ffd1-8469-1d8a-7f49-a2d80e395233-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de843-2202e9e2 {
    grid-area: 1 / 2 / 2 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de846-2202e9e2, #w-node-d29c4520-d81c-2058-e971-0eccb78de84f-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb351-2202e9e2 {
    grid-area: 1 / 2 / 2 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb354-2202e9e2, #w-node-bf715447-c3d7-3a22-c498-9df704feb35f-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ec-915e358a {
    justify-self: center;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ee-915e358a {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_6075dca3-5146-f7db-6e67-a6b3877b6c40-edd402ea {
    align-self: center;
    justify-self: center;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-b144e21e-b537-529c-018b-9b442be3222a-cf59c8ed {
    order: 9999;
    grid-column: 2 / 3;
  }

  #w-node-b144e21e-b537-529c-018b-9b442be3222c-cf59c8ed {
    order: -9999;
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_45895a17-dc23-77ef-56fd-2435a8c8eee1-cf59c8ed {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e39522d-2202e9e2, #w-node-d29c4520-d81c-2058-e971-0eccb78de843-2202e9e2, #w-node-bf715447-c3d7-3a22-c498-9df704feb351-2202e9e2 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-bd1f78c6-174b-fc35-a6a4-82c06080e32c-2202e9e2, #w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf835-b96aec0b {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ec-915e358a {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: end;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ee-915e358a {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544164f-915e358a, #w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e9f-edd402ea {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f42-cf59c8ed {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f50-cf59c8ed {
    grid-area: 2 / 2 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-b144e21e-b537-529c-018b-9b442be3222a-cf59c8ed {
    order: 9999;
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-b144e21e-b537-529c-018b-9b442be3222c-cf59c8ed {
    order: -9999;
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_45895a17-dc23-77ef-56fd-2435a8c8eebe-cf59c8ed {
    justify-self: center;
  }

  #w-node-ea6685d8-857c-3502-53b4-c5d96c5dc707-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-ea6685d8-857c-3502-53b4-c5d96c5dc715-2202e9e2 {
    grid-area: 2 / 2 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc112-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc118-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e39522d-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e395230-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de843-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de846-2202e9e2 {
    grid-area: 3 / 1 / 4 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de84f-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb351-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb354-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb35f-2202e9e2 {
    grid-area: 3 / 1 / 4 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_868c6858-a526-dd4c-f818-c93fc1b17ff1-2202e9e2 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_868c6858-a526-dd4c-f818-c93fc1b17ffd-2202e9e2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-bd1f78c6-174b-fc35-a6a4-82c06080e309-2202e9e2 {
    justify-self: center;
  }

  #w-node-c1cff434-622a-918d-6494-98e65d91010c-b96aec0b {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-c1cff434-622a-918d-6494-98e65d91011a-b96aec0b {
    grid-area: 2 / 2 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_6596d409-75c4-2e9b-f6c8-fde09b12ba33-b96aec0b {
    justify-self: start;
  }

  #w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf812-b96aec0b {
    justify-self: center;
  }

  #w-node-f75b3df0-9145-afe9-1c8c-25caaf806274-915e358a {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-f75b3df0-9145-afe9-1c8c-25caaf806282-915e358a {
    grid-area: 2 / 2 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263b7-915e358a {
    grid-area: 1 / 1 / 2 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263b8-915e358a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263ec-915e358a {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544162c-915e358a {
    justify-self: center;
  }

  #w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c13-edd402ea {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c21-edd402ea {
    grid-area: 2 / 2 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e7c-edd402ea {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f42-cf59c8ed {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f50-cf59c8ed {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-b144e21e-b537-529c-018b-9b442be32228-cf59c8ed {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-b144e21e-b537-529c-018b-9b442be3222a-cf59c8ed {
    order: 9999;
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-b144e21e-b537-529c-018b-9b442be3222c-cf59c8ed {
    order: -9999;
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_45895a17-dc23-77ef-56fd-2435a8c8eebb-cf59c8ed {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-ea6685d8-857c-3502-53b4-c5d96c5dc707-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-ea6685d8-857c-3502-53b4-c5d96c5dc715-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc10e-2202e9e2 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc112-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc122-2202e9e2 {
    grid-area: 3 / 1 / 4 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc124-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc126-2202e9e2 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: start;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e395229-2202e9e2 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e39522d-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e395230-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e39523d-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e39523f-2202e9e2 {
    grid-area: 3 / 1 / 4 / 4;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e395241-2202e9e2 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: start;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de83f-2202e9e2 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de843-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de846-2202e9e2 {
    grid-area: 3 / 1 / 4 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de84f-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de853-2202e9e2 {
    grid-area: 3 / 1 / 4 / 4;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de855-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de857-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: start;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb34d-2202e9e2 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb351-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb354-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb35f-2202e9e2 {
    grid-area: 3 / 1 / 4 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb369-2202e9e2 {
    grid-area: 3 / 1 / 4 / 4;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb36b-2202e9e2 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb36d-2202e9e2 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: start;
  }

  #w-node-ecf025c2-e902-a241-a0e5-7e415cdda998-2202e9e2 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_868c6858-a526-dd4c-f818-c93fc1b17ffd-2202e9e2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-bd1f78c6-174b-fc35-a6a4-82c06080e306-2202e9e2 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-c1cff434-622a-918d-6494-98e65d91010c-b96aec0b {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-c1cff434-622a-918d-6494-98e65d91011a-b96aec0b {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf80f-b96aec0b {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-f75b3df0-9145-afe9-1c8c-25caaf806274-915e358a {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-f75b3df0-9145-afe9-1c8c-25caaf806282-915e358a {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263b6-915e358a {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_5f11b1a6-f669-1fa7-9c09-08828cc263b7-915e358a {
    grid-area: 1 / 1 / 2 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae5441629-915e358a {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c13-edd402ea {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c21-edd402ea {
    grid-area: 2 / 1 / 3 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_12123ccf-0d84-a8e8-c149-81a27f1ea2b2-edd402ea {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_12123ccf-0d84-a8e8-c149-81a27f1ea2cf-edd402ea, #w-node-_12123ccf-0d84-a8e8-c149-81a27f1ea2d1-edd402ea {
    align-self: center;
    justify-self: center;
  }

  #w-node-_6075dca3-5146-f7db-6e67-a6b3877b6c38-edd402ea {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e79-edd402ea {
    grid-area: 1 / 1 / 2 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f42-cf59c8ed {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_1469eed1-cd11-7993-64e3-ad5c3d8f0f50-cf59c8ed {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-b144e21e-b537-529c-018b-9b442be3222a-cf59c8ed {
    order: 9999;
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-b144e21e-b537-529c-018b-9b442be3222c-cf59c8ed {
    order: -9999;
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-c06468a3-9fc1-b911-f1e0-b743f477c3bf-cf59c8ed {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-c06468a3-9fc1-b911-f1e0-b743f477c3c3-cf59c8ed {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_45895a17-dc23-77ef-56fd-2435a8c8eebe-cf59c8ed {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: center;
  }

  #w-node-_45895a17-dc23-77ef-56fd-2435a8c8eecf-cf59c8ed {
    order: -9999;
    grid-area: 4 / 2 / 5 / 3;
    align-self: auto;
    justify-self: auto;
  }

  #w-node-_45895a17-dc23-77ef-56fd-2435a8c8eee1-cf59c8ed {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-ea6685d8-857c-3502-53b4-c5d96c5dc707-2202e9e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-ea6685d8-857c-3502-53b4-c5d96c5dc715-2202e9e2 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc119-2202e9e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc11d-2202e9e2 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-d303cc70-88bd-38d0-2f0d-d66b8bdbc122-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e395234-2202e9e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e395238-2202e9e2 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-d359ffd1-8469-1d8a-7f49-a2d80e39523d-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de847-2202e9e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de84b-2202e9e2 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-d29c4520-d81c-2058-e971-0eccb78de853-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb360-2202e9e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb364-2202e9e2 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-bf715447-c3d7-3a22-c498-9df704feb369-2202e9e2 {
    align-self: center;
    justify-self: center;
  }

  #w-node-_0e6c664a-a60c-d894-45ad-4fac6bd8d44e-2202e9e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_0e6c664a-a60c-d894-45ad-4fac6bd8d452-2202e9e2 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_78d46921-791e-b403-fdb3-c4e1309f5ca2-2202e9e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_78d46921-791e-b403-fdb3-c4e1309f5ca6-2202e9e2 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-bd1f78c6-174b-fc35-a6a4-82c06080e309-2202e9e2 {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: center;
  }

  #w-node-bd1f78c6-174b-fc35-a6a4-82c06080e31a-2202e9e2 {
    order: -9999;
    grid-area: 4 / 2 / 5 / 3;
    align-self: auto;
    justify-self: auto;
  }

  #w-node-bd1f78c6-174b-fc35-a6a4-82c06080e32c-2202e9e2 {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-c1cff434-622a-918d-6494-98e65d91010c-b96aec0b {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-c1cff434-622a-918d-6494-98e65d91011a-b96aec0b {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_6596d409-75c4-2e9b-f6c8-fde09b12ba31-b96aec0b {
    align-self: center;
    justify-self: start;
  }

  #w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf812-b96aec0b {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: center;
  }

  #w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf823-b96aec0b {
    order: -9999;
    grid-area: 4 / 2 / 5 / 3;
    align-self: auto;
    justify-self: auto;
  }

  #w-node-_9b735473-3fd8-30a2-58e6-b4cf4fccf835-b96aec0b {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-f75b3df0-9145-afe9-1c8c-25caaf806274-915e358a {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-f75b3df0-9145-afe9-1c8c-25caaf806282-915e358a {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544162c-915e358a {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: center;
  }

  #w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544163d-915e358a {
    order: -9999;
    grid-area: 4 / 2 / 5 / 3;
    align-self: auto;
    justify-self: auto;
  }

  #w-node-_6eff9c56-20b2-8ba2-c9a7-c84ae544164f-915e358a {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c13-edd402ea {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_8b8663f7-3f6f-977b-c5e0-df230de63c21-edd402ea {
    grid-area: 2 / 1 / 3 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_12123ccf-0d84-a8e8-c149-81a27f1ea2b2-edd402ea {
    grid-area: 1 / 1 / 2 / 3;
    align-self: center;
    justify-self: center;
  }

  #w-node-_12123ccf-0d84-a8e8-c149-81a27f1ea2b4-edd402ea {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_12123ccf-0d84-a8e8-c149-81a27f1ea2b6-edd402ea {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_12123ccf-0d84-a8e8-c149-81a27f1ea2d1-edd402ea {
    justify-self: center;
  }

  #w-node-_6075dca3-5146-f7db-6e67-a6b3877b6c3f-edd402ea {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_6075dca3-5146-f7db-6e67-a6b3877b6c40-edd402ea {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: center;
  }

  #w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e7c-edd402ea {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: center;
  }

  #w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e8d-edd402ea {
    order: -9999;
    grid-area: 4 / 2 / 5 / 3;
    align-self: auto;
    justify-self: auto;
  }

  #w-node-c9a8928d-4dbb-6214-a579-1c2d4d459e9f-edd402ea {
    grid-area: 5 / 2 / 6 / 3;
  }
}


