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

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

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

:root {
  --black: black;
  --white: white;
  --light-grey: #f4f4f4;
  --seashell: #faf3f0;
  --dark-salmon: #f0988c;
  --antique-white: #f4e5d0;
  --brown: #2a1816;
  --swisslife: #d72034;
}

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

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

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

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

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

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

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

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

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

body {
  color: var(--black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Spectral, Georgia, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Spectral, Georgia, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

p {
  margin-bottom: 0;
  font-family: Spectral, Georgia, sans-serif;
}

a {
  border-color: var(--black);
  color: var(--black);
  font-family: Spectral, Georgia, sans-serif;
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

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

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

strong {
  font-family: Spectral, Georgia, sans-serif;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.show {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

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

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

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

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

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

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

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

.hide {
  display: none;
}

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

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

.text-style-link {
  text-decoration: underline;
}

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

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

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-family: Playfair Display;
}

.text-rich-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-family: Playfair Display;
}

.text-rich-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: Playfair Display;
}

.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  font-family: Playfair Display;
}

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

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

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

.text-rich-text a {
  text-decoration: underline;
}

.text-rich-text figcaption {
  opacity: .8;
  text-align: left;
  border-left: 2px solid #000;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

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

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

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

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

.page-wrapper {
  font-family: Spectral, Georgia, sans-serif;
}

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

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

.container-large.padding-bottom.padding-xlarge {
  border-bottom: 1px solid #0000004d;
}

.container-large.padding-bottom.padding-xlarge.no-bottom-border {
  border-bottom-style: none;
}

.container-large._100rem {
  max-width: 100rem;
}

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

.background-color-black {
  background-color: var(--black);
  color: #f5f5f5;
}

.rl-styleguide_classes {
  display: none;
}

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

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

.page-padding {
  padding-left: 5%;
  padding-right: 5%;
  font-family: Manrope;
}

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

.show-tablet {
  display: none;
}

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

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

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

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

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

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

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

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

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

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

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

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

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

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

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

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

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

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

.margin-top, .margin-top.margin-custom1, .margin-top.margin-huge, .margin-top.margin-small, .margin-top.margin-tiny, .margin-top.margin-custom3, .margin-top.margin-medium, .margin-top.margin-xxsmall, .margin-top.margin-xxhuge, .margin-top.margin-custom2, .margin-top.margin-xsmall, .margin-top.margin-large, .margin-top.margin-xxlarge, .margin-top.margin-xlarge, .margin-top.margin-0, .margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

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

.margin-bottom.margin-xsmall {
  text-align: left;
}

.margin-bottom.margin-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-custom3, .margin-bottom.margin-custom1, .margin-bottom.margin-tiny, .margin-bottom.margin-small, .margin-bottom.margin-large, .margin-bottom.margin-0, .margin-bottom.margin-xlarge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-huge, .margin-bottom.margin-xxsmall, .margin-bottom.margin-custom2, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left, .margin-left.margin-tiny, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-small, .margin-left.margin-xsmall, .margin-left.margin-large, .margin-left.margin-huge, .margin-left.margin-xlarge, .margin-left.margin-custom3, .margin-left.margin-xxsmall, .margin-left.margin-custom1, .margin-left.margin-custom2, .margin-left.margin-xhuge, .margin-left.margin-xxhuge, .margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right, .margin-right.margin-huge, .margin-right.margin-xsmall, .margin-right.margin-xxhuge, .margin-right.margin-small, .margin-right.margin-medium, .margin-right.margin-xlarge, .margin-right.margin-custom3, .margin-right.margin-custom2, .margin-right.margin-xxsmall, .margin-right.margin-xhuge, .margin-right.margin-custom1, .margin-right.margin-large, .margin-right.margin-0, .margin-right.margin-xxlarge, .margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical, .margin-vertical.margin-medium, .margin-vertical.margin-xlarge, .margin-vertical.margin-xxsmall, .margin-vertical.margin-xxlarge, .margin-vertical.margin-huge, .margin-vertical.margin-0, .margin-vertical.margin-xxhuge, .margin-vertical.margin-tiny, .margin-vertical.margin-xsmall, .margin-vertical.margin-custom1, .margin-vertical.margin-small, .margin-vertical.margin-large, .margin-vertical.margin-xhuge, .margin-vertical.margin-custom2, .margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal, .margin-horizontal.margin-medium, .margin-horizontal.margin-tiny, .margin-horizontal.margin-custom3, .margin-horizontal.margin-0, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-huge, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-custom1, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-large, .margin-horizontal.margin-custom2, .margin-horizontal.margin-small, .margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top, .padding-top.padding-xhuge, .padding-top.padding-xxhuge, .padding-top.padding-0, .padding-top.padding-large, .padding-top.padding-custom2, .padding-top.padding-xlarge, .padding-top.padding-huge, .padding-top.padding-xxsmall, .padding-top.padding-custom3, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-xxlarge, .padding-top.padding-small, .padding-top.padding-xsmall, .padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-medium {
  padding-top: 0;
}

.padding-bottom, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xxhuge, .padding-bottom.padding-large, .padding-bottom.padding-xhuge, .padding-bottom.padding-custom2, .padding-bottom.padding-xxsmall, .padding-bottom.padding-xxlarge, .padding-bottom.padding-custom3, .padding-bottom.padding-custom1, .padding-bottom.padding-xsmall, .padding-bottom.padding-huge, .padding-bottom.padding-tiny, .padding-bottom.padding-medium, .padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left, .padding-left.padding-xhuge, .padding-left.padding-xlarge, .padding-left.padding-0, .padding-left.padding-small, .padding-left.padding-xsmall, .padding-left.padding-medium, .padding-left.padding-xxhuge, .padding-left.padding-huge, .padding-left.padding-custom1, .padding-left.padding-tiny, .padding-left.padding-xxsmall, .padding-left.padding-custom3, .padding-left.padding-custom2, .padding-left.padding-xxlarge, .padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right, .padding-right.padding-xxhuge, .padding-right.padding-custom2, .padding-right.padding-large, .padding-right.padding-xlarge, .padding-right.padding-tiny, .padding-right.padding-custom3, .padding-right.padding-custom1, .padding-right.padding-xsmall, .padding-right.padding-xxlarge, .padding-right.padding-xxsmall, .padding-right.padding-medium, .padding-right.padding-xhuge, .padding-right.padding-huge, .padding-right.padding-0, .padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

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

.padding-vertical.padding-large {
  align-self: flex-end;
  padding-left: 0;
  padding-right: 0;
}

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

.padding-vertical.padding-medium {
  align-self: flex-end;
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-tiny, .padding-vertical.padding-xxlarge, .padding-vertical.padding-custom1, .padding-vertical.padding-xsmall, .padding-vertical.padding-xhuge, .padding-vertical.padding-xlarge, .padding-vertical.padding-custom2, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xhuge {
  align-self: flex-end;
}

.padding-vertical.padding-xhuge.nopadding {
  padding-top: 0;
}

.padding-vertical.padding-xxlarge.lesspadding {
  padding-top: 2rem;
}

.padding-horizontal, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-0, .padding-horizontal.padding-custom3, .padding-horizontal.padding-huge, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-medium, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-large, .padding-horizontal.padding-xhuge, .padding-horizontal.padding-custom1, .padding-horizontal.padding-tiny, .padding-horizontal.padding-custom2, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-small, .padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

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

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

.text-size-medium.text-lineheight-tall {
  font-family: Spectral, Georgia, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

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

.form-checkbox-label {
  margin-bottom: 0;
}

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

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

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

.heading-xxlarge {
  font-family: Playfair Display;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.form-radio-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

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

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

.styleguide_icons-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.heading-medium {
  font-family: Playfair Display;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.heading-large {
  font-family: Playfair Display;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.image-wrapper-3-2 {
  width: 100%;
  padding-top: 66.66%;
  position: relative;
}

.button {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button.is-alternate {
  border-color: var(--white);
  background-color: var(--white);
  color: #000;
  font-weight: 400;
}

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

.button.with-icon {
  grid-column-gap: .75rem;
  align-items: center;
  display: flex;
}

.button.is-navbar2-button {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.form-input {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: #0009;
}

.form-input.is-select-input {
  background-color: #fff;
  background-image: none;
}

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

.background-color-peach {
  background-color: #f5dfd1;
}

.form-checkbox-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

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

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

.heading-xsmall {
  font-family: Playfair Display;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.image-wrapper-4-3 {
  width: 100%;
  padding-top: 75%;
  position: relative;
}

.button-secondary {
  border: 2px solid var(--black);
  color: var(--black);
  text-align: center;
  background-color: #0000;
  padding: .75rem 1.5rem;
  font-weight: 700;
}

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

.button-secondary.is-alternate {
  border-width: 1px;
  border-color: var(--white);
  color: var(--white);
  font-weight: 400;
}

.button-secondary.with-icon {
  grid-column-gap: .75rem;
  align-items: center;
  display: flex;
}

.heading-small {
  font-family: Playfair Display;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.form-field-wrapper {
  position: relative;
}

.image-wrapper_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-wrapper-16-9 {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

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

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

.image-wrapper-1-1 {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

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

.heading-xlarge {
  text-align: left;
  font-family: Spectral, Georgia, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
}

.heading-xlarge.extra-height {
  font-size: 3.4rem;
}

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

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

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

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

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

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

.rl-styleguide-message-delete-this {
  text-align: center;
  background-color: #f1f0ee;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.rl-styleguide-message-wrapper {
  text-align: left;
  background-color: #e4e2df;
  border-radius: 16px;
  padding: 2.5rem;
}

.rl-styleguide-message-fixed {
  z-index: 99;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.form-radio-label {
  margin-bottom: 0;
}

.margin-top-auto {
  margin-top: auto;
}

.text-lineheight-normal {
  line-height: 1.5;
}

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

.rl-styleguide_class-sample-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.shadow-large {
  box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #10182808;
}

.rl-styleguide_tutorial-callout {
  grid-column-gap: 2rem;
  background-color: #fff;
  border: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding: .75rem .75rem .75rem 1rem;
  display: flex;
}

.rl-styleguide_callout-link-wrapper {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.text-lineheight-xshort {
  line-height: 1.2;
}

.rl-styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: .25rem .5rem;
  position: sticky;
  top: 0;
}

.text-lineheight-xtall {
  line-height: 2;
}

.icon-medium {
  height: 3rem;
}

.text-lineheight-none {
  line-height: 1;
}

.rl-styleguide_class-label {
  color: #fff;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  border-radius: 2px;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_class-label.html-tags {
  background-color: #be4aa5;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #10182824;
}

.text-letterspacing-wide {
  letter-spacing: .025em;
}

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

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #1018282e;
}

.styleguide_color-sample {
  padding: 8rem 1.5rem 1.25rem;
}

.styleguide_color-sample.is-lightgrey {
  background-color: #f4f4f4;
}

.styleguide_color-sample.is-black {
  color: #2b1a18;
  background-color: #000;
}

.styleguide_color-sample.is-white {
  background-color: #fff;
}

.text-lineheight-short {
  line-height: 1.3;
}

.shadow-xsmall {
  box-shadow: 0 1px 3px #1018281a, 0 1px 2px #1018280f;
}

.shadow-xxsmall {
  box-shadow: 0 1px 2px #1018280d;
}

.icon-large {
  height: 5rem;
}

.button-tertiary {
  background-color: var(--light-grey);
  color: var(--black);
  text-align: center;
  border: 1px solid #0000;
  padding: .75rem 1.5rem;
}

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

.button-tertiary.is-alternate {
  color: #fff;
  background-color: #464646;
  border-color: #464646;
}

.button-tertiary.with-icon {
  grid-column-gap: .75rem;
  align-items: center;
  display: flex;
}

.rl-styleguide_paste-text {
  color: #00000080;
  text-align: center;
  border: 1px dashed #00000026;
  padding: 1rem;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
  font-family: Manrope;
}

.button-link {
  color: var(--black);
  background-color: #0000;
  align-items: center;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.button-link.is-alternate {
  color: #fff;
}

.button-link.with-icon {
  grid-column-gap: .5rem;
}

.icon-xsmall {
  height: 1.5rem;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #10182808;
}

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

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

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

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

.icon-xxsmall {
  height: 1rem;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.text-lineheight-tall {
  line-height: 1.7;
}

.icon-small {
  height: 2rem;
}

.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: sticky;
  top: 2rem;
}

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

.rl-styleguide_callout-link {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  justify-content: space-between;
  align-items: center;
  padding: 1px;
  display: flex;
}

.rl-styleguide_shadow-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 8rem;
  padding: 1rem;
  display: flex;
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-letterspacing-xtight {
  letter-spacing: -.03em;
}

.text-letterspacing-normal {
  letter-spacing: 0;
}

.text-letterspacing-xwide {
  letter-spacing: .05em;
}

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

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.icon-xlarge {
  height: 6.5rem;
}

.text-letterspacing-tight {
  letter-spacing: -.015em;
}

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

.shadow-small {
  box-shadow: 0 4px 8px -2px #1018281a, 0 2px 4px -2px #1018280f;
}

.rl-styleguide_extension {
  display: none;
}

.with-icon {
  grid-column-gap: .75rem;
  align-items: center;
  display: flex;
}

.rl-styleguide_class-label-2 {
  color: var(--white);
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  border-radius: 2px;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_color-sample {
  padding: 8rem 1rem 1rem;
}

.rl-styleguide_color-sample.is-red900 {
  background-color: #7a271a;
}

.rl-styleguide_color-sample.is-red800 {
  background-color: #912018;
}

.rl-styleguide_color-sample.is-red400 {
  background-color: #f97066;
}

.rl-styleguide_color-sample.is-red200 {
  background-color: #fecdca;
}

.rl-styleguide_color-sample.is-seashell {
  background-color: var(--seashell);
}

.rl-styleguide_color-sample.is-dark-salmon {
  background-color: var(--dark-salmon);
}

.rl-styleguide_color-sample.is-red600 {
  background-color: #d92d20;
}

.rl-styleguide_color-sample.is-red500 {
  background-color: #f04438;
}

.rl-styleguide_color-sample.is-antique-white {
  background-color: var(--antique-white);
}

.rl-styleguide_color-sample.is-red300 {
  background-color: #fda29b;
}

.rl-styleguide_color-sample.is-red700 {
  background-color: #b42318;
}

.rl-styleguide_color-sample-list {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: auto;
  grid-auto-flow: row;
}

.background-color-salmon {
  background-color: var(--dark-salmon);
  color: #f5f5f5;
}

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

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

.heading, .heading-2, .heading-2.heading-large {
  font-family: Spectral, Georgia, sans-serif;
}

.heading-3, .heading-4, .heading-5, .heading-6 {
  font-family: Playfair Display;
}

.navbar2_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: Manrope;
  font-size: 1rem;
  font-weight: 600;
  display: grid;
}

.navbar2_menu-button {
  padding: 0;
}

.dropdown-icon {
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1rem;
}

.navbar2_dropdwn-toggle {
  padding: .5rem 2.5rem .5rem 1rem;
}

.navbar2_dropdown-list.w--open {
  background-color: var(--white);
  border: 1px solid #000;
  padding: .5rem;
  position: absolute;
}

.navbar {
  background-color: var(--black);
  border-bottom: 1px #000;
  align-items: center;
  height: auto;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: sticky;
  top: 0;
}

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

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

.navbar2_dropdown-link {
  padding: .5rem 1rem;
}

.navbar2_dropdown-link.w--current {
  color: var(--black);
}

.navbar2_link {
  color: var(--white);
  padding: .5rem 1rem;
  font-weight: 500;
}

.navbar2_link.w--current {
  color: var(--antique-white);
}

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

.page-padding-2 {
  padding-top: 2em;
  padding-left: 5%;
  padding-right: 5%;
}

.header1_image-wrapper {
  margin-bottom: -112px;
  margin-right: -200px;
}

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

.button-row.is-button-row-center {
  justify-content: center;
}

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

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

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

.header_content-left {
  font-family: Spectral, Georgia, sans-serif;
}

.header_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;
  display: grid;
}

.callout_component {
  flex-direction: column;
  height: 100vh;
  min-height: 100vh;
  display: flex;
}

.callout_component.background-color-seashell {
  background-color: var(--seashell);
  height: auto;
  min-height: 0;
}

.callout_component.background-color-seashell.minh0 {
  min-height: 0;
}

.image-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.image-overlay-layer.hide {
  display: none;
}

.header_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.header_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section-callout {
  background-color: var(--seashell);
  margin-bottom: 0;
  font-family: Spectral, Georgia, sans-serif;
}

.header_image-wrapper {
  background-image: url('../images/DSC01200-min_1.avif');
  background-position: 50% 33%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  align-self: stretch;
  min-height: 800px;
  position: relative;
}

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

.layout227_item {
  text-align: left;
  flex-direction: column;
  align-items: center;
  width: 80%;
  display: flex;
}

.layout227_component {
  grid-column-gap: 0rem;
  grid-row-gap: 4rem;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.gallery20_arrow {
  border: 1px solid var(--black);
  background-color: var(--seashell);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.gallery20_arrow.left {
  background-color: var(--seashell);
  right: 4rem;
}

.gallery20_slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 5rem;
}

.section-our-services {
  overflow: hidden;
}

.gallery20_image-wrapper {
  background-image: url('../images/image-1.jpg');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.gallery20_image {
  object-fit: cover;
  background-image: url('../images/image-1.jpg');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.gallery20_slide {
  padding-right: 2rem;
}

.gallery20_mask {
  overflow: visible;
}

.layout1_image-wrapper {
  margin-right: -62px;
  overflow: hidden;
}

.layout1_component {
  grid-column-gap: 5.5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.paragraph {
  text-align: left;
}

.header-callout {
  flex-direction: column;
  height: 100vh;
  min-height: 100vh;
  display: flex;
}

.header-callout.background-color-seashell {
  min-height: 130vh;
}

.header-callout.background-color-peach {
  background-color: var(--antique-white);
  min-height: 140vh;
}

.callout-bg {
  text-align: justify;
  background-image: url('../images/DSC01427-min_1.avif');
  background-position: 50%;
  background-size: cover;
  flex: 1;
  align-self: stretch;
  position: relative;
}

.button-secondary-2 {
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  background-color: #0000;
  padding: .75rem 1.5rem;
}

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

.button-2 {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-2.is-navbar2-button {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.section-cta {
  position: relative;
}

.section-cta.background-color-brown {
  background-color: var(--black);
}

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

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

.button-row-right.is-button-row-center {
  justify-content: center;
}

.article-title {
  padding-left: 5%;
  padding-right: 5%;
}

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

.service-img-test {
  object-fit: cover;
  background-image: url('../images/image-1.jpg');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.cta4_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.header5_background-image {
  object-fit: cover;
  background-image: url('../images/bild-5_1.avif');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.service-1 {
  background-image: url('../images/bild-1_1.avif');
  background-position: 0 0;
  background-size: cover;
  position: relative;
}

.header-100vh {
  align-items: center;
  min-height: 100vh;
  max-height: 60rem;
  display: flex;
}

.header-80vh {
  align-items: center;
  min-height: 80vh;
  max-height: 60rem;
  display: flex;
}

.service-2 {
  background-image: url('../images/DSC01200-min_1.avif');
  background-position: 0 0;
  background-size: cover;
  position: relative;
}

.service-3 {
  background-image: url('../images/bild-5_1.avif');
  background-position: 0 0;
  background-size: cover;
  position: relative;
}

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

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

.footer_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer_link {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

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

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

.footer_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;
  place-items: start;
  display: grid;
}

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

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

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

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

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

.footer_legal-link {
  color: var(--white);
  font-size: .875rem;
}

.footer {
  font-family: Manrope;
}

.navbar2_component {
  background-color: var(--white);
  border-bottom: 1px solid #000;
  align-items: center;
  height: auto;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.navbar2_component.background-color-salmon {
  background-color: var(--dark-salmon);
  border-bottom-style: none;
}

.navbar2_menu-2 {
  align-items: center;
}

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

.background-color-brown {
  background-color: var(--brown);
  color: #f5f5f5;
}

.quote-over-photo {
  color: #fff;
  justify-content: space-between;
  align-self: auto;
  align-items: flex-end;
  width: 100%;
  padding: 42px;
  display: flex;
  position: absolute;
  bottom: 0;
}

.section {
  perspective: 200px;
  background-color: #fff;
  padding-top: 112px;
  padding-bottom: 112px;
}

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

.section.align-content-center.hero-section {
  background-color: #d4e2e4;
  min-height: 780px;
}

.section.align-content-center.hero-section.mobile-bg-white {
  background-color: #0000;
}

.section.align-content-center.hero-section.mobile-bg-white.offset-bg {
  background-color: #f1f5f6;
}

.section.align-content-center.background-color-black {
  background-color: var(--black);
}

.section.align-content-center.background-color-salmon {
  background-color: var(--dark-salmon);
}

.section.bg-offset {
  background-color: #f1f5f6;
}

.quote-with-photo {
  display: flex;
  position: relative;
}

.form-error {
  color: #f8f6f2;
  background-color: #be4141;
  border-radius: 7px;
  margin-top: 14px;
  padding: 7px 14px;
  font-size: 14px;
  line-height: 20px;
}

.section-hero {
  background-color: #f1f5f6;
}

.section-hero.background-color-salmon {
  background-color: var(--dark-salmon);
}

.section-hero.background-color-black {
  background-color: var(--black);
}

.fine-print-text {
  font-size: 14px;
  line-height: 20px;
}

.fine-print-text.input-hint-text {
  margin-top: 7px;
}

.scrim {
  background-image: linear-gradient(#0000, #000000b3);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
}

.handwriting-text {
  color: #232426;
  font-size: 42px;
  line-height: 49px;
}

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

.handwriting-text.text-white.large-text {
  letter-spacing: 0;
  font-family: Spectral, Georgia, sans-serif;
  font-size: 1.2em;
  line-height: 1;
}

.form-block-2 {
  margin-bottom: 0;
}

.main-container {
  width: 100%;
  max-width: 1272px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.horizontal-form {
  margin-bottom: 0;
  display: flex;
}

.form-input-2 {
  border: 2px solid #232426;
  border-radius: 7px;
  min-height: 56px;
  margin-bottom: 0;
  padding: 14px 21px;
  font-size: 16px;
  line-height: 24px;
  transition: box-shadow .2s;
  box-shadow: 1px 1px 0 2px #1110;
}

.form-input-2:focus {
  border-color: #232426;
  box-shadow: 1px 1px 0 2px #11111140;
}

.form-input-2.adjacent-to-button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  min-height: 60px;
}

.sub-heading-text {
  color: #232426;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 700;
}

.grid-halves-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1680px;
  min-height: 40em;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

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

.container-large-2.reduced-width {
  max-width: 680px;
}

.container {
  width: 100%;
  max-width: 580px;
}

.container.reduced-width {
  max-width: 474px;
}

.text-span {
  color: #295b76;
}

.large-text {
  letter-spacing: -.01em;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1;
}

.large-text.quote-over-photo-text {
  max-width: 50%;
  font-family: Spectral, Georgia, sans-serif;
  font-size: 1.2em;
  line-height: 1;
}

.button-3 {
  color: #232426;
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: #fdf671;
  border-radius: 7px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  transition: box-shadow .2s;
  box-shadow: inset 0 0 0 200px #0000;
}

.button-3:hover {
  box-shadow: inset 0 0 0 200px #0000001a;
}

.button-3.adjacent-to-input {
  color: #232426;
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: #fdf671;
  border: 0 #000;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 15px;
  font-weight: 600;
}

.button-3.adjacent-to-input.demo-button-border {
  border-style: solid solid solid none;
  border-width: 2px;
}

.extra-large-text {
  color: #232426;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.extra-large-text.margin-bottom-hero {
  margin-bottom: 40px;
}

.form-success {
  background-color: #78d64f;
  border-radius: 7px;
  padding: 14px;
  font-size: 14px;
  line-height: 20px;
}

.heading-8 {
  font-size: 66px;
  line-height: 70px;
}

.metric-grid-halves {
  grid-column-gap: 28px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.grid-halves {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  place-items: center;
}

.arrow-link-icon {
  margin-left: 5px;
}

.action-row {
  margin-top: 28px;
  margin-left: auto;
  margin-right: auto;
}

.action-row.justify-content-left.align-center {
  align-items: center;
}

.arrow-link {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.arrow-link.adjacent-to-button {
  margin-left: 0;
}

.arrow-link.adjacent-to-button.left-margin-20 {
  margin-left: 20px;
}

.small-text-4 {
  text-align: center;
  align-self: center;
  font-size: 16px;
  line-height: 24px;
}

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

.text-block-33 {
  font-weight: 600;
}

.arrow-link-underline-wrapper {
  height: 2px;
  position: relative;
  overflow: hidden;
}

.bordered-metric-2 {
  border-left: 1px solid #1113;
  padding-left: 28px;
}

.arrow-link-underline {
  background-color: #232426;
  width: 0%;
  height: 2px;
}

.text-block-7 {
  color: #232426;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 14px;
}

.large-heading {
  color: #232426;
  letter-spacing: -.01em;
  margin-bottom: 21px;
  font-size: 54px;
  font-weight: 600;
  line-height: 60px;
}

.padded-metric {
  padding-top: 14px;
  padding-bottom: 14px;
}

.metric-heading {
  margin-bottom: 7px;
}

.arrow-link-top {
  align-items: center;
  display: flex;
}

.footer1_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-designcomet_credit-text {
  padding-left: 4em;
  font-family: Spectral, Georgia, sans-serif;
  font-size: .875rem;
}

.link-2 {
  color: #faf4ef;
  font-family: Open Sans, sans-serif;
  text-decoration: none;
}

.footer1_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  color: #fff;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.footer1_legal-link {
  color: #fff;
  font-size: .875rem;
}

.bold-text {
  color: var(--brown);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(203deg, #f39323, #e94d63 52%, #5e54fc);
  -webkit-background-clip: text;
  background-clip: text;
}

.logoplatzhalter {
  color: var(--white);
}

.list {
  padding-left: 0;
  list-style-type: none;
}

.team-intro-wrapper {
  justify-content: center;
  align-items: flex-start;
  max-width: 110em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.team-images-wrapper {
  justify-content: space-between;
  width: 100%;
  padding-top: 10em;
  display: flex;
}

.team-text-wrapper {
  grid-row-gap: 1em;
  color: #ff3c3a;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  max-width: 35em;
  height: 100%;
  position: absolute;
}

.team-member-wrapper {
  border-radius: 999em;
  width: 10em;
  height: 10em;
  font-size: 1.3em;
  position: relative;
  box-shadow: 0 44px 5.2em #0000004f;
}

.team-member-wrapper.is-medium {
  font-size: .8em;
}

.team-member-wrapper.is-small {
  font-size: .7em;
}

.text-hide {
  overflow: hidden;
}

.team-member-image {
  object-fit: cover;
  background-image: url('../images/bild-10_1.avif');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 999em;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.team-member-image._2nd {
  background-image: url('../images/bild-12_1.avif');
}

.team-member-image._3rd {
  background-image: url('../images/bild-11_1.avif');
}

.team-member-image._4th {
  background-image: url('../images/bild-13_1.avif');
}

.team-member-image._5th {
  background-image: url('../images/bild-15_1.avif');
}

.team-images-column {
  grid-row-gap: 6em;
  flex-direction: column;
  width: 100%;
  max-width: 35%;
  padding-left: 4.5em;
  padding-right: 4.5em;
  display: flex;
}

.team-intro-title {
  color: var(--swisslife);
  letter-spacing: .01em;
  font-size: 6em;
  font-weight: 400;
  line-height: 1;
}

.team-text-sticky {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: sticky;
  top: 0;
}

.copy-medium {
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.2;
}

.team-member-item.is-center {
  align-self: center;
}

.team-member-item.is-right {
  align-self: flex-end;
}

.team-title-wrapper {
  margin-bottom: .6em;
}

.m-nav-toggle-description {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1;
}

.m-nav-link-item {
  text-align: center;
}

.m-nav-link-item.last-item {
  padding-bottom: 135px;
}

.m-nav-link-item.first-item {
  padding-top: 65px;
}

.m-nav-list {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: block;
}

.nav-overlay-gradient-bottom {
  z-index: 4;
  background-image: linear-gradient(to top, #242423 15%, #24242300);
  height: 130px;
  position: absolute;
  bottom: 0;
  left: 0%;
  right: 0%;
}

.m-nav-toggle-bg {
  z-index: 1;
  background-image: linear-gradient(#eee0, #fff 98%);
  height: 125px;
  position: fixed;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.m-nav-toggle-inner {
  box-shadow: none;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  background-color: #000;
  border-radius: 99em;
  justify-content: center;
  align-items: center;
  padding: 17px 25px;
  transition: transform .25s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
}

.m-nav-toggle-inner:active {
  transform: scale(.88);
}

.m-nav-toggle-inner.close {
  padding: 18px;
}

.nav-overlay-gradient-top {
  z-index: 4;
  background-image: linear-gradient(#242423 15%, #24242300);
  height: 65px;
  position: absolute;
  inset: 0% 0% auto;
}

.mobile-nav {
  display: none;
  position: relative;
}

.m-nav-overlay {
  z-index: 95;
  background-color: #242423;
  align-items: flex-end;
  width: 100%;
  height: 90%;
  display: none;
  position: fixed;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.m-nav-content {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: auto;
}

.m-nav-close-icon {
  width: 23px;
  padding: 1px;
}

.m-nav-toggle-open {
  z-index: 1;
  text-decoration: none;
  display: block;
  position: absolute;
  bottom: 55px;
}

.m-nav-toggle {
  z-index: 99;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.m-nav-link {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 54px;
  text-decoration: none;
}

.m-nav-toggle-close {
  z-index: 1;
  text-decoration: none;
  display: none;
  position: absolute;
  bottom: 55px;
}

.home-hero-subheading {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 700;
  line-height: 110%;
}

.page-padding-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

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

.margin-bottom-2.margin-large {
  font-family: Spectral, Georgia, sans-serif;
}

.marquee-secondary-inner {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

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

.button-4 {
  color: #000;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 0;
  justify-content: center;
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: border .3s;
  position: relative;
  overflow: hidden;
}

.button-4:hover, .button-4:active {
  color: #000;
  background-color: #0000;
  border-color: #000;
}

.button-4.secondary, .button-4.secondary:hover, .button-4.secondary:active {
  background-color: var(--swisslife);
  color: #000;
  border-color: #0000;
}

.clip {
  overflow: visible;
}

.heading-medium-2 {
  font-size: 5rem;
  font-weight: 500;
  line-height: 100%;
}

.heading-medium-2.text-uppercase {
  letter-spacing: 2px;
  font-family: Spectral, Georgia, sans-serif;
  font-weight: 500;
  overflow: visible;
}

.section-marquee-secondary {
  background-color: var(--swisslife);
  color: #000;
  overflow: hidden;
}

.button-line-right {
  background-color: #fff;
  width: 0;
  height: 1px;
}

.marquee-secondary-text {
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Spectral, Georgia, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
}

.button-inner-text {
  color: #fff;
  justify-content: center;
  align-items: center;
}

.button-line-left {
  background-color: #fff;
  width: 20px;
  height: 1px;
}

.section-cta-contact {
  color: #fff;
  background-color: #000;
  border-bottom: 1px #8f8585;
  padding-top: 0;
  position: relative;
}

.button-inner {
  z-index: 6;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.padding-vertical-2.padding-huge {
  padding-bottom: 2rem;
}

.nav {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.footer-bottom {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: block;
}

.nav-item-line {
  background-color: #000;
  width: 0%;
  height: 1px;
}

.nav-item-line.inverse {
  background-color: #fff;
}

.footerblack {
  z-index: 0;
  color: #fff;
  background-color: #000;
  margin-top: -1px;
  position: relative;
}

.heading-h6 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
}

.heading-h6:hover {
  text-decoration: none;
}

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

.button-5 {
  color: #000;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 0;
  justify-content: center;
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: border .3s;
  position: relative;
  overflow: hidden;
}

.button-5:hover, .button-5:active {
  color: #000;
  background-color: #0000;
  border-color: #000;
}

.button-5.secondary, .button-5.secondary:hover, .button-5.secondary:active {
  color: #000;
  background-color: #d2f65a;
  border-color: #0000;
}

.button-5.primary, .button-5.primary:hover, .button-5.primary:active {
  color: #fff;
  background-color: #000;
  border-color: #0000;
}

.footer-grid-right-inner {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.padding-bottom-2.padding-large {
  padding-bottom: 2rem;
}

.nav-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.nav-item:hover {
  color: #000;
}

.nav-item.inverse {
  color: #ffffffb3;
}

.nav-item.inverse:hover {
  color: #fff;
}

.nav-item.inverse.padding {
  color: #fff;
  padding-left: .5em;
  padding-right: .5em;
}

.nav-item.inverse.padding.w--current {
  color: #ffffff80;
}

.footer-grid-left {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

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

.text-meta {
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.text-style-link-2, .text-style-link-2:hover {
  text-decoration: underline;
}

.text-style-link-2.inverse {
  color: #fff;
}

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

.footer-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  font-family: Spectral, Georgia, sans-serif;
  display: grid;
}

.subnav {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.nav-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.footer-bottom-2 {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-meta-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.form-message-error-2 {
  text-align: center;
  background-color: #f2ff93;
  border-radius: 12px;
  margin-top: 1.5rem;
  padding: 1rem;
}

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

.heading-large-2 {
  font-size: 7rem;
  font-weight: 500;
  line-height: 100%;
}

.heading-large-2.text-uppercase {
  letter-spacing: 4px;
  margin-bottom: .5rem;
  font-size: 4em;
  font-weight: 700;
}

.footer-2 {
  z-index: 0;
  color: #fff;
  background-color: #000;
  margin-top: -1px;
  position: relative;
}

.form-message-success {
  color: var(--white);
  background-color: #006039;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-family: Spectral, Georgia, sans-serif;
}

.navbar-menu-item-line {
  background-color: #000;
  height: 1px;
  position: absolute;
  inset: auto auto -1px 0%;
}

.navbar-menu-item-inner {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: column;
  position: relative;
}

.form_input-text {
  color: #000;
  background-color: #fff;
  border: 2px solid #0808084d;
  border-radius: 2.5rem;
  min-height: 4rem;
  margin-bottom: 0;
  padding: 1rem 1.25rem;
  font-size: 16px;
  line-height: 140%;
  transition: background-color .2s, border .2s;
}

.form_input-text:active, .form_input-text:focus {
  background-color: #f8f8f8;
  border-color: #000;
}

.form_input-text::placeholder {
  color: #000000b3;
}

.form_input-text.is-text-area {
  min-height: 10rem;
}

.main-wrapper-2 {
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: relative;
  box-shadow: 0 0 30px #00000008;
}

.mobile-menu-nav-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mobile-menu-toggle-line._02 {
  margin-top: -1px;
}

.mobile-menu-toggle-line._03 {
  bottom: 0;
}

.navbar-2 {
  z-index: 1000;
}

.mobile-menu-toggle {
  display: none;
}

.contact-hero-grid-right {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-contact-socials {
  z-index: 1;
  background-color: #006039;
}

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

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

.header {
  z-index: 100;
}

.banner-circle-image {
  width: 120px;
}

.footer-grid-left-2 {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.navbar-inner {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  display: grid;
}

.section-contact-hero {
  z-index: 1;
}

.heading-h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
}

.heading-h5.text-uppercase {
  letter-spacing: 1px;
}

.form_row {
  margin-bottom: 1.5rem;
}

.banner-circle-wrapper {
  z-index: 9999;
  justify-content: flex-end;
  max-width: 112.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

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

.navbar-menu-item-link {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #0000;
  align-items: center;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.banner-circle {
  position: absolute;
  bottom: 2rem;
  right: 4rem;
}

.text-meta-line {
  perspective-origin: 50%;
  transform-origin: 50%;
  color: var(--white);
  background-color: #fff;
  width: 24px;
  height: 1px;
}

.contact-hero-grid {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.mobile-menu {
  z-index: 100;
  display: none;
}

.contact-form-wrapper {
  width: 500px;
  margin-bottom: 0;
}

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

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

.heading-h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
}

.heading-h3.text-uppercase {
  color: var(--white);
  letter-spacing: 1px;
}

.datenwrapper {
  font-family: Spectral, Georgia, sans-serif;
}

.paragraph-1 {
  text-align: center;
  justify-content: center;
  align-self: auto;
  align-items: center;
  font-size: .9em;
  line-height: 1.2;
  display: block;
}

.container-2 {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  margin-bottom: 10%;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.step-content-block {
  text-align: left;
  align-self: center;
  position: relative;
}

.img-block {
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40%;
  display: flex;
}

.dot {
  z-index: 3;
  background-color: #eeeff4;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-bottom: -6px;
  position: relative;
}

.step {
  z-index: 2;
  background-color: #fff;
  border-radius: 16px;
  align-items: center;
  padding: 12%;
  font-family: Spectral, Georgia, sans-serif;
  display: flex;
  position: relative;
}

.scoll-wrap {
  flex-direction: column;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 50%;
}

.content-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: sticky;
  top: 0;
}

.bg-shadow {
  z-index: 1;
  border-radius: 16px;
  position: absolute;
  inset: 0%;
  box-shadow: 7px 7px 20px #12121212;
}

.content-wrap {
  justify-content: flex-end;
  width: 40%;
  display: flex;
}

.text-block {
  font-family: Spectral, Georgia, sans-serif;
}

.label {
  color: #006cd0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Spectral, Georgia, sans-serif;
  font-weight: 700;
}

.steps-clone {
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
  display: flex;
  position: relative;
}

.step-block {
  flex-wrap: nowrap;
  place-content: center space-around;
  align-items: center;
  min-height: 60vh;
  margin-top: -1px;
  display: flex;
  position: relative;
}

.scroll-base {
  transform-origin: 50% 0;
  background-color: #eeeff4;
  width: 6px;
  height: 100%;
}

.content {
  margin-top: 24px;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4;
}

.scroll-animate {
  transform-origin: 50% 0;
  background-color: #006cd0;
  width: 6px;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.heading-9 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Spectral, Georgia, sans-serif;
  font-size: 1em;
  font-weight: 700;
  display: flex;
}

.section-2 {
  font-family: Spectral, Georgia, sans-serif;
}

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

.section-teammembers {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 5vw;
  display: flex;
  position: relative;
}

.team-wrapper {
  z-index: 20;
  justify-content: center;
  align-items: stretch;
  width: 100vw;
  min-height: 650px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-wrapper.fixed-width {
  padding-left: 5vw;
  padding-right: 5vw;
}

.team-member-list {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  display: flex;
}

.increased-letter-spacing {
  color: #8a94a6;
  letter-spacing: .18rem;
}

.overlay {
  background-color: #0a101d4d;
  position: absolute;
  inset: 0%;
}

.social-icon-2 {
  max-width: 1rem;
}

.member-name {
  color: #fff;
  font-size: 54px;
}

.member-name.small {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 400;
}

.hover-line {
  background-color: #8a94a6;
  width: 100%;
  height: 100%;
}

.mouse-hover-outline {
  border: 1px solid #ffffff40;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
}

.mouse-hover-wrapper {
  padding: 3.5rem;
  position: relative;
}

.arrow-icon {
  width: 2rem;
  transform: rotate(-45deg);
}

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

.social-link {
  background-color: #ffffff40;
  border: 1px solid #ffffff80;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.member-socials-wrapper {
  z-index: 1;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #0003;
  border-top-left-radius: 1.5em;
  border-top-right-radius: 1.5em;
  justify-content: center;
  align-items: center;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-right: 0;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

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

.member-page-link {
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.member-title {
  color: #8a94a6;
}

.member-header {
  justify-content: center;
  align-items: center;
  min-height: 18.75rem;
  display: flex;
  position: relative;
}

.team-card-vorne {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid #ffffff40;
  flex-direction: column;
  min-width: 25em;
  height: 100%;
  padding: 1rem;
  display: none;
  position: absolute;
  inset: 0%;
}

.member-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 101%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.member-image.three {
  background-image: url('../images/a-cut-cat-soldier-wearing-a-camo-uniform-1.jpg');
  background-position: 100% 0;
  margin-right: 0;
}

.member-image.five {
  background-image: url('../images/steampunk-pikachu.jpg');
  background-position: 0 0;
  width: 101%;
}

.member-image.one {
  background-image: url('../images/full-bodied-portrait.jpg');
}

.member-image.four {
  background-image: url('../images/A-cute-adorable-baby-owl-made-of-crystal-ball-with.jpg');
  background-position: 50% 0;
}

.member-image.six {
  background-image: url('../images/a-cut-cat-soldier-wearing-a-camo-uniform.jpg');
  background-position: 50% 0;
}

.member-image.two {
  background-image: url('../images/Portrait-of-an-owl.jpg');
}

.hover-line-wrapper {
  background-color: #8a94a680;
  height: .5px;
  margin-top: 5px;
}

.team-card-hinten {
  z-index: -1;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  transform-style: preserve-3d;
  border: 1px solid #ffffff40;
  flex-direction: column;
  min-width: 25em;
  height: 100%;
  padding: 1rem;
  display: none;
  position: static;
  inset: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.card-wrapper, .collection-item, .collection-item-2 {
  position: relative;
}

.flipcard-wrapper {
  display: flex;
  position: relative;
}

.flipcard-front {
  backface-visibility: hidden;
  color: #fff;
  background-image: url('../images/card-bg.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 30px;
  min-width: 20em;
  height: 600px;
  padding-top: 3em;
  padding-left: 40px;
  padding-right: 51px;
  position: relative;
  box-shadow: 7px 7px 40px 6px #00000017;
}

.flipcard-title {
  text-transform: none;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  line-height: 1;
}

.flipcard-subtitle {
  max-width: 215px;
  margin-top: .5em;
  font-weight: 700;
  line-height: 21px;
}

.flipcard-more {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.flipcard-back {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-color: #fff;
  border-radius: 30px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 20em;
  height: 600px;
  padding-top: 3em;
  padding-left: 44px;
  padding-right: .8em;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
  box-shadow: 7px 7px 40px 6px #00000017;
}

.flipcard-back-title {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #90ca5a, #d7d65a 50%, #dac355);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 44px;
  line-height: 48px;
}

.flipcard-less {
  z-index: 2;
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.speaker-info {
  max-width: 500px;
  margin-bottom: 36px;
}

.body-display {
  color: #8a94a6;
  line-height: 1.55em;
}

.body-display.large {
  font-size: 18px;
  line-height: 1.6em;
}

.speaker-slide-mask {
  width: 33.33%;
  overflow: visible;
}

.speaker-slider-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.slide-nav {
  display: none;
}

.speaker-slider {
  background-color: #0000;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.slide-arrow {
  width: 18px;
}

.button-6 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.speaker-image-cover {
  z-index: 10;
  opacity: 1;
  cursor: pointer;
  background-image: url('../images/subtle-gradients-background.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 101%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.clip-text {
  overflow: hidden;
}

.clip-text.speaker-headding {
  margin-top: -48px;
  margin-bottom: 36px;
}

.speaker-name {
  z-index: 10;
  color: #fff;
  font-size: 64px;
  line-height: 1;
  position: relative;
}

.slide-image {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 65vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.speakers-hero-wrapper {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.speakers-hero-wrapper.hide {
  display: none;
}

.speaker-arrow {
  background-color: #1e2029;
  border: 1px #ffffff0a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  display: flex;
  inset: auto 5vw 5vw auto;
}

.speaker-arrow.left {
  margin-right: 72px;
  left: auto;
  right: 5vw;
}

.speaker-slide-content {
  z-index: 100;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding-bottom: 36px;
  display: flex;
  position: relative;
}

.icon {
  background-image: url('../images/house-lock-solid.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  margin-right: .25em;
  padding-right: 0;
  display: none;
}

.titel-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.form_col {
  margin-bottom: 10px;
  position: relative;
}

.form_col-2 {
  position: relative;
}

.form_input-checkbox-button-field {
  color: #fff;
  background-color: #242424;
  border: 1px #000;
  border-radius: .4rem;
  align-items: center;
  margin-bottom: 0;
  padding: 1rem 1.6rem 1rem 1.2rem;
  font-family: Georgia, Times, Times New Roman, serif;
  transition: background-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.form_input-checkbox-button {
  outline-offset: -1px;
  background-color: #0000;
  border: 1px #000;
  border-radius: .4rem;
  outline: 1px solid #d1def700;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  transition: all .2s;
  position: absolute;
  inset: 0%;
}

.form_input-checkbox-button:hover {
  outline-color: #d1def733;
}

.form_input-checkbox-button:focus {
  outline-color: #d1def736;
}

.form_input-checkbox-button.w--redirected-checked {
  background-color: #3898ec00;
  background-image: none;
  border-style: none;
}

.form_input-checkbox-button.w--redirected-focus {
  box-shadow: none;
  outline-color: #d1def736;
}

.form_checkbox-input-field {
  margin-bottom: 0;
  padding-left: 2rem;
}

.form_checkbox-input {
  color: #fff;
  border: 1.5px solid #000;
  border-radius: .2rem;
  width: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  min-height: 1.2rem;
  margin-top: .1rem;
  margin-left: -2rem;
  font-size: 1rem;
  transition: border-color .2s;
}

.form_checkbox-input.w--redirected-checked {
  background-color: #006039;
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-size: cover;
  border-color: #d1def700;
}

.background-video {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.form_checkbox-input-label {
  color: #6c7ea3;
  margin-bottom: .25rem;
  font-size: .9rem;
  line-height: 1.5;
}

.form_input-checkbox-button-check-icon {
  opacity: 0;
  justify-content: center;
  align-items: center;
  width: .6rem;
  height: .6rem;
  transition: opacity .3s;
  display: flex;
}

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

.form_input-checkbox-button-label {
  color: #6c7ea3;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
  transition: color .25s;
}

.contact-form_checkbox-wrap {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
}

.form_input-checkbox-button-check-wrap {
  color: #d1def7;
  cursor: pointer;
  background-color: #363e53;
  border: 1px #000;
  border-radius: .2rem;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  position: relative;
}

.hidden-elements {
  display: none;
}

.background-video-w-background-video-w-background-video-atom {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.contact-form_message-title {
  color: #a9ffb8;
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-form_submit-button {
  border: 1px solid var(--swisslife);
  background-color: var(--swisslife);
  color: #fff;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 5rem;
  justify-content: center;
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: border .3s;
  position: relative;
  overflow: hidden;
}

.contact-form_submit-button:hover, .contact-form_submit-button:active {
  color: #000;
  background-color: #0000;
  border-color: #000;
}

.contact-form_fail-message {
  margin-bottom: 2rem;
  padding: 0;
}

.padding-large-2 {
  padding: 1rem 3rem;
}

.contact-form_success-message {
  margin-bottom: 2rem;
  padding: 0;
}

.form_regular-label {
  transform-origin: 0 0;
  color: #6c7ea3;
  margin-bottom: .25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color .2s, transform .2s;
  display: block;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}

.contact-form_wf-block {
  width: 500px;
  margin-bottom: 0;
  display: block;
}

.contact-form_message-inner {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  padding: 1.2rem;
  display: flex;
}

.form_input-text-2 {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  min-height: 4rem;
  margin-bottom: 0;
  padding: 1rem 1.25rem;
  font-size: 16px;
  line-height: 140%;
  transition: background-color .2s, border .2s;
}

.form_input-text-2:active, .form_input-text-2:focus {
  background-color: #f8f8f8;
  border-color: #000;
}

.form_input-text-2::placeholder {
  color: #000000b3;
}

.form_input-text-2.is-text-area {
  min-height: 10rem;
}

.hidden-elements-2 {
  display: none;
}

.margin-small-2 {
  margin: 1rem;
}

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

.form_row-3 {
  color: #000;
  margin-bottom: 1.5rem;
}

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

.form_col-3 {
  margin-bottom: 10px;
  position: relative;
}

.contact-form_wrap-2 {
  display: block;
}

.contact-form_component {
  z-index: 0;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 52rem;
  min-height: 60vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Spectral, Georgia, sans-serif;
  display: flex;
  position: relative;
}

.form_checkbox-input-2 {
  color: #fff;
  border: 1.5px solid #000;
  border-radius: .2rem;
  width: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  min-height: 1.2rem;
  margin-top: .1rem;
  margin-left: -2rem;
  font-size: 1rem;
  transition: border-color .2s;
}

.form_checkbox-input-2.w--redirected-checked {
  background-color: #017cff;
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-size: cover;
  border-color: #d1def700;
}

.form_col-4 {
  position: relative;
}

.form_checkbox-button-title {
  color: #000;
  font-size: 1rem;
  line-height: 1.5;
}

.section-3 {
  z-index: 2;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: relative;
}

.section-3.is-contact {
  margin-top: 6rem;
  padding-top: 0;
  padding-bottom: 0;
  overflow: clip;
}

.is-word {
  transform-origin: 0 100%;
  display: inline-block;
}

.is-word.is-2, .is-word.is-1, .is-word.is-3 {
  font-size: 2em;
}

.is-word.is-1 {
  text-transform: none;
  padding-bottom: 20px;
  font-size: 2em;
}

.icon-16 {
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  width: 1rem;
  display: flex;
}

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

.margin-bottom-40 {
  margin-bottom: 2.5rem;
}

.text-size-eyebrow {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .875rem;
  line-height: 1;
}

.margin-bottom-48 {
  margin-bottom: 3rem;
}

.margin-bottom-16 {
  margin-bottom: 1rem;
}

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

.wrap_flex.is-align-bottom {
  justify-content: space-between;
  align-items: flex-end;
}

.container-large-3 {
  width: 90%;
  max-width: 72.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.max-width-440 {
  width: 100%;
  max-width: 27.5rem;
}

.button-7 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: #080808;
  text-transform: uppercase;
  background-color: #ceff65;
  border-radius: 5rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background-color .45s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-7:hover {
  background-color: #b3e940;
}

.heading-style-h2 {
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.04;
}

.player_visual {
  aspect-ratio: 1;
  border-radius: 3.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.margin-bottom-24 {
  margin-bottom: 1.5rem;
}

.player_list {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: grid;
}

.img-cover {
  z-index: 1;
  object-fit: cover;
  background-image: url('../images/bild-15_1.avif');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.img-cover._2nd {
  background-image: url('../images/bild-10_1.avif');
}

.img-cover._3rd {
  background-image: url('../images/bild-12_1.avif');
}

.img-cover._4th {
  background-image: url('../images/bild-11_1.avif');
}

.img-cover._5th {
  background-image: url('../images/bild-13_1.avif');
}

.player_item {
  flex: 1;
}

.image-absolute {
  background-image: url('../images/bild-5_1.avif');
  background-position: 0%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.form_row-4 {
  color: #000;
  margin-bottom: .125rem;
}

.margin-small-3 {
  margin: 1rem;
}

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

.max-width-440-2 {
  width: 100%;
  max-width: 27.5rem;
}

.contact_visual {
  width: 50%;
  max-height: 100vh;
  position: sticky;
  top: 0;
}

.contact_img {
  object-fit: cover;
  flex: none;
  width: 50vw;
  max-width: none;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact_wrap {
  display: flex;
}

.margin-bottom-24-2 {
  margin-bottom: 1.5rem;
}

.contact-form_submit-button-2 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  background-color: var(--swisslife);
  color: #fff;
  text-transform: uppercase;
  border-radius: 5rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background-color .45s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-form_submit-button-2:hover {
  background-color: var(--swisslife);
}

.heading-style-h1 {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 2.5em;
  font-weight: 400;
  line-height: .9;
  position: relative;
}

.margin-top-64 {
  margin-top: 4rem;
}

.form_input-text-3 {
  color: #080808;
  background-color: #0000;
  border: 1px solid #0808084d;
  border-radius: 2.5rem;
  height: auto;
  min-height: 3.5rem;
  margin-bottom: 0;
  padding: .5rem 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color .4s cubic-bezier(.215, .61, .355, 1), background-color .4s cubic-bezier(.25, .46, .45, .94);
}

.form_input-text-3:hover {
  border-color: #080808;
}

.form_input-text-3:focus {
  background-color: #a9a9a91a;
  border-color: #080808;
}

.form_input-text-3::placeholder {
  color: #08080880;
}

.form_input-text-3.is-text-area {
  border-radius: 1rem;
  height: auto;
  min-height: 11.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: auto;
}

.hidden-elements-3 {
  display: none;
}

.form_regular-label-2 {
  transform-origin: 0 0;
  color: #000;
  margin-bottom: .25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color .2s, transform .2s;
  display: block;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}

.form_regular-label-2.hide-2 {
  display: none;
}

.form_checkbox-input-label-2 {
  color: #fff;
  margin-bottom: .25rem;
  font-size: .9rem;
  line-height: 1.5;
}

.contact_content {
  flex: none;
  width: 50%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-right: 5rem;
}

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

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

.img-cover-2 {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.contact_visual-mask {
  z-index: 2;
  transform-origin: 0%;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(100%);
}

.form_checkbox-button-title-2 {
  color: #000;
  font-size: 1rem;
  line-height: 1.5;
}

.titel {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.content-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: 0 auto;
  grid-template: "."
                 "."
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1500px;
  display: grid;
  position: relative;
}

.content-container.imprint {
  margin: 0 auto 160px;
  display: block;
}

.section-rechtlich {
  color: #000;
  padding-top: 160px;
  padding-bottom: 160px;
}

.rechtliches-text {
  margin-bottom: 17px;
  font-size: 1em;
  line-height: 1.4;
}

.container---new {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  display: block;
  position: relative;
}

.h1-sizing {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2em;
}

.h1-sizing.rechtliches {
  color: #000;
  margin-bottom: .1em;
  font-size: 2em;
  font-weight: 400;
}

.h1-sizing.datenschutz {
  color: #fff;
  margin-bottom: .1em;
  font-size: 70px;
}

.container-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 1200px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 18px;
  display: flex;
  position: relative;
  top: -11px;
}

.container-3.imprint.hidden {
  display: none;
}

.datenschutztitel {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.imprint-link {
  color: #118ab1;
  text-decoration: none;
}

@media screen and (min-width: 1920px) {
  .header_image-wrapper {
    min-height: 80em;
  }

  .callout-bg {
    background-position: 50% 40%;
  }

  .background-video {
    display: block;
  }

  .form_input-text-2 {
    color: #000;
  }

  .hidden-elements-2 {
    display: none;
  }

  .form_row-3 {
    color: #000;
  }

  .section-3.is-contact {
    margin-top: 0;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .form_row-4 {
    color: #000;
  }

  .hidden-elements-3 {
    display: none;
  }
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .show-tablet {
    display: block;
  }

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

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .heading-xxlarge {
    font-size: 3.25rem;
  }

  .heading-medium {
    font-size: 1.75rem;
  }

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

  .heading-xlarge {
    font-size: 2.4rem;
  }

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

  .navbar2_menu-button {
    padding: 0;
  }

  .navbar2_menu-button.w--open {
    background-color: #0000;
  }

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

  .menu-icon2_line-bottom.is-alternate {
    background-color: var(--white);
  }

  .dropdown-icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

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

  .menu-icon2_line-middle.is-alternate {
    background-color: var(--white);
  }

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

  .menu-icon2_line-top.is-alternate {
    background-color: var(--white);
  }

  .navbar2_dropdwn-toggle {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 2rem 1rem 0;
    display: flex;
  }

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

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

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

  .navbar2_menu {
    background-color: var(--antique-white);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom: 1px #000;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    display: flex;
    overflow: auto;
  }

  .navbar2_dropdown-link {
    text-align: center;
    width: auto;
    padding: .75rem 0;
    font-size: 16px;
  }

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

  .navbar2_link {
    text-align: center;
    padding: 1rem 0;
    font-size: 1.125rem;
  }

  .navbar2_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    display: flex;
  }

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

  .header1_image-wrapper {
    overflow: hidden;
  }

  .header1_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    overflow: hidden;
  }

  .layout41_component, .header_content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .layout227_component {
    grid-column-gap: 2rem;
  }

  .layout1_image-wrapper {
    margin-right: -38px;
  }

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

  .header-blog-title {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .image {
    display: inline-block;
  }

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

  .navbar2_menu-2 {
    background-color: var(--antique-white);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    display: flex;
    overflow: auto;
  }

  .navbar2_button-wrapper-2 {
    align-items: center;
  }

  .section.align-content-center.hero-section {
    min-height: auto;
  }

  .grid-halves-section {
    grid-template-columns: 1fr;
  }

  .container-large-2.reduced-width {
    max-width: 580px;
  }

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

  .footer-designcomet_credit-text {
    padding-left: 0;
  }

  .team-intro-wrapper {
    justify-content: flex-end;
  }

  .team-images-wrapper {
    grid-column-gap: 4.75em;
    justify-content: flex-end;
    padding-bottom: 6em;
    padding-left: 45%;
    overflow: hidden;
  }

  .team-text-wrapper {
    text-align: left;
    max-width: 100%;
    padding-top: 9em;
    padding-bottom: 4em;
    left: 6vw;
    right: 6vw;
  }

  .team-images-column {
    grid-row-gap: 7.5em;
    flex: 1;
    margin-right: -.5em;
    padding-left: 0;
    padding-right: 0;
  }

  .team-intro-title {
    font-size: 16vw;
  }

  .team-text-sticky {
    align-items: flex-start;
    min-height: auto;
    top: 5vh;
  }

  .mobile-nav {
    display: block;
  }

  .home-hero-subheading {
    font-size: 3vw;
  }

  .page-padding-3 {
    padding: 0 2rem 6em;
  }

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

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

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

  .footer-bottom {
    flex-direction: column-reverse;
  }

  .footer-grid-right-inner {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

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

  .footer-grid-left {
    justify-content: space-between;
    align-items: center;
  }

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

  .footer-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: grid;
  }

  .footer-bottom-2 {
    flex-direction: column-reverse;
  }

  .mobile-menu-wrapper {
    color: #fff;
    background-color: #000;
    padding: 1.5rem 2rem;
  }

  .heading-large-2 {
    font-size: 5rem;
  }

  .form_input-text {
    width: 100%;
  }

  .mobile-menu-nav-link {
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
  }

  .mobile-menu-nav-link:hover, .mobile-menu-nav-link:active {
    color: #fff;
  }

  .mobile-menu-nav-link:lang(en) {
    padding-top: 0;
  }

  .mobile-menu-toggle-line {
    transform-origin: 100%;
    background-color: #000;
    width: 30px;
    height: 1.5px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    right: 0;
  }

  .mobile-menu-toggle-line._02 {
    top: 50%;
  }

  .mobile-menu-toggle-line._01 {
    top: 0;
  }

  .mobile-menu-toggle {
    cursor: pointer;
    width: 30px;
    height: 20px;
    display: block;
    position: relative;
  }

  .banner-circle-image {
    width: 100px;
  }

  .navbar-inner {
    padding-top: 1.5rem;
  }

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

  .mobile-menu-nav {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    display: flex;
  }

  .banner-circle {
    bottom: 1rem;
    right: 3rem;
  }

  .contact-hero-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .mobile-menu {
    padding-top: 1rem;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
  }

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

  .contact-socials-grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .navbar-menu {
    display: none;
  }

  .zeiten-wrapper {
    justify-content: space-between;
    align-items: center;
  }

  .section-teammembers {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .team-wrapper {
    justify-content: flex-start;
    min-height: 500px;
    overflow: auto;
  }

  .member-name {
    font-size: 48px;
  }

  .team-card-vorne, .team-card-hinten {
    min-width: 23.4em;
  }

  .speaker-info {
    max-width: 470px;
  }

  .speaker-slide-mask {
    width: 65%;
  }

  .clip-text.speaker-headding {
    margin-top: -36px;
    margin-bottom: 24px;
  }

  .speaker-name {
    font-size: 52px;
  }

  .slide-image {
    height: 50vh;
    min-height: 500px;
  }

  .background-video {
    width: 100%;
    min-width: 100%;
  }

  .contact-form_wf-block, .form_input-text-2 {
    width: 100%;
  }

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

  .section-3.is-contact {
    margin-top: 4.5rem;
    padding-top: 2.5rem;
  }

  .margin-bottom-40 {
    margin-bottom: 2.25rem;
  }

  .margin-bottom-48 {
    margin-bottom: 2.75rem;
  }

  .player_visual {
    border-radius: 1.5rem;
  }

  .margin-bottom-24 {
    margin-bottom: 1.25rem;
  }

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

  .contact_visual {
    aspect-ratio: 1;
    width: 100vw;
    margin-left: -5vw;
    position: relative;
    top: auto;
  }

  .contact_img {
    width: 100%;
  }

  .contact_wrap {
    flex-flow: column;
  }

  .margin-bottom-24-2 {
    margin-bottom: 1.25rem;
  }

  .margin-top-64 {
    margin-top: 3.5rem;
  }

  .contact_content {
    width: 100%;
    padding-top: 0;
    padding-right: 0;
  }

  .section-rechtlich {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .container---new {
    padding-left: 40px;
    padding-right: 40px;
  }

  .h1-sizing {
    white-space: nowrap;
    font-size: 70px;
  }

  .h1-sizing.rechtliches {
    white-space: normal;
    font-size: 65px;
  }

  .h1-sizing.datenschutz {
    white-space: normal;
    font-size: 34px;
  }

  .container-3 {
    top: -17px;
  }

  .container-3.imprint {
    margin-top: 35px;
  }

  .imprint-link {
    font-size: 18px;
    line-height: 1;
    display: block;
    overflow: hidden;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

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

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .text-rich-text figure {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

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

  .show-mobile-landscape {
    display: block;
  }

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

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

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

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

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .heading-xlarge {
    font-size: 2.25rem;
  }

  .heading-xlarge.extra-height {
    font-size: 3.2rem;
  }

  .navbar {
    min-height: 4rem;
  }

  .header1_component {
    grid-row-gap: 3rem;
  }

  .layout41_component {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

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

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

  .heading-small-2 {
    font-size: 1.25rem;
  }

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

  .gallery20_arrow.left {
    right: 3.5rem;
  }

  .gallery20_image-wrapper {
    background-image: url('../images/image-1.jpg');
    background-position: 0 0;
    background-size: auto;
  }

  .gallery20_slide {
    padding-right: 1.5rem;
  }

  .layout1_image-wrapper {
    margin-right: 0;
  }

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

  .header-callout {
    height: auto;
    max-height: none;
  }

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

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

  .footer_bottom-wrapper {
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
  }

  .footer_top-wrapper {
    grid-row-gap: 3rem;
  }

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

  .footer_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .footer_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-auto-flow: row;
    justify-content: center;
    align-self: auto;
    align-items: center;
    display: flex;
  }

  .navbar2_component {
    min-height: 4rem;
  }

  .quote-over-photo {
    padding: 35px;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .form-input-2 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .large-text {
    font-size: 20px;
    line-height: 28px;
  }

  .extra-large-text {
    font-size: 24px;
    line-height: 32px;
  }

  .metric-grid-halves {
    grid-column-gap: 21px;
  }

  .action-row {
    margin-top: 21px;
  }

  .large-heading {
    margin-bottom: 14px;
    font-size: 40px;
    line-height: 48px;
  }

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

  .footer-designcomet_credit-text {
    margin-top: 1.5rem;
  }

  .footer1_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }

  .team-member-wrapper {
    box-shadow: 0 15px 6em #0000004f;
  }

  .team-images-column {
    font-size: .7em;
  }

  .team-copy-wrapper {
    width: 36em;
    font-size: .7em;
  }

  .copy-medium {
    line-height: 1.4em;
  }

  .home-hero-subheading {
    font-size: 3.5vw;
  }

  .page-padding-3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .heading-medium-2 {
    font-size: 3.5rem;
  }

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

  .footer-bottom {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .footer-grid-right-inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .footer-bottom-2 {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

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

  .mobile-menu-nav-link {
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    display: flex;
  }

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

  .mobile-menu-toggle {
    cursor: pointer;
    width: 30px;
    height: 20px;
    display: block;
    position: relative;
  }

  .banner-circle-image {
    width: 90px;
  }

  .navbar-inner {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .form_row {
    margin-bottom: 1.5rem;
  }

  .navbar-right {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .navbar-menu-item-link {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .banner-circle {
    right: 2.5rem;
  }

  .contact-hero-grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .mobile-menu {
    z-index: 5;
  }

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

  .heading-h3 {
    font-size: 1.75rem;
  }

  .step-content-block {
    z-index: 2;
    order: -1;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .img-block {
    z-index: 3;
    order: 3;
    width: 70%;
    min-height: 50vh;
    padding-top: 20px;
    position: relative;
  }

  .dot {
    z-index: 99;
    order: 2;
    align-self: center;
    margin-bottom: 0;
    position: absolute;
    bottom: 50%;
  }

  .step {
    justify-content: center;
    padding: 8%;
  }

  .scoll-wrap {
    z-index: 1;
    height: 100%;
    bottom: 50%;
  }

  .content-wrap {
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 50vh;
    padding-bottom: 20px;
  }

  .step-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 110vh;
  }

  .team-wrapper {
    min-height: 500px;
  }

  .member-name {
    font-size: 42px;
  }

  .speaker-slide-mask {
    width: 90%;
  }

  .speaker-name {
    font-size: 48px;
  }

  .slide-image {
    min-height: 400px;
  }

  .form_row-3 {
    margin-bottom: 1.5rem;
  }

  .is-word.is-1 {
    font-size: 1em;
  }

  .margin-bottom-40 {
    margin-bottom: 2rem;
  }

  .margin-bottom-48 {
    margin-bottom: 2.25rem;
  }

  .margin-bottom-24 {
    margin-bottom: 1rem;
  }

  .player_list {
    grid-column-gap: 3.2rem;
    grid-row-gap: 3.2rem;
    flex-flow: column;
    display: flex;
  }

  .form_row-4 {
    margin-bottom: 1.5rem;
  }

  .margin-bottom-24-2 {
    margin-bottom: 1rem;
  }

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

  .margin-top-64 {
    margin-top: 3rem;
  }

  .titel {
    line-height: 40px;
  }

  .content-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .content-container.imprint {
    margin-top: 15px;
  }

  .section-rechtlich {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .container---new {
    padding-left: 24px;
    padding-right: 24px;
  }

  .h1-sizing {
    font-size: 55px;
  }

  .h1-sizing.rechtliches {
    white-space: normal;
    font-size: 50px;
  }

  .h1-sizing.datenschutz {
    white-space: normal;
    font-size: 24px;
  }

  .container-3.imprint {
    margin-top: 50px;
  }

  .imprint-link {
    display: block;
    overflow: hidden;
  }
}

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

  .show-mobile-portrait {
    display: block;
  }

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

  .page-padding {
    padding-left: 5%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .text-size-medium.text-color-white {
    font-size: 1em;
    overflow: visible;
  }

  .heading-xxlarge.text-color-white {
    font-size: 2em;
  }

  .button-secondary.is-alternate {
    border-width: 1px;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .stylesystem-images_layout {
    grid-template-columns: 1fr;
  }

  .heading-xlarge {
    text-align: center;
    font-size: 2em;
  }

  .heading-xlarge.extra-height {
    font-size: 2.9rem;
  }

  .heading-3.heading-xlarge {
    text-align: left;
  }

  .menu-icon2_line-bottom.is-alternate, .menu-icon2_line-middle.is-alternate, .menu-icon2_line-top.is-alternate {
    background-color: var(--white);
  }

  .navbar2_button-wrapper {
    margin-left: 0;
  }

  .header1_component, .layout41_component, .header_content-wrapper {
    grid-template-columns: 1fr;
  }

  .header_image-wrapper {
    background-size: cover;
  }

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

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

  .layout1_image-wrapper {
    margin-right: 0;
  }

  .layout1_component, .header-blog-title {
    grid-template-columns: 1fr;
  }

  .button-row-right {
    justify-content: flex-start;
  }

  .service-1, .service-2, .service-3 {
    background-size: cover;
  }

  .footer_bottom-wrapper {
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 12rem;
  }

  .footer_menu-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .footer_legal-list {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .quote-over-photo {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }

  .section {
    background-color: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section.align-content-center.hero-section.mobile-bg-white {
    background-color: #fff;
  }

  .handwriting-text.text-white.large-text {
    font-size: 40px;
    line-height: 40px;
  }

  .main-container {
    padding-left: 21px;
    padding-right: 21px;
  }

  .horizontal-form {
    flex-direction: column;
  }

  .form-input-2.adjacent-to-button {
    border-radius: 7px 7px 0 0;
  }

  .large-text {
    font-size: 18px;
    line-height: 28px;
  }

  .large-text.quote-over-photo-text {
    max-width: 100%;
    margin-bottom: 14px;
  }

  .button-3.adjacent-to-input {
    color: #fff;
    background-color: #295b76;
    border-radius: 0 0 7px 7px;
    font-weight: 500;
  }

  .button-3.adjacent-to-input.demo-button-border {
    color: #232426;
    background-color: #fdf671;
  }

  .button-3.adjacent-to-input.demo-button-border.mobile-button-border {
    border-top-style: none;
    border-left-style: solid;
    font-weight: 600;
  }

  .extra-large-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
  }

  .heading-8.mobile-h1 {
    font-size: 60px;
  }

  .metric-grid-halves {
    grid-template-columns: 1fr;
  }

  .grid-halves {
    grid-row-gap: 35px;
  }

  .action-row {
    margin-top: 14px;
  }

  .action-row.justify-content-left.align-center {
    flex-direction: column;
    align-items: flex-start;
  }

  .arrow-link.adjacent-to-button {
    margin-top: 14px;
    margin-left: 0;
  }

  .small-text-4 {
    font-size: 14px;
    line-height: 20px;
  }

  .large-heading {
    letter-spacing: 0;
    margin-bottom: 7px;
    font-size: 35px;
    font-weight: 700;
    line-height: 41px;
  }

  .footer-designcomet_credit-text {
    padding-left: 0;
  }

  .team-intro-wrapper {
    flex-flow: row;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .team-images-wrapper {
    grid-column-gap: 2em;
    padding-left: 0%;
  }

  .team-text-wrapper {
    padding-top: 5em;
    padding-bottom: 2em;
    left: 12vw;
    right: 12vw;
  }

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

  .team-images-column {
    margin-right: 3.5em;
    font-size: .6em;
  }

  .team-copy-wrapper {
    width: 21em;
    font-size: .7em;
  }

  .team-intro-title {
    font-size: 2em;
  }

  .team-text-sticky {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2em;
    padding-right: 2em;
  }

  .team-title-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .m-nav-overlay {
    display: none;
  }

  .home-hero-subheading {
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.1;
  }

  .page-padding-3 {
    padding-bottom: 0;
  }

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

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

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

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

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

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

  .footer-grid-left {
    justify-content: space-between;
    align-items: center;
  }

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

  .text-meta {
    font-size: 13px;
  }

  .subnav {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .footer-bottom-2 {
    text-align: center;
  }

  .mobile-menu-wrapper {
    padding: 1.5rem;
  }

  .navbar-right-button {
    display: none;
  }

  .heading-large-2 {
    font-size: 3.5rem;
  }

  .heading-large-2.text-uppercase {
    font-size: 2em;
  }

  .home-services-about {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .banner-circle-image {
    width: 80px;
  }

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

  .navbar-right {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .banner-circle {
    right: 2.25rem;
  }

  .datenwrapper {
    margin-top: 1em;
  }

  .img-block {
    width: 90%;
  }

  .steps-clone {
    display: block;
    position: static;
  }

  .step-block {
    min-height: 40vh;
  }

  .content {
    font-size: 20px;
  }

  .section-teammembers {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .team-wrapper {
    min-height: 475px;
    padding-bottom: 80px;
  }

  .team-card-vorne, .team-card-hinten {
    width: 90vw;
    min-width: auto;
    max-width: 350px;
  }

  .clip-text.speaker-headding {
    margin-top: -30px;
  }

  .speaker-name {
    font-size: 42px;
  }

  .slide-image {
    height: 40vh;
    min-height: 300px;
  }

  .speaker-arrow {
    top: auto;
    bottom: 0;
    right: 5vw;
  }

  .speaker-arrow.left {
    margin-right: 84px;
    left: auto;
    right: 0;
  }

  .speaker-slide-content {
    padding-bottom: 6px;
  }

  .hidden-elements {
    display: none;
  }

  .padding-large-2 {
    padding: 1rem .5rem;
  }

  .form_regular-label {
    font-size: .9rem;
    top: 1rem;
    left: 1rem;
  }

  .hidden-elements-2 {
    display: none;
  }

  .page-padding-4 {
    padding-left: 0;
    padding-right: 0;
  }

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

  .is-word.is-2, .is-word.is-1 {
    font-size: 1.2em;
  }

  .is-word.is-3 {
    font-size: .8em;
  }

  .is-word.is-1 {
    font-size: 1.2em;
  }

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

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

  .player_list {
    flex-flow: column;
  }

  .form_row-4 {
    margin-bottom: .125rem;
  }

  .max-width-440-2, .margin-bottom-24-2 {
    color: #080808;
  }

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

  .hidden-elements-3 {
    display: none;
  }

  .form_regular-label-2 {
    color: #000;
    font-size: .9rem;
    top: 1rem;
    left: 1rem;
  }

  .text-size-medium-3 {
    color: #fff;
  }

  .text-size-medium-3.black {
    color: #080808;
  }

  .contact-form_wrap-3 {
    flex-flow: column;
    display: flex;
  }

  .form_checkbox-button-title-2 {
    color: #fff;
  }

  .titel {
    margin-top: 8px;
    padding-right: 0;
    font-size: 16px;
    line-height: 25px;
  }

  .content-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .content-container.imprint {
    margin-top: 15px;
    margin-left: auto;
    padding-right: 0;
  }

  .rechtliches-text {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .container---new {
    margin-top: 70px;
    font-family: Georgia, Times, Times New Roman, serif;
  }

  .h1-sizing {
    font-size: 32px;
  }

  .h1-sizing.rechtliches {
    white-space: normal;
    font-size: 30px;
  }

  .h1-sizing.datenschutz {
    white-space: normal;
    font-size: 20px;
  }

  .container-3.imprint {
    margin-top: 25px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .bold-text-9 {
    font-size: 18px;
    line-height: 18px;
  }

  .imprint-link {
    display: block;
    overflow: hidden;
  }
}

#w-node-_70b73f02-26c6-5105-f2a6-dcf9ebb5b480-f68937ba {
  place-self: stretch stretch;
}

#w-node-b92b528d-fbed-f4da-8911-a79eb8d283e1-f68937ba {
  justify-self: end;
}

#w-node-_0eccb7d5-9067-5768-8e6f-06eccab12595-cab12590, #w-node-_0eccb7d5-9067-5768-8e6f-06eccab12599-cab12590, #w-node-_0eccb7d5-9067-5768-8e6f-06eccab1259a-cab12590, #w-node-_0eccb7d5-9067-5768-8e6f-06eccab1259b-cab12590 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0eccb7d5-9067-5768-8e6f-06eccab125ad-cab12590 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-ebdb72fb-b4ff-9908-afea-6b0ae1851d77-e1851d73 {
  justify-self: center;
}

#w-node-ebdb72fb-b4ff-9908-afea-6b0ae1851d82-e1851d73 {
  justify-self: end;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9313f-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93141-f68937d5 {
  justify-self: center;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9315f-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93160-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93164-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93165-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93169-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9316a-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9316e-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9316f-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93173-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93174-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93178-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93179-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93180-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93181-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93185-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93186-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9318a-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9318b-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9318f-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93190-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93194-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93195-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93199-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9319a-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931a1-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931a2-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931a6-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931a7-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931ab-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931ac-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931b0-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931b1-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931ba-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931bb-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931c4-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931c5-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931d4-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931d5-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931d9-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931da-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931de-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931df-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931e3-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931e4-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931e8-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931e9-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931f0-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931f1-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931f5-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931f6-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931fa-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931fb-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931ff-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93200-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93204-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93205-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93209-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9320a-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93211-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93212-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93216-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93217-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9321b-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9321c-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93220-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93221-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93225-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93226-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9322d-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9322e-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93232-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93233-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93237-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93238-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9323c-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9323d-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93241-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93242-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93246-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93247-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9324e-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9324f-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93253-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93254-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93258-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93259-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9325d-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9325e-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93262-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93263-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93267-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93268-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9326c-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9326d-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93271-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93272-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93276-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93277-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9327e-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9327f-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93283-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93284-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93288-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93289-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93290-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93291-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932f7-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932f8-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932fc-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932fd-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93323-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93324-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93327-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93328-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9332b-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9332c-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9332f-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93330-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93333-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93334-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93337-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93338-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9333b-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9333c-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93346-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93347-f68937d5 {
  justify-self: start;
}

#w-node-_1bfecdfa-cf23-d065-290b-2142ac7792f5-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9334b-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9334c-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9334d-f68937d5 {
  justify-self: start;
}

#w-node-_090a24d3-14a5-dfa2-fa04-d4a813666889-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93353-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93354-f68937d5 {
  justify-self: start;
}

#w-node-edb34d17-99cc-692f-0430-12adb3f5bcf1-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93358-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93359-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9335a-f68937d5 {
  justify-self: start;
}

#w-node-abefda6a-e9c5-21af-36b5-0ac7a543e5f9-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93360-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93361-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93365-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93366-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93367-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9336d-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9336e-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93372-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93377-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93378-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93379-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9337f-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93380-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93381-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93389-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9338a-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9338b-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93391-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93392-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93393-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9339b-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9339c-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9339d-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933a3-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933a4-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933a5-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ad-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ae-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933af-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933b9-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ba-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933bb-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933bf-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933c0-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933c8-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933c9-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ca-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933d0-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933d9-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933da-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933df-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933e8-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933e9-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933f0-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933f9-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933fa-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ff-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93408-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93409-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93410-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93411-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93419-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9341a-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9341f-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9342d-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9342e-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9342f-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93430-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93432-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93435-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93439-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9343a-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9343b-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9343c-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9343e-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93447-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93448-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93449-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9344a-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9344c-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93455-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93456-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93457-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93458-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9345a-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9345d-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93464-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93465-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93466-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93467-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93469-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9346c-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9346d-f68937d5 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93473-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93474-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93475-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93476-f68937d5, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93478-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725cb-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725cc-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725d0-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725d1-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725d5-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725d6-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725da-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725db-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725df-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725e0-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725e7-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725e8-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725ec-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725ed-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725f1-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725f2-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725f6-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725f7-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725fb-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725fc-f68937d5 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd540472600-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd540472601-f68937d5 {
  justify-self: start;
}

#w-node-_2a6740b2-9b61-38ae-6a6e-ace4c9df7f63-f68937d5, #w-node-_2669e740-54bd-f4e3-4f8d-3d94df62d50d-f68937d5, #w-node-_17e5434e-e737-a59f-05c4-a327fe5e482a-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472616-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472617-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047261a-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047261b-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047261e-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047261f-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472622-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472623-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472626-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472627-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047262a-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047262b-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047262e-f68937d5, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047262f-f68937d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b92b528d-fbed-f4da-8911-a79eb8d283e1-d471653f {
  justify-self: end;
}

#w-node-_75d27483-2a02-e1c6-78e9-486d7bd06713-7bd06711, #w-node-e8b4bdcd-f857-646a-7aa2-55bc09234a3d-bd7b9f0d {
  place-self: stretch stretch;
}

#w-node-b92b528d-fbed-f4da-8911-a79eb8d283e1-bd7b9f0d {
  justify-self: end;
}

#w-node-_29919480-e381-669b-373b-1f6980df07a4-bd7b9f0d {
  align-self: auto;
}

#w-node-e8b4bdcd-f857-646a-7aa2-55bc09234a3d-513c29e0 {
  place-self: stretch stretch;
}

#w-node-_0e44a164-2297-522c-ed7c-31c52fedfb7f-513c29e0, #w-node-_68c0501d-f4bb-63de-e45d-7093bc003536-26eb1099 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_68c0501d-f4bb-63de-e45d-7093bc003537-26eb1099, #w-node-_68c0501d-f4bb-63de-e45d-7093bc00353b-26eb1099 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_68c0501d-f4bb-63de-e45d-7093bc00353f-26eb1099 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_68c0501d-f4bb-63de-e45d-7093bc003540-26eb1099, #w-node-_68c0501d-f4bb-63de-e45d-7093bc003544-26eb1099 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_68c0501d-f4bb-63de-e45d-7093bc003548-26eb1099 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_68c0501d-f4bb-63de-e45d-7093bc003549-26eb1099, #w-node-_68c0501d-f4bb-63de-e45d-7093bc00354d-26eb1099 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_68c0501d-f4bb-63de-e45d-7093bc00355b-26eb1099, #w-node-_68c0501d-f4bb-63de-e45d-7093bc00355e-26eb1099, #w-node-_68c0501d-f4bb-63de-e45d-7093bc003562-26eb1099, #w-node-_68c0501d-f4bb-63de-e45d-7093bc003564-26eb1099, #w-node-_68c0501d-f4bb-63de-e45d-7093bc003565-26eb1099 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_68c0501d-f4bb-63de-e45d-7093bc00357e-26eb1099 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-b92b528d-fbed-f4da-8911-a79eb8d283e1-f68937ba {
    place-self: stretch stretch;
  }

  #w-node-_61c84c44-0477-5e32-012b-76f0fb00467a-f68937ba {
    justify-self: stretch;
  }

  #w-node-_0eccb7d5-9067-5768-8e6f-06eccab12595-cab12590 {
    justify-self: auto;
  }

  #w-node-_0eccb7d5-9067-5768-8e6f-06eccab12599-cab12590 {
    justify-self: center;
  }

  #w-node-b92b528d-fbed-f4da-8911-a79eb8d283e1-d471653f, #w-node-b92b528d-fbed-f4da-8911-a79eb8d283e1-bd7b9f0d {
    place-self: stretch stretch;
  }

  #w-node-_61c84c44-0477-5e32-012b-76f0fb00467a-513c29e0 {
    justify-self: stretch;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_20671ad2-6c78-af15-389e-c20c246fca42-f68937ba, #w-node-_0eccb7d5-9067-5768-8e6f-06eccab125ad-cab12590 {
    justify-self: auto;
  }

  #w-node-_6a7aed05-e681-1695-06e6-0d32195766d4-513c29e0 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0e44a164-2297-522c-ed7c-31c52fedfb7f-513c29e0 {
    grid-area: 3 / 1 / 4 / 2;
  }
}


@font-face {
  font-family: 'Spectral';
  src: url('../fonts/Spectral-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spectral';
  src: url('../fonts/Spectral-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spectral';
  src: url('../fonts/Spectral-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}