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

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

:root {
  --link-color--link-primary: var(--base-color-brand--white);
  --background-color--background-primary: var(--base-color-brand--white);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --text-color--text-secondary: var(--base-color-brand--blue);
  --background-color--background-success: var(--base-color-system--success-green);
  --text-color--text-success: var(--base-color-system--success-green-dark);
  --border-color--border-primary: var(--base-color-brand--red);
  --background-color--background-alternate: var(--base-color-neutral--black);
  --base-color-brand--red: #a00408;
  --background-color--background-secondary: var(--base-color-brand--red);
  --background-color--background-tertiary: var(--base-color-brand--pink);
  --background-color--background-error: var(--base-color-system--error-red);
  --text-color--text-error: var(--base-color-system--error-red-dark);
  --border-color--border-alternate: var(--base-color-neutral--neutral-darker);
  --background-color--background-warning: var(--base-color-system--warning-yellow);
  --text-color--text-warning: var(--base-color-system--warning-yellow-dark);
  --base-color-brand--white: #f0eceb;
  --border-color--border-secondary: var(--base-color-brand--white);
  --link-color--link-secondary: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --base-color-brand--baclk: #1a1a1a;
  --base-color-brand--blue: #0477ba;
  --base-color-brand--pink: #0477ba;
  --base-color-brand--pink-dark: #0477ba;
  --base-color-neutral--black: #000;
  --base-color-neutral--white: #fff;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #cef5ca;
  --base-color-system--success-green-dark: #114e0b;
  --base-color-system--warning-yellow: #fcf8d8;
  --base-color-system--warning-yellow-dark: #5e5515;
  --base-color-system--error-red: #f8e4e4;
  --base-color-system--error-red-dark: #3b0b0b;
  --base-color-system--focus-state: #2d62ff;
}

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

p {
  margin-bottom: 0;
}

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

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

li {
  margin-bottom: .25rem;
}

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

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

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

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

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

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

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

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

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

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

