@font-face {
  font-family: URW Gothic;
  src: url('../fonts/URWGothic-Book.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: URW Gothic;
  src: url('../fonts/URWGothic-BookOblique.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: URW Gothic;
  src: url('../fonts/URWGothic-Demi.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: URW Gothic;
  src: url('../fonts/URWGothic-DemiOblique.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --light-1: #f6f4ef;
  --dark-1-80: #132430cc;
  --dark-1: #410e0e;
  --accent-1: #bc9e59;
  --light-2: #ede9df;
  --accent-2: #4a7fce;
  --light-1-60: #f6f4ef99;
  --dark-2: #0e1a23;
  --light-1-30: #f6f4ef4d;
  --white: white;
  --accent-1-30: #bc9e594d;
  --light-1-15: #f6f4ef26;
  --dark-1-12: #1324301f;
}

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

body {
  background-color: var(--light-1);
  color: var(--dark-1-80);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: .75em;
  padding-right: .75em;
  font-family: Fraunces, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
  display: flex;
}

h1 {
  color: var(--dark-1);
  margin-top: 0;
  margin-bottom: 0;
  font-family: URW Gothic, sans-serif;
  font-size: 4.75em;
  font-weight: 700;
  line-height: 1.03em;
}

h2 {
  color: var(--dark-1);
  margin-top: 0;
  margin-bottom: 0;
  font-family: URW Gothic, sans-serif;
  font-size: 3.75em;
  font-weight: 700;
  line-height: 1.05em;
}

h3 {
  color: var(--dark-1);
  margin-top: 0;
  margin-bottom: 0;
  font-family: URW Gothic, sans-serif;
  font-size: 2.75em;
  font-weight: 700;
  line-height: 1.09em;
}

h4 {
  color: var(--dark-1);
  margin-top: 0;
  margin-bottom: 0;
  font-family: URW Gothic, sans-serif;
  font-size: 2.125em;
  font-weight: 700;
  line-height: 1.15em;
}

h5 {
  color: var(--dark-1);
  margin-top: 0;
  margin-bottom: 0;
  font-family: URW Gothic, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.21em;
}

h6 {
  color: var(--dark-1);
  margin-top: 0;
  margin-bottom: 0;
  font-family: URW Gothic, sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.22em;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.12em;
  line-height: 1.6em;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding-left: 2.2em;
  font-size: 1.12em;
  line-height: 1.6em;
}

li {
  padding: .3em;
}

strong {
  color: var(--dark-1);
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 1px solid var(--accent-1);
  color: var(--dark-1);
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  margin-left: .9em;
  padding: .2em 0 .2em 1.2em;
  font-size: 1.37em;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5em;
}

figure {
  border-radius: .75em;
  margin-top: 2.7em;
  margin-bottom: 2.7em;
  overflow: hidden;
}

figcaption {
  background-color: var(--light-2);
  color: var(--dark-1);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.2em 2em;
  font-size: .9em;
  line-height: 1.5em;
}

.rich-text-block h1 {
  margin-bottom: .4em;
}

.rich-text-block h2, .rich-text-block h3, .rich-text-block h4, .rich-text-block h5, .rich-text-block h6 {
  margin-top: 1em;
  margin-bottom: .4em;
}

.rich-text-block p {
  margin-bottom: 1.4em;
}

.rich-text-block a {
  border-bottom: 1px solid var(--accent-2);
  color: var(--accent-2);
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94), border-color .2s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  border-bottom-color: var(--dark-1);
  color: var(--dark-1);
}

.link {
  border-bottom: 1px solid var(--accent-2);
  color: var(--accent-2);
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
}

.link:hover {
  border-bottom-color: var(--dark-1);
  color: var(--dark-1);
}

.section-hero {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100svh;
  padding-top: .75em;
  padding-bottom: .75em;
  display: flex;
}

.hero {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.background-video {
  z-index: 10;
  border-radius: .75em;
  width: 100%;
  height: 100%;
  position: absolute;
}

.wrapper-hero {
  z-index: 20;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.dimming-video {
  z-index: 20;
  opacity: .3;
  background-color: #140808;
  border-radius: .75em;
  position: absolute;
  inset: 0%;
}

.hero-center {
  grid-row-gap: 1.3em;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5em 4%;
  display: flex;
}

.heading-hero {
  color: var(--light-1);
  max-width: 8em;
  margin-bottom: -.17em;
  font-size: 7vw;
  line-height: 1em;
}

.heading-hero.cms {
  font-size: 4vw;
}

.heading-hero.dark {
  color: var(--dark-1);
}

.wave {
  background-image: url('../images/wave_1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  width: 4.38em;
  height: .38em;
}

.paragraph-hero {
  color: var(--light-1);
  max-width: 14em;
  font-size: 1.38em;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5em;
}

.paragraph-hero.cms {
  max-width: 20em;
}

.paragraph-hero.large {
  color: var(--light-1-60);
  max-width: 24em;
}

.paragraph-hero.dark {
  color: var(--dark-1-80);
  max-width: 20em;
}

.hero-bottom {
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  display: flex;
}

.link-circle {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #0e1a2333;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.8em;
  height: 3.8em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  overflow: hidden;
}

.link-circle:hover {
  background-color: #0e1a2366;
}

.icon-circle {
  object-fit: contain;
  width: 1.5em;
  max-width: none;
  height: 1.5em;
}

.icon-circle.large {
  width: 2em;
  height: 2em;
}

.wrapper-icon-circle {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-top {
  width: 100%;
  padding: 1.44em;
}

.navbar {
  background-color: #0000;
}

.grid-nav {
  grid-column-gap: .2em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  place-items: center stretch;
}

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

.nav-right {
  grid-column-gap: .7em;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.logo {
  object-fit: contain;
  height: 1.62em;
}

.brand {
  padding: .6em .3em;
}

.brand.w--current {
  max-width: 50%;
}

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

.nav-link {
  color: var(--light-1);
  text-align: center;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1.9em 1.8em 1.6em;
  font-family: URW Gothic, sans-serif;
  font-size: .75em;
  font-weight: 700;
  line-height: 1.2em;
}

.nav-link.dark {
  color: var(--dark-1);
}

.wrapper-button {
  grid-column-gap: .5em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-button {
  color: var(--light-1);
  letter-spacing: .15em;
  text-transform: uppercase;
  padding-top: .3em;
  font-family: URW Gothic, sans-serif;
  font-size: .75em;
  font-weight: 700;
  line-height: 1.2em;
}

.text-button.dark {
  color: var(--dark-1);
}

.button {
  border-radius: .63em;
  padding: 1.2em;
  text-decoration: none;
  transition: padding .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s cubic-bezier(.25, .46, .45, .94);
  box-shadow: inset 0 0 0 1px #f6f4ef00;
}

.button:hover {
  box-shadow: inset 0 0 0 1px var(--light-1-30);
  padding-left: 1.9em;
  padding-right: 1.9em;
}

.button.dark {
  box-shadow: inset 0 0 0 1px #13243000;
}

.button.dark:hover {
  box-shadow: inset 0 0 0 1px #1324304d;
}

.icon-button {
  flex: none;
  width: 1.13em;
  max-width: none;
  height: 1.13em;
}

.button-dark {
  background-color: var(--dark-1);
  border-radius: .63em;
  padding: 1.2em 1.9em;
  text-decoration: none;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.button-dark:hover {
  background-color: var(--dark-2);
}

.button-dark.small {
  padding: .8em 1.7em;
}

.desktop-button {
  grid-column-gap: .7em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.mobile-button {
  grid-column-gap: .7em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
}

.button-light {
  background-color: var(--light-1);
  border-radius: .63em;
  padding: 1.2em 1.9em;
  text-decoration: none;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.button-light.small {
  padding: .8em 1.7em;
}

.menu-button {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--light-1);
  background-color: #0e1a2333;
  border-radius: .63em;
  padding: .8em;
  font-size: 1.35em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.menu-button:hover {
  background-color: #0e1a2366;
}

.menu-button.w--open {
  background-color: #0e1a2399;
}

.section {
  border-radius: .75em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: .75em;
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
}

.section.background {
  background-color: var(--light-2);
}

.content {
  z-index: 50;
  width: 100%;
  max-width: 82em;
  padding-left: 3.5em;
  padding-right: 3.5em;
  position: relative;
}

.content.narrow {
  max-width: 56em;
}

.content.template {
  grid-row-gap: 8em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 56em;
  display: flex;
}

.block {
  grid-row-gap: 1.3em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.block.left {
  text-align: left;
  align-items: flex-start;
  padding: 4em 5%;
}

.heading {
  max-width: 12em;
  margin-bottom: -.17em;
}

.heading.light {
  color: var(--light-1);
}

.wave-accent {
  background-image: url('../images/wave_2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  width: 4.38em;
  height: .38em;
}

.paragraph {
  max-width: 27em;
  margin-bottom: .5em;
}

.paragraph.light {
  color: var(--light-1-60);
  max-width: 40em;
}

.paragraph.large {
  max-width: 38em;
}

.subtitle {
  color: var(--dark-1);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: -.5em;
  font-family: URW Gothic, sans-serif;
  font-size: .65em;
  font-weight: 700;
  line-height: 1.2em;
}

.subtitle.light {
  color: var(--light-1);
}

.grid-services {
  grid-column-gap: 1em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3.7em;
}

.border-icon-service {
  border: 1px solid var(--accent-1-30);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 4.6em;
  height: 4.6em;
  display: flex;
}

.service {
  grid-row-gap: 1.2em;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-service {
  object-fit: contain;
  width: 2em;
  height: 2em;
}

.icon-service.icon-2 {
  width: 1.6em;
}

.heading-service {
  max-width: 9em;
  margin-bottom: -.2em;
}

.paragraph-service {
  max-width: 18em;
  font-size: 1em;
  line-height: 1.6em;
}

.section-footer {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: auto;
  margin-bottom: .75em;
  display: flex;
}

.footer {
  background-color: var(--dark-1);
  border-radius: .75em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.grid-footer {
  grid-column-gap: 3em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 66em;
  margin-top: 8.4em;
  margin-bottom: 8.4em;
  padding-left: 3em;
  padding-right: 3em;
}

.bottom-footer {
  background-color: var(--dark-1);
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.8em 1em;
  display: flex;
}

.link-bottom-footer {
  opacity: .4;
  color: var(--light-1);
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1.3em 1.6em 1em;
  font-family: URW Gothic, sans-serif;
  font-size: .63em;
  font-weight: 700;
  line-height: 1.2em;
  text-decoration: none;
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94);
}

.link-bottom-footer:hover {
  opacity: 1;
}

.space-footer {
  background-color: var(--light-1);
  opacity: .4;
  border-radius: 100%;
  flex: none;
  width: 3px;
  height: 3px;
  margin-left: 1em;
  margin-right: 1em;
}

.block-footer {
  grid-row-gap: 1.8em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo-footer {
  height: 2.2em;
}

.paragraph-footer {
  color: var(--light-1);
  margin-top: -.3em;
  font-style: italic;
}

.link-footer {
  grid-row-gap: 1.5em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: .5em;
  padding-bottom: .5em;
  text-decoration: none;
  display: flex;
}

.text-footer {
  color: var(--light-1);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: URW Gothic, sans-serif;
  font-size: .75em;
  font-weight: 700;
  line-height: 1.2em;
}

.border-icon-footer {
  border: 1px solid var(--light-1-15);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 5em;
  display: flex;
}

.icon-footer {
  object-fit: contain;
  width: 1.75em;
  height: 1.75em;
}

.section-full {
  border-radius: .75em;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-bottom: .75em;
  display: flex;
}

.section-full.background {
  background-color: var(--light-2);
}

.section-full.dark {
  background-color: var(--dark-1);
}

.grid-instagram {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.image-instagram {
  width: 100%;
  height: 100%;
}

.link-instagram {
  border-radius: .75em;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-instagram {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #0e1a234d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 4.6em;
  height: 4.6em;
  display: flex;
  position: absolute;
}

.slider {
  background-color: var(--dark-1);
  border-radius: .75em;
  min-height: 45vw;
  overflow: hidden;
}

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

.slide-nav {
  display: none;
}

.slide-arrow {
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
  font-size: 1em;
  display: flex;
}

.block-circle {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #0e1a2333;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 4.6em;
  height: 4.6em;
  display: flex;
}

.slider-reviews {
  background-color: #0000;
  border-radius: .75em;
  height: auto;
  overflow: hidden;
}

.block-circle-light {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #0e1a230d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 4.6em;
  height: 4.6em;
  display: flex;
}

.block-circle-light.filled {
  background-color: var(--light-1);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  flex: none;
}

.review {
  grid-row-gap: 1em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8em 15%;
  display: flex;
}

.heading-review {
  max-width: 23em;
  font-family: Fraunces, sans-serif;
  font-style: italic;
  font-weight: 300;
  line-height: 1.25em;
}

.avatar-review {
  border-radius: 100%;
  width: 4.4em;
  height: 4.4em;
}

.block-review {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.2em;
  display: flex;
}

.name-review {
  margin-top: 1em;
  font-size: 1em;
  line-height: 1.2em;
}

.info-review {
  margin-top: .1em;
  font-size: .75em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4em;
}

.link-banner {
  background-color: #907c78;
  border-radius: .75em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  min-height: 34em;
  padding: 6em 3.6em 3.6em;
  text-decoration: none;
  transition: width .5s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-banner:hover {
  width: 110%;
}

.link-banner.color {
  background-color: #3f6f7d;
}

.banners {
  grid-column-gap: .75em;
  background-color: #0000;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.banners.banner-acomodacoes {
  margin-top: 18px;
  margin-bottom: 18px;
}

.wrapper-banner {
  z-index: 10;
  grid-column-gap: 1em;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.heading-banner {
  color: var(--light-1);
  max-width: 20ch;
  margin-bottom: -.17em;
}

.paragraph-banner {
  color: var(--light-1-60);
  max-width: 35ch;
  margin-top: 1.2em;
}

.wrapper-paragraph-banner {
  overflow: hidden;
}

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

.collection-list-wrapper {
  margin-top: 2em;
}

.collection-list {
  grid-column-gap: 1.4em;
  grid-row-gap: 1.4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-item {
  background-color: var(--white);
  border-radius: .75em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.link-thumbnail {
  border-radius: .75em;
  overflow: hidden;
}

.image-thumbnail {
  object-fit: cover;
  width: 100%;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.image-thumbnail:hover {
  transform: scale(1.05);
}

.block-stay {
  grid-row-gap: 1.4em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.7em;
  display: flex;
}

.paragraph-stay {
  max-width: 20em;
  font-size: 1em;
  line-height: 1.6em;
}

.paragraph-stay.light {
  color: var(--light-1-60);
}

.heading-stay {
  margin-bottom: -.3em;
}

.heading-stay.light {
  color: var(--light-1);
}

.link-heading-stay {
  text-decoration: none;
}

.button-outline-dark {
  background-color: #0000;
  border-radius: .63em;
  padding: 1.2em 1.9em;
  text-decoration: none;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94);
  box-shadow: inset 0 0 0 1px #13243026;
}

.button-outline-dark:hover {
  box-shadow: inset 0 0 0 2px var(--accent-1);
}

.button-outline-dark.small {
  padding: .8em 1.7em;
}

.block-button {
  grid-column-gap: .75em;
  justify-content: center;
  align-items: center;
  margin-top: 3em;
  display: flex;
}

.empty-state {
  background-color: var(--white);
  text-align: center;
  border-radius: .75em;
  padding: 1.2em;
}

.text-empty {
  color: var(--dark-1);
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.5em;
}

.subsection {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 8.75em;
  display: flex;
}

.grid-2-columns {
  grid-column-gap: 4em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
}

.image-map {
  object-fit: cover;
  border-radius: .75em;
  width: 100%;
}

.image-full {
  z-index: 0;
  border-radius: 0 0 .75em .75em;
  width: 100%;
  margin-top: 10vw;
  position: relative;
}

.strip {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.strip-block {
  flex-direction: row;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.image-strip {
  object-fit: cover;
  border-radius: .75em;
  width: 26vw;
  height: 32vw;
  margin-left: 1.8em;
  margin-right: 1.8em;
}

.image-strip.margin {
  margin-top: 5.4em;
}

.section-navbar {
  z-index: 500;
  background-color: var(--light-1);
  border-radius: 0 0 .75em .75em;
  padding: .75em;
  position: fixed;
  inset: 0% 0% auto;
}

.section-top {
  border-radius: .75em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5em;
  margin-bottom: .75em;
  padding-top: 8em;
  padding-bottom: 8.5em;
  display: flex;
}

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

.section-top.image-bg {
  background-image: linear-gradient(to bottom, #00000026, #00000026), url('../images/Screenshot-2025-01-05-at-21.54.22.png'), linear-gradient(to bottom, var(--dark-1), var(--dark-1));
  background-position: 0 0, 50%, 0 0;
  background-repeat: repeat, no-repeat, repeat;
  background-size: auto, cover, auto;
  min-height: 42vw;
  padding-top: 10em;
  padding-bottom: 10em;
}

.section-top.dark {
  background-color: var(--dark-1);
}

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

.wrapper-top {
  grid-row-gap: 1.3em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 82em;
  padding-left: 3.5em;
  padding-right: 3.5em;
  display: flex;
}

.collection-list-page {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-item-page {
  grid-column-gap: .75em;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.collection-item-page:nth-child(2n) {
  flex-direction: row-reverse;
}

.link-thumbnail-page {
  border-radius: .75em;
  width: 100%;
  height: 44vw;
  overflow: hidden;
}

.image-thumbnail-page {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.image-thumbnail-page:hover {
  transform: scale(1.03);
}

.block-stay-page {
  grid-row-gap: 1.4em;
  background-color: var(--dark-1);
  text-align: left;
  border-radius: .75em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  padding: 3.2em;
  display: flex;
}

.button-outline-light {
  box-shadow: inset 0 0 0 1px var(--light-1-30);
  background-color: #0000;
  border-radius: .63em;
  padding: 1.2em 1.9em;
  text-decoration: none;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94);
}

.button-outline-light:hover {
  box-shadow: inset 0 0 0 2px var(--light-1);
}

.button-outline-light.small {
  padding: .8em 1.7em;
}

.wrapper-stay-single {
  grid-column-gap: .75em;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 80vh;
  display: flex;
}

.image-main-single {
  object-fit: cover;
  border-radius: .75em;
  width: 100%;
  height: 100%;
}

.block-main-single {
  width: 100%;
  height: 100%;
}

.block-stay-single {
  grid-row-gap: 1.25em;
  background-color: var(--dark-1);
  text-align: left;
  border-radius: .75em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  padding: 3.2em;
  display: flex;
}

.collection-list-gallery {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-cms-gallery {
  border-radius: .75em;
  width: 100%;
}

.image-block {
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 22% 50%;
  border-radius: .75em;
  width: 100%;
}

.heading-quote {
  max-width: 23em;
  font-family: Fraunces, sans-serif;
  font-style: italic;
  font-weight: 300;
  line-height: 1.25em;
}

.signature-quote {
  height: 2.4em;
  margin-top: 1em;
}

.info-signature-quote {
  margin-top: -.3em;
  font-size: .875em;
  line-height: 1.1em;
}

.block-image-top {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 3em;
  margin-bottom: 2em;
  display: flex;
}

.image-top {
  z-index: 10;
  border-radius: .75em;
  width: 40%;
  margin-top: 8%;
  position: relative;
}

.image-top.left {
  z-index: 5;
  margin-top: 0%;
  margin-right: -15%;
  transform: rotate(-7deg);
}

.image-top.right {
  z-index: 15;
  margin-top: 4%;
  margin-left: -15%;
  transform: rotate(5deg);
}

.reservation {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 56em;
  margin-top: 4.5em;
  padding-left: 3.5em;
  padding-right: 3.5em;
  display: flex;
}

.form-block {
  width: 100%;
  margin-bottom: 0;
}

.field-label {
  color: var(--dark-1);
  letter-spacing: .03em;
  margin-bottom: .5em;
  font-family: URW Gothic, sans-serif;
  font-size: .75em;
  font-weight: 700;
  line-height: 1.2em;
}

.text-field {
  background-color: var(--white);
  color: var(--dark-1);
  border: 1px solid #0000;
  border-radius: .63em;
  height: 3.56em;
  margin-bottom: 0;
  padding: 1em 1.2em;
  font-size: 1em;
  line-height: 1.4em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-color: var(--accent-1);
}

.text-field::placeholder {
  color: #13243080;
}

.block-field {
  width: 100%;
}

.wrapper-field {
  grid-column-gap: .75em;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1.8em;
  display: flex;
}

.select-field {
  background-color: var(--white);
  color: var(--dark-1);
  border: 1px solid #0000;
  border-radius: .63em;
  height: 3.56em;
  margin-bottom: 0;
  padding: 1em;
  font-size: 1em;
  line-height: 1.4em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.select-field:focus {
  border-color: var(--accent-1);
}

.textarea {
  background-color: var(--white);
  color: var(--dark-1);
  border: 1px solid #0000;
  border-radius: .63em;
  min-width: 100%;
  max-width: 100%;
  min-height: 14em;
  max-height: 30em;
  margin-bottom: 0;
  padding: 1em 1.2em;
  font-size: 1em;
  line-height: 1.4em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.textarea:focus {
  border-color: var(--accent-1);
}

.textarea::placeholder {
  color: #13243080;
}

.heading-field {
  margin-bottom: 1.7em;
}

.submit-button {
  background-color: var(--dark-1);
  color: var(--light-1);
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: .63em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 2.4em 3.4em 2.1em;
  font-family: URW Gothic, sans-serif;
  font-size: .75em;
  font-weight: 700;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.submit-button:hover {
  background-color: var(--dark-2);
}

.form {
  grid-row-gap: 1.9em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.group-field {
  width: 100%;
}

.text-success {
  color: var(--dark-1);
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.4em;
}

.success-message {
  background-color: var(--light-2);
  border-radius: .75em;
  padding: 1.4em 1.6em;
}

.error-message {
  background-color: #cc000014;
  border-radius: .75em;
  margin-top: 1.4em;
  padding: 1.4em 1.6em;
}

.text-error {
  color: #c00;
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.4em;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 8em 3em 4em;
  display: flex;
}

.utility-page-content {
  grid-row-gap: 1.3em;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 22em;
  display: flex;
}

.utility-page-form {
  grid-row-gap: 1.3em;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.heading-template {
  margin-bottom: .6em;
}

.grid-colors {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.block-color {
  background-color: var(--white);
  border-radius: .75em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 8em;
  padding: 1em 1.2em;
  display: flex;
}

.block-color.light-1 {
  background-color: var(--light-1);
}

.block-color.light-1-60 {
  background-color: var(--light-1-60);
}

.block-color.light-1-30 {
  background-color: var(--light-1-30);
}

.block-color.light-1-15 {
  background-color: var(--light-1-15);
}

.block-color.light-2 {
  background-color: var(--light-2);
}

.block-color.dark-1 {
  background-color: var(--dark-1);
}

.block-color.dark-2 {
  background-color: var(--dark-2);
}

.block-color.dark-1-80 {
  background-color: var(--dark-1-80);
}

.block-color.dark-1-12 {
  background-color: var(--dark-1-12);
}

.block-color.accent-1 {
  background-color: var(--accent-1);
}

.block-color.accent-1-30 {
  background-color: var(--accent-1-30);
}

.block-color.accent-2 {
  background-color: var(--accent-2);
}

.hex-color {
  opacity: .5;
  color: var(--dark-1);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: URW Gothic, sans-serif;
  font-size: .8em;
  font-weight: 400;
  line-height: 1.3em;
}

.hex-color.light {
  color: var(--light-1);
}

.text-color {
  color: var(--dark-1);
  letter-spacing: .05em;
  margin-bottom: .15em;
  font-family: URW Gothic, sans-serif;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.3em;
}

.text-color.light {
  color: var(--light-1);
}

.button-template {
  grid-column-gap: .75em;
  grid-row-gap: 1em;
  background-color: var(--dark-1);
  border-radius: .75em;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .7em;
  padding: 1.4em;
  display: flex;
}

.button-template.light {
  background-color: var(--light-2);
}

.paragraph-template {
  margin-bottom: 2.2em;
}

.fraunces {
  font-family: Fraunces, sans-serif;
  font-weight: 300;
}

.font-template {
  grid-column-gap: .75em;
  grid-row-gap: 1em;
  background-color: var(--light-2);
  border-radius: .75em;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .7em;
  padding: 2em;
  display: flex;
}

.grid-licensing {
  grid-column-gap: .6em;
  grid-row-gap: .6em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.image-template {
  object-fit: cover;
  border-radius: .75em;
  width: 100%;
  max-height: 32em;
}

.grid-icon-licensing {
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto auto auto;
  grid-auto-columns: auto;
  justify-content: start;
}

.image {
  max-width: 13vw;
  margin-left: -3.7rem;
}

.image-2 {
  max-width: 13vw;
  margin-left: -4rem;
}

.wrapper-quartos {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 30px;
  display: flex;
}

.div-quarto {
  flex-flow: column;
  display: flex;
}

.top-section {
  justify-content: space-between;
  align-items: center;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 25%;
  text-decoration: none;
  display: flex;
}

.live-icon-chat {
  margin-right: 16px;
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
  position: static;
}

.live-chat-top-text.block {
  color: #b0b0b0;
  text-align: left;
  margin-bottom: 10px;
  font-size: 12px;
}

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #36464b;
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: #383838;
  transform: scale(1.05);
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: 5px auto auto 5px;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.chat-section {
  background-color: #e6ddd4;
  height: 50%;
  padding: 16px 20px;
}

.whatsapp-chat {
  background-color: #fff;
  border: 1px solid #00000029;
  border-radius: 20px;
  flex-direction: column;
  width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.close-live-chat-container {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
  display: flex;
}

.livechat-button {
  background-color: #36464b;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  display: flex;
}

.whatsapp-block {
  z-index: 60;
  flex-direction: column;
  align-items: flex-end;
  font-family: Varela Round, sans-serif;
  display: flex;
  position: fixed;
  inset: auto 30px 30px auto;
}

.live-chat-bottom-text {
  font-size: 10px;
}

.live-chat-bottom-text.block {
  text-align: left;
  margin-bottom: 5px;
  font-size: 12px;
}

.small-whatsapp-icon {
  margin-right: 10px;
}

.chat-block {
  background-color: #fff;
  border-radius: 8px;
  width: 80%;
  padding: 15px;
}

@media screen and (min-width: 1920px) {
  .whatsapp-chat {
    display: none;
  }

  .livechat-button {
    transition: all .2s;
  }

  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

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

  h2 {
    font-size: 2.9em;
  }

  h3 {
    font-size: 2.3em;
  }

  h4 {
    font-size: 1.6em;
  }

  h5 {
    font-size: 1.3em;
  }

  .heading-hero {
    font-size: 10vw;
  }

  .heading-hero.cms {
    font-size: 6vw;
  }

  .hero-top {
    padding: 1.2em;
  }

  .nav-menu {
    background-color: var(--dark-2);
    border-radius: .75em;
    margin-top: .7em;
    padding: 1em .5em;
  }

  .nav-link.dark {
    color: var(--light-2);
  }

  .desktop-button {
    display: none;
  }

  .mobile-button {
    grid-row-gap: .5em;
    flex-direction: column;
    margin-top: .5em;
    display: flex;
  }

  .menu-button.dark {
    color: var(--dark-1);
    background-color: #0e1a230d;
  }

  .menu-button.dark:hover {
    background-color: #0e1a231a;
  }

  .section {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .content.template {
    grid-row-gap: 7em;
  }

  .grid-footer {
    margin-top: 6.4em;
    margin-bottom: 6.4em;
  }

  .review {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .link-banner {
    min-height: 28em;
  }

  .banners {
    grid-row-gap: .75em;
    flex-direction: column;
  }

  .image-thumbnail {
    height: 32vw;
  }

  .block-stay {
    padding: 2em;
  }

  .subsection {
    margin-top: 6.75em;
  }

  .grid-2-columns {
    grid-column-gap: 3em;
  }

  .image-strip {
    margin-left: 1em;
    margin-right: 1em;
  }

  .section-top {
    padding-top: 6em;
    padding-bottom: 6.5em;
  }

  .link-thumbnail-page {
    height: 52vw;
  }

  .block-stay-page {
    padding: 2em;
  }

  .wrapper-stay-single {
    grid-row-gap: .75em;
    flex-direction: column-reverse;
    justify-content: flex-end;
    height: auto;
  }

  .block-stay-single {
    width: 100%;
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .whatsapp-block {
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 3.1em;
  }

  h2 {
    font-size: 2.5em;
  }

  h3 {
    font-size: 1.9em;
  }

  h4 {
    font-size: 1.5em;
  }

  h6 {
    font-size: 1.1em;
  }

  .hero-center {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .paragraph-hero {
    font-size: 1.26em;
  }

  .icon-circle.large {
    width: 1.5em;
    height: 1.5em;
  }

  .section {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .content {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

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

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

  .grid-footer {
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
    margin-top: 5.4em;
    margin-bottom: 5.4em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .bottom-footer {
    grid-row-gap: .5em;
    flex-direction: column;
  }

  .logo-footer {
    height: 1.8em;
  }

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

  .link-instagram.hide {
    display: none;
  }

  .icon-instagram {
    width: 3.8em;
    height: 3.8em;
  }

  .slide-arrow {
    padding-left: 2%;
    padding-right: 2%;
  }

  .block-circle, .block-circle-light, .block-circle-light.filled {
    width: 3.8em;
    height: 3.8em;
  }

  .review {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .link-banner {
    min-height: 24em;
    padding: 2em;
  }

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

  .image-thumbnail {
    height: 100vw;
  }

  .block-stay {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .subsection {
    margin-top: 5.75em;
  }

  .grid-2-columns {
    grid-row-gap: 4em;
    grid-template-columns: 1fr;
  }

  .image-strip {
    width: 39vw;
    height: 47vw;
    margin-left: .7em;
    margin-right: .7em;
  }

  .section-top {
    padding-top: 5em;
    padding-bottom: 5.5em;
  }

  .section-top.image-bg {
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .collection-list-page {
    grid-row-gap: .75em;
  }

  .collection-item-page, .collection-item-page:nth-child(2n) {
    flex-direction: column;
  }

  .link-thumbnail-page {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    height: 90vw;
  }

  .block-stay-page {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    padding: 3em 2.5em;
  }

  .block-stay-single {
    padding: 3em 2.5em;
  }

  .reservation {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .utility-page-wrap {
    padding: 6em 1.5em 2em;
  }

  .grid-colors, .grid-licensing {
    grid-template-columns: 1fr 1fr;
  }

  .grid-icon-licensing {
    grid-template-columns: auto auto auto auto;
  }

  .whatsapp-block {
    bottom: 15px;
    right: 15px;
  }
}

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

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.6em;
  }

  h4 {
    font-size: 1.4em;
  }

  h5 {
    font-size: 1.2em;
  }

  .heading-hero {
    font-size: 12vw;
  }

  .heading-hero.cms {
    font-size: 8vw;
  }

  .hero-bottom {
    margin-bottom: 1em;
  }

  .brand.w--current {
    margin-right: 2.8rem;
  }

  .section {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .content {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .block.left {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .grid-footer {
    margin-top: 4.4em;
    margin-bottom: 4.4em;
  }

  .review {
    padding: 4em 20%;
  }

  .link-thumbnail {
    width: 100%;
  }

  .block-stay {
    padding: 2em 1.5em;
  }

  .subsection {
    margin-top: 4.75em;
  }

  .grid-2-columns {
    grid-row-gap: 3em;
  }

  .section-top {
    padding-top: 4em;
    padding-bottom: 4.5em;
  }

  .block-image-top {
    margin-top: 1.5em;
  }

  .wrapper-field {
    grid-row-gap: 1.8em;
    flex-direction: column;
  }

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

  .button-template {
    flex-direction: column;
  }

  .grid-icon-licensing {
    grid-template-columns: auto auto;
  }

  .image, .image-2 {
    max-width: 40vw;
    margin-left: 0;
  }

  .wrapper-quartos {
    flex-flow: column;
    margin-top: 26px;
    display: flex;
  }

  .whatsapp-container {
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: 0;
  }

  .whatsapp-chat {
    width: 100%;
    height: 40vh;
    position: relative;
  }

  .whatsapp-block {
    z-index: 11;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    bottom: 0;
    right: 0;
  }
}

#w-node-_59857e3d-1f2e-5327-5615-18ba3d94b852-a1ac661a, #w-node-_59857e3d-1f2e-5327-5615-18ba3d94b859-a1ac661a, #w-node-_59857e3d-1f2e-5327-5615-18ba3d94b860-a1ac661a, #w-node-_59857e3d-1f2e-5327-5615-18ba3d94b867-a1ac661a, #w-node-_59857e3d-1f2e-5327-5615-18ba3d94b86e-a1ac661a, #w-node-_59857e3d-1f2e-5327-5615-18ba3d94b875-a1ac661a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-da81788b-53f4-05a4-680d-70eae9a9d4dd-a1ac661a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_54145bf7-0c91-5c2f-40d3-2bd13e028223-3e028220, #w-node-_54145bf7-0c91-5c2f-40d3-2bd13e028229-3e028220, #w-node-_54145bf7-0c91-5c2f-40d3-2bd13e028230-3e028220, #w-node-_58703736-196d-087a-5c77-205121b9361a-21b93618, #w-node-_58703736-196d-087a-5c77-205121b9361f-21b93618, #w-node-_58703736-196d-087a-5c77-205121b93624-21b93618, #w-node-_58703736-196d-087a-5c77-205121b93629-21b93618, #w-node-_58703736-196d-087a-5c77-205121b9362e-21b93618, #w-node-_9c1957ba-8e1c-f6a7-d816-17741da40216-1da40214 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9c1957ba-8e1c-f6a7-d816-17741da4022c-1da40214 {
  justify-self: center;
}

#w-node-_9c1957ba-8e1c-f6a7-d816-17741da4022e-1da40214, #w-node-_7055beb5-4684-e756-5027-6ce817b06fc9-17b06fc7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7055beb5-4684-e756-5027-6ce817b06fdf-17b06fc7 {
  place-self: auto center;
}

#w-node-_7055beb5-4684-e756-5027-6ce817b06fe1-17b06fc7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dfa72421-748e-d7eb-1955-c271a0cc5e16-a1ac661d, #w-node-_03ccc11b-55f6-b755-22b6-d15d38b5839f-a1ac661d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_8db51f26-2461-f5cd-f570-f492de761854-a1ac661d, #w-node-_8db51f26-2461-f5cd-f570-f492de76185b-a1ac661d, #w-node-_8db51f26-2461-f5cd-f570-f492de761862-a1ac661d, #w-node-_8db51f26-2461-f5cd-f570-f492de761869-a1ac661d, #w-node-_8db51f26-2461-f5cd-f570-f492de761870-a1ac661d, #w-node-_8db51f26-2461-f5cd-f570-f492de761877-a1ac661d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e5be0fa9-ebc9-01e5-da82-381e05d62c4f-a1ac6621, #w-node-e61edb74-5152-8ff2-38c6-2b3550557016-a1ac6621 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-c3e34cb3-f349-27a5-2f5d-db775b235c33-a1ac6622, #w-node-d5652d12-f4a4-d97c-ef35-d7de3655847f-a1ac6622, #w-node-d4341a58-df22-5f80-300a-9d9d57f26a47-a1ac6622, #w-node-f732001d-3987-02e4-ffe7-f98d77fd8f7e-a1ac6622, #w-node-_3ef53c5f-a372-25cd-3345-a49a60749024-a1ac6622, #w-node-_069e4100-8dfd-4809-74d3-d55ebbba6a34-a1ac6622 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e5be0fa9-ebc9-01e5-da82-381e05d62c4f-a1ac6623, #w-node-e61edb74-5152-8ff2-38c6-2b3550557016-a1ac6623 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_32020145-0b36-7d47-fd70-12e872171c66-a1ac6625, #w-node-a39cb1b1-1cb9-7c06-3d54-048ac370b540-a1ac6625, #w-node-_62684d2c-c439-dffa-7721-30a1b612658a-a1ac6625, #w-node-_655d5446-45ec-30e0-0e79-3861836f714b-a1ac6625, #w-node-_61c8514a-d1a2-c16c-a0d0-f52e28d25b71-a1ac6625, #w-node-_6d044549-9349-5492-1833-77cfcc07fe6a-a1ac6625, #w-node-_005c8adf-3e1f-62cd-f188-eacea1aa6fe6-a1ac6625, #w-node-_06d4846e-a643-5adb-7f1e-a48dc1e2f5e4-a1ac6625, #w-node-_9d119c88-1638-2a55-37ac-ae269f4b6fed-a1ac6625, #w-node-b94852bd-0fa9-cd94-05eb-320c1c865e8a-a1ac6625, #w-node-_5e01fc2b-b080-348d-413d-1b82d8c12f77-a1ac6625, #w-node-e9e6cd3e-d20c-d9b3-e86e-5c4597f34c41-a1ac6625, #w-node-_3a3fca51-cbd3-ed14-2f97-ead778795be2-a1ac6625 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_54145bf7-0c91-5c2f-40d3-2bd13e028229-3e028220, #w-node-e61edb74-5152-8ff2-38c6-2b3550557016-a1ac6621, #w-node-e61edb74-5152-8ff2-38c6-2b3550557016-a1ac6623 {
    order: -9999;
  }
}


@font-face {
  font-family: 'URW Gothic';
  src: url('../fonts/URWGothic-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URW Gothic';
  src: url('../fonts/URWGothic-BookOblique.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'URW Gothic';
  src: url('../fonts/URWGothic-Demi.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URW Gothic';
  src: url('../fonts/URWGothic-DemiOblique.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}