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

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

@font-face {
  font-family: Quattrocentosans;
  src: url('../fonts/QuattrocentoSans-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --link-color--link-primary: var(--base-color-brand--blue);
  --background-color--background-primary: var(--base-color-neutral--black);
  --text-color--text-alternate: var(--base-color-neutral--neutral-dark);
  --text-color--text-primary: var(--base-color-neutral--neutral-darkest);
  --text-color--text-secondary: var(--base-color-neutral--neutral-darker);
  --background-color--background-success: var(--base-color-system--success-green);
  --text-color--text-success: var(--base-color-system--success-green-dark);
  --border-color--border-primary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-alternate: var(--base-color-neutral--white);
  --background-color--background-secondary: var(--base-color-brand--blue);
  --base-color-neutral--black: #000;
  --base-color-neutral--white: #fff;
  --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);
  --link-color--link-secondary: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --background-color--background-warning: var(--base-color-system--warning-yellow);
  --text-color--text-warning: var(--base-color-system--warning-yellow-dark);
  --base-color-neutral--neutral-lightest: #eee;
  --border-color--border-alternate: var(--base-color-neutral--neutral-darker);
  --base-color-neutral--neutral-dark: #4b5563;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral: #666;
  --base-color-brand--blue-light: #d9e5ff;
  --base-color-brand--blue: #2d62ff;
  --base-color-brand--blue-dark: #080331;
  --base-color-brand--pink-light: #ffaefe;
  --base-color-brand--pink: #dd23bb;
  --base-color-brand--pink-dark: #3c043b;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral-darker: #555;
  --base-color-neutral--neutral-darkest: #1e293b;
  --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;
  --border-color--border-secondary: var(--base-color-brand--blue);
}

.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: Quattrocentosans, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.375rem;
  font-weight: 400;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.5rem;
}

h6 {
  letter-spacing: -3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 400;
  line-height: 4.5rem;
}

p {
  margin-bottom: 0;
}

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

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

li {
  margin-bottom: .25rem;
}

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

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

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

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

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

.utility-page_component {
  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-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;
}

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

.form_form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.form_form.is-modal {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

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

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

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

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

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #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;
}

.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: 1rem;
  padding-right: 1rem;
}

.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: .875rem;
}

.text-size-tiny.letter-spacing-3 {
  color: #4f4f4f;
  letter-spacing: .5px;
}

.text-size-tiny.text-color-anternate-header {
  color: #ffffffe6;
}

.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: 1.125rem;
}

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

.form_field-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

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

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

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

.text-size-small.text-color-alternate-footer {
  color: #999;
}

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

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

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