.margin-custom2 {
  margin: 2.5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

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

.padding-xhuge {
  padding: 8rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.padding-0 {
  padding: 0;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-huge {
  padding: 6rem;
}

.margin-large {
  margin: 3rem;
}

.padding-xxlarge {
  padding: 5rem;
}

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

.padding-custom3 {
  padding: 3.5rem;
}

.padding-large {
  padding: 3rem;
}

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

.padding-small {
  padding: 1rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.margin-huge {
  margin: 6rem;
}

.padding-medium {
  padding: 2rem;
}

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

.margin-xxlarge {
  margin: 5rem;
}

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

.margin-xhuge {
  margin: 8rem;
}

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

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

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

.overflow-auto {
  overflow: auto;
}

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

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

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

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

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

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

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

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

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

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

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

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

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

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

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

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

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

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  position: absolute;
  inset: 10px auto auto 10px;
}

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

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

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

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

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

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

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

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

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

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

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

.padding-global.padding-section-large {
  background-color: #0000;
}

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

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

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

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

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

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-style-h4.text-color-red {
  color: var(--base-color-brand--red);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-size-large {
  font-size: 1.5rem;
  position: static;
  inset: auto auto 2% 2%;
}

.text-size-large.text-color-red {
  color: var(--base-color-brand--red);
}

.fs-styleguide_header {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2:hover {
  color: var(--base-color-brand--red);
  text-shadow: 0 1px 3px var(--background-color--background-secondary);
}

.heading-style-h2.header {
  color: var(--base-color-brand--red);
  font-size: 2.4rem;
}

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

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

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

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

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

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

.overflow-scroll {
  overflow: scroll;
}

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

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

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

.form_component {
  margin-bottom: 0;
}

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

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

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

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

.button {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

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

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

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

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

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

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

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

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

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

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

.hide {
  display: none;
}

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

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

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

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

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

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

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.nav_logo {
  width: 10rem;
}

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

.nav_button {
  padding: 1rem;
}

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

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

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

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

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

.fs-styleguide_hero-label {
  color: var(--text-color--text-primary);
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

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

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

.hero_heading {
  font-size: 4rem;
}

.section_hero {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 0 100%, #2d62ff4d, #0000 50%), radial-gradient(circle at 100% 60%, #2d62ff4d, #1110 20%), radial-gradient(circle at 100% 100%, #d600c433, #0000 45%);
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

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

.nav_fixed {
  position: absolute;
  inset: 0% 0% auto;
}

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

.body {
  font-family: Satoshi, sans-serif;
}

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

.button2 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  background-image: linear-gradient(#fff, #fff);
  padding: .75rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 2px 5px #0003;
}

.button2.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

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

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

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

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

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

.section_header21.background-color-alternate {
  opacity: 1;
  background-image: url('../images/Artboard-1.webp');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  display: flex;
  position: relative;
}

.section_header21.background-color-alternate.success {
  min-height: 100vh;
}

.lightbox-play-icon {
  z-index: 2;
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

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

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

.header3_lightbox-image {
  object-fit: cover;
}

.header21_lightbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

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

.lottie-emoji {
  align-self: flex-start;
  height: 6rem;
  margin-top: -30px;
  margin-right: 10px;
}

.flex-block {
  justify-content: flex-start;
}

.banner11_component {
  border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  width: 100vw;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.banner11_wrapper {
  width: 200vw;
  display: flex;
}

.banner11_marquee {
  justify-content: space-around;
  align-items: center;
  width: 100vw;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.banner11_text-wrapper {
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.banner11_text {
  font-size: 2rem;
  font-weight: 700;
}

.emoji-banner {
  width: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

._100vh {
  height: 500vh;
}

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

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

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

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

.gallery6_image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 7px #0003;
}

.gallery6_image:hover {
  border: 5px solid var(--base-color-brand--red);
  box-shadow: 0 2px 5px 0 var(--base-color-brand--red);
}

.gallery6_image-wrapper {
  width: 100%;
  max-width: 300px;
}

.gallery6_lightbox-link {
  width: 100%;
  height: 100%;
}

.emoji-medium {
  height: 50px;
  margin-right: 10px;
}

.flex-block-2 {
  justify-content: center;
  align-items: center;
}

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

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

.testimonial19_content {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: var(--background-color--background-primary);
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2rem;
  display: flex;
}

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

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

.testimonial19_mask {
  width: 33.33%;
  overflow: visible;
}

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

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

.testimonial19_rating-wrapper {
  color: var(--base-color-brand--red);
  margin-bottom: 1.5rem;
  display: flex;
}

.testimonial19_component {
  background-color: #0000;
  height: auto;
  padding-bottom: 4rem;
  padding-left: .875rem;
  padding-right: .875rem;
  overflow: hidden;
}

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

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

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

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

.testimonial19_arrow.hide-mobile-landscape {
  color: var(--link-color--link-primary);
}

.testimonial19_client {
  text-align: left;
  align-items: center;
  margin-top: auto;
  display: flex;
}

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

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

.text-size-medium-5.text-weight-bold {
  text-transform: capitalize;
}

.stats38_item {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: var(--base-color-brand--white);
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  display: flex;
}

.stats38_divider {
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  width: 100%;
  height: 1px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.stats38_component {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

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

.stats38_item-content {
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

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

.stats38_number {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.gallery4_lightbox-link {
  width: 100%;
  height: 100%;
}

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

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

.gallery4_image-wrapper {
  width: 100%;
  position: relative;
}

.logo {
  height: 40px;
}

.rl-styleguide_label {
  color: #1e51f7;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #dee3f4;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.cta37_component {
  grid-column-gap: 0rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.cta37_instructions-list-item {
  padding-left: .5rem;
}

.cta37_link-image-wrapper {
  z-index: -1;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.cta37_link-text {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta38_instructions-callout {
  background-color: #0000001a;
  align-items: center;
  padding: 1.5rem;
  line-height: 1.6;
}

.cta37_link-image {
  width: 40%;
  max-width: 35rem;
}

.cta37_instructions-list {
  padding-left: 1.25rem;
}

.cta37_link-block {
  z-index: 1;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.cta38_instructions-callout-image {
  margin-top: 1.5rem;
}

.stylesystem-class-label {
  cursor: context-menu;
  background-color: #83747426;
  border-radius: 4px;
  padding-left: .5rem;
  padding-right: .5rem;
  display: inline-block;
}

.stylesystem-class-label.is-animation {
  background-image: url('../images/interaction-icon.svg');
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 2rem;
}

.cta-37-instructions-delete {
  background-color: var(--\<unknown\|relume-variable-color-neutral-3\>);
  text-align: left;
  padding: 2rem;
  display: block;
}

.heading {
  color: #000;
  letter-spacing: -1px;
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
}

.section {
  background-color: #fdfdfd;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: Satoshi, sans-serif;
  display: flex;
}

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

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

.html-video-embed {
  z-index: 0;
  object-fit: cover;
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.videos-sub-dropdown-toggle {
  color: #fff;
  border-bottom: .0625rem solid #2d2d2f;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

.div-block-3 {
  margin-left: 18px;
}

.html-embed-6 {
  justify-content: center;
  align-items: center;
  width: 1.3rem;
  height: 1.3rem;
  display: flex;
}

.div-block-2 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #000;
  letter-spacing: -.2px;
  background-color: #ffffff14;
  border: 1px solid #000;
  border-radius: 200vw;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 14px 14px auto;
}

.icon-16px {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: .9rem;
  height: .9rem;
  display: flex;
}

.video-track {
  cursor: pointer;
  background-color: #fafafa29;
  border-radius: 20vw;
  width: 100%;
  height: .6rem;
  overflow: hidden;
}

.video-sub-dropdown {
  margin-left: 0;
  margin-right: 0;
}

.iphone-video-wrapper {
  border-radius: 3.6rem;
  width: 92%;
  height: 97%;
  margin: auto;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.video-sub-dropdown-list {
  position: static;
}

.video-sub-dropdown-list.w--open {
  color: #fff;
  background-color: #333;
}

.video-control-item {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: .6875rem;
  display: flex;
}

.video-dropdown {
  position: relative;
}

.text-span {
  opacity: .3;
}

.play-button {
  z-index: 99999;
  opacity: 0;
  color: #fff;
  background-color: #ffffff30;
  border-radius: 100vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: opacity .45s;
  position: relative;
}

.iphone-video-container {
  background-color: #000;
  border-radius: 1.4rem;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.iphone-video-list {
  background-color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.iphone-shadow {
  z-index: -1;
  filter: blur(20px);
  background-image: radial-gradient(circle, #0000004d, #0000);
  border-radius: 4%;
  width: 20%;
  height: 100%;
  margin-left: -1px;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.paragraph {
  color: #888;
  max-width: 36ch;
}

.play-button-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.button-3 {
  background-color: #9593ff;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 10px #00000024;
}

.iphone {
  z-index: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.html-icon-20px {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
}

.video-dropdown-toggle {
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.play-overlay-wrapper {
  z-index: 1;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.video-top-wrapper {
  z-index: 13;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-top: 20%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.iphone-wrapper {
  color: #fff;
  width: 90%;
  max-width: 1080px;
  position: relative;
}

.vimeo-player {
  object-fit: cover;
  width: 120%;
  height: 120%;
  margin: auto;
  position: absolute;
  inset: 0% auto;
}

.video-control-wrapper {
  z-index: 15;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  opacity: 0;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  transition: opacity .45s;
  display: flex;
  position: absolute;
  inset: auto 0% 6%;
}

.video-sub-dropdown-item {
  color: #fff;
}

.video-dropdown-list {
  inset: auto 0% 0% auto;
}

.video-dropdown-list.w--open {
  color: #fff;
  background-color: #202020;
  border-radius: .75rem;
  flex-direction: column;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  inset: auto 0% 2.6rem auto;
}

.play-overlay {
  z-index: 1;
  color: #fff;
  border-radius: 3.3rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.iphone-image {
  z-index: 1;
  color: #0000001f;
  object-fit: contain;
  width: 100%;
  position: relative;
}

.video-progress-bar {
  background-color: #fff;
  width: 0%;
  height: 100%;
}

.video-settings {
  grid-column-gap: .375rem;
  grid-row-gap: .375rem;
  color: #fff;
  align-items: center;
  display: none;
}

.video-settings._1 {
  width: 18.7969px;
  display: flex;
}

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

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

.layout18_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.layout18_item {
  display: flex;
}

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

.food-frame {
  padding-left: 40px;
  position: relative;
  transform: rotate(2deg);
}

.absolute-image {
  z-index: 2;
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
}

.food-video {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.b-video-styles-controller {
  cursor: none;
  width: 100%;
  height: 100%;
  display: flex;
  position: static;
  inset: 0%;
}

.div-block-4 {
  border: 20px solid #fff;
  border-radius: 100%;
  width: 500px;
  height: 500px;
  display: block;
  overflow: hidden;
}

.background-video {
  z-index: 0;
  height: 100%;
  display: block;
  position: relative;
  inset: 0%;
}

.image {
  width: 100%;
}

.hover-block {
  background-color: #ffffffa3;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: none;
  position: absolute;
  inset: 0%;
}

.faq1_component {
  border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
}

.faq1_question {
  border-top: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.faq1_answer {
  overflow: hidden;
}

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

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

.faq1_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
  display: flex;
}

.faq1_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.form_checkbox-label-2 {
  margin-bottom: 0;
}

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

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

.text-style-link-2 {
  color: var(--\<unknown\|relume-variable-link-color-1\>);
  text-decoration: underline;
}

.form_checkbox-icon-2 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

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

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

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

.contact11_contact-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

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

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

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

.error-text {
  color: #e23939;
}

.form_input_2 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  width: 100%;
  height: 50px;
  min-height: 2.75rem;
  color: var(--\<unknown\|relume-variable-text-color-1\>);
  background-image: linear-gradient(#ffffff80, #ffffff80);
  border-radius: 0;
  margin-bottom: 10px;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input_2:focus {
  border-color: #000;
}

.form_input_2::placeholder {
  color: #0009;
}

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

.form_input_2._2 {
  background-image: linear-gradient(#ffffff80, #ffffff80);
  height: 40px;
  font-size: 1.5rem;
}

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

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

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

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

.contact11_content {
  flex-direction: row;
  display: flex;
}

.background-video-2 {
  z-index: 1;
  width: 100%;
  height: 100%;
}

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

.navbar1_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

.navbar1_link {
  padding: .5rem 1rem;
}

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

.navbar1_dropdown-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

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

.navbar1_dropdown-list.w--open {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  padding: .5rem;
}

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

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

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

.button-4 {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button-4.is-secondary {
  border: 1px solid var(--border-color--border-alternate);
  color: var(--text-color--text-primary);
  background-color: #0000;
}

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

.navbar1_menu-button {
  padding: 0;
}

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

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

.blog-post1-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-post1-header_breadcrumb {
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
  display: flex;
}

.breadcrumb-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  text-decoration: none;
}

.breadcrumb-link.w--current {
  font-weight: 600;
}

.breadcrumb-divider {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-left: .5rem;
  margin-right: .5rem;
  display: flex;
}

.blog-post1-header_content-top {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.blog-post1-header_author-wrapper {
  align-items: center;
  display: flex;
}

.blog-post1-header_author-image-wrapper {
  margin-right: 1rem;
}

.blog-post1-header_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.blog-post1-header_date-wrapper {
  margin-top: .25rem;
  display: flex;
}

.blog-post-header1_text-divider {
  margin-left: .5rem;
  margin-right: .5rem;
}

.blog-post1-header_share {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-items: start;
  margin-top: 1rem;
  display: grid;
}

.blog-post1-header_social-link {
  background-color: var(--\<unknown\|relume-variable-color-neutral-3\>);
  border-radius: 20px;
  padding: .25rem;
}

.blog-post1-header_social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.blog-post1-header_image-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.blog-post1-header_image {
  aspect-ratio: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-post1-content_content {
  margin-bottom: 4rem;
}

.blog-post1-content_content-bottom {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.blog-post1-content_share-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

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

.text-size-medium-6.text-weight-semibold {
  font-weight: 600;
}

.blog-post1-content_share {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-items: start;
  margin-top: 1rem;
  display: grid;
}

.blog-post1-content_social-link {
  background-color: var(--\<unknown\|relume-variable-color-neutral-3\>);
  border-radius: 20px;
  padding: .25rem;
}

.blog-post1-content_social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.blog-post1-content_tag-list-wrapper {
  width: 50%;
}

.blog-post1-content_tag-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.blog-post1-content_tag-item {
  background-color: var(--\<unknown\|relume-variable-color-neutral-3\>);
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-post1-content_tag-item.w--current {
  border-bottom: 2px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
}

.blog-post1-content_divider {
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  width: 100%;
  max-width: 48rem;
  height: 1px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.blog-post1-content_author-wrapper {
  align-items: center;
  display: flex;
}

.blog-post1-content_author-image-wrapper {
  margin-right: 1rem;
}

.blog-post1-content_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.section_blog-post1-cta {
  position: relative;
}

.blog-post1-cta_form {
  max-width: 30rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

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

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

.blog-post1-related_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.blog-post1-related_image-link {
  width: 100%;
  margin-bottom: 1.5rem;
}

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

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

.blog-post1-related_category-link {
  margin-bottom: .5rem;
  margin-right: 1rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-post1-related_category-link.w--current {
  border-bottom: 2px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
}

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

.blog-post1-related_author-wrapper {
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.blog-post1-related_author-image-wrapper {
  margin-right: 1rem;
}

.blog-post1-related_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.blog-post1-related_date-wrapper {
  display: flex;
}

.blog-post1-related_text-divider {
  margin-left: .5rem;
  margin-right: .5rem;
}

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

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

.footer1_top-wrapper {
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: start;
}

.footer1_left-wrapper {
  flex-direction: column;
  display: flex;
}

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

.footer1_form-block {
  max-width: 35rem;
  margin-bottom: 0;
}

.footer1_form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: .75rem;
  display: grid;
}

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

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

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

.footer1_social-link {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
  display: flex;
}

.line-divider {
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  width: 100%;
  height: 1px;
}

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

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

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

.footer1_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}

.banner11_component-2 {
  border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  width: 100vw;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.banner11_wrapper-2 {
  width: 200vw;
  display: flex;
}

.banner11_marquee-2 {
  justify-content: space-around;
  align-items: center;
  width: 100vw;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.page-content {
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  z-index: 999;
  background-color: #0f0f0f;
  position: fixed;
  inset: 0% 0% auto;
}

.container-5 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.brand-2 {
  position: relative;
}

.logo-header {
  max-width: 70%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.dropdown-5 {
  display: none;
}

.nav-link {
  color: #fff;
  margin-top: 7px;
  margin-bottom: 7px;
  text-decoration: none;
  position: relative;
}

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

.section-2 {
  background-color: #fdca40;
  padding: 0 5% 5%;
  line-height: 20px;
  position: relative;
}

.section-2.header {
  color: var(--base-color-brand--red);
  font-size: 2.4rem;
}

.section-2.header.cms {
  background-image: none;
  width: auto;
  height: auto;
  padding-right: 0%;
  position: relative;
}

.section-2.contact {
  background-color: #161616;
  background-image: none;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  border-top-color: #ddd;
  width: 100%;
  padding-top: 180px;
}

.container {
  z-index: 2;
  flex: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container.blank {
  background-color: #fff;
  border-radius: 20px;
}

.banner {
  background-image: none;
  background-position: 50% 23%;
  background-repeat: repeat;
  background-size: cover;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: 700px;
  padding: 160px 5% 105px;
  display: flex;
  position: relative;
}

.banner.px {
  object-fit: fill;
  background-image: none, linear-gradient(#fdca40, #fdca40);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  flex-flow: column;
  align-content: flex-end;
  align-items: center;
  width: auto;
  height: 460px;
  padding-top: 115px;
  padding-bottom: 120px;
  display: block;
}

.banner.px.collection {
  border-radius: 0;
  width: 100%;
  padding-top: 176px;
  display: flex;
}

.top-margin {
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 20px;
}

.top-margin.more {
  justify-content: center;
  align-items: flex-start;
  margin-top: 32px;
  display: flex;
}

.hero-grid-2 {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.hero-grid-2.no-grid {
  text-align: center;
  justify-content: center;
  display: flex;
}

.div-block-5 {
  border: 20px solid #fff;
  border-radius: 100%;
  width: 500px;
  height: 500px;
  display: block;
  overflow: hidden;
}

.hero-title {
  color: #fff;
  width: 89%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 65px;
  line-height: 57px;
}

.hero-title.dark {
  color: #000;
  width: auto;
  line-height: 70px;
}

._70 {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

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

._70.center.product {
  flex-direction: column;
  margin: 86px -12px 56px;
  padding-left: 40px;
  padding-right: 40px;
}

.main-header-text {
  justify-content: center;
  margin-bottom: 57px;
  display: flex;
}

.main-content.mobile {
  display: none;
}

.grid {
  grid-row-gap: 40px;
}

.image-2 {
  border-radius: 20px;
  width: 300px;
  min-width: 300px;
  height: 300px;
  min-height: 300px;
}

.heading-3 {
  color: #000;
  letter-spacing: -1px;
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
}

.paragraph-main {
  text-align: center;
  font-size: 20px;
  line-height: 28px;
}

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

.image-4 {
  border-radius: 20px;
  width: 300px;
  height: 300px;
}

.top-five {
  min-width: 0;
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
}

.section-3 {
  margin-top: 5%;
}

.container-4 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-6 {
  min-width: 4vw;
}

.title-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  line-height: 50px;
}

.title-heading.dark {
  color: #000;
  text-align: center;
}

.title-heading.dark._30mins {
  margin-bottom: 20px;
}

.top-title {
  margin-bottom: 80px;
}

.top-title.center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 52px;
  display: flex;
}

.top-title.center.home {
  margin-top: -150px;
}

.top-title.center.product {
  flex-direction: column;
  margin: 86px -12px 56px;
  padding-left: 40px;
  padding-right: 40px;
}

.container-6 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-7 {
  border: 20px solid #fff;
  border-radius: 100%;
  width: 500px;
  height: 500px;
  display: block;
  overflow: hidden;
}

.image-5 {
  border-radius: 20px;
  width: 300px;
  min-width: 300px;
  height: 300px;
  min-height: 300px;
}

.heading-4 {
  color: #000;
  letter-spacing: -1px;
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
}

.image-6 {
  border-radius: 20px;
  width: 300px;
  height: 300px;
}

.section-4 {
  margin-top: 5%;
}

.container-7 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-8 {
  border: 20px solid #fff;
  border-radius: 100%;
  width: 500px;
  height: 500px;
  display: block;
  overflow: hidden;
}

.section-5 {
  background-color: #fdca40;
  padding: 0 5% 5%;
  line-height: 20px;
  position: relative;
}

.section-5.header {
  color: var(--base-color-brand--red);
  font-size: 2.4rem;
}

.section-5.header.cms {
  background-image: none;
  width: auto;
  height: auto;
  padding-right: 0%;
  position: relative;
}

.section-5.contact {
  background-color: #161616;
  background-image: none;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  border-top-color: #ddd;
  width: 100%;
  padding-top: 180px;
}

.container-8 {
  z-index: 2;
  flex: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container-8.blank {
  background-color: #fff;
  border-radius: 20px;
}

.image-7 {
  border-radius: 20px;
  width: 300px;
  height: 300px;
}

.section-6 {
  margin-top: 5%;
}

.container-9 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-10 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.left-part-2 {
  width: 20vw;
  margin-top: -50px;
}

.left-part-2.website {
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-top: 0;
}

.website-section {
  margin-bottom: 60px;
}

.website {
  justify-content: center;
  display: flex;
}

.macbook-wrapper {
  flex-direction: column;
  order: -1;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  position: relative;
  overflow: visible;
}

.website-image-wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 6% 0% 0%;
}

.website-image-container {
  z-index: 10;
  justify-content: center;
  align-items: flex-start;
  width: 53%;
  height: 81%;
  margin-left: 0;
  display: block;
  position: static;
  inset: 6% auto auto;
  overflow: auto;
}

.website-image {
  z-index: 0;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  inset: 0% auto auto;
}

.macbook {
  z-index: 5;
  width: 70%;
  max-width: none;
  position: relative;
}

.skills-wrapper-2 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 85%;
  margin-left: auto;
  display: flex;
}

.skills-wrapper-2.website {
  width: 40%;
  margin-left: 0;
}

.paragraph-main-2 {
  font-size: 20px;
}

.container-11 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-pages {
  text-align: center;
  margin-top: 47px;
}

.five-reasons {
  text-align: left;
  min-width: 3vw;
  max-width: none;
}

.section-7 {
  margin-top: 5%;
}

.container-12 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.form-embed {
  width: 100%;
  display: none;
}

.company {
  color: var(--base-color-brand--red);
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 2.9rem;
}

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

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .hide-tablet {
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .nav_button {
    color: #fff;
  }

  .section_hero {
    padding-top: 3rem;
  }

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

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

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

  .header21_component {
    grid-column-gap: 0rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

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

  .banner11_marquee {
    flex-wrap: nowrap;
    justify-content: space-around;
    display: flex;
  }

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

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

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

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

  .testimonial19_mask {
    width: 50%;
  }

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

  .testimonial19_arrow {
    width: 3rem;
    height: 3rem;
  }

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

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

  .stats38_number {
    font-size: 4rem;
  }

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

  .cta37_link-image-wrapper {
    display: none;
  }

  .cta37_link-text {
    font-size: 3.25rem;
  }

  .cta37_link-block {
    display: block;
  }

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

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

  .navbar1_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .navbar1_menu-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .navbar1_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    display: flex;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

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

  .navbar1_dropdown-list.w--open {
    border-style: none;
    padding: 0;
  }

  .navbar1_dropdown-link {
    width: auto;
    padding: .75rem 0 .75rem 5%;
  }

  .navbar1_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

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

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

  .menu-icon1_line-middle {
    background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

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

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

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

  .blog-post1-header_title-wrapper {
    margin-bottom: 4rem;
  }

  .blog-post1-header_image-wrapper {
    margin-bottom: 3rem;
    padding-top: 56.25%;
  }

  .blog-post1-content_content {
    margin-bottom: 3rem;
  }

  .blog-post1-related_list {
    grid-template-columns: 1fr 1fr;
  }

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

  .banner11_marquee-2 {
    flex-wrap: nowrap;
    justify-content: space-around;
    display: flex;
  }

  .page-content {
    padding-left: 0;
  }

  .nav-menu {
    background-color: #fdca40;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .nav-link {
    color: #000;
    text-align: center;
    min-width: 100%;
    margin-top: 20px;
    font-size: 40px;
    font-weight: 700;
    text-decoration: underline;
    transition: transform .325s;
  }

  .nav-link:hover {
    filter: blur();
    text-decoration: none;
    transform: scale(1.2);
  }

  .nav-link.bottom {
    margin-bottom: 20px;
  }

  .menu-button, .menu-button.w--open {
    background-color: #070707;
  }

  .icon-4 {
    color: #fafaff;
  }

  .section-2 {
    padding: 0 3% 80px;
  }

  .section-2.contact {
    padding-top: 180px;
  }

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

  .banner {
    padding-bottom: 76px;
  }

  .banner.px {
    min-height: auto;
    padding-top: 138px;
  }

  .hero-grid-2 {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-title.dark, ._70 {
    width: 100%;
  }

  .main-content.desktop {
    margin: 10px;
  }

  .title-heading {
    font-size: 40px;
  }

  .section-5 {
    padding: 0 3% 80px;
  }

  .section-5.contact {
    padding-top: 180px;
  }

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

  .left-part-2 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin-top: 0;
    display: flex;
  }

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

  .macbook-wrapper {
    width: 100%;
  }

  .website-image-container {
    width: 76%;
  }

  .macbook {
    width: 100%;
  }

  .skills-wrapper-2 {
    width: auto;
    margin-top: 50px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .skills-wrapper-2.website {
    width: 100%;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header21_component {
    grid-row-gap: 3rem;
  }

  .banner11_text {
    font-size: 1.125rem;
  }

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

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

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

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

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

  .testimonial19_content {
    padding: 1.5rem;
  }

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

  .testimonial19_mask {
    width: 100%;
  }

  .testimonial19_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

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

  .testimonial19_slide {
    margin-right: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial19_arrow {
    bottom: 3rem;
  }

  .testimonial19_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

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

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

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

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

  .stats38_number {
    font-size: 3.5rem;
  }

  .gallery4_component, .gallery4_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .cta37_link-text {
    font-size: 2.25rem;
  }

  .iphone-video-wrapper {
    border-radius: 3.1rem;
  }

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

  .faq1_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq1_icon-wrapper {
    width: 1.75rem;
  }

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

  .navbar1_component {
    height: auto;
    min-height: 4rem;
  }

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

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

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

  .blog-post1-header_title-wrapper {
    margin-bottom: 3rem;
  }

  .blog-post1-content_content {
    margin-bottom: 2rem;
  }

  .blog-post1-content_divider {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .blog-post1-related_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .footer1_top-wrapper {
    grid-row-gap: 3rem;
  }

  .footer1_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

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

  .footer1_credit-text {
    margin-top: 1.5rem;
  }

  .footer1_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }

  .nav-menu {
    background-color: #fdca40;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .section-2 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-2.contact {
    padding-top: 160px;
  }

  .banner {
    background-image: linear-gradient(#00000080, #00000080), none;
    background-position: 0 0, 100% 0;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
    padding-bottom: 46px;
  }

  .banner.px {
    padding-bottom: 102px;
  }

  .top-margin.more {
    flex-direction: column;
  }

  .hero-title {
    font-size: 50px;
    line-height: 47px;
  }

  ._70.center.product {
    padding: 18px;
  }

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

  .top-five {
    margin: 0 10px;
  }

  .top-title.center.product {
    padding: 18px;
  }

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

  .section-5.contact {
    padding-top: 160px;
  }

  .left-part-2 {
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    display: flex;
  }

  .five-reasons.five {
    text-align: center;
    align-self: auto;
  }
}

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

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

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

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

  .margin-bottom.margin-small {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

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

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

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

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

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

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

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

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

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

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

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

  .heading-style-h2.header {
    font-size: 5.5vw;
  }

  .hero_heading {
    font-size: 2.5rem;
  }

  .button2 {
    background-image: linear-gradient(#ffffff80, #ffffff80);
  }

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

  .header21_component.text-color-alternate {
    flex-direction: column;
    display: flex;
  }

  .section_header21.background-color-alternate {
    min-height: auto;
  }

  .lottie-emoji {
    width: 10vw;
    height: 15vw;
    margin-top: 0;
  }

  .flex-block {
    align-items: flex-end;
    width: 100%;
    margin-top: -4.5vw;
  }

  .section_banner11.background-color-secondary.text-color-alternate {
    display: none;
  }

  .banner11_component {
    width: auto;
  }

  .banner11_wrapper {
    width: 200vw;
  }

  .banner11_marquee {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 200vw;
  }

  .banner11_text-wrapper {
    flex-wrap: nowrap;
    width: 230px;
  }

  .gallery6_row {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .stats38_list {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .stats38_content {
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .logo {
    height: auto;
  }

  .section.background-color-secondary {
    flex-direction: column;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .layout18_image {
    width: 50%;
  }

  .layout18_image-wrapper {
    max-width: 100%;
    overflow: hidden;
  }

  .layout18_content {
    max-width: 100%;
  }

  .layout18_component {
    grid-template-columns: 100%;
    justify-items: stretch;
  }

  .food-video {
    display: none;
  }

  .b-video-styles-controller {
    width: 100%;
    height: 100%;
  }

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

  .background-video {
    height: 400px;
    margin-top: 8px;
  }

  .image {
    width: 100%;
  }

  .contact11_contact-list {
    grid-template-columns: 1fr;
  }

  .form_input_2 {
    background-image: linear-gradient(#ffffff80, #ffffff80);
    border-width: 1px;
  }

  .form_input_2._2 {
    background-image: linear-gradient(#ffffff80, #ffffff80);
  }

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

  .blog-post1-header_content-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post1-header_author-wrapper {
    margin-bottom: 1rem;
  }

  .blog-post1-content_content-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post1-content_share-wrapper {
    width: 100%;
    margin-bottom: 2rem;
  }

  .blog-post1-content_tag-list-wrapper {
    width: 100%;
  }

  .blog-post1-content_tag-list {
    justify-content: flex-start;
  }

  .blog-post1-content_author-wrapper {
    margin-bottom: 1rem;
  }

  .signup-form-wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer1_top-wrapper {
    grid-row-gap: 48px;
  }

  .footer1_form {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer1_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .heading-2 {
    font-size: 9vw;
  }

  .banner11_component-2 {
    width: auto;
  }

  .banner11_wrapper-2 {
    width: 200vw;
  }

  .banner11_marquee-2 {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 200vw;
  }

  .nav-menu {
    flex-flow: column;
    display: flex;
  }

  .nav-link {
    min-width: 100%;
  }

  .nav-link:hover {
    transform: scale(1.2);
  }

  .section-2 {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .section-2.header {
    font-size: 5.5vw;
  }

  .section-2.header.cms {
    margin-top: 0;
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-2.contact {
    background-color: #000;
    background-image: none;
    padding-top: 100px;
  }

  .container {
    order: -1;
    align-self: center;
    max-width: 100%;
  }

  .banner {
    background-image: linear-gradient(#ffffff5c, #ffffff5c), none;
    background-position: 0 0, 100%;
    background-size: auto, 900px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 440px;
    margin-top: 86px;
    padding-top: 120px;
    padding-bottom: 24px;
  }

  .banner.px {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 2% 79px;
  }

  .banner.px.collection {
    justify-content: center;
    align-items: center;
    height: 200px;
    margin-top: 56px;
    padding-top: 39px;
    padding-bottom: 0;
  }

  .top-margin {
    padding-bottom: 5px;
    display: block;
  }

  .top-margin.more {
    align-items: center;
    margin-top: 0;
  }

  .hero-grid-2.no-grid {
    text-align: center;
    object-fit: fill;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    font-size: 100px;
    display: block;
  }

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

  .hero-title {
    color: #fff;
    font-size: 26px;
    line-height: 38px;
  }

  .hero-title.dark {
    line-height: 40px;
  }

  ._70.center.product {
    margin-top: 0;
  }

  .main-content.desktop {
    display: block;
  }

  .main-content.mobile {
    display: none;
  }

  .grid {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .image-2 {
    object-fit: cover;
    width: 280px;
    min-width: 250px;
    min-height: 250px;
  }

  .heading-3.top-margin {
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .paragraph-main {
    max-width: 90vw;
    padding: 14px 0;
    font-size: 16px;
    line-height: 22.4px;
  }

  .image-4 {
    object-fit: cover;
  }

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

  .div-block-6 {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }

  .title-heading {
    text-align: center;
    width: 290px;
    font-size: 20px;
    line-height: 40px;
  }

  .title-heading.dark {
    text-align: center;
    width: 100%;
    line-height: 28px;
  }

  .title-heading.dark._30mins {
    font-size: 22px;
  }

  .top-title.center {
    margin-bottom: 50px;
  }

  .top-title.center.home, .top-title.center.product {
    margin-top: 0;
  }

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

  .image-5 {
    object-fit: cover;
    width: 280px;
    min-width: 250px;
    min-height: 250px;
  }

  .image-5.mobile {
    align-self: center;
    width: auto;
    min-width: auto;
    max-width: 80vw;
    height: auto;
    min-height: auto;
  }

  .heading-4.top-margin {
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .image-6 {
    object-fit: cover;
  }

  .image-6.mobile {
    align-self: center;
    width: auto;
    max-width: 80vw;
    height: auto;
  }

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

  .section-5 {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .section-5.header {
    font-size: 5.5vw;
  }

  .section-5.header.cms {
    margin-top: 0;
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-5.contact {
    background-color: #000;
    background-image: none;
    padding-top: 100px;
  }

  .container-8 {
    order: -1;
    align-self: center;
    max-width: 100%;
  }

  .heading-5 {
    font-size: 9vw;
  }

  .image-7 {
    object-fit: cover;
  }

  .left-part-2.website {
    display: block;
  }

  .website {
    flex-direction: column;
    margin-left: 1%;
    margin-right: 1%;
  }

  .macbook-wrapper {
    width: auto;
  }

  .website-image-container {
    width: 76%;
    height: 81%;
  }

  .macbook {
    width: 100%;
    display: block;
  }

  .skills-wrapper-2.website {
    width: 310px;
  }

  .paragraph-main-2 {
    max-width: 90vw;
    padding: 14px;
    font-size: 16px;
  }

  .heading-pages {
    text-align: center;
    min-width: 8vw;
    font-size: 6vw;
    line-height: 30px;
  }

  .five-reasons {
    font-size: 14px;
  }

  .five-reasons.five {
    text-align: center;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 10px;
    font-weight: 400;
  }

  .five-reasons.five._2 {
    background-image: linear-gradient(#ffffff80, #ffffff80);
  }

  .company {
    margin-bottom: 5px;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
}

#w-node-_88c6efb8-35a0-3119-0379-34482596eb3c-3058866b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3cfcec2c-6124-dff4-7521-41d66797a7c2-3058866b {
  align-self: center;
}

#w-node-_27d33a15-2efb-04fe-7489-782f89909dcd-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909de3-3058866b, #w-node-_5921d904-8631-fa5d-92b5-15ae42637917-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909dd0-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909dd3-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909dd6-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909dda-3058866b, #w-node-_0a4e5d56-779c-8ac9-f0b4-a9b45696c94d-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909ddd-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909de0-3058866b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1e874d7e-4cf6-0344-7717-07c1a44a6ff8-3058866b, #w-node-_1e874d7e-4cf6-0344-7717-07c1a44a6ffe-3058866b, #w-node-_1e874d7e-4cf6-0344-7717-07c1a44a7004-3058866b, #w-node-babcf8eb-b3d9-afd7-65e1-68a008c12e8b-3058866b, #w-node-babcf8eb-b3d9-afd7-65e1-68a008c12e91-3058866b, #w-node-babcf8eb-b3d9-afd7-65e1-68a008c12e97-3058866b, #w-node-_5bc71387-f141-88a7-750d-1b2e4c1fc076-3058866b, #w-node-_5bc71387-f141-88a7-750d-1b2e4c1fc07c-3058866b, #w-node-_5bc71387-f141-88a7-750d-1b2e4c1fc082-3058866b, #w-node-_86e8db07-8e17-e57b-5c8a-da4a7cfef5c2-3058866b, #w-node-_86e8db07-8e17-e57b-5c8a-da4a7cfef5c8-3058866b, #w-node-_86e8db07-8e17-e57b-5c8a-da4a7cfef5ce-3058866b, #w-node-_39c86c24-8a2d-b59f-ceac-f121b4b543e6-3058866b, #w-node-_39c86c24-8a2d-b59f-ceac-f121b4b543ee-3058866b, #w-node-_39c86c24-8a2d-b59f-ceac-f121b4b543f6-3058866b {
  align-self: start;
}

#w-node-f13ea431-fc91-6ee3-bc58-ea172f55cb1f-3058866b, #w-node-b224ec27-30fa-be84-48bf-7ed471542af3-3058866e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-3058866e {
  justify-self: start;
}

#w-node-_5d224905-8a1e-1460-7532-d38cb7ec37c1-3058866e, #w-node-_40538c8c-870b-b365-34c4-2a06f0f8567d-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-3058866e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-3058866e {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-3058866e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-3058866e {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-3058866e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-3058866e {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-3058866e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-3058866e {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-3058866e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-3058866e, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-3058866e {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-3058866e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-3058866e {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-3058866e, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd98-3058866e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-3058866e {
  justify-self: start;
}

#w-node-cf00e2bd-e516-0742-e309-6cd33a37d95c-7334d50f {
  justify-self: center;
}

#w-node-cf00e2bd-e516-0742-e309-6cd33a37d95d-7334d50f, #w-node-cf00e2bd-e516-0742-e309-6cd33a37d962-7334d50f {
  align-self: center;
}

#w-node-cf00e2bd-e516-0742-e309-6cd33a37d967-7334d50f, #w-node-cf00e2bd-e516-0742-e309-6cd33a37d968-7334d50f {
  justify-self: center;
}

#w-node-cf00e2bd-e516-0742-e309-6cd33a37d969-7334d50f {
  align-self: center;
}

#w-node-e2addad9-e142-1a18-a157-82cf8907988b-8800db36 {
  justify-self: center;
}

#w-node-e2addad9-e142-1a18-a157-82cf8907988c-8800db36, #w-node-e2addad9-e142-1a18-a157-82cf89079892-8800db36 {
  align-self: center;
}

#w-node-e2addad9-e142-1a18-a157-82cf89079897-8800db36 {
  justify-self: center;
}

#w-node-e2addad9-e142-1a18-a157-82cf89079898-8800db36 {
  align-self: center;
}

#w-node-e2addad9-e142-1a18-a157-82cf8907989f-8800db36 {
  justify-self: center;
}

#w-node-e2addad9-e142-1a18-a157-82cf890798a0-8800db36, #w-node-e2addad9-e142-1a18-a157-82cf890798a5-8800db36 {
  align-self: center;
}

#w-node-e2addad9-e142-1a18-a157-82cf890798aa-8800db36, #w-node-e2addad9-e142-1a18-a157-82cf890798ab-8800db36 {
  justify-self: center;
}

#w-node-e2addad9-e142-1a18-a157-82cf890798ac-8800db36 {
  align-self: center;
}

#w-node-_6de22554-c663-3057-2404-96ea16fd82da-8cad1868 {
  justify-self: center;
}

#w-node-_6de22554-c663-3057-2404-96ea16fd82db-8cad1868, #w-node-_6de22554-c663-3057-2404-96ea16fd82e1-8cad1868 {
  align-self: center;
}

#w-node-_6de22554-c663-3057-2404-96ea16fd82e6-8cad1868 {
  justify-self: center;
}

#w-node-_6de22554-c663-3057-2404-96ea16fd82e7-8cad1868 {
  align-self: center;
}

#w-node-_6de22554-c663-3057-2404-96ea16fd82ee-8cad1868 {
  justify-self: center;
}

#w-node-_6de22554-c663-3057-2404-96ea16fd82ef-8cad1868, #w-node-_6de22554-c663-3057-2404-96ea16fd82f4-8cad1868 {
  align-self: center;
}

#w-node-_6de22554-c663-3057-2404-96ea16fd82f9-8cad1868, #w-node-_6de22554-c663-3057-2404-96ea16fd82fa-8cad1868 {
  justify-self: center;
}

#w-node-_6de22554-c663-3057-2404-96ea16fd82fb-8cad1868, #w-node-_3cfcec2c-6124-dff4-7521-41d66797a7c2-43781d83 {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_9beae600-b4d9-ae54-055b-d150a38e6aa2-3058866b, #w-node-_9beae600-b4d9-ae54-055b-d150a38e6aa2-43781d83 {
    grid-area: 1 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-cf00e2bd-e516-0742-e309-6cd33a37d967-7334d50f, #w-node-e2addad9-e142-1a18-a157-82cf890798aa-8800db36, #w-node-_6de22554-c663-3057-2404-96ea16fd82f9-8cad1868 {
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_9beae600-b4d9-ae54-055b-d150a38e6aa2-3058866b {
    order: 9999;
    grid-area: 1 / 1 / 4 / 2;
  }

  #w-node-_3cfcec2c-6124-dff4-7521-41d66797a7c2-3058866b {
    order: 1;
  }

  #w-node-_27d33a15-2efb-04fe-7489-782f89909dcc-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909dcd-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909dd9-3058866b, #w-node-_27d33a15-2efb-04fe-7489-782f89909dda-3058866b {
    justify-self: center;
  }

  #w-node-_1e874d7e-4cf6-0344-7717-07c1a44a6ff0-3058866b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5bc71387-f141-88a7-750d-1b2e4c1fc088-3058866b, #w-node-_39c86c24-8a2d-b59f-ceac-f121b4b543fe-3058866b {
    order: -9999;
  }

  #w-node-_9beae600-b4d9-ae54-055b-d150a38e6aa2-43781d83 {
    order: 9999;
    grid-area: 1 / 1 / 4 / 2;
  }

  #w-node-_3cfcec2c-6124-dff4-7521-41d66797a7c2-43781d83 {
    order: 1;
  }
}


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