:root {
  --color--white-solid: white;
  --color--black-solid: black;
  --color--brown-solid: #975636;
  --color--brown-light-2: #f5e7e0;
  --radius--r-4px: 4px;
  --color--brown-light-1: #0f6bcc;
  --color--grey-medium: #6e6e6e;
  --black: black;
  --color--brown-light-3: #f0dbd1;
  --color--grey-light: #f5f5f5;
  --radius--r-16px: 16px;
  --radius--r-32px: 32px;
  --radius--r-8px: 8px;
  --white: white;
  --spacing--s-1rem: 1rem;
  --spacing--s-2rem: 2rem;
  --spacing--s-3rem: 3rem;
  --spacing--s-4rem: 4rem;
  --spacing--s-5rem: 5rem;
  --spacing--s-6rem: 6rem;
  --spacing--s-7rem: 7rem;
}

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

body {
  background-color: var(--color--white-solid);
  color: var(--color--black-solid);
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  line-height: 120%;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 150%;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 120%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 130%;
}

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

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

p {
  margin-bottom: 20px;
  line-height: 150%;
}

a {
  color: var(--color--brown-solid);
  text-decoration: underline;
  transition: color .2s;
}

a:hover {
  color: var(--color--black-solid);
}

blockquote {
  border: 1px solid var(--color--brown-light-2);
  border-radius: var(--radius--r-4px);
  background-color: var(--color--brown-light-1);
  color: var(--color--black-solid);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-style: italic;
  line-height: 22px;
}

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

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

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

.margin-bottom.margin-large {
  margin: 0 0 .5rem;
}

.margin-bottom.margin-xlarge, .margin-bottom.margin-xxlarge, .margin-bottom.margin-huge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-custom1, .margin-bottom.margin-custom2, .margin-bottom.margin-custom3, .margin-bottom.margin-xs {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.heading-style-h6 {
  font-size: 1.25rem;
  line-height: 140%;
}

.button {
  border: 1px solid var(--color--black-solid);
  background-color: var(--color--black-solid);
  color: var(--color--white-solid);
  text-align: center;
  border-radius: 8rem;
  padding: .75rem 2rem;
  font-weight: 500;
  transition: border-color .2s, background-color .2s;
}

.button:hover {
  border-color: var(--color--grey-medium);
  background-color: var(--color--grey-medium);
  color: var(--color--white-solid);
}

.button.is-secondary {
  border-color: var(--color--black-solid);
  background-color: var(--color--white-solid);
  color: var(--color--black-solid);
  transition: color .2s, border-color .2s, background-color .2s;
}

.button.is-secondary:hover {
  border-color: var(--color--grey-medium);
  background-color: var(--color--grey-medium);
  color: var(--color--white-solid);
}

.button.is-link {
  box-shadow: none;
  color: var(--color--brown-solid);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
  transition-property: none;
}

.button.is-link.is-icon {
  padding-left: 0;
}

.button.is-link.is-icon:hover {
  color: var(--color--black-solid);
}

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

.button.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-decoration: none;
  display: flex;
}

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

.yf-styleguide-heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: .25rem .5rem;
}

.yf-styleguide-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.yf-styleguide-subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
}

.text-size-small {
  margin-bottom: 0;
  font-size: .875rem;
  line-height: 150%;
}

.yf-styleguide-item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.yf-styleguide-label {
  color: #fff;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.yf-styleguide-label.is-html-tag {
  background-color: #be4aa5;
}

.heading-style-h1 {
  font-size: 4.5rem;
  line-height: 120%;
}

.heading-style-h2 {
  font-size: 3.25rem;
  line-height: 120%;
}

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

.heading-style-h4 {
  font-size: 1.625rem;
  line-height: 130%;
}

.heading-style-h5 {
  font-size: 1.5rem;
  line-height: 140%;
}

.text-size-large {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 150%;
}

.text-size-large.text-color-grey-medium {
  color: var(--color--grey-medium);
}

.text-size-medium {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 150%;
}

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

.text-size-regular {
  margin-bottom: 0;
  line-height: 150%;
}

.text-size-tiny {
  margin-bottom: 0;
  font-size: .75rem;
  line-height: 150%;
}

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

.text-weight-semibold {
  margin-bottom: 0;
  font-weight: 600;
}

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

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

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

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

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

.text-style-link {
  text-decoration: underline;
  transition: color .2s;
}

.text-style-link:hover {
  color: var(--color--brown-solid);
}

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

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

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

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

.yf-styleguide-color {
  padding-bottom: 8rem;
}

.yf-styleguide-color.is-black-solid {
  background-color: var(--color--black-solid);
}

.yf-styleguide-color.is-white-solid {
  background-color: var(--color--white-solid);
}

.yf-styleguide-color.is-brown-solid {
  background-color: var(--color--brown-solid);
}

.yf-styleguide-color.is-brown-light-3 {
  background-color: var(--color--brown-light-3);
}

.yf-styleguide-color.is-brown-light-2 {
  background-color: var(--color--brown-light-2);
}

.yf-styleguide-color.is-brown-light-1 {
  background-color: var(--color--brown-light-1);
}

.yf-styleguide-color.is-grey-medium {
  background-color: var(--color--grey-medium);
}