.form_radio-icon.w--redirected-checked {
  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-footer {
  border-style: none none solid;
  border-right-width: 0;
  border-right-color: var(--base-color-neutral--black);
  letter-spacing: -.5px;
  -webkit-text-stroke-color: #ffffffbf;
  background-color: #0000;
  border-bottom-width: 1px;
  border-bottom-color: #ffffff1a;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .875rem 1rem .875rem 0;
  font-size: 1.5rem;
  line-height: 32px;
  transition: all .2s ease-in-out;
}

.form_input-footer:hover {
  color: #ffffffbf;
  border-bottom-color: #ffffffbf;
}

.form_input-footer:focus {
  border-bottom-color: var(--base-color-neutral--white);
  color: #fff;
  -webkit-text-stroke-color: white;
}

.form_input-footer::placeholder {
  color: #ffffff80;
  -webkit-text-stroke-color: var(--text-color--text-secondary);
}

.form_input-footer.is-select-input {
  color: #ffffff80;
  min-height: 3.5rem;
}

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

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

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

.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: 90rem;
  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 {
  color: var(--base-color-neutral--white);
  text-align: center;
  text-transform: uppercase;
  background-color: #1c1c1c;
  border-radius: 0;
  padding: .75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

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

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

.button.is-form-submit.footer-form {
  color: #1c1c1c;
  letter-spacing: 1px;
  background-color: #fff;
  width: 100%;
  margin-top: .75rem;
  font-weight: 700;
}

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

.button.is-secondary {
  color: var(--text-color--text-primary);
  letter-spacing: .25px;
  background-color: #fff;
  border-radius: 0;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.button.is-secondary.is-googlemaps {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--link-color--link-secondary);
  text-transform: none;
  border: 1px solid #0000001a;
  width: 100%;
  padding: .625rem 1.25rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.button.is-secondary.is-googlemaps:hover {
  background-color: var(--link-color--link-secondary);
  color: var(--link-color--link-alternate);
}

.button.is-secondary.is-waze {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--link-color--link-secondary);
  text-transform: none;
  border: 1px solid #0000001a;
  width: 100%;
  padding: .625rem 1.25rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.button.is-secondary.is-waze:hover {
  background-color: var(--link-color--link-secondary);
  color: var(--base-color-neutral--white);
}

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

.button.is-tertiary {
  color: var(--base-color-neutral--white);
  letter-spacing: .25px;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 0;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: all .2s ease-in-out;
}

.button.is-tertiary:hover {
  color: var(--base-color-neutral--black);
  background-color: #fff;
}

.button.is-tertiary.is-googlemaps {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--link-color--link-secondary);
  text-transform: none;
  border: 1px solid #0000001a;
  width: 100%;
  padding: .625rem 1.25rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.button.is-tertiary.is-googlemaps:hover {
  background-color: var(--link-color--link-secondary);
  color: var(--link-color--link-alternate);
}

.button.is-tertiary.is-waze {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--link-color--link-secondary);
  text-transform: none;
  border: 1px solid #0000001a;
  width: 100%;
  padding: .625rem 1.25rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.button.is-tertiary.is-waze:hover {
  background-color: var(--link-color--link-secondary);
  color: var(--base-color-neutral--white);
}

.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;
  line-height: 1.625rem;
}

.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: #0000;
  width: 100%;
  position: relative;
  inset: 0% 0% auto;
}

.nav_component.hide-desktop {
  display: none;
}

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

.nav_container.desktop {
  padding-top: 1.5rem;
}

.nav_logo {
  width: 10rem;
}

.nav_menu.hide-desktop {
  display: none;
}

.nav_menu_link {
  color: var(--base-color-neutral--neutral-lightest);
  text-transform: uppercase;
  padding: 1rem;
  font-size: .875rem;
  transition: all .2s ease-in-out;
}

.nav_menu_link:hover {
  color: var(--base-color-neutral--white);
}

.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-galeria {
  color: #fff;
  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;
}

.heading {
  font-size: 3rem;
}

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

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

.galeria-container {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  display: flex;
}

.galeria-title-container {
  justify-content: space-between;
  display: flex;
}

.galeria-text-container {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 36.875rem;
  display: flex;
}

.galeria-title-content {
  max-width: 29.9375rem;
}

.caleria-text-content-wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  display: flex;
}

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

.galeria-bento-container {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex: 1;
  max-height: 600px;
  display: flex;
}

.section-depoimentos {
  overflow: clip;
}

.padding-section-depoimentos {
  border-top: 1px solid var(--border-color--border-primary);
  padding-top: 5rem;
  padding-bottom: 3.5rem;
}

.depoimentos-container {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  display: flex;
}

._132px-embed-romanzza {
  width: 8.25rem;
  height: 8.25rem;
}

.depoimento-title-container {
  flex-flow: row;
  justify-content: space-between;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.depoimento-title-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: right;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 50.25rem;
  display: flex;
}

.depoimento-black-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #000;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

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

.depoimentos-car {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 416px;
  padding: 2rem 2.5rem;
  display: flex;
}

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

.depoimento-card-content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 355px;
  display: flex;
}

.depoimento-line-divisor {
  background-color: #fff;
  width: 1px;
  height: 1.5rem;
}

.text-color-alternate-secondary {
  color: #fffc;
}

.text-color-alternate-secondary.text-align-center.text-size-tiny.max-width-290 {
  max-width: 290px;
}

.depoimento-slider-container {
  height: 24.5rem;
}

.depoimento-content-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.depoimento-slider {
  background-color: #0000;
  height: 100%;
}

.depoimento-mask {
  width: 49rem;
  height: 100%;
  overflow: visible;
}

.depoimento-slide {
  border: 1px solid #16141533;
  max-width: 49rem;
  margin-right: 1rem;
}

.depoimento-content {
  display: flex;
}

.depoimento-stars-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.depoimento-stars-embed {
  width: 7.25rem;
  height: 1rem;
}

.depoimento-google-container {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  border-left: 1px solid #000;
  padding-left: 1rem;
  display: flex;
}

.depoimento-content-wrapper {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  flex-flow: column;
  display: flex;
}

.depoimento-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 29.125rem;
  padding-left: 2.5rem;
  padding-right: 2rem;
  display: flex;
}

.depoimento-card-container {
  height: 100%;
  display: flex;
}

.depoimento-img {
  width: 19.875rem;
  height: 100%;
}

.depoimento-img._01 {
  background-image: url('../images/depoimento-img01.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.depoimento-img._02 {
  background-image: url('../images/depoimento-img02.webp');
  background-position: 100% 80%;
  background-repeat: no-repeat;
  background-size: cover;
}

.depoimento-img._03 {
  background-image: url('../images/depoimento-img03.webp');
  background-position: 100% 80%;
  background-repeat: no-repeat;
  background-size: cover;
}

.left-arrow-disable {
  z-index: 1;
  background-color: #fff;
  border: 1px solid #e9e9ea;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 3rem;
  display: flex;
  position: absolute;
  inset: 50% auto 50% -20px;
}

._18px-icon {
  justify-content: center;
  align-items: center;
  width: 1.125rem;
  height: 1.125rem;
  display: flex;
}

.right-arrow-enable {
  background-color: #fff;
  border: 1px solid #e9e9ea;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0;
  margin-bottom: 0;
  transition: all .2s ease-in-out;
  display: flex;
  inset: 50% -20px 50% auto;
}

.right-arrow-enable:hover {
  border-width: 1px;
  border-color: #00000080;
}

.left-arrow-enable {
  border: 1px solid #e9e9ea;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0;
  margin-bottom: 0;
  transition: all .2s ease-in-out;
  display: flex;
  inset: 50% auto 50% -20px;
}

.left-arrow-enable:hover {
  border: 1px solid #00000080;
}

.right-arrow-disable {
  z-index: 1;
  background-color: #fff;
  border: 1px solid #e9e9ea;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  position: absolute;
  inset: 50% -20px 50% auto;
}

.steps-container {
  flex-flow: column;
  display: flex;
}

.steps-content {
  border-bottom: 1px solid #f3f4f6;
  display: flex;
}

.step-card {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-right: 1px solid #f3f4f6;
  flex-flow: column;
  height: 16rem;
  max-height: 16rem;
  padding-top: 2.5rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  display: flex;
  position: relative;
}

.step-card._01 {
  padding-left: 0;
}

.big-number-container {
  z-index: 1;
  color: #e7e7e7;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  transition: all .2s ease-in-out;
  position: absolute;
  inset: auto 0% 0%;
  overflow: clip;
}

.big-number-container:hover {
  color: var(--text-color--text-primary);
}

.big-number-steps {
  max-height: 96px;
  font-size: 6rem;
  font-weight: 700;
  position: absolute;
  inset: auto -11px 4px auto;
}

.img-steps-container {
  background-image: url('../images/img-steps-03.webp'), url('../images/img-steps-02.webp'), linear-gradient(80deg, #000000b3, #0000004d 60%, #0000001a), url('../images/img-steps-01.webp');
  background-position: 50%, 50%, 0 0, 50%;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat;
  background-size: cover, cover, auto, cover;
  flex: 1;
  min-height: 700px;
  max-height: 700px;
}

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

.steps-img-title-container {
  max-width: 34.7rem;
  line-height: 3.75rem;
}

.steps-img-content {
  flex-flow: column;
  justify-content: space-between;
  min-height: 37rem;
  display: flex;
}

.steps-img-content-wrapper {
  max-width: 27rem;
}

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

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

.localizacao-container {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  flex-flow: column;
  display: flex;
}

.localizacao-title-container {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.localizacao-adress-container {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.localizacao-title {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  max-width: 35.25rem;
  display: flex;
}

.localizacao-bento-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  min-height: 37.5rem;
  max-height: 37.5rem;
  display: flex;
}

.maps-embed-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 1;
  min-width: 41.25rem;
  min-height: 37.5rem;
  display: flex;
}

.maps-embed {
  height: 33.75rem;
  min-height: 33.75rem;
}

.localizacao-card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #000;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  padding: 1.5rem 2.125rem;
  display: flex;
}

.localizcao-cards-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 17.75rem;
  display: flex;
}