.yf-styleguide-color.is-grey-light {
  background-color: var(--color--grey-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-input:focus {
  border-color: var(--color--brown-solid);
  background-color: var(--color--grey-light);
}

.form-input::placeholder {
  color: var(--color--grey-medium);
}

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

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

.form-checkbox-icon {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 4px;
  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 {
  border-width: 1px;
  border-color: var(--color--brown-solid);
  background-color: var(--color--brown-solid);
  box-shadow: none;
  background-size: 16px 16px;
}

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

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

.yf-styleguide-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.yf-styleguide-item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-embed-small {
  color: var(--color--brown-solid);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.yf-styleguide-classes {
  display: none;
}

.yf-styleguide-empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

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

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

.yf-styleguide-spacing {
  border: 1px dashed #d3d3d3;
}

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

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

.padding-section-large {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-direction: column;
  padding-top: 4.5rem;
  padding-bottom: 7rem;
}

.padding-section-large.is-flex-1 {
  display: flex;
}

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

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

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

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

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

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

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

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

.padding-bottom, .padding-bottom.padding-0, .padding-bottom.padding-tiny, .padding-bottom.padding-xxsmall, .padding-bottom.padding-xsmall, .padding-bottom.padding-small, .padding-bottom.padding-medium, .padding-bottom.padding-large, .padding-bottom.padding-xlarge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding-xxlarge {
  padding: 0 0 4rem;
}

.padding-bottom.padding-huge, .padding-bottom.padding-xhuge, .padding-bottom.padding-xxhuge, .padding-bottom.padding-custom1, .padding-bottom.padding-custom2, .padding-bottom.padding-custom3 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

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

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

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

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

.padding-right, .padding-right.padding-0, .padding-right.padding-tiny, .padding-right.padding-xxsmall, .padding-right.padding-xsmall, .padding-right.padding-small, .padding-right.padding-medium, .padding-right.padding-large, .padding-right.padding-xlarge, .padding-right.padding-xxlarge, .padding-right.padding-huge, .padding-right.padding-xhuge, .padding-right.padding-xxhuge, .padding-right.padding-custom1, .padding-right.padding-custom2, .padding-right.padding-custom3 {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 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;
}

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

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

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

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

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

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

.margin-0 {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.yf-styleguide-spacing-all, .hide {
  display: none;
}

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

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

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

.success-message {
  background-color: #0000;
  padding: 1.5rem;
}

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

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

.error-text {
  color: #e23939;
}

.section-hero {
  background-color: var(--color--white-solid);
  margin-top: 91px;
  margin-right: auto;
}

.hero-component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hero-content-bottom {
  justify-content: flex-start;
  width: 100%;
  padding-top: 3rem;
  overflow: hidden;
}

.hero-images-layout {
  grid-row-gap: 1rem;
  border-radius: var(--radius--r-16px);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

.hero-image-list-top {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  display: grid;
}

.hero-image-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  display: grid;
}

.hero-image-wrapper {
  width: 26rem;
  padding-top: 75%;
  position: relative;
}

.hero-main-image {
  border-radius: var(--radius--r-16px);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog-component {
  flex-direction: column;
  align-items: center;
}

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

.blog-item {
  flex-direction: column;
  display: flex;
}

.blog-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.blog-image {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius--r-16px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-title-wrapper {
  margin-bottom: .5rem;
  text-decoration: none;
  display: block;
}

.blog-button-wrapper {
  display: flex;
}

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

.service-1-page-image {
  border-radius: var(--radius--r-32px);
  width: 100%;
  height: 100%;
}

.service-2-page-component {
  grid-column-gap: 5rem;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.service-2-page-image {
  border-radius: var(--radius--r-32px);
  width: 100%;
  height: 100%;
}

.blog-post-header-title-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-post-header-image-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.blog-post-header-image {
  border-radius: var(--radius--r-32px);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog-post-content-content {
  margin-bottom: 4rem;
}

.section-contact-header {
  background-color: var(--color--grey-light);
}

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

.contact-form-form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

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

.contact-form-image {
  border-radius: var(--radius--r-32px);
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.contact-locations-component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.contact-locations-location {
  text-align: center;
  width: 100%;
}

.contact-locations-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.section-privacy-policy-header {
  background-color: var(--color--grey-light);
  margin-top: 97px;
}

.navbar {
  background-color: var(--color--white-solid);
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

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

.navbar-logo-link {
  padding-left: 0;
  transition-property: none;
}

.navbar-menu {
  align-items: center;
  display: flex;
  position: static;
}

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

.navbar-link:hover {
  color: var(--color--grey-medium);
}

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

.navbar-dropdown-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem 1rem;
  transition: color .2s;
  display: flex;
}

.navbar-dropdown-toggle:hover {
  color: var(--color--grey-medium);
}

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

.navbar-dropdown-list.w--open {
  border: 1px solid var(--color--brown-solid);
  border-radius: var(--radius--r-4px);
  background-color: var(--color--white-solid);
  padding: .5rem;
}

.navbar-dropdown-link {
  color: var(--color--black-solid);
  padding: .5rem 1rem;
}

.navbar-dropdown-link:hover {
  color: var(--color--grey-medium);
}

.navbar-dropdown-link.w--current {
  color: var(--color--brown-solid);
}

.navbar-menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.navbar-menu-button {
  padding: 0;
}

.section-header {
  background-color: var(--color--grey-light);
  position: relative;
}

.header-component {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.signup-form-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.global-services-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

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

.global-services-column {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: 1fr;
}

.global-services-card-large {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: var(--radius--r-32px);
  background-color: var(--color--grey-light);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding: 1rem;
  display: flex;
  overflow: hidden;
  box-shadow: 4px 4px 16px #0003;
}

.global-services-card-large-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 1rem 1rem 2rem;
  display: flex;
}

.global-services-card-large-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.global-services-card-large-image {
  border-radius: var(--radius--r-16px);
  width: 100%;
  height: 100%;
}

.global-services-card-small {
  border-radius: var(--radius--r-32px);
  background-color: var(--color--grey-light);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  padding: 2rem;
  display: flex;
  overflow: hidden;
  box-shadow: 4px 4px 16px #0003;
}

.global-services-card-small-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.footer {
  background-color: var(--color--black-solid);
}

.footer-top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  justify-content: space-between;
  align-items: center;
}

.footer-logo-link {
  padding-left: 0;
}

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

.footer-link {
  color: var(--color--white-solid);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--color--brown-light-3);
}

.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-social-link {
  color: var(--color--white-solid);
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer-social-link:hover {
  color: var(--color--brown-solid);
}

.footer-bottom-wrapper {
  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: space-between;
  display: flex;
}

.footer-credit-text {
  color: var(--color--white-solid);
  font-size: .875rem;
}

.footer-legal-link {
  color: var(--color--white-solid);
  font-size: .875rem;
  text-decoration: underline;
}

.footer-legal-link:hover {
  color: var(--color--brown-light-3);
}

.hero-header-span-2 {
  background-image: url('../images/portrait-beautiful-woman-black-dress-dark-wall-3_1portrait-beautiful-woman-black-dress-dark-wall 3.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.hero-header-span-3 {
  color: var(--color--brown-solid);
  -webkit-text-fill-color: transparent;
  mix-blend-mode: normal;
  background-image: linear-gradient(89deg, #417bbd, #3b568c 34%, #3b5388 48%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Poppins, sans-serif;
  font-style: italic;
  font-weight: 600;
}

.subtext-heading {
  color: var(--color--brown-solid);
  letter-spacing: 10px;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
}

.text-color-grey-medium {
  color: var(--color--grey-medium);
}

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

.section-cta-newsletter {
  background-color: var(--color--brown-light-1);
}

.cta-newsletter-form-block {
  max-width: 30rem;
  margin-bottom: 0;
}

.footer-wrapper-legal-links {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.blog-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  margin-top: 1rem;
  display: flex;
}

.section-about-main {
  background-image: linear-gradient(358deg, #0f6bcc, #fff), url('../images/Untitled-design---2024-07-04T154331.405.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  margin-top: 85px;
}

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

.about-1-main-image {
  border-radius: var(--radius--r-32px);
  width: 100%;
  height: 100%;
}

.about-2-main-component {
  grid-column-gap: 5rem;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.about-2-main-image {
  border-radius: var(--radius--r-32px);
  width: 100%;
  height: 100%;
}

.section-about-partners {
  background-color: var(--color--grey-light);
}

.about-partners-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.about-partners-wrapper {
  background-color: #0000;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: .875rem;
  display: flex;
}

.about-partners-logo {
  max-height: 3.5rem;
}

.about-members-list {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.about-members-item {
  text-align: center;
  background-image: url('../images/member.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.about-members-image {
  object-fit: cover;
  border-radius: 100%;
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  min-height: 5rem;
}

.testimonial-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.testimonial-content {
  border-radius: var(--radius--r-32px);
  background-color: var(--color--brown-light-1);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2rem;
  display: flex;
}

.testimonial-client {
  text-align: left;
  align-items: center;
  display: flex;
}

.testimonial-client-image-wrapper {
  margin-right: 1rem;
}

.testimonial-customer-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.services-gallery-lightbox-link {
  width: 100%;
}

.services-gallery-slide {
  padding-left: 1rem;
  padding-right: 1rem;
}

.services-gallery-slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.services-gallery-image-wrapper {
  width: 100%;
}

.services-gallery-slide-nav {
  height: 1.75rem;
  font-size: .5rem;
}

.services-gallery-image {
  aspect-ratio: 1;
  border-radius: var(--radius--r-16px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.services-gallery-mask {
  width: 25%;
  overflow: visible;
}

.services-gallery-arrow-icon {
  color: var(--color--black-solid);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.services-gallery-arrow {
  border: 1px solid var(--color--black-solid);
  background-color: #0000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  bottom: 4rem;
}

.services-gallery-arrow.hide-mobile-landscape {
  bottom: 4rem;
}

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

.services-faq-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.services-faq-accordion {
  border-radius: var(--radius--r-8px);
  background-color: var(--color--grey-light);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.services-faq-question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 1.5rem;
  display: flex;
}

.services-faq-icon-wrappper {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
  display: flex;
}

.services-faq-answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

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

.contact-locations-image {
  border-radius: var(--radius--r-32px);
}

.section-licenses {
  background-color: #f9f9f9;
}

.licenses-component {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.licenses-item {
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section-licenses-header, .section-changelog-header {
  background-color: var(--color--grey-light);
}

.hero-header-span-1 {
  background-image: url('../images/Untitled-design---2024-07-02T151559.548.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.hero-header-span-1._2 {
  background-image: url('../images/Untitled-design---2024-07-02T151922.304.png');
}

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

.section-about-header {
  background-color: var(--color--grey-light);
  position: relative;
}

.about-header-span-1 {
  background-image: url('../images/spa-treatment-dark-surface-2_1spa-treatment-dark-surface 2.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.about-header-span-2 {
  background-image: url('../images/young-woman-relaxing-spa-salon-2_1young-woman-relaxing-spa-salon 2.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.about-header-span-3 {
  color: var(--color--brown-solid);
  font-style: italic;
  font-weight: 400;
}

.section-services-header {
  background-color: var(--color--grey-light);
  position: relative;
}

.services-header-span-1 {
  background-image: url('../images/9681-2_19681 2.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.services-header-span-3 {
  color: var(--color--brown-solid);
  font-style: italic;
  font-weight: 400;
}

.services-header-span-2 {
  background-image: url('../images/piekno-portret-tajemnicza-imbirowa-kobieta-patrzeje-daleko-od-z-dlugie_1piekno-portret-tajemnicza-imbirowa-kobieta-patrzeje-daleko-od-z-dlugie.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.section-face-header {
  background-color: var(--color--grey-light);
  position: relative;
}

.face-header-span-2 {
  background-image: url('../images/woman-visiting-cosmetologist-making-rejuvenation-procedures-2_1woman-visiting-cosmetologist-making-rejuvenation-procedures 2.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.face-header-span-1 {
  background-image: url('../images/spa-massage-young-woman-with-facial-mask-face-indoors-2_1spa-massage-young-woman-with-facial-mask-face-indoors 2.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.section-body-header {
  background-color: var(--color--grey-light);
  position: relative;
}

.body-header-span-1 {
  background-image: url('../images/beauty-spa-1-2_1beauty-spa (1) 2.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.body-header-span-2 {
  background-image: url('../images/koncepcja-spa-z-kobieta-i-masazu-2_1koncepcja-spa-z-kobieta-i-masazu 2.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.hair-header-span-1 {
  background-image: url('../images/portret-pieknej-kobiety-z-dlugimi-bialymi-prostymi-wlosam_1portret-pieknej-kobiety-z-dlugimi-bialymi-prostymi-wlosam.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.hair-header-span-2 {
  background-image: url('../images/portret-pieknej-kobiety-sexy-z-dlugimi-wlosami-1_1portret-pieknej-kobiety-sexy-z-dlugimi-wlosami 1.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.header-span-solid-background {
  border-radius: var(--radius--r-16px);
  background-color: var(--color--black-solid);
  color: var(--color--white-solid);
  text-transform: uppercase;
  padding-left: .5rem;
  padding-right: .5rem;
  font-weight: 300;
}

.makeup-header-span-1 {
  background-image: url('../images/zblizenie-kobiece-oko-z-jasny-rozowy-makijaz-moda-piekny-1_1zblizenie-kobiece-oko-z-jasny-rozowy-makijaz-moda-piekny 1.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.makeup-header-span-2 {
  background-image: url('../images/portret-kobiety-z-fioletowa-maska-teatralna-na-twarzy-i-fioletowymi-ustami-1_1portret-kobiety-z-fioletowa-maska-teatralna-na-twarzy-i-fioletowymi-ustami 1.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.nail-header-span-1 {
  background-image: url('../images/zblizenie-na-piekno-zdobienia-paznokci-1_1zblizenie-na-piekno-zdobienia-paznokci 1.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.nail-header-span-2 {
  background-image: url('../images/piekne-kobiece-paznokcie-z-pieknym-french-manicure-i-art-design-1_1piekne-kobiece-paznokcie-z-pieknym-french-manicure-i-art-design 1.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.medicine-header-span-1 {
  background-image: url('../images/powyzej-widok-kobiety-podczas-leczenia-twarzy-prp-1_1powyzej-widok-kobiety-podczas-leczenia-twarzy-prp 1.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.medicine-header-span-2 {
  background-image: url('../images/kobieta-robi-zabiegi-kosmetyczne-w-salonie-pieknosci-1_1kobieta-robi-zabiegi-kosmetyczne-w-salonie-pieknosci 1.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 160px;
  background-attachment: scroll;
  justify-content: flex-start;
  padding-right: 11.5rem;
  display: inline-block;
}

.section-styleguide-header, .section-blog-header {
  background-color: var(--color--grey-light);
}

.more-component-delete-this {
  z-index: 1000;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 2rem 2rem auto;
}

.button-more {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: background-color .2s, box-shadow .2s;
  display: flex;
  box-shadow: 6px 6px 8px #3b3b3b80;
}

.button-more:hover {
  color: #000;
  background-color: #efefef;
  box-shadow: 3px 3px 4px #3b3b3b80, 6px 6px 8px #3b3b3b80;
}

.text-more-templates {
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 400;
}

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

.text-buy-template {
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 400;
}

.nav-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: static;
}

.banner-wrapper, .nav-button-group {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.banner {
  color: #fff;
  text-align: center;
  background-color: #000;
  justify-content: center;
  align-items: center;
  min-height: 35px;
  padding: 0 5%;
  display: flex;
}

.nav-dropdown {
  height: 100%;
  position: static;
}

.nav-list-l {
  z-index: 99;
}

.nav-list-l.w--open {
  background-color: #0000;
  width: 100%;
  min-width: auto;
  max-width: 588px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 84px;
  bottom: auto;
  overflow: visible;
}

.nav-block {
  z-index: 5;
  border: 1px #0000003b;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 2px 5px #00000021;
}

.icon-small {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.grid {
  grid-template-rows: auto auto;
  width: 100%;
}

.nav-link-text {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.button-secondary-s {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #dd1d1d;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #fff;
  border: 1px solid #dd1d1d;
  border-radius: 99px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .5s cubic-bezier(.6, .6, 0, 1);
}

.button-secondary-s:hover {
  color: #0f6bcc;
  background-color: #eceefe;
  border-style: none;
}

.button-secondary-s:active {
  background-color: #d8ddfd;
}

.button-primary-s {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #6173e5;
  border-radius: 99px;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .5s cubic-bezier(.6, .6, 0, 1);
}

.button-primary-s:hover {
  background-color: #8492eb;
}

.button-primary-s:active {
  background-color: #8b99f9;
}

.nav-link {
  color: #080808;
  letter-spacing: -.02em;
  white-space: nowrap;
  background-color: #0000;
  border-radius: 32px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .35s;
}

.nav-link:hover {
  color: #0f6bcc;
  background-color: #eeeffc;
}

.nav-link.w--current {
  color: #000;
}

.nav-link-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.navigation {
  z-index: 999;
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  background-color: #ffffff80;
  border: 1px solid #0003;
  align-items: center;
  width: 100%;
  min-height: 80px;
  padding: 0 5%;
  display: flex;
}

.nav-top {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  padding: 16px;
  display: flex;
}

.nav-link-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.nav-toggle {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #080808;
  letter-spacing: -.02em;
  border-radius: 32px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 8px 12px 8px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.nav-toggle:hover, .nav-toggle.w--open {
  color: #6173e5;
  background-color: #eeeffc;
}

.span-yellow {
  color: #e5cb61;
}

.caption {
  letter-spacing: -.02em;
  font-size: 14px;
  line-height: 1.8;
}

.caption-bold {
  color: #353b41;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.nav-feature-link-l {
  text-decoration: none;
}

.nav-image {
  width: 100%;
  margin-bottom: 16px;
}

.icon-regular {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.nav-wrapper {
  grid-column-gap: 62px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-bottom {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: #f8f9fa;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.nav-link-icon {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #000;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  transition: color .4s;
  display: flex;
}

.nav-link-icon:hover {
  color: #6173e5;
}

.nav-dropdown-base-c {
  z-index: 99;
  grid-column-gap: 24px;
  background-color: #fff;
  border: 1px solid #eaedf0;
  border-radius: 8px;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  display: flex;
  box-shadow: 0 24px 64px #e0e0e07a;
}

.nav-dropdown-base-c.w--open {
  background-color: #0000;
  width: 100%;
  min-width: auto;
  padding: 24px 5%;
  position: absolute;
  inset: 90px auto auto 0;
  overflow: hidden;
}

.paragraph-small {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.nav-icon-s {
  background-color: #eeeffc;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
}

.badge {
  z-index: 0;
  color: #000;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: hard-light;
  background-color: #fff0;
  background-clip: border-box;
  border: 1px solid #02168a;
  border-radius: 99px;
  margin-bottom: 35px;
  padding: 4px 12px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  position: relative;
  box-shadow: 0 2px 20px -4px #02168a5e;
}

.badge._1 {
  color: #fff;
  mix-blend-mode: normal;
  border-color: #fff;
  box-shadow: 0 2px 20px #ffffff5e;
}

.text-block {
  color: #fff;
}

.text-block._1 {
  color: #02168a;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #02168a;
  mix-blend-mode: hard-light;
}

.wrap-v-tiny {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.wrap-v-tiny.size-grow {
  flex: 1;
}

.icon-large {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.icon-red {
  background-color: #fde7e7;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: flex;
}

.icon-pink {
  background-color: #f4dcf4;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: flex;
}

.overline {
  color: #030711;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.section-regular {
  background-color: #f9f9f9;
  background-image: linear-gradient(355deg, #4c90d9 14%, #0f6bcc80 22%, #fff 84%), url('../images/Untitled-design---2024-07-02T212153.493.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 45px 5% 96px;
  position: relative;
}

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

.wrap-v-x-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.wrap-v-x-small.align-center {
  text-align: center;
  align-items: center;
}

.feature-item {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  opacity: 1;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  mix-blend-mode: normal;
  background-color: #ffffffb0;
  border: 1px #e5e7eb;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.subheading {
  color: #4b5563;
  text-align: center;
  letter-spacing: -.3px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.action-m {
  color: #030711;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
}

.paragraph-regular {
  color: #030711;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 32px;
}

.paragraph-regular.text-color-gray-600 {
  color: #4b5563;
  line-height: 28px;
}

.icon-green {
  background-color: #e3f8e7;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: flex;
}

.icon-blue {
  background-color: #e1e7f9;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: flex;
}

.wrap-v-large {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.h1-heading {
  color: #030711;
  text-align: center;
  letter-spacing: -1.6px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 72px;
}

.feature-grid-large {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 48px;
}

.carousel-group {
  align-items: center;
  display: flex;
}

.testimonial-carousel-right {
  flex: none;
  align-items: center;
  display: flex;
}

.testimonial-carousel-wrap-r {
  flex: none;
  justify-content: flex-end;
  width: 100%;
  display: flex;
}

.testimonial-carousel-wrap-l {
  flex: none;
  width: 100%;
  display: flex;
}

.testimonial-user-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  display: flex;
}

.testimonial-carousel-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  width: 100%;
  max-width: 418px;
  margin-left: 12px;
  margin-right: 12px;
  padding: 24px;
}

.avatar-l {
  background-color: #e34f5d;
  border-radius: 100px;
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  overflow: hidden;
}

.avatar-l.bg-blue {
  background-color: #4250d1;
}

.avatar-l.bg-yellow {
  background-color: #f8d254;
}

.avatar-l.bg-purple {
  background-color: #913b8b;
}

.avatar-l.bg-green {
  background-color: #7bd189;
}

.section-carousel {
  padding: 10px 0%;
  position: relative;
  overflow: hidden;
}

.paragraph-large {
  color: #030711;
  letter-spacing: -.3px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 32px;
}

.carousel-overlay {
  background-image: linear-gradient(to right, #fff, #fff0 25% 75%, #fff);
  position: absolute;
  inset: 0%;
}

.carousel-code {
  display: none;
}

.action-l {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.testimonial-carousel-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.testimonial-carousel-left {
  flex: none;
  align-items: center;
  display: flex;
}

.image, .image-2 {
  border-radius: 8px;
}

.m-margin-bottom-64 {
  margin-bottom: 64px;
}

.m-cta-image-3 {
  object-fit: cover;
  width: 100px;
  height: 100px;
  position: absolute;
  inset: auto auto 40px 24px;
}

.m-h3-heading {
  color: #fff;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2;
}

.m-h6-heading {
  color: #fff;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.m-margin-bottom-08 {
  margin-bottom: 8px;
}

.m-text-color-blue {
  color: #7e8ef1;
}

.m-timeline-title-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #dedfe3;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 156px;
  margin-bottom: 64px;
  padding: 16px 24px;
  font-weight: 600;
  display: flex;
}

.m-timeline-button-primary-icon {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #fff;
  background-color: #5a6ded;
  border: 2px solid #5a6ded;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 16px 16px 16px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  display: flex;
}

.m-timeline-line-wrap {
  background-color: #22242f;
  flex: 1;
  width: 8px;
  position: relative;
}

.m-section-large {
  color: #fff;
  background-color: #000;
  padding: 120px 5%;
}

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

.m-timeline-outline-inner {
  color: #dedfe3;
  background-color: #111218;
  border: 1px solid #22242f;
  border-radius: 32px;
  flex-direction: column;
  padding: 24px;
  display: flex;
}

.m-timeline-card-header {
  margin-bottom: 32px;
  padding: 8px;
}

.m-timeline-info-wrapper {
  grid-column-gap: 16px;
  color: #868898;
  background-color: #111218;
  border-radius: 24px;
  align-items: center;
  padding: 16px;
  display: flex;
}

.m-paragraph-extra-small {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.m-paragraph-extra-small.text-color-gray-300 {
  color: #9c9eab;
}

.m-cta-header {
  color: #f4f4f6;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.m-timeline-card-inner {
  color: #dedfe3;
  background-color: #22242f;
  border-radius: 24px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.m-shape-wrapper {
  position: absolute;
  inset: 0% 0% auto auto;
}

.m-timeline-icon-wrapper {
  background-color: #333647;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 32px;
  display: flex;
}

.m-icon-small {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.m-timeline-image-wrapper {
  border-radius: 24px;
  height: 200px;
  margin-bottom: 24px;
  overflow: hidden;
}

.m-timeline-header {
  color: #f4f4f6;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.m-timeline-card {
  color: #dedfe3;
  background-color: #111218;
  border-radius: 32px;
  flex-direction: column;
  padding: 24px;
  display: flex;
}

.m-icon-regular {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.m-cta-section {
  background-color: #000;
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}

.m-timeline-button-grid {
  grid-template-rows: auto;
  margin-top: 16px;
  padding-left: 24px;
  padding-right: 24px;
}

.m-container-regular {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.m-button-secondary {
  color: #7e8ef1;
  background-color: #000;
  border: 2px solid #0000;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.m-button-secondary:hover {
  border-color: #333647;
}

.m-cta-info-icon {
  color: #5a6ded;
}

.m-cta-image-2 {
  width: 50px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.m-button-outline-blue-icon-right {
  grid-column-gap: 4px;
  color: #7e8ef1;
  text-align: center;
  background-color: #0000;
  border: 2px solid #333647;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 16px 24px 17px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.m-button-outline-blue-icon-right:hover {
  color: #fff;
  background-color: #5a6ded;
  border-color: #7e8ef1;
}

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

.m-container-extra-small {
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.m-timeline-accordian-card {
  grid-row-gap: 8px;
  background-color: #111218;
  border-radius: 24px;
  flex-direction: column;
  padding: 16px;
  display: flex;
}

.m-paragraph-regular {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.m-paragraph-regular.m-text-color-gray-300 {
  color: #9c9eab;
}

.m-button-primary {
  color: #fff;
  background-color: #5a6ded;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.m-button-primary:hover {
  background-color: #455bec;
}

.m-button-primary-small {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #fff;
  background-color: #5a6ded;
  border: 2px solid #5a6ded;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.m-button-primary-small:hover {
  color: #5a6ded;
  background-color: #0000;
}

.m-button-primary-small.w--current {
  background-color: #5a6ded;
}

.m-timeline-accordian-heading {
  grid-column-gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.m-margin-bottom-16 {
  margin-bottom: 16px;
}

.m-template-info-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  max-width: 400px;
  margin-top: 16px;
  padding: 8px 24px;
  display: flex;
}

.m-feature-shape {
  justify-content: center;
  display: flex;
}

.m-timeline-accordian-button {
  color: #c8c9d0;
  cursor: pointer;
  border-radius: 24px;
  padding: 8px;
  transition: background-color .3s;
}

.m-timeline-accordian-button:hover {
  background-color: #22242f;
}

.m-timeline-button-filled {
  grid-column-gap: 8px;
  color: #b2b3bd;
  background-color: #111218;
  border: 2px solid #0000;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.m-timeline-card-outline {
  color: #dedfe3;
  border: 2px solid #22242f;
  border-radius: 32px;
  flex-direction: column;
  margin-top: 16px;
  padding: 24px;
  display: flex;
}

.m-subheading-large {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.m-heading-detail-large {
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: normal;
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
}

.m-timeline-item-wrapper {
  color: #f4f4f6;
  width: 50%;
  min-height: 620px;
  padding-bottom: 60px;
}

.m-timeline-bottom-wrapper {
  color: #dedfe3;
  background-color: #111218;
  flex-direction: column;
  margin-top: 8px;
  padding: 24px;
  display: flex;
}

.m-cta-image-4 {
  height: 350px;
  position: absolute;
  inset: 42px 0% auto auto;
}

.m-timeline-section-header {
  margin-bottom: 0;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

.m-timeline-description-wrapper {
  margin-bottom: 32px;
  padding-left: 56px;
}

.m-timeline-button-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.m-timeline-setup-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.m-icon-large {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.m-timeline-cards-wrapper {
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.m-paragraph-small {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

.m-paragraph-small.m-text-color-gray-400 {
  color: #868898;
}

.m-paragraph-small.text-color-gray-300 {
  color: #9c9eab;
}

.m-timeline-caption-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #dedfe3;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  max-width: 156px;
  padding: 16px 24px;
  font-weight: 600;
  display: flex;
}

.m-timeline-number {
  color: #fff;
  background-color: #5a6ded;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  display: flex;
}

.m-text-color-green {
  color: #86c1a0;
}

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

.m-cta-image-1 {
  position: absolute;
  inset: auto auto 0% 24px;
}

.m-button-outline {
  color: #7e8ef1;
  text-align: center;
  background-color: #0000;
  border: 2px solid #333647;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.m-button-outline:hover {
  color: #c8cef9;
  border-color: #7e8ef1;
}

.m-badge {
  color: #f4f4f6;
  letter-spacing: .034em;
  background-color: #333647;
  border-radius: 99px;
  margin-bottom: 24px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.m-timeline-button-dark {
  grid-column-gap: 8px;
  color: #b2b3bd;
  background-color: #000;
  border: 2px solid #0000;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.m-timeline-button-dark:hover {
  border-color: #333647;
}

.m-timeline-step-row {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-bottom: 8px;
  display: flex;
}

.m-timeline-icon-wrapper-large {
  background-color: #45485f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  padding: 16px;
  display: flex;
}

.m-timeline-title-row {
  justify-content: space-between;
  display: flex;
}

.m-subheading-regular {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.m-margin-bottom-04 {
  z-index: 1;
  margin-bottom: 4px;
  position: relative;
}

.m-timeline-button-filled-light {
  grid-column-gap: 8px;
  color: #b2b3bd;
  background-color: #22242f;
  border: 2px solid #22242f;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.m-scroll-animation-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.m-timeline-line {
  background-color: #5a6ded;
  flex: 1;
  width: 100%;
  height: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

.m-timeline-accordian-content {
  overflow: hidden;
}

.image-7, .image-10 {
  border-radius: 4px;
}

.content-wrapper {
  margin-top: 10px;
  margin-bottom: 30px;
}

.text-outlined {
  border: .2rem solid #1469ff;
  border-radius: .2rem;
  padding: .1rem .5rem;
}

.large-title-copy {
  color: #fff;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 45px;
}

.image-15 {
  border-radius: 4px;
}

.feature-grid-content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  width: 100%;
  display: block;
}

.section-3 {
  color: #fff;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 9rem 2rem 5rem;
  font-size: 1rem;
  display: flex;
  position: relative;
}

.section-3.home-walkthrough {
  color: #fff;
  background-color: #000;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 350vh;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: visible;
}

.horizontal-scroll-container {
  grid-column-gap: 146px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 650px;
  padding-right: 5rem;
  display: flex;
}

.sticky-wrapper-copy {
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  width: 100%;
  height: 100vh;
  padding-top: 12rem;
  padding-bottom: 10rem;
  padding-left: 25%;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  line-height: 30px;
}

.horizontal-scroll-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  color: #fff;
  border-top: .5rem solid #1469ff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 500vh;
  padding-top: 1.5rem;
  display: grid;
}

.feature-block {
  align-items: flex-start;
  display: flex;
}

.wrap-v-regular {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  font-size: .5rem;
  display: flex;
}

.paragraph-regular-2 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.paragraph-regular-2.text-color-gray-600 {
  color: #525252;
}

.overline-2 {
  color: #000;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.button-primary-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #f5f5f5;
  letter-spacing: -.02em;
  background-color: #141414;
  border-radius: 99px;
  flex: none;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  transition: background-color .3s;
  display: flex;
}

.button-primary-small:hover {
  background-color: #3d3d3d;
}

.hiw-group {
  flex-flow: column;
  display: flex;
}

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

.hiw-line {
  background-color: #0f6bcc;
  border-radius: 4px;
  width: 4px;
  height: 112px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.button-group-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.h5-heading {
  color: #000;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
}

.wrap-v-x-large {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section-regular-2 {
  padding: 96px 5%;
  position: relative;
}

.hiw-image {
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.hiw-card-row {
  grid-column-gap: 126px;
  grid-row-gap: 126px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center stretch;
  display: grid;
}

.hiw-number-rounded {
  z-index: 2;
  color: #fff;
  text-align: center;
  letter-spacing: -.04em;
  background-color: #0f6bcc;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  display: flex;
  position: absolute;
  inset: -32px auto auto -32px;
  box-shadow: 0 0 0 8px #fff;
}

.h2-heading {
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
}

.title-wrapper-regular {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 588px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-wrapper-regular.margin-bottom-80 {
  margin-bottom: 80px;
  font-weight: 500;
}

.hiw-image-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 282px;
  position: relative;
}

.icon-small-2 {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.footnote {
  color: #030711;
  font-size: 12px;
}

.action-m-2 {
  color: #030711;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
}

.overline-3 {
  color: #030711;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.subheading-2 {
  color: #4b5563;
  letter-spacing: -.3px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.section-cta-2 {
  background-color: #4c90d9;
  padding: 80px 5%;
  position: relative;
}

.cta-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 420px);
  align-items: center;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.footnote-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.cta-card-s {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  display: flex;
}

.cta-wrapper {
  background-color: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 44px;
  position: relative;
}

.button-primary-l {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  -webkit-backdrop-filter: blur(64px);
  backdrop-filter: blur(64px);
  color: #fff;
  letter-spacing: -.2px;
  background-color: #030711;
  border-radius: 44px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  transition: border-color .4s, background-color .4s, color .4s;
  display: flex;
}

.button-primary-l.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.h1-heading-2 {
  color: #030711;
  letter-spacing: -1.6px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 55px;
  font-weight: 500;
  line-height: 72px;
}

.button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.wrap-v-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.wrap-v-regular-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.wrap-v-x-large-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  display: flex;
}

.paragraph-small-2 {
  color: #030711;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}

.paragraph-small-2.text-color-gray-600 {
  color: #4b5563;
}

.image-16 {
  border-radius: 50px;
}

.button-secondary-s-copy {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #dd1d1d;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #fff;
  border: 1px solid #dd1d1d;
  border-radius: 99px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .5s cubic-bezier(.6, .6, 0, 1);
}

.button-secondary-s-copy:hover {
  color: #0f6bcc;
  background-color: #eceefe;
  border-style: none;
}

.button-secondary-s-copy:active {
  background-color: #d8ddfd;
}

.b-navigation-link {
  color: #000;
  white-space: nowrap;
  background-color: #0000;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .35s;
}

.b-navigation-link:hover {
  color: #746bb3;
}

.b-navigation-link.w--current {
  color: #642eff;
}

.b-banner-close {
  color: #c0bcdc;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  transition: color .3s;
  display: flex;
  position: absolute;
  inset: auto 10% auto auto;
}

.b-banner-close:hover {
  color: #fff;
}

.b-icon-regular {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color .2s;
  display: flex;
}

.b-button-primary {
  color: #fff;
  text-align: center;
  background-color: #5187c400;
  border: 1px solid #fff;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: background-color .3s;
  display: inline-block;
}

.b-button-primary:hover {
  color: #fff;
  background-color: #b73400;
  border-style: none;
}

.b-navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.b-icon-medium {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: all .3s;
  display: flex;
}

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

.b-navigation-logo-link {
  margin-right: 24px;
}

.b-banner-link {
  color: #e57361;
  text-decoration: underline;
}

.b-navigation {
  z-index: 999;
  background-color: #f6f5f3;
  align-items: center;
  width: 100%;
  min-height: 96px;
  padding: 24px 5%;
  display: flex;
}

.b-navigation-menu {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  align-items: center;
  display: flex;
  position: static;
}

.b-navigation-button-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.b-header-wrapper {
  margin-top: 100px;
}

.b-container-regular {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  position: relative;
}

.b-banner-detail {
  letter-spacing: -.02em;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.b-button-secondary {
  color: #3e376d;
  background-color: #0000;
  border: 1px solid #acb5c3;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  display: flex;
}

.b-paragraph-regular {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.b-paragraph-regular.b-text-weight-medium {
  color: var(--white);
  font-weight: 500;
}

.b-paragraph-regular.b-text-weight-medium-copy {
  font-weight: 500;
}

.b-header-section {
  background-color: #f6f5f3;
  background-image: linear-gradient(#00000080, #00000080), url('../images/Add-a-heading-15.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 80px 5% 60px;
}

.b-header-image {
  width: 100%;
}

.b-navigation-button-secondary {
  color: #3e376d;
  text-align: center;
  background-color: #0000;
  border: 1px solid #acb5c3;
  border-radius: 16px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: color .3s, border-color .3s, background-color .3s;
}

.b-navigation-button-secondary:hover {
  color: #fff;
  background-color: #e57361;
  border-color: #0000;
}

.b-button-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  margin-top: 32px;
  display: flex;
}

.b-span-primary {
  color: #e57361;
}

.b-header-shape-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-bottom: 16px;
  display: flex;
}

.b-h1-heading {
  color: #3e376d;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
}

.b-title-wrapper-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 620px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 105px;
  display: flex;
}

.b-navigation-wrapper {
  grid-column-gap: 32px;
  align-items: center;
  display: flex;
}

.b-banner {
  grid-column-gap: 16px;
  color: #fff;
  text-align: center;
  background-color: #3e376d;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 16px 5%;
  display: flex;
  position: relative;
}

.b-navigation-button {
  color: #fff;
  text-align: center;
  background-color: #3e376d;
  border-radius: 16px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .3s;
}

.b-navigation-button:hover {
  background-color: #4e4587;
}

.hero-heading-left {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  display: none;
  position: relative;
}

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

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

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

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

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

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

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

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.main-hero_heading {
  color: var(--white);
  letter-spacing: -.03em;
  width: 100%;
  max-width: 10.2em;
  font-family: Montserrat, sans-serif;
  font-size: 3.5em;
  font-weight: 500;
  line-height: 1;
}

.navigation-secondary {
  color: #080808;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #0000;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s, border-color .3s;
  display: flex;
}

.navigation-secondary:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.text-field-icon-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.form-newsletter-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  display: flex;
}

.navigation-wrapper {
  grid-column-gap: 16px;
  align-items: center;
  display: flex;
}

.field-icon {
  color: #b6b9ce;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: absolute;
  inset: auto auto auto 16px;
}

.paragraph-regular-3 {
  color: #818a9c;
  max-width: 460px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

.navigation-menu {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
  position: relative;
}

.button-primary-2 {
  color: #fff;
  background-color: #1457ff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  transition: background-color .3s;
  display: flex;
}

.button-primary-2:hover {
  background-color: #1237a5;
}

.header-grid {
  grid-column-gap: 72px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}

.navigation-button {
  grid-column-gap: 8px;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #1457ff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.navigation-button:hover {
  background-color: #c74e38;
}

.header-logo-grey {
  color: #818a9c;
}

.header-logo-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 32px;
  flex-wrap: wrap;
  margin-top: 96px;
  display: flex;
}

.navigation-link {
  color: #586174;
  letter-spacing: -.01em;
  white-space: nowrap;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 6px;
  padding: 4px 16px;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  transition: all .35s;
}

.navigation-link:hover {
  color: #080808;
  border: 1px solid #e6e6e6;
}

.navigation-link.w--current {
  color: #642eff;
}

.section-header-large {
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 5% 140px;
  display: flex;
  position: relative;
}

.menu-button {
  border-radius: 4px;
  padding: 8px;
  transition: color .3s;
}

.menu-button:hover {
  color: #1457ff;
}

.form-wrapper-small {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  margin-top: 48px;
  display: flex;
}

.text-field-icon {
  color: #160042;
  border: 1px solid #e4e6f1;
  border-radius: 8px;
  width: 100%;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 16px 12px 52px;
  font-size: 14px;
  transition: all .25s;
}

.text-field-icon:hover {
  border-color: #b6b9ce;
}

.text-field-icon:focus {
  color: #160042;
  border-color: #160042;
}

.text-field-icon::placeholder {
  color: #b6b9ce;
}

.hero-heading {
  color: #07090d;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 72px;
}

.navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.text-field-wrapper {
  flex-direction: column;
  align-items: flex-start;
}

.header-tall-image {
  width: 50%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.container-2 {
  z-index: 5;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.header-image-tall {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.navigation-2 {
  background-color: #fff;
  align-items: center;
  width: 100%;
  min-height: 96px;
  padding: 24px 5%;
  display: flex;
}

.logo {
  width: 124px;
}

.span-primary {
  color: #1457ff;
}

.navigation-link-small {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color .3s;
}

.navigation-link-small:hover {
  color: #030711;
}

.icon-small-3 {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.header-button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.navigation-main {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.header-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
}

.header-caption-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.navigation-link-track {
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  padding-left: 3%;
  padding-right: 3%;
}

.submit-button {
  background-color: #3898ec00;
  position: absolute;
  inset: 0%;
}

.header-content-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.navigation-main-b {
  align-items: center;
  display: flex;
}

.action-s {
  color: #030711;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.caption-2 {
  letter-spacing: .04px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.navigation-logo {
  width: 48px;
}

.display-l {
  color: #030711;
  letter-spacing: -2.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 88px;
  font-weight: 500;
  line-height: 96px;
}

.navigation-search-filed {
  border: 1px #000;
  margin-bottom: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 32px;
}

.navigation-container-2 {
  grid-column-gap: 16px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-form-block {
  width: 100%;
  max-width: 380px;
  margin-bottom: 0;
}

.search-success-message {
  color: #030711;
  background-color: #f3f4f6;
  border-radius: 44px;
  padding: 14px;
}

.button-primary-l-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  -webkit-backdrop-filter: blur(64px);
  backdrop-filter: blur(64px);
  color: #fff;
  letter-spacing: -.2px;
  background-color: #030711;
  border-radius: 44px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  transition: border-color .4s, background-color .4s, color .4s;
  display: flex;
}

.button-primary-l-2.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.button-language {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #4b5563;
  background-color: #3898ec00;
  border: 1px solid #d1d5db;
  border-radius: 44px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 8px 24px 8px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  transition: border-color .4s, background-color .4s, color .4s;
  display: flex;
}

.button-language:hover {
  background-color: #f6f7f9;
}

.button-language:active {
  color: #454f5f;
  background-color: #f6f7f9;
}

.button-language.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.navigation-3 {
  z-index: 9;
  background-color: #fff;
  align-items: center;
  width: 100%;
  min-height: 84px;
  padding: 20px 3%;
  display: flex;
}

.footnote-2 {
  color: #030711;
  font-size: 12px;
  text-decoration: none;
}

.search-button-wrapper {
  background-color: #000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header {
  display: none;
}

.navigation-button-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.icon-regular-2 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.header-section {
  padding: 86px 5% 48px;
  position: relative;
}

.navigation-link-2 {
  color: #030711;
  letter-spacing: -.18px;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  transition: color .3s;
}

.navigation-link-2:hover {
  color: #1f2937;
}

.navigation-link-2.w--current {
  color: #000;
  border: 1.5px solid #dcdfe5;
}

.navigation-menu-2 {
  align-items: center;
  display: flex;
}

.header-grid-top {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  margin-bottom: 40px;
}

.scrollbar-css {
  display: none;
}

.navigation-scroll {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  white-space: nowrap;
  justify-content: space-between;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 32px;
  display: flex;
  overflow: auto;
}

.banner-dark {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #f3f4f6;
  background-color: #030711;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding-left: 3%;
  padding-right: 3%;
  text-decoration: none;
  display: flex;
}

.navigation-form {
  border: 1px solid #e5e7eb;
  border-radius: 44px;
  align-items: center;
  height: 48px;
  padding: 4px 8px;
  display: flex;
}

.button-ghost-l {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #030711;
  border-radius: 44px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  transition: border-color .4s, background-color .4s, color .4s;
  display: flex;
}

.button-ghost-l:hover {
  background-color: #f6f7f9;
}

.button-ghost-l:active {
  color: #454f5f;
  background-color: #f6f7f9;
}

.button-ghost-l.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.main-hero_heading-copy {
  letter-spacing: -.03em;
  width: 100%;
  max-width: 10.2em;
  font-family: Montserrat, sans-serif;
  font-size: 3.5em;
  line-height: 1;
}

.b-paragraph-regular-copy {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.b-paragraph-regular-copy.b-text-weight-medium, .b-paragraph-regular-copy.b-text-weight-medium-copy {
  font-weight: 500;
}

.footer-caption-wrap {
  color: #6d767e;
  padding: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.header-review-block {
  grid-column-gap: 4px;
  align-items: flex-start;
  display: flex;
}

.field-input-a {
  letter-spacing: -.02em;
  background-color: #f8f9fa;
  border: 1px solid #eaedf0;
  border-radius: 99px;
  width: 100%;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px 12px 12px 48px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all .25s;
}

.field-input-a::placeholder {
  color: #6d767e;
}

.header-review-avatar {
  border: 4px solid #fff;
  border-radius: 99px;
  flex: none;
  width: 48px;
  height: 48px;
  margin-left: -12px;
  overflow: hidden;
}

.header-review-avatar.first-avatar {
  margin-left: 0;
}

.header-input {
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.header-form-wrapper {
  width: 100%;
  max-width: 495px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.header-grid-b {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1.4fr 1fr;
  place-items: start stretch;
}

.span-red-500 {
  color: #e56161;
}

.paragraph-large-2 {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.8;
}

.paragraph-large-2.text-weight-bold {
  white-space: normal;
  font-weight: 700;
}

.paragraph-large-2.text-weight-medium {
  font-weight: 500;
}

.section-regular-3 {
  padding: 80px 5% 20px;
  position: relative;
}

.header-form {
  grid-column-gap: 12px;
  flex-flow: row;
  align-items: stretch;
  display: flex;
}

.header-badge-a {
  color: #fff;
  text-transform: uppercase;
  background-color: #b73400;
  border-radius: 99px;
  align-items: center;
  padding: 4px 8px 2px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  display: flex;
}

.header-form-b {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

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

.button-primary-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #02168a;
  border-radius: 16px;
  flex-direction: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 32px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

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

.wrap-h-x-small {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-items: center;
  display: flex;
}

.header-review-star {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  display: flex;
}

.header-badge {
  grid-column-gap: 8px;
  color: #86c1a0;
  align-items: center;
  padding: 2px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.h1-heading-3 {
  color: #000;
  letter-spacing: -.04em;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
}

.field-icon-a {
  color: #6173e5;
  background-color: #fff;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  position: absolute;
  inset: 8px auto 8px 8px;
}

.header-review-avatars {
  display: flex;
}

.paragraph-small-3 {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.paragraph-small-3.text-color-green-500 {
  color: #86c1a0;
}

.paragraph-small-3.text-color-gray-600 {
  color: #fff;
}

.header-review-group {
  grid-column-gap: 16px;
  align-items: center;
  display: flex;
}

.header-badge-wrapper {
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.main-hero_heading-2 {
  letter-spacing: -.03em;
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.2;
}

.hero-heading-right {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 25px 0 20px;
  position: relative;
}

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

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

.hero-split-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.code-embed {
  border: 2px solid #02168a;
  border-radius: 5px;
  padding: 4px 4px 0;
}

.heading-3 {
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  line-height: 100%;
}

.main-hero_heading-3 {
  letter-spacing: -.03em;
  width: 100%;
  max-width: 14em;
  margin-bottom: 25px;
  font-size: 2em;
  line-height: 1;
}

.heading-4 {
  color: var(--white);
}

.heading-5 {
  color: var(--black);
}

.hero-heading-center {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading.margin-bottom-32px {
  margin-bottom: 32px;
}

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

.hero-split-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

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

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

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

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

.shadow-two-2 {
  box-shadow: 0 4px 24px #96a3b514;
}

.header-statistics-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  margin-top: 40px;
}

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

.header-marquee-overlay {
  background-image: linear-gradient(#f7f6f2, #f7f6f2 10%, #f7f6f200 38% 62%, #f7f6f2cc 90%, #f7f6f2);
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0%;
}

.h4-heading {
  color: #000;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}

.button-primary-5 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  background-color: #2a514c;
  border-radius: 8px;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: all .3s;
}

.button-primary-5:hover {
  background-color: #376d65;
}

.button-primary-5:active {
  background-color: #45877e;
}

.header-statistics-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding: 16px;
  display: flex;
}

.icon-block {
  color: #2a514c;
  background-color: #e0e3de;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  overflow: hidden;
}

.h1-heading-4 {
  color: #000;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
}

.marquee-embed {
  display: none;
}

.grid-two-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  width: 100%;
}

.header-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 486px;
  display: flex;
}

.paragraph-small-4 {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 23px;
}

.marquee-image-large {
  align-items: center;
  width: 180px;
  height: 254px;
  box-shadow: 0 16px 32px -16px #282c25;
}

.header-marquee-loop {
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.wrap-v-xx-large {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.header-marquee-large {
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: relative;
}

.paragraph-regular-4 {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.paragraph-regular-4.text-gray-700 {
  color: #50584b;
}

.header-marquee-item {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
  display: flex;
}

.header-marquee {
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: relative;
}

.button-outline-left-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #2a514c;
  text-align: center;
  background-color: #0000;
  border: 1px solid #cbd0c8;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px 12px 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.button-outline-left-icon:hover {
  background-color: #e0e3de;
  border-color: #e0e3de;
}

.button-outline-left-icon:active {
  background-color: #cbd0c8;
  border-color: #cbd0c8;
}

.marquee-image {
  align-items: center;
  width: 102px;
  height: 144px;
  box-shadow: 0 16px 32px -16px #282c25;
}

.button-wrap-small {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.icon-regular-3 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color .2s;
  display: flex;
}

.heading-detail {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.section-regular-4 {
  background-color: #f7f6f2;
  padding: 92px 5%;
  position: relative;
}

.header-marquee-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.text-red-500 {
  color: #d74747;
}

.f-margin-bottom-16 {
  margin-bottom: 16px;
}

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

.f-h3-heading {
  color: #160042;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2;
}

.f-blog-bottom-grid {
  grid-column-gap: 98px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  margin-bottom: 72px;
}

.blog-social-share-link {
  color: #160042;
  text-align: center;
  letter-spacing: -.02em;
  border: 1px solid #e4e6f1;
  border-radius: 48px;
  align-items: center;
  min-width: 130px;
  min-height: 40px;
  padding: 8px 28px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.f-blog-thumbnail-regular {
  height: 400px;
}

.f-margin-bottom-08 {
  margin-bottom: 8px;
}

.f-h5-heading {
  color: #160042;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.4;
}

.f-blog-thumbnail {
  border-radius: 8px;
  height: 320px;
  margin-bottom: 24px;
  overflow: hidden;
}

.f-title-wrapper-center {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.f-blog-social-share {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

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

.f-container-small {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-blog-wrapper {
  position: relative;
}

.f-margin-bottom-72 {
  margin-bottom: 72px;
}

.f-heading-detail-small {
  color: #6b7094;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.f-paragraph-large {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.blog-social-icon {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  display: flex;
}

.f-section-large {
  background-color: #f4f4f4;
  padding: 50px 5% 25px;
  position: relative;
}

.section-large {
  padding: 120px 5%;
  position: relative;
}

.faq-title-wrapper {
  color: #160042;
  white-space: normal;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 4px;
  display: flex;
}

.faq-toggle {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  display: flex;
}

.faq-toggle:hover {
  color: #338cff;
}

.grid-one-column {
  grid-column-gap: 40px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.faq-icon-square {
  background-color: #f7f9fd;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  display: flex;
}

.paragraph-regular-bold {
  letter-spacing: -.03em;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.faq-content {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.heading-detail-small {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
}

.flex-wrapper-centre {
  z-index: 5;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.faq-item-line {
  border: 1px solid #e4e6f1;
  border-radius: 10px;
  max-width: 100%;
  padding: 28px 32px;
  transition: all .3s;
  display: block;
}

.faq-content-wrapper {
  width: 100%;
  max-width: 90%;
  line-height: 36px;
}

.paragraph-regular-5 {
  letter-spacing: -.02em;
  font-size: 16px;
  line-height: 24px;
}

.container-x-small {
  width: 100%;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.faq-arrow {
  color: #6b7094;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.faq-base {
  width: 70%;
  height: 100%;
  padding: 100px 3%;
}

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

.title-heading {
  color: #0a071b;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
}

.faq-content-2 {
  margin-top: 0;
  overflow: hidden;
}

.title-wrap-centre {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.title-underline {
  background-color: #ff6f30;
  max-width: 60px;
  height: 4px;
  margin-top: 4px;
}

.faq-title {
  color: #000;
  letter-spacing: -.02em;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
}

.faq-question {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 20px 32px;
  text-decoration: none;
  transition: background-color .2s;
}

.faq-question:hover {
  background-color: #fcfcfc;
}

.faq-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr;
}

.faq-section {
  background-color: #fff;
  align-items: stretch;
  display: flex;
}

.faq-question-bar {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.faq-side {
  width: 30%;
  height: auto;
}

.faq-icon-circle {
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 8px;
  display: flex;
  box-shadow: 8px 8px 65px #0000001a;
}

.faq-paragraph {
  color: #aaa;
  letter-spacing: -.02em;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 16px;
  line-height: 27px;
  overflow: hidden;
}

.faq-wrapper {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.b-button-primary-copy {
  color: #fff;
  text-align: center;
  background-color: #5187c400;
  border: 1px solid #fff;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: background-color .3s;
  display: inline-block;
}

.b-button-primary-copy:hover {
  color: #fff;
  background-color: #b73400;
  border-style: none;
}

.button-primary-6 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #ffffff0f;
  border-radius: 16px;
  flex-direction: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 28%;
  padding: 12px 32px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

.paragraph-large-3 {
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.paragraph-large-3.text-weight-bold {
  white-space: normal;
  font-weight: 700;
}

.header-grid-b-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  margin-top: 34px;
}

.text-block-3 {
  font-size: 14px;
}

.section-regular-5 {
  padding: 39px 5% 20px;
  position: relative;
}

.section-regular-5._22 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/Add-a-heading-15.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: 100vh;
  margin-top: 112px;
  display: block;
}

.main-hero_heading-4 {
  color: var(--white);
  letter-spacing: -.03em;
  width: 100%;
  max-width: 10.2em;
  font-family: Poppins, sans-serif;
  font-size: 3.5em;
  font-weight: 500;
  line-height: 1;
}

.wrap-v-regular-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.image-cover-3 {
  object-fit: cover;
  border: 5px #0f6bcc;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.image-17 {
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
}

.feature-link-title {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.feature-cta {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  display: flex;
}

.text-color-red {
  color: #ff443d;
}

.feature-carousel-wrapper {
  max-width: 2560px;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.label-medium {
  font-size: 16px;
  line-height: 24px;
}

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

.feature-link-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #000;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #d6d3d1;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 306px;
  padding: 24px 16px;
  text-decoration: none;
  display: flex;
}

.feature-link-card:hover {
  background-color: #fff;
}

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

.h5-heading-2 {
  color: #000;
  letter-spacing: -.35px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.label-large {
  letter-spacing: -.24px;
  font-size: 18px;
  line-height: 24px;
}

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

.title-caption {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #ff443d;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
}

.feature-carousel {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.feature-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

.feature-illustration {
  width: 132px;
}

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

.icon-x-large {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.icon-x-small {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.max-width-medium-2 {
  max-width: 550px;
}

.section-feature {
  padding-top: 0;
  padding-bottom: 0;
}

.h2-heading-2 {
  color: #000;
  letter-spacing: -.8px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.paragraph-large-4 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.paragraph-large-4.text-color-gray-950 {
  color: #1f1e1e;
}

.feature-link-text {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.icon-wrapper-regular {
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.paragraph-regular-6 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

.paragraph-regular-6.text-color-gray-800 {
  color: #4d4d4c;
}

.wrap-v-tiny-2 {
  z-index: 5;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.link-arrow {
  overflow: hidden;
}

.testimonial-overlay {
  z-index: 5;
  pointer-events: none;
  background-image: linear-gradient(#fff0, #f6f5f300 50%, #f6f5f3cc 80%, #f6f5f3);
  position: absolute;
  inset: 0%;
}

.paragraph-x-small {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 16px;
}

.paragraph-x-small.text-color-gray-800 {
  color: #4d4d4c;
}

.testimonial-wrapper {
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
}

.testimonial-avatar-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.badge-2 {
  color: #ff443d;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #fff7f5;
  border: 1px solid #ffeae6;
  border-radius: 96px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.badge-2.purple {
  color: #9375ff;
  background-color: #fcfaff;
  border-color: #f2ebff;
}

.container-large-4 {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.avatar-small {
  border-radius: 100%;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.button-wrapper-2 {
  margin-top: 12px;
}

.button-large {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fff;
  background-color: #1f1e1e;
  border: 1px solid #1f1e1e;
  border-radius: 96px;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.button-large:hover {
  background-color: #ff443d;
  border-color: #ff443d;
}

.section-small {
  padding: 80px 5%;
}

.section-small.background-secondary {
  background-color: #f6f5f3;
}

.title-wrapper-large {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.h2-heading-3 {
  color: #000;
  letter-spacing: -.8px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.paragraph-large-5 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.paragraph-large-5.text-color-gray-950 {
  color: #1f1e1e;
}

.testimonial-group {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.testimonial-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.testimonial-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
  box-shadow: 0 3px 2px #201f1f00, 0 2px 1px #201f1f03, 0 1px 1px #201f1f0a, 0 1px 1px #201f1f12;
}

.wrap-v-tiny-3 {
  z-index: 5;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.text-block-4 {
  color: #b73400;
}

.wrap-h-space-between {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
}

.wrap-h-space-between.align-center {
  align-items: center;
}

.section-regular-6 {
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.section-regular-6.bg-brown {
  z-index: 1;
  background-color: #f9f7f7;
}

.testimonial-name-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  display: flex;
}

.button-group-m {
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.h5-heading-3 {
  color: #0a0a0a;
  letter-spacing: -1.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
}

.paragraph-regular-7 {
  letter-spacing: -.25px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
}

.paragraph-regular-7.text-weight-medium {
  font-weight: 500;
}

.button-primary-m {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  -webkit-backdrop-filter: blur(64px);
  backdrop-filter: blur(64px);
  color: #f0f0f0;
  text-align: center;
  letter-spacing: -.25px;
  background-color: #0a0a0a;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: border-color .4s, background-color .4s, color .4s;
  display: flex;
}

.button-primary-m:hover {
  background-color: #404040;
}

.button-primary-m.w--current {
  background-color: #344256;
  border-color: #48566a;
}

.testimonial-card-2 {
  grid-row-gap: 16px;
  background-color: #fff;
  flex-direction: column;
  padding: 24px;
  display: flex;
}

.wrap-h-tiny {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #171717;
  flex-direction: row;
  display: flex;
}

.grid-three-column {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.text-link-s {
  color: #404040;
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
}

.text-color-purple-600 {
  color: #5c2d5c;
}

.title-wrapper-s {
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-wrapper-s._456 {
  margin-bottom: 32px;
}

.avatar-s {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.paragraph-small-5 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

.caption-uppercase {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.caption-3 {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.container-large-5 {
  z-index: 5;
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.overline-4 {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.button-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #6173e5;
  border-radius: 99px;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.testimonial-carousel-code {
  display: none;
}

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

.testimonial-detail {
  color: #6d767e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.testimonial-loop-s {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.testimonial-loop-wrapper {
  align-items: center;
  min-height: 480px;
  display: flex;
  position: relative;
}

.testimonial-author-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.testimonial-divider {
  background-color: #dfe3e7;
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.testimonial-star-wrapper {
  grid-column-gap: 4px;
  margin-bottom: 16px;
  display: flex;
}

.testimonial-carousel-group {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.testimonial-name-l {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.testimonial-card-d {
  width: 384px;
  padding: 24px;
}

.margin-bottom-16 {
  margin-bottom: 16px;
}

.testimonial-avatar {
  background-color: #f7f9fd;
  border-radius: 100%;
  flex: none;
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.title-wrapper {
  z-index: 5;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 454px;
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.testimonial-carousel {
  grid-column-gap: 24px;
  flex: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.h2-heading-4 {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.2;
}

.testimonial-button-wrap {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: center;
  margin-top: 64px;
  display: flex;
}

.testimonial-avatar-wrap {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.header-grid-b-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1.4fr;
  place-items: start stretch;
}

.section-regular-3-copy {
  background-image: linear-gradient(#000000b5, #000000b5), url('../images/Untitled-design---2024-08-04T122544.367.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 80px 5% 20px;
  position: relative;
}

.main-hero_heading-2-copy {
  color: var(--white);
  letter-spacing: -.03em;
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.3;
}

.paragraph-large-2-copy {
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.8;
}

.paragraph-large-2-copy.text-weight-bold {
  white-space: normal;
  font-weight: 700;
}

.process-title-wrap {
  text-align: center;
  max-width: 680px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.feature-icon-square {
  background-color: #b73400;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  margin-bottom: 40px;
  display: flex;
  box-shadow: 2px 30px 40px -32px #b73400;
}

.feature-title {
  color: #000;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1.2;
}

.process-container {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.feature-paragraph {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 32px;
}

.process-card-primary {
  border-radius: 30px;
  padding: 40px;
  transition: all .3s;
  position: relative;
}

.process-card-primary:hover {
  background-color: #fff;
  box-shadow: 23px 23px 40px #e5e5e566;
}

.process-heading {
  color: #000;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 48px;
  line-height: 1.3;
}

.process-section {
  background-color: #fafafa;
  background-image: url('../images/Bloom-Large.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 3%;
}

.process-arrow-01 {
  max-width: 60%;
  position: absolute;
  inset: 15% -80px auto auto;
}

.process-arrow-02 {
  max-width: 60%;
  position: absolute;
  inset: auto -80px 45% auto;
}

.process-grid {
  grid-column-gap: 80px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.process-subheading {
  color: #4f4f4f;
  font-size: 24px;
  line-height: 1.5;
}

.footer-dark {
  background-color: #000;
  border-bottom: 1px solid #e4ebf3;
  padding: 15px 30px;
  position: relative;
}

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

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link-2 {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link-2:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link-2 {
  margin-left: 12px;
}

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

.footer-copyright-center {
  color: var(--white);
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.footer-social {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
}

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

.footer-mail-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #1a1a1a;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.paragraph-small-6 {
  font-size: 14px;
  line-height: 24px;
}

.paragraph-small-6.text-gray-600 {
  color: #666;
}

.footer-line {
  background-color: #f2f3f8;
  width: 100%;
  height: 1px;
}

.footer-line.margin-bottom-64 {
  margin-bottom: 64px;
}

.footer-line.margin-48 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.footer-title {
  color: #b2b2b2;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
}

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

.footer-text-link {
  color: #1a1a1a;
  letter-spacing: -.02em;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  transition: color .3s;
}

.footer-text-link:hover {
  color: #4255bd;
}

.icon-regular-4 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.footer-social-link-3 {
  color: #1a1a1a;
  background-color: #0000;
  border: 1px solid #1a1a1a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  transition: all .3s;
  display: flex;
}

.footer-social-link-3:hover {
  color: #4255bd;
  background-color: #f4f5fb;
  border-color: #4255bd;
}

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

.section-regular-7 {
  padding: 92px 5%;
  position: relative;
}

.wrap-v-small-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.footer-logo {
  width: 250px;
}

.footer-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

.icon-small-4 {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

._404-box-05 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #fff;
  border: .5px solid #f3f4f6;
  border-radius: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
  display: flex;
  position: absolute;
  inset: 54px auto auto -108px;
  transform: rotate(-5deg);
  box-shadow: 0 2px 8px #c4cad43d;
}

._404-shape-03 {
  position: absolute;
  inset: auto -96px 36px auto;
}

._404-wrapper-small {
  justify-content: center;
  align-items: center;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  position: relative;
}

.icon-2 {
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-regular-8 {
  color: #454f5f;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

._404-title-small {
  color: #e57361;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 156px;
  font-weight: 400;
  line-height: 1;
}

.subheading-x-small {
  color: #22272f;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.subheading-x-small.text-weight-medium {
  font-weight: 500;
}

.section-regular-8 {
  padding: 92px 5%;
  position: relative;
}

.section-regular-8.background-off-white {
  background-color: #f6f5f3;
}

.paragraph-x-small-2 {
  color: #454f5f;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.h3-heading {
  color: #3e376d;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}

.max-width-regular {
  width: 100%;
  max-width: 510px;
}

._404-box-06 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: #fff;
  border: .5px solid #f3f4f6;
  border-radius: 99px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  display: flex;
  position: absolute;
  inset: 96px -92px auto auto;
  transform: rotate(5deg);
  box-shadow: 0 2px 8px #c4cad43d;
}

.button-primary-7 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fff;
  text-align: center;
  background-color: #3e376d;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-flex;
}

.button-primary-7:hover {
  background-color: #4e4587;
}

._404-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  background-color: #fff;
  border-radius: 32px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: flex;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .container-3 {
    max-width: 1140px;
  }

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

@media screen and (min-width: 1440px) {
  .b-container-regular {
    padding-top: 147px;
  }

  .b-header-section {
    padding-top: 40px;
  }

  .container-3 {
    max-width: 1240px;
  }

  .header-grid-b-2 {
    margin-top: 0;
  }

  .section-regular-5._22 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 106px;
    padding-top: 0;
    display: flex;
  }
}

@media screen and (min-width: 1920px) {
  .b-header-wrapper {
    background-position: 0 0;
    background-size: contain;
    background-attachment: scroll;
    display: none;
  }

  .b-container-regular {
    padding-top: 100px;
  }

  .b-header-section {
    padding-top: 200px;
  }

  .b-title-wrapper-center {
    padding-top: 15px;
  }

  .hero-heading-left {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .container {
    max-width: 1240px;
    margin-top: -147px;
  }

  .hero-wrapper {
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(11px);
    border: 1px solid #152792;
    border-radius: 20px;
    padding: 25px;
  }

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

  .header {
    margin-top: 28px;
    display: block;
  }

  .header-section {
    padding-left: 0%;
    padding-right: 0%;
  }

  .b-paragraph-regular-copy.b-text-weight-medium-copy {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-grid-b-2 {
    margin-top: 0;
  }

  .section-regular-5._22 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .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-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .hide-tablet {
    display: none;
  }

  .section-hero {
    background-position: 98% 70%, 2% 80%;
    background-size: auto, auto;
  }

  .blog-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-1-page-component, .service-2-page-component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .blog-post-header-title-wrapper {
    margin-bottom: 4rem;
  }

  .blog-post-header-image-wrapper {
    padding-top: 56.25%;
  }

  .blog-post-content-content {
    margin-bottom: 3rem;
  }

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

  .contact-locations-component {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
  }

  .navbar-menu {
    background-color: var(--color--white-solid);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
    box-shadow: 0 6px 16px #0003;
  }

  .navbar-link {
    text-align: right;
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .navbar-menu-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .navbar-dropdown-toggle {
    justify-content: flex-end;
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    display: flex;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .navbar-dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar-dropdown-list.w--open {
    border-style: none;
    padding: 0;
  }

  .navbar-dropdown-link {
    text-align: right;
    width: auto;
    padding: .75rem 0 .75rem 5%;
  }

  .navbar-menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

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

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

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

  .menu-icon-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-icon-line-bottom {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .global-services-row {
    grid-template-columns: 1fr;
  }

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

  .global-services-card-large-content {
    padding: 2rem;
  }

  .global-services-card-small {
    padding: 1rem;
  }

  .global-services-card-small-content {
    padding: 2rem;
  }

  .footer-top-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

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

  .about-1-main-component, .about-2-main-component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .about-members-list, .testimonial-component {
    grid-template-columns: 1fr 1fr;
  }

  .services-gallery-arrow.hide-mobile-landscape {
    width: 3rem;
    height: 3rem;
  }

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

  .licenses-component {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    color: #393b6a;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
  }

  .nav-menu.w--open {
    background-color: #282556;
    border-color: #fff;
  }

  .nav-button-group {
    align-items: center;
    width: auto;
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-list-l.w--open {
    max-width: none;
    padding: 0;
    position: relative;
    top: 8px;
  }

  .button-secondary-s {
    display: block;
  }

  .button-secondary-s._2, .button-primary-s {
    display: none;
  }

  .nav-link {
    width: 100%;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .navigation {
    position: relative;
  }

  .nav-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .nav-wrapper {
    align-items: center;
    width: auto;
    display: flex;
  }

  .nav-logo-link {
    margin-right: 0;
  }

  .nav-dropdown-base-c {
    box-shadow: none;
    padding: 16px;
  }

  .nav-dropdown-base-c.w--open {
    box-shadow: none;
    height: 500px;
    margin-left: 0;
    margin-right: 0%;
    padding: 16px;
    position: static;
    overflow: auto;
  }

  .nav-menu-button {
    color: #6173e5;
    background-color: #eeeffc;
    border-radius: 100px;
    padding: 12px;
  }

  .nav-menu-button.w--open {
    background-color: #6173e5;
    border-color: #fff;
  }

  .feature-grid-large {
    grid-template-columns: 1fr 1fr;
  }

  .m-timeline-item-wrapper {
    width: 100%;
    min-height: 100%;
    padding-bottom: 0;
  }

  .m-cta-image-4 {
    height: 120px;
  }

  .m-timeline-step-row {
    flex-direction: column;
    margin-bottom: 94px;
  }

  .m-timeline-title-row {
    display: none;
  }

  .m-scroll-animation-wrapper {
    width: 16px;
    height: 100%;
    position: absolute;
    inset: 0% auto auto 0%;
  }

  .horizontal-scroll-container {
    max-width: 80vw;
    padding-right: 0;
  }

  .sticky-wrapper-copy {
    padding-left: 2rem;
  }

  .hiw-group {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .hiw-card-row {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hiw-card-row.line {
    display: none;
  }

  .hiw-number-rounded {
    width: 48px;
    height: 48px;
    font-size: 20px;
    line-height: 28px;
    top: -24px;
    left: -24px;
  }

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

  .cta-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .button-secondary-s-copy {
    display: none;
  }

  .b-navigation-link {
    width: 100%;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .b-banner-close {
    right: 3%;
  }

  .b-navigation-logo-link {
    margin-right: 0;
  }

  .b-navigation {
    position: relative;
  }

  .b-navigation-menu {
    color: #393b6a;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
  }

  .b-navigation-menu.w--open {
    background-color: #282556;
    border-color: #fff;
  }

  .b-navigation-button-wrapper {
    align-items: center;
    width: auto;
    display: flex;
  }

  .b-header-wrapper {
    display: none;
  }

  .b-navigation-menu-button {
    color: #746bb3;
    border-radius: 16px;
    padding: 12px;
  }

  .b-navigation-menu-button.w--open {
    background-color: #5e53a2;
    border-color: #fff;
  }

  .b-navigation-wrapper {
    align-items: center;
    width: auto;
    display: flex;
  }

  .hero-heading-left {
    padding-top: 110px;
    display: block;
  }

  .container {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-top: -78px;
    margin-bottom: 40px;
  }

  .main-hero_heading {
    font-size: 5em;
  }

  .logo-link {
    margin-right: 0;
  }

  .navigation-wrapper {
    align-items: center;
    width: auto;
    display: flex;
  }

  .navigation-menu {
    color: #393b6a;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
  }

  .navigation-menu.w--open {
    background-color: #282556;
    border-color: #fff;
  }

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

  .navigation-link {
    width: 100%;
  }

  .section-header-large {
    padding-bottom: 400px;
  }

  .menu-button.w--open {
    background-color: #07090d;
    justify-content: center;
    align-items: center;
  }

  .header-tall-image {
    width: 100%;
    height: 300px;
    inset: auto 0% 0%;
  }

  .navigation-2 {
    position: relative;
  }

  .header-button-wrapper {
    justify-content: center;
  }

  .header-image-wrapper {
    border-radius: 0;
  }

  .header-content-wrapper {
    align-items: center;
  }

  .navigation-main-b {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    display: flex;
  }

  .display-l {
    font-size: 72px;
    line-height: 82px;
  }

  .navigation-form-block {
    max-width: none;
  }

  .button-language {
    display: none;
  }

  .navigation-3 {
    position: relative;
  }

  .navigation-mobile {
    color: #fff;
    background-color: #030711;
    border-radius: 44px;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 12px;
    display: flex;
  }

  .navigation-mobile.w--open {
    color: #fff;
    background-color: #030711;
    border-color: #0000;
  }

  .header {
    display: block;
  }

  .navigation-logo-link {
    margin-right: 0;
  }

  .header-section {
    padding: 108px 0% 0;
  }

  .navigation-link-2 {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .navigation-menu-2 {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px;
  }

  .navigation-menu-2.w--open {
    background-color: #282556;
    border-color: #fff;
  }

  .header-grid-top {
    text-align: center;
    grid-template-columns: 1.3fr;
  }

  .main-hero_heading-copy {
    font-size: 3em;
  }

  .b-paragraph-regular-copy.b-text-weight-medium-copy {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .button-primary-3 {
    display: flex;
  }

  .main-hero_heading-2 {
    font-size: 5em;
  }

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

  .hero-wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .main-hero_heading-3 {
    font-size: 5em;
  }

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

  .hero-wrapper-3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-3 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .grid-two-column {
    grid-template-columns: 1fr;
  }

  .header-content {
    max-width: none;
  }

  .header-marquee-loop {
    height: 620px;
  }

  .f-blog-thumbnail {
    margin-bottom: 16px;
  }

  .faq-content, .faq-base {
    width: 100%;
  }

  .faq-section {
    flex-direction: column;
  }

  .faq-side {
    width: 100%;
    height: 440px;
  }

  .button-primary-6 {
    display: flex;
  }

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

  .main-hero_heading-4 {
    font-size: 5em;
  }

  .feature-carousel {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 1920px;
  }

  .feature-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .feature-illustration {
    order: -1;
    width: 300px;
  }

  .testimonial-group.third {
    display: none;
  }

  .testimonial-grid, .grid-three-column {
    grid-template-columns: 1fr 1fr;
  }

  .button-2 {
    display: flex;
  }

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

  .main-hero_heading-2-copy {
    font-size: 5em;
  }

  .process-card-primary {
    background-color: #fff;
  }

  .process-arrow-01, .process-arrow-02 {
    display: none;
  }

  .process-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-content {
    grid-column-gap: 60px;
  }

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

  .section-regular-8 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

  .styleguide-grid-colours {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

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

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

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

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

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

  .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-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .section-hero {
    background-image: url('../images/hero-right.svg'), url('../images/hero-left.svg');
    background-position: 98% 70%, 2% 80%;
    background-repeat: no-repeat, no-repeat;
    background-size: 150px, 150px;
  }

  .hero-image-wrapper {
    width: 18rem;
  }

  .blog-list, .service-1-page-component, .service-2-page-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .blog-post-header-title-wrapper {
    margin-bottom: 3rem;
  }

  .blog-post-content-content {
    margin-bottom: 2rem;
  }

  .contact-form-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .navbar {
    height: auto;
    min-height: 4rem;
  }

  .navbar-logo-link {
    padding-left: 0;
  }

  .global-services-row {
    grid-template-columns: 1fr;
  }

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

  .global-services-card-large-content {
    padding: 1.5rem;
  }

  .global-services-card-small {
    grid-template-columns: 1fr;
  }

  .global-services-card-small-content {
    padding: 1.5rem;
  }

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

  .footer-bottom-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-auto-flow: row;
    justify-items: center;
    padding-bottom: 1rem;
  }

  .footer-credit-text {
    margin-top: 1rem;
  }

  .hero-header-span-2 {
    background-size: contain;
    padding-right: 9rem;
  }

  .about-1-main-component, .about-2-main-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .about-partners-list {
    grid-template-columns: 1fr 1fr;
  }

  .about-partners-wrapper {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-partners-logo {
    max-height: 3rem;
  }

  .about-members-list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .testimonial-component {
    grid-template-columns: 1fr;
  }

  .testimonial-content {
    padding: 1.5rem;
  }

  .testimonial-client {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .services-gallery-slide {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .services-gallery-slider {
    padding-bottom: 3rem;
  }

  .services-gallery-mask {
    width: 50%;
  }

  .services-faq-question {
    padding: 1rem 1.25rem;
  }

  .services-faq-icon-wrappper {
    width: 1.75rem;
  }

  .services-faq-answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

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

  .hero-header-span-1, .about-header-span-1, .about-header-span-2, .services-header-span-1, .services-header-span-2, .face-header-span-2, .face-header-span-1, .body-header-span-1, .body-header-span-2, .hair-header-span-1, .hair-header-span-2, .makeup-header-span-1, .makeup-header-span-2, .nail-header-span-1, .nail-header-span-2, .medicine-header-span-1, .medicine-header-span-2 {
    background-size: contain;
    padding-right: 9rem;
  }

  .banner {
    text-align: left;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .grid, .nav-link-grid {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-base-c {
    height: 400px;
    overflow: auto;
  }

  .section-regular {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .h1-heading {
    font-size: 54px;
    line-height: 62px;
  }

  .feature-grid-large {
    grid-template-columns: 1fr;
  }

  .section-carousel {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .m-h3-heading {
    font-size: 40px;
  }

  .m-cta-header, .m-timeline-header {
    margin-bottom: 60px;
  }

  .section-3 {
    padding-top: 5.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-regular-2 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hiw-number-rounded {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 24px;
    top: -20px;
    left: -20px;
  }

  .h2-heading {
    font-size: 44px;
  }

  .section-cta-2 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .cta-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .h1-heading-2 {
    font-size: 54px;
    line-height: 62px;
  }

  .b-header-wrapper {
    background-image: url('../images/Untitled-design---2024-07-03T191502.620.png');
    background-position: 0 0;
    background-size: auto;
    display: none;
  }

  .b-header-section {
    background-image: linear-gradient(#071a8a3d, #071a8a3d), url('../images/Untitled-design---2024-07-03T191502.620.png');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    padding-top: 60px;
  }

  .b-h1-heading {
    font-size: 48px;
  }

  .b-banner {
    text-align: left;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .b-navigation-button {
    display: none;
  }

  .hero-heading-left {
    padding: 60px 15px;
    display: block;
  }

  .hero-split {
    margin-top: -48px;
  }

  .main-hero_heading {
    font-size: 3.5em;
  }

  .navigation-secondary {
    display: none;
  }

  .header-image-wrapper {
    border-radius: 0;
  }

  .display-l {
    font-size: 52px;
    line-height: 72px;
  }

  .header {
    display: block;
  }

  .header-section {
    padding: 114px 0% 0;
  }

  .navigation-scroll {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .main-hero_heading-copy {
    margin-bottom: 15px;
    font-size: 3em;
  }

  .b-paragraph-regular-copy.b-text-weight-medium-copy {
    margin-bottom: 15px;
  }

  .section-regular-3 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .h1-heading-3 {
    font-size: 48px;
  }

  .main-hero_heading-2 {
    font-size: 3.5em;
  }

  .hero-heading-right {
    padding: 60px 15px;
  }

  .main-hero_heading-3 {
    font-size: 3.5em;
  }

  .hero-heading-center {
    padding: 60px 15px;
  }

  .header-statistics-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .h4-heading {
    font-size: 32px;
  }

  .h1-heading-4 {
    font-size: 48px;
  }

  .section-regular-4 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .f-h3-heading {
    font-size: 40px;
  }

  .f-section-large, .section-large {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq-question {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .faq-section {
    flex-direction: column;
  }

  .section-regular-5 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .main-hero_heading-4 {
    font-size: 3.5em;
  }

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

  .section-feature {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .section-regular-6 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .h5-heading-3 {
    font-size: 32px;
  }

  .grid-three-column {
    grid-template-columns: 1fr;
  }

  .h2-heading-4 {
    font-size: 44px;
  }

  .section-regular-3-copy {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .main-hero_heading-2-copy {
    font-size: 3.5em;
  }

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

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link-2:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link-2 {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .section-regular-7 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  ._404-box-05, ._404-shape-03 {
    display: none;
  }

  ._404-wrapper-small {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .subheading-x-small, .paragraph-x-small-2 {
    margin-right: 8px;
    display: inline;
  }

  .h3-heading {
    font-size: 40px;
  }

  ._404-box-06 {
    display: none;
  }

  ._404-block {
    padding: 32px;
  }
}

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

  h2 {
    font-size: 2rem;
  }

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

  .button.is-icon {
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: .8rem;
  }

  .yf-styleguide-item-row {
    grid-template-columns: 15rem;
    grid-auto-flow: row;
  }

  .text-size-large.text-color-grey-medium {
    font-size: 1rem;
  }

  .styleguide-grid-colours {
    grid-template-columns: 1fr;
  }

  .padding-section-large {
    text-align: center;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .section-hero {
    background-image: none;
  }

  .hero-component {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-image-wrapper {
    width: 60vw;
  }

  .service-1-page-component, .service-2-page-component, .contact-form-component, .contact-locations-component {
    grid-template-columns: 1fr;
  }

  .header-heading-wrapper {
    grid-row-gap: .25rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    display: flex;
  }

  .signup-form-wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .global-services-column {
    grid-template-columns: 1fr;
  }

  .global-services-card-large {
    flex-direction: column;
    display: flex;
  }

  .global-services-card-large-content {
    padding: .5rem;
    display: block;
  }

  .global-services-card-small {
    padding-left: 1rem;
  }

  .global-services-card-small-content {
    padding: .5rem;
  }

  .hero-header-span-2 {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    padding-right: 0;
    font-size: 2.2rem;
  }

  .hero-header-span-3 {
    font-size: 2.2rem;
  }

  .hero-heading-wrapper {
    grid-row-gap: .25rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    display: flex;
  }

  .about-1-main-component, .about-2-main-component {
    grid-template-columns: 1fr;
  }

  .about-partners-wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .about-members-list, .licenses-component {
    grid-template-columns: 1fr;
  }

  .hero-header-span-1 {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    padding-right: 0;
    font-size: 2.2rem;
  }

  .hero-header-span-1._2 {
    background-image: none;
  }

  .about-header-span-1, .about-header-span-2, .services-header-span-1, .services-header-span-2, .face-header-span-2, .face-header-span-1, .body-header-span-1, .body-header-span-2, .hair-header-span-1, .hair-header-span-2, .makeup-header-span-1, .makeup-header-span-2, .nail-header-span-1, .nail-header-span-2, .medicine-header-span-1, .medicine-header-span-2 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    padding-right: 0;
  }

  .more-component-delete-this {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    bottom: 1rem;
    right: 1rem;
  }

  .text-more-templates, .text-buy-template {
    font-size: .8rem;
  }

  .banner {
    min-height: 25px;
  }

  .button-secondary-s {
    display: block;
  }

  .button-secondary-s._2 {
    display: none;
  }

  .button-primary-s {
    width: 100%;
  }

  .caption {
    text-align: center;
    font-size: 10px;
  }

  .nav-dropdown-base-c {
    padding: 8px;
  }

  .nav-dropdown-base-c.w--open {
    padding: 14px;
  }

  .nav-menu-button {
    background-color: #f8f9ff;
  }

  .badge {
    justify-content: center;
    align-self: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .section-regular {
    padding-top: 35px;
  }

  .feature-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .subheading {
    font-size: 15px;
  }

  .h1-heading {
    font-size: 30px;
  }

  .testimonial-user-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .m-timeline-button-primary-icon {
    z-index: 1;
    position: relative;
  }

  .m-button-primary {
    width: 100%;
  }

  .m-timeline-button-wrapper {
    flex-flow: column wrap;
    grid-template-columns: 1fr;
    align-content: stretch;
    align-items: center;
  }

  .m-button-outline {
    width: 100%;
  }

  .feature-grid-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .section-3 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .feature-block {
    flex-wrap: wrap;
  }

  .button-group-2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .hiw-number-rounded {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 24px;
    top: -12px;
    left: -12px;
  }

  .heading {
    line-height: 100%;
  }

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

  .subheading-2 {
    text-align: center;
    font-size: 15px;
    line-height: 25px;
  }

  .section-cta-2 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .cta-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .cta-card-s {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-wrapper {
    border-radius: 8px;
    padding: 32px 24px;
  }

  .h1-heading-2 {
    text-align: center;
    font-size: 45px;
    line-height: 50px;
  }

  .button-wrapper {
    text-align: left;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    display: flex;
  }

  .button-secondary-s-copy {
    display: block;
  }

  .b-banner-close {
    display: none;
  }

  .b-button-primary {
    width: 100%;
  }

  .b-header-wrapper {
    background-image: url('../images/Untitled-design---2024-07-03T191502.620.png');
    background-position: 0 0;
    background-size: auto;
    display: none;
  }

  .b-button-secondary {
    width: 100%;
  }

  .b-paragraph-regular.b-text-weight-medium, .b-paragraph-regular.b-text-weight-medium-copy {
    color: var(--white);
  }

  .b-header-section {
    background-image: linear-gradient(#03178a5e, #03178a5e), url('../images/Untitled-design---2024-07-03T191502.620.png');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .b-button-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero-heading-left {
    padding-top: 80px;
    padding-bottom: 40px;
    display: block;
  }

  .container {
    max-width: none;
  }

  .main-hero_heading {
    color: var(--white);
    font-size: 2.4em;
  }

  .navigation-secondary {
    display: none;
  }

  .form-newsletter-wrapper {
    flex-direction: column;
  }

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

  .paragraph-regular-3 {
    font-size: 18px;
    line-height: 30px;
  }

  .button-primary-2 {
    width: 100%;
  }

  .navigation-button {
    display: none;
  }

  .header-logo-wrapper {
    justify-content: center;
  }

  .form-wrapper-small {
    flex-direction: column;
    align-items: center;
  }

  .hero-heading {
    font-size: 44px;
    line-height: 62px;
  }

  .header-button-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
  }

  .header-image-wrapper {
    border-radius: 0;
  }

  .header {
    margin-top: 94px;
    display: block;
  }

  .navigation-button-wrap {
    display: none;
  }

  .header-section {
    padding: 0 0%;
  }

  .heading-2 {
    margin-bottom: 25px;
  }

  .main-hero_heading-copy {
    color: var(--black);
    text-align: left;
    border: 1px #02168a1f;
    border-radius: 20px;
    margin-top: -11px;
    padding: 10px 0;
    font-size: 2.4em;
  }

  .b-paragraph-regular-copy.b-text-weight-medium {
    color: var(--white);
  }

  .b-paragraph-regular-copy.b-text-weight-medium-copy {
    color: var(--black);
    text-align: left;
    padding-top: 0;
    padding-bottom: 25px;
  }

  .header-input {
    width: 100%;
  }

  .section-regular-3 {
    padding-top: 40px;
    padding-bottom: 25px;
  }

  .header-form {
    grid-row-gap: 4px;
    flex-direction: column;
  }

  .header-form-b {
    flex-direction: column;
  }

  .button-primary-3 {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .main-hero_heading-2 {
    font-size: 2.4em;
  }

  .hero-heading-right {
    padding-top: 40px;
  }

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

  .heading-3 {
    font-size: 2.4rem;
    font-weight: 500;
  }

  .main-hero_heading-3 {
    font-size: 2.4em;
  }

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

  .centered-heading {
    margin-bottom: 24px;
  }

  .button-primary-5 {
    width: 100%;
  }

  .marquee-image-large {
    width: 102px;
    height: 144px;
  }

  .header-marquee-loop {
    height: 420px;
  }

  .button-outline-left-icon {
    width: 100%;
  }

  .button-wrap-small {
    flex-direction: column;
  }

  .f-blog-bottom-grid {
    flex-flow: column;
    display: flex;
  }

  .faq-item-line {
    padding: 24px;
  }

  .faq-base {
    padding-top: 50px;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-side {
    display: none;
  }

  .faq-wrapper {
    width: 100%;
  }

  .icon {
    color: #b73400;
  }

  .b-button-primary-copy {
    color: #b73400;
    border-color: #b73400;
    width: 100%;
  }

  .button-primary-6 {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .paragraph-large-3 {
    font-size: 12px;
  }

  .section-regular-5 {
    padding-top: 40px;
    padding-bottom: 25px;
  }

  .section-regular-5._22 {
    margin-top: 94px;
  }

  .main-hero_heading-4 {
    font-size: 1.5em;
  }

  .feature-link-card {
    padding: 16px 12px;
  }

  .h2-heading-2, .h2-heading-3 {
    font-size: 48px;
  }

  .testimonial-name-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-group-m {
    margin-top: 40px;
  }

  .button-2 {
    width: 100%;
  }

  .testimonial-card-d {
    width: 324px;
  }

  .section-regular-3-copy {
    padding-top: 40px;
    padding-bottom: 25px;
  }

  .main-hero_heading-2-copy {
    font-size: 2.4em;
  }

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

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

  .footer-social {
    margin-top: 24px;
  }

  .footer-bottom-wrapper-2 {
    flex-direction: column;
    align-items: center;
  }

  .wrap-v-small-2._2 {
    display: none;
  }

  .footer-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  ._404-wrapper-small {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  ._404-title-small {
    font-size: 124px;
  }

  .button-primary-7 {
    width: 100%;
  }

  ._404-block {
    padding: 24px;
  }
}

#w-node-_5d5780d6-65be-18f8-7657-63b9de1f038d-43c054e1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9d9b3ad3-f898-e46e-0478-89be694ff77c-43c054e1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end;
}

#w-node-_43833c47-ab4a-6623-ebfa-522370669b08-43c054e1, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b218-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b219-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b21a-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b21b-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b21c-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b21d-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b21e-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b21f-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b220-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b221-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b222-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b223-43c054e6, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b224-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f1-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f2-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f3-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f4-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f5-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f6-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f7-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f8-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f9-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5fa-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5fb-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5fc-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5fd-43c054e6, #w-node-f0f32edf-298b-5a25-1863-80155362bcba-43c054e6, #w-node-f0f32edf-298b-5a25-1863-80155362bcc2-43c054e6, #w-node-f0f32edf-298b-5a25-1863-80155362bcca-43c054e6, #w-node-f0f32edf-298b-5a25-1863-80155362bcd2-43c054e6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a5cf656-0f63-c071-2988-166ee31d5a61-43c054e6 {
  align-self: stretch;
}

#w-node-_9a5cf656-0f63-c071-2988-166ee31d5a76-43c054e6 {
  justify-self: center;
}

#w-node-_9a5cf656-0f63-c071-2988-166ee31d5a78-43c054e6 {
  align-self: stretch;
}

#w-node-e30a3dc5-6daa-dfb9-84c0-e79e63a6b5db-43c054e6 {
  justify-self: center;
}

#w-node-e30a3dc5-6daa-dfb9-84c0-e79e63a6b5dd-43c054e6 {
  align-self: stretch;
}

#w-node-eb7115c5-3390-8781-4ea4-73cde84f2b9b-43c054e6 {
  justify-self: center;
}

#w-node-eb7115c5-3390-8781-4ea4-73cde84f2b9d-43c054e6 {
  align-self: stretch;
}

#w-node-_9a5cf656-0f63-c071-2988-166ee31d5a8d-43c054e6 {
  justify-self: center;
}

#w-node-_9a5cf656-0f63-c071-2988-166ee31d5a8f-43c054e6 {
  align-self: stretch;
}

#w-node-_7b39698f-6804-4d03-59e3-da91199c37bc-43c054e6, #w-node-_7b39698f-6804-4d03-59e3-da91199c37d6-43c054e6, #w-node-_095408dc-0cd7-3651-a3a3-f19130130da9-cbe344ce {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_095408dc-0cd7-3651-a3a3-f19130130dd4-cbe344ce {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-aca88191-b783-bc1f-3ce5-b53e4b8e0d2f-4b8e0d29 {
  justify-self: start;
}

#w-node-aca88191-b783-bc1f-3ce5-b53e4b8e0d32-4b8e0d29 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aca88191-b783-bc1f-3ce5-b53e4b8e0d3c-4b8e0d29 {
  justify-self: end;
}

#w-node-aca88191-b783-bc1f-3ce5-b53e4b8e0d4b-4b8e0d29 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cbee1de2-1db6-6806-2448-e22b58503ed3-43c054ec {
  justify-self: start;
}

#w-node-_58b3831c-ec2b-106b-045b-21ae3eef5844-3eef5835, #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5845-3eef5835 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_58b3831c-ec2b-106b-045b-21ae3eef5846-3eef5835 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_58b3831c-ec2b-106b-045b-21ae3eef5854-3eef5835 {
  align-self: start;
}

#w-node-_58b3831c-ec2b-106b-045b-21ae3eef5872-3eef5835 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_58b3831c-ec2b-106b-045b-21ae3eef5873-3eef5835 {
  order: 9999;
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f139-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f13a-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f13e-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f13f-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f143-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f144-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f148-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f149-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f14d-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f14e-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f152-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f153-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f15d-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f15e-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f162-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f163-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f167-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f168-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f16c-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f16d-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f171-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f172-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f176-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f177-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f181-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f182-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f186-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f187-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f18b-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f18c-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f190-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f191-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f19a-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f19b-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1a4-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1a5-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1b7-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1b8-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1bc-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1bd-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1c1-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1c2-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1c6-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1c7-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1cb-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1cc-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1db-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1dc-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1e0-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1e1-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1e5-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1e6-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1ea-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1eb-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1fb-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f1fc-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f205-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f206-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f20f-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f210-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f214-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f215-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f22e-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f22f-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f233-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f234-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f238-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f239-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f240-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f241-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f2ad-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f2ae-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f2b3-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f2b4-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f2fc-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f2fd-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f2fe-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f300-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f303-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f304-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f305-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f309-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f30c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f30d-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f30e-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f312-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f316-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f317-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f31d-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f37c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f37d-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f37e-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f382-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f387-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f388-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f389-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f38f-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f394-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f395-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f396-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f39c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f3a1-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f3a2-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f3a3-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f3ab-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f3b1-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f3b2-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f3b8-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f411-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f412-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f413-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f414-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f416-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f419-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f41d-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f41e-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f41f-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f433-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f434-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f435-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f436-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f445-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f446-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f447-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f448-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f44a-43c054f6 {
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4b6-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4c4-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4c7-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4c9-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4cc-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4ce-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4d1-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4d3-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4d6-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4d8-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4db-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4dc-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4de-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4e1-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4e2-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4e4-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4e7-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4e8-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4ea-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4ed-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4f3-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4f7-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4fa-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4fc-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f4ff-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f501-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f504-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f506-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f509-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f50b-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f50e-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f510-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f513-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f515-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f518-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f51a-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f51d-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f51f-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f522-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f524-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f527-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f529-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f52c-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f531-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f537-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f555-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f558-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f559-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f55b-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f55e-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f55f-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f561-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f564-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f565-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f567-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f56a-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f56b-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f56d-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f570-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f571-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f573-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f576-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f577-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f579-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f57c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f57d-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f57f-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f582-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f583-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f585-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f588-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f589-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f58b-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f58e-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f58f-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f591-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f594-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f595-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f597-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f59a-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f59b-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f59d-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5a0-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5a1-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5a3-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5a6-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5a7-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5a9-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5ac-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5ad-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5b2-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5b8-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5d6-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5d9-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5da-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5dc-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5df-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5e0-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5e2-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5e5-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5e6-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5e8-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5eb-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5ec-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5ee-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5f1-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5f2-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5f4-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5f7-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5f8-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5fa-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5fd-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f5fe-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f600-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f603-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f604-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f606-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f609-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f60a-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f60c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f60f-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f610-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f612-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f615-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f616-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f618-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f61b-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f61c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f61e-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f621-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f622-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f624-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f627-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f628-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f62a-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f62d-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f62e-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f633-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f636-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f639-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f63a-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f63c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f63f-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f640-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f642-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f645-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f646-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f648-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f64b-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f64c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f64e-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f651-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f652-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f654-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f657-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f658-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f65a-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f65d-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f65e-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f660-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f663-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f664-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f666-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f669-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f66a-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f66c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f66f-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f670-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f672-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f675-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f676-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f768-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f76c-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f771-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f773-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f778-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f77d-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f7ad-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f7b2-43c054f6, #w-node-e8675c76-4da9-8202-09d4-c5b6d4b7f7b7-43c054f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_43833c47-ab4a-6623-ebfa-522370669b08-43c054e1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-aca88191-b783-bc1f-3ce5-b53e4b8e0d2f-4b8e0d29, #w-node-aca88191-b783-bc1f-3ce5-b53e4b8e0d3c-4b8e0d29 {
    justify-self: center;
  }

  #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5846-3eef5835 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5856-3eef5835, #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5864-3eef5835 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5873-3eef5835 {
    order: -9999;
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5883-3eef5835, #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5891-3eef5835 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_97ffd557-03b0-2e20-0add-b30f7e627dfe-43c054e7, #w-node-f68c9d48-7ad9-bddf-bcf9-779fc514fc92-43c054e8 {
    order: -9999;
  }

  #w-node-aca88191-b783-bc1f-3ce5-b53e4b8e0d49-4b8e0d29 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-f68c9d48-7ad9-bddf-bcf9-779fc514fc92-43c054ea, #w-node-f68c9d48-7ad9-bddf-bcf9-779fc514fc92-43c054ee, #w-node-f68c9d48-7ad9-bddf-bcf9-779fc514fc92-43c054ef, #w-node-f68c9d48-7ad9-bddf-bcf9-779fc514fc92-43c054f1, #w-node-f68c9d48-7ad9-bddf-bcf9-779fc514fc92-43c054f2 {
    order: -9999;
  }

  #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5846-3eef5835 {
    grid-column: span 2 / span 2;
  }

  #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5856-3eef5835, #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5864-3eef5835 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5873-3eef5835 {
    grid-column: span 2 / span 2;
  }

  #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5883-3eef5835, #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5891-3eef5835 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_43833c47-ab4a-6623-ebfa-522370669b08-43c054e1, #w-node-_4d585e56-0d4f-c212-5d02-5cf6f7e0b21d-43c054e6, #w-node-_844c9afa-a3ee-8a5a-95a5-54399470b5f6-43c054e6, #w-node-f0f32edf-298b-5a25-1863-80155362bcba-43c054e6, #w-node-f0f32edf-298b-5a25-1863-80155362bcc2-43c054e6, #w-node-f0f32edf-298b-5a25-1863-80155362bcca-43c054e6, #w-node-f0f32edf-298b-5a25-1863-80155362bcd2-43c054e6, #w-node-aca88191-b783-bc1f-3ce5-b53e4b8e0d2f-4b8e0d29 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5846-3eef5835, #w-node-_58b3831c-ec2b-106b-045b-21ae3eef5873-3eef5835 {
    grid-column: span 1 / span 1;
  }
}