.localizacao-card-text {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.bold-span {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.img-localizacao-container {
  background-image: url('../images/localizacao-img.webp');
  background-position: 48%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  max-width: 23rem;
}

.section-footer {
  z-index: 100;
  background-color: #000;
  position: relative;
}

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

.footer-container {
  display: flex;
}

.footer-container.mobile {
  display: none;
}

.footer-title-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  padding-top: 2.5rem;
  display: flex;
}

.footer-left-wrapper {
  width: 100%;
}

.footer-right-container {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 2.5rem;
  padding-left: 2.5rem;
  display: flex;
}

.footer-left-content {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border-right: 1px solid var(--border-color--border-alternate);
  flex-flow: column;
  width: 100%;
  padding-right: 2.5rem;
  display: flex;
}

.button-contact {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
  padding: .5rem .75rem;
  font-weight: 400;
  display: flex;
}

.button-contact.is-secondary-cta {
  color: #fff;
  background-color: #0000;
  border: 1px #ffffff1a;
  border-bottom-style: solid;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem .5rem;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.button-contact.is-secondary-cta:hover {
  color: #fff;
  background-color: #ffffff1a;
}

.footer-btn-container {
  flex-flow: column;
  display: flex;
}

.footer-left-content-wrapper {
  flex-flow: column;
  max-width: 32.375rem;
}

.footer-left-cta-container {
  grid-column-gap: 5.5rem;
  grid-row-gap: 5.5rem;
  flex-flow: column;
  padding-right: 2.5rem;
  display: flex;
}

.footer-info-container {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.vapperi-logo {
  max-width: 8rem;
  max-height: 1rem;
}

.footer-info-content-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.footer-info-content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.back-top-link-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  opacity: .7;
  color: var(--base-color-neutral--white);
  border-bottom: 1px solid #ffffff1a;
  max-height: 1.875rem;
  padding-bottom: .5rem;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.back-top-link-container:hover {
  opacity: 1;
  border-bottom-color: #fff;
}

.footer-right-wrapper {
  justify-content: space-between;
  width: 100%;
  padding-left: 2.5rem;
  display: flex;
}

.footer-social-container {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.footer-logo-white {
  max-width: 10.75rem;
  max-height: 2.5rem;
}

.social-link-container {
  background-color: #fff;
  border: 1px solid #ffffff1a;
  justify-content: center;
  align-items: center;
  max-width: 32px;
  max-height: 32px;
  padding: .5625rem;
  transition: all .2s ease-in-out;
  display: flex;
}

.social-link-container:hover {
  background-color: #ffffffe6;
}

.footer-form-container {
  width: 100%;
  padding-left: 2.5rem;
}

.galeria-bento-content {
  flex: 1;
  max-width: 27.875rem;
  min-height: 37.5rem;
  max-height: 37.5rem;
  position: relative;
  overflow: clip;
}

.galeria-bento-content.right-column {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  max-width: none;
  min-height: auto;
  max-height: none;
  display: flex;
}

.galeria-bento-content.bento-large {
  min-width: 36.8125rem;
  max-width: 36.75rem;
  min-height: auto;
}

.galeria-bento-content.bento-small {
  min-width: 18.25rem;
  max-width: 18.25rem;
  min-height: auto;
}

.galeria-bento-right {
  height: 100%;
}

.lightbox-galeria {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.thumb-lightbox {
  z-index: 1;
  background-image: linear-gradient(#0000 52%, #00000080);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.img-hover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.title-galeria-container {
  z-index: 2;
  text-transform: uppercase;
  padding-bottom: 1rem;
  padding-left: .875rem;
  position: absolute;
  inset: auto auto 0% 0%;
}

.galeria-bento-content-line {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex: 1;
  max-height: 18.5rem;
  display: flex;
}

.icon-fullscreen {
  z-index: 1;
  opacity: 0;
  -webkit-backdrop-filter: blur(80px);
  backdrop-filter: blur(80px);
  background-color: #ffffff1f;
  border: 1px solid #ffffff80;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: all .2s ease-in-out;
  display: flex;
  position: absolute;
  inset: 1.5rem 1.5rem 0% auto;
  box-shadow: inset -45px 2px 5px #8888880d;
}

.icon-fullscreen:hover {
  box-shadow: inset -45px 2px 5px #ffffff0d;
}

._14px-icon {
  width: .875rem;
  height: .875rem;
}

.localizacao-cta-container {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

.btn-close-modal {
  opacity: .5;
  color: #1c1c1c;
  border: .8px solid #1c1c1c;
  border-radius: 0;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: .5rem;
  transition: all .3s ease-in-out;
  display: flex;
}

.btn-close-modal:hover {
  opacity: 1;
  background-color: #ffffff1a;
}

.link-form {
  color: #1c1c1c;
}

.form_label-modal {
  color: #888;
  text-align: center;
  margin-top: .5rem;
  font-size: .75rem;
  line-height: 150%;
}

.form_label-modal.text-color-secondary {
  color: #555;
  font-size: .75rem;
}

.msg-txt-container {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: left;
  flex-flow: column;
  display: flex;
}

.form-title-container {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.modal-form-container {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.msg-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.form-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fff;
  flex-flow: column;
  max-width: 30.75rem;
  padding: 2rem 1.75rem;
  display: flex;
}

.button-form-modal {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
  padding: .5rem .75rem;
  font-weight: 400;
  display: flex;
}

.button-form-modal.is-form-submit {
  letter-spacing: 1px;
  background-color: #1c1c1c;
  border-radius: 0;
  width: 100%;
  margin-top: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all .2s ease-in-out;
}

.button-form-modal.is-form-submit:hover {
  background-color: #000;
}

._24px-icon-2 {
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
}

.form_message-error-modal {
  color: #3b0b0b;
  background-color: #f8e4e4;
  border: 1px solid #3b0b0b;
  margin-top: .75rem;
  padding: .75rem;
}

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

.form_input-modal {
  background-color: #0000;
  border: 1px #ccc;
  border-bottom-style: solid;
  border-radius: 0;
  min-height: 3rem;
  margin-bottom: 1.5rem;
  padding: .5rem 1rem;
  font-size: 1rem;
  transition: all .2s ease-in-out;
}

.form_input-modal:hover {
  border-style: none none solid;
  border-color: #1c1c1c80;
}

.form_input-modal:focus {
  border: 1.5px #000;
  border-bottom-style: solid;
  font-weight: 700;
}

.form_input-modal::placeholder {
  color: #555;
}

.form_input-modal.is-select-input {
  color: #555;
  padding-left: .75rem;
}

.background-form {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #0009;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: opacity .4s ease-in-out;
  display: flex;
}

.form_message-success-modal {
  color: #114e0b;
  background-color: #cef5ca;
  border: 1px solid #22c55e;
  padding: 1.25rem;
}

.double-form_field-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

.modal-form {
  z-index: 2000;
  width: 100%;
  height: 100%;
  margin-top: 1.5rem;
  display: block;
  position: fixed;
  top: -1.5rem;
}

.modal-form.form-contato {
  z-index: 2000;
  display: none;
}

.modal-form.form-contato.active-modal {
  display: block;
}

._24px-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.title-modal {
  letter-spacing: 0;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 120%;
}

.form_input-disable {
  border-style: none none solid;
  border-right-width: 0;
  border-right-color: var(--base-color-neutral--black);
  border-bottom-width: 1px;
  border-bottom-color: var(--border-color--border-alternate);
  letter-spacing: -.5px;
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .875rem 1rem .875rem 0;
  font-size: 1.5rem;
  line-height: 32px;
  transition: all .2s ease-in-out;
}

.form_input-disable:hover {
  color: #ffffff80;
  border-bottom-color: #ffffff80;
}

.form_input-disable:active, .form_input-disable:focus {
  border-bottom-color: var(--base-color-neutral--white);
  color: #fff;
}

.form_input-disable::placeholder {
  color: #ffffff80;
}

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

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

.form_label-footer {
  color: #eee;
  text-align: center;
  margin-top: .5rem;
  font-size: .75rem;
  line-height: 150%;
}

.form_label-footer.text-color-secondary {
  color: #555;
  font-size: .75rem;
}

.footer-link {
  color: #eee;
}

.js-embed {
  display: none;
}

.section-header {
  width: 100%;
  min-height: 95svh;
  max-height: 850px;
  position: relative;
}

.hero-content-wrapper {
  z-index: 2;
  background-image: linear-gradient(360deg, #000000bf, #0000 48%), linear-gradient(90deg, #00000080 47%, #0000 100%, #0000001a 104%);
  max-height: 95svh;
  position: absolute;
  inset: 0%;
}

.slider-header {
  flex: 1;
  width: 100%;
  min-height: 95svh;
  max-height: 850px;
  overflow: clip;
}

.mask-slider-header, .slide-header {
  width: 100%;
  height: 100%;
}

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

.nav-logo-romanzza-white-big {
  max-width: 11.875rem;
  max-height: 2.75rem;
}

.header-container {
  grid-column-gap: 7rem;
  grid-row-gap: 7rem;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 95svh;
  max-height: 850px;
  padding-bottom: 2.5rem;
  display: flex;
}

.tag-header-container {
  color: #fff;
  background-color: #ffffff1a;
  border: 1px solid #ffffff1a;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 700;
  display: flex;
}

.header-title-container {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 43rem;
  display: flex;
  position: relative;
}

.header-content-wrapper {
  justify-content: space-between;
  padding-top: .75rem;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.header-content {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 524px;
  display: flex;
}

.divisor-white {
  background-color: #ffffff80;
  width: 1px;
  height: 100%;
  max-height: 64px;
}

.header-wrapper-small {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  max-width: 14rem;
  display: flex;
}

.header-wrapper-large {
  max-width: 26.375rem;
}

.nav-ancoras {
  opacity: 0;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.nav-ancoras.nav-fixa {
  z-index: 99;
  opacity: 1;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: #000c;
  border-bottom: 1px solid #fff3;
  position: fixed;
  inset: 0% 0% auto;
}

.menu-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-logo-romanzza-white-small, .nav-linkblock-logo-romanzza-white {
  max-width: 8.625rem;
  max-height: 2rem;
}

.ancora-container {
  color: var(--base-color-neutral--neutral-lighter);
  text-transform: uppercase;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
  position: relative;
}

.ancora-container:hover {
  color: #fff;
}

.ancora-container.w--current {
  color: var(--base-color-neutral--white);
}

.ancora-container.hide-mobile.w--current {
  color: #000;
}

.efeito {
  background-image: linear-gradient(#fff, #fff);
  width: 0%;
  height: .0625rem;
  transition: all .3s ease-in-out;
  position: absolute;
  inset: auto 0% 0%;
}

.menu-link-wrapper {
  display: flex;
}

@media screen and (min-width: 1920px) {
  h1 {
    font-size: 4rem;
  }

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

  .section-header {
    min-height: 850px;
    max-height: 850px;
  }

  .hero-content-wrapper {
    max-height: 850px;
  }

  .slider-header {
    min-height: 850px;
    max-height: 850px;
  }

  .header-container {
    grid-column-gap: 12rem;
    grid-row-gap: 12rem;
    min-height: 850px;
    max-height: 850px;
    padding-bottom: 2.5rem;
  }

  .header-title-container {
    max-width: 48.5rem;
  }

  .header-content-wrapper {
    padding-bottom: .75rem;
  }
}

@media screen and (max-width: 991px) {
  h6 {
    font-size: 3rem;
    line-height: 4rem;
  }

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

  .button.is-secondary.index_form1 {
    width: 100%;
  }

  .button.is-secondary.index_form1.hide-mobile {
    display: block;
  }

  .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_component.hide-desktop {
    display: block;
  }

  .nav_menu.hide-desktop {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    background-color: #000c;
    display: block;
    top: 5.3rem;
    box-shadow: 0 2px 5px #0003;
  }

  .nav_button {
    color: #fff;
  }

  .nav_button.w--open {
    z-index: 555;
    background-color: #0000;
  }

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

  .section-galeria {
    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-galeria {
    padding-top: 1rem;
  }

  .galeria-title-container {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .galeria-text-container {
    justify-content: flex-start;
    align-items: center;
    max-width: none;
  }

  .galeria-bento-container {
    flex-flow: column;
    max-height: none;
  }

  .depoimento-title-container {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .depoimento-black-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    padding-left: 0;
    padding-right: 0;
  }

  .depoimentos-car {
    width: 100%;
    max-width: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .depoimento-card-content, .text-color-alternate-secondary.text-align-center.text-size-tiny.max-width-290 {
    max-width: none;
  }

  .steps-content {
    flex-flow: wrap;
  }

  .step-card {
    border-bottom: 1px solid #f3f4f6;
    border-right-style: none;
    width: 100%;
    height: 8rem;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-section-localizacao {
    padding-bottom: 1rem;
  }

  .localizacao-container {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .localizacao-title-container {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .localizacao-bento-container {
    flex-flow: column;
    max-height: none;
  }

  .localizcao-cards-container {
    flex-flow: row;
    max-width: none;
  }

  .img-localizacao-container {
    max-width: none;
    min-height: 25rem;
    max-height: 25rem;
  }

  .footer-container {
    flex-flow: column;
  }

  .footer-container.desktop {
    display: none;
  }

  .footer-container.mobile {
    display: flex;
  }

  .footer-title-container.mobile {
    padding-top: 0;
  }

  .footer-right-container {
    padding-top: 4rem;
    padding-left: 0;
  }

  .footer-right-container.mobile {
    padding-top: 3rem;
  }

  .footer-left-content {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    border-bottom: .25px solid var(--border-color--border-alternate);
    border-right-style: none;
    border-right-width: 0;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 3rem;
    padding-right: 0;
  }

  .footer-left-content.mobile {
    padding-bottom: 3rem;
  }

  .footer-btn-container {
    align-self: stretch;
  }

  .footer-left-content-wrapper {
    max-width: 25rem;
  }

  .footer-left-content-wrapper.mobile {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    width: 100%;
    max-width: none;
    display: flex;
  }

  .footer-left-cta-container {
    width: 100%;
    max-width: 23rem;
    padding-right: 0;
  }

  .footer-info-container {
    width: 100%;
  }

  .footer-info-container.mobile {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    justify-content: space-between;
    align-items: flex-end;
  }

  .vapperi-logo {
    width: 12rem;
  }

  .footer-right-wrapper, .footer-form-container {
    padding-left: 0;
  }

  .galeria-bento-content {
    max-width: none;
    min-height: 20rem;
    max-height: 20rem;
  }

  .galeria-bento-content.right-column {
    min-height: 25rem;
    max-height: none;
  }

  .galeria-bento-content.bento-large {
    width: 100%;
    min-width: auto;
    max-width: none;
    max-height: none;
  }

  .galeria-bento-content.bento-small {
    width: 100%;
    min-width: auto;
    max-width: 25.375rem;
    max-height: none;
  }

  .lightbox-galeria {
    min-height: 20rem;
  }

  .galeria-bento-content-line {
    flex-flow: row;
    max-height: none;
  }

  .icon-fullscreen {
    opacity: 100;
  }

  .localizacao-cta-container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  ._24px-svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .header-content.hide-mobile {
    display: none;
  }

  .ancora-container {
    border-bottom: 1px solid var(--base-color-neutral--neutral);
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .ancora-container.hide-mobile, .menu-link-wrapper.hide-mobile, .hide-mobile {
    display: none;
  }
}

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

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  h5 {
    font-size: 2.5rem;
  }

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

  .text-size-small.text-color-secondary.max-width-mobile {
    max-width: 80%;
  }

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

  .button.is-secondary.index_form1 {
    align-self: auto;
  }

  .button.is-secondary.index_form1.hide-mobile {
    display: none;
  }

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

  .nav_container.desktop {
    justify-content: flex-start;
    align-items: center;
  }

  .nav_menu.hide-desktop {
    top: 28px;
  }

  .section-galeria, .padding-section-galeria {
    padding-top: 1rem;
  }

  .galeria-container {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .galeria-title-content {
    max-width: none;
  }

  .caleria-text-content-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .depoimentos-container {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .depoimento-title-container {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .depoimento-title-content {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: 80%;
  }

  .depoimento-black-container {
    flex-flow: column;
  }

  .depoimentos-car {
    border-bottom: 1px solid var(--border-color--border-alternate);
    max-width: 90%;
  }

  .depoimento-slider-container {
    height: 35rem;
  }

  .depoimento-mask {
    width: 100%;
  }

  .depoimento-wrapper {
    max-width: none;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .depoimento-card-container {
    flex-flow: column;
  }

  .depoimento-img {
    object-fit: cover;
    width: 100%;
  }

  .depoimento-img._02 {
    background-position: 100% 60%;
  }

  .depoimento-img._03 {
    background-position: 50%;
    background-size: cover;
  }

  .img-steps-container {
    min-height: 500px;
    max-height: 500px;
  }

  .padding-section-steps {
    padding-top: 3rem;
  }

  .steps-img-title-container {
    max-width: 27rem;
  }

  .steps-img-content {
    height: 100%;
    min-height: 25rem;
  }

  .steps-img-content-wrapper {
    flex-flow: column;
  }

  .steps-img-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .maps-embed-container {
    min-width: 100%;
    min-height: auto;
  }

  .maps-embed {
    height: 25rem;
    min-height: 25rem;
  }

  .localizacao-card {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .localizcao-cards-container {
    flex-flow: column;
  }

  .footer-title-container {
    max-width: 80%;
  }

  .footer-title-container.mobile {
    max-width: none;
  }

  .footer-right-container.mobile {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .footer-left-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    align-items: flex-start;
  }

  .button-contact.is-secondary-cta, .footer-left-content-wrapper {
    max-width: none;
  }

  .footer-left-content-wrapper.mobile {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    display: flex;
  }

  .footer-left-cta-container {
    max-width: none;
  }

  .title-galeria-container {
    padding-bottom: 1rem;
    padding-left: 1rem;
  }

  .localizacao-cta-container {
    flex-flow: column;
  }

  .form-container {
    justify-content: center;
    align-items: center;
  }

  .header-container {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 479px) {
  h5 {
    font-size: 2.15rem;
    line-height: 2.75rem;
  }

  h6 {
    font-size: 2.75rem;
  }

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

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

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

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

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

  .button.is-secondary {
    width: 100%;
  }

  .nav_brand.w--current {
    padding-left: 0;
  }

  .hero_heading {
    font-size: 2.5rem;
  }

  .padding-section-galeria {
    padding-bottom: 2.5rem;
  }

  .caleria-text-content-wrapper {
    max-width: 80%;
  }

  .padding-section-depoimentos {
    padding-top: 2.5rem;
  }

  .depoimento-black-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .depoimentos-car {
    max-width: 80%;
  }

  .depoimento-slider-container {
    height: auto;
  }

  .depoimento-slide {
    height: 100%;
    min-height: 610px;
  }

  .depoimento-stars-container {
    justify-content: flex-start;
    align-items: center;
  }

  ._20px-icon {
    height: 20px;
  }

  .depoimento-wrapper {
    height: 100%;
    min-height: 290px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .depoimento-img {
    min-height: 320px;
  }

  .depoimento-img._01 {
    object-fit: cover;
    min-height: 320px;
  }

  .left-arrow-disable {
    left: -16px;
  }

  .right-arrow-enable {
    right: -16px;
  }

  .left-arrow-enable {
    left: -16px;
  }

  .right-arrow-disable {
    right: -16px;
  }

  .padding-section-footer {
    padding-top: 3rem;
  }

  .footer-title-container.mobile {
    max-width: none;
  }

  .footer-right-container.mobile {
    order: 0;
    padding-top: 1rem;
  }

  .footer-left-content.mobile {
    border-top: .25px none var(--base-color-neutral--neutral-dark);
    border-bottom-style: solid;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .button-contact.is-secondary-cta {
    max-width: none;
  }

  .footer-info-container.mobile {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-info-content {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 1rem;
  }

  .back-top-link-container {
    justify-content: center;
    align-items: flex-start;
  }

  .footer-right-wrapper.mobile {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .galeria-bento-content-line {
    flex-flow: column;
  }

  .btn-close-modal {
    order: -1;
    position: static;
  }

  .form-title-container {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .modal-form-container {
    width: 95vw;
  }

  .form-content {
    flex: 1;
    max-width: 100%;
    padding: 1.5rem 1.25rem;
  }

  .button-form-modal.is-form-submit {
    letter-spacing: 0;
    justify-content: center;
    font-size: .95rem;
  }

  .form_input-modal.is-select-input {
    margin-bottom: .75rem;
  }

  .double-form_field-wrapper.select-list-mobile {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
  }

  .title-modal {
    font-size: 2.25rem;
  }

  .hero-content-wrapper {
    background-image: linear-gradient(360deg, #000000bf, #0000), linear-gradient(#0000001a 9%, #00000080 50%, #0000);
  }

  .nav-logo-romanzza-white-big {
    transform: translate(-9px)scale(.9);
  }

  .header-container {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .header-title-container {
    max-width: 20rem;
  }

  .header-content-wrapper {
    max-width: 80%;
    padding-top: 0;
  }
}

#w-node-b224ec27-30fa-be84-48bf-7ed471542af3-6fab2624 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-6fab2624 {
  justify-self: start;
}

#w-node-_5d224905-8a1e-1460-7532-d38cb7ec37c1-6fab2624, #w-node-_40538c8c-870b-b365-34c4-2a06f0f8567d-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-6fab2624 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-6fab2624 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-6fab2624 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-6fab2624 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-6fab2624 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-6fab2624 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-6fab2624 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-6fab2624 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-6fab2624 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-6fab2624, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-6fab2624 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-6fab2624 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-6fab2624 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-6fab2624, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd98-6fab2624 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-6fab2624 {
  justify-self: start;
}


@font-face {
  font-family: 'Quattrocentosans';
  src: url('../fonts/QuattrocentoSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quattrocentosans';
  src: url('../fonts/QuattrocentoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quattrocentosans';
  src: url('../fonts/QuattrocentoSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}