@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: #13243000;
  --white: white;
  --accent-1: #bc9e59;
  --light-2: #ede9df;
  --accent-2: #4a7fce;
  --light-1-60: #f6f4ef99;
  --light-1-30: #f6f4ef00;
  --dark-2: #0e1a23;
  --orange: #e8843c;
  --accent-1-30: #bc9e594d;
  --light-1-15: #f6f4ef26;
  --dark-1-12: #1324301f;
  --naranja-principal: #e8843c;
  --naranja-secundario: #cc5a08;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

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 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  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: 5em;
  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;
}

.w-background-video-atom video::-webkit-media-controls,
.w-background-video-atom video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.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: #000;
  border-radius: .75em;
  position: absolute;
  inset: 0%;
  pointer-events: none;
}

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

.heading-hero {
  max-width: 15em;
  color: var(--light-1);
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 50px;
  font-weight: 400;
  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 {
  max-width: 14em;
  color: var(--light-1);
  text-align: center;
  margin-top: -.8em;
  margin-bottom: 0;
  font-family: Baskervville, sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5em;
}

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

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

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

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

.link-circle {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  width: 3.8em;
  height: 3.8em;
  color: var(--light-1-30);
  background-color: #0e1a2333;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  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: 7em;
  max-width: none;
  height: 8em;
  margin-top: 0;
  margin-bottom: -32px;
  display: block;
}

.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;
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-nav-link {
  display: none;
}

@media screen and (max-width: 991px) {
  .paragraph-13,
  .paragraph-link,
  .nav-right-contacto,
  .nav-right-contacto-test {
    display: none;
  }

  .menu-button-contacto {
    position: absolute;
    top: .8em;
    right: .8em;
    z-index: 20;
  }

  .nav-menu-contacto {
    z-index: 15;
  }

  .mobile-nav-link {
    color: var(--light-1);
    text-align: center;
    text-decoration: none;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: .6em 0;
    display: block;
  }

  .mobile-nav-link:hover {
    color: var(--naranja-principal);
  }
}

.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: 70px;
  margin-top: -30px;
}

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

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

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

.nav-link2.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;
  padding-top: 20px;
  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: 0;
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
}

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

.content {
  z-index: 50;
  text-align: center;
  width: 100%;
  max-width: 82em;
  padding-bottom: 0;
  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 {
  text-align: left;
  max-width: 12em;
  margin-top: 1em;
  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;
  color: var(--orange);
  margin-top: 10px;
  margin-bottom: .5em;
  font-family: Manrope, sans-serif;
  font-size: 18px;
}

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

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

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

.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: 100px;
  height: 120px;
  margin-top: 35px;
  padding-top: 0;
}

.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: 0;
  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;
  border-bottom: 1px solid #e8843c;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 66em;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 20px;
}

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

.link-bottom-footer {
  opacity: .4;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #e8843c;
  padding: 1.3em 1.6em 1em;
  font-family: Libre Baskerville, sans-serif;
  font-size: .63em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  transition-property: opacity;
  transition-duration: .3s;
  transition-timing-function: 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;
  padding-top: 22px;
  display: flex;
}

.logo-footer {
  width: 200px;
  height: 165px;
}

.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);
  margin-top: 80px;
  margin-bottom: 0;
}

.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;
  background-image: url('../images/Mask-group_1.webp');
  background-position: 0 0;
  background-size: auto;
  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;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.wrapper-banner {
  z-index: 10;
  clear: none;
  grid-column-gap: 1em;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  text-decoration: none;
  display: flex;
  position: static;
}

.block-text-banner {
  text-align: center;
  width: auto;
}

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

.paragraph-banner {
  max-width: 35ch;
  color: var(--light-1-60);
  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%;
  height: 28em;
  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: 110px;
  padding-right: 0;
  font-family: Libre Baskerville, sans-serif;
  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%;
  margin-top: -355px;
}

.image-full {
  z-index: 0;
  border-radius: 0 0 .75em .75em;
  width: 100%;
  margin-top: -8vw;
  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/Alberca.webp'), 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;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  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;
  background-image: url('../images/Mask-group_6.webp');
  background-position: 0 0;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 82em;
  min-height: 42px;
  padding: 130px 0;
  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 {
  object-fit: cover;
  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);
  height: 3.56em;
  color: var(--dark-1);
  border: 1px solid #0000;
  border-radius: .63em;
  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);
  height: 3.56em;
  color: var(--dark-1);
  border: 1px solid #0000;
  border-radius: .63em;
  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);
  min-width: 100%;
  max-width: 100%;
  min-height: 14em;
  max-height: 30em;
  color: var(--dark-1);
  border: 1px solid #0000;
  border-radius: .63em;
  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);
  width: 100%;
  color: var(--light-1);
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: .63em;
  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;
}

.nav-link {
  color: var(--white);
  text-align: right;
  padding-top: 20px;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 200;
}

.nav-link.w--current {
  color: var(--white);
  font-family: Manrope, sans-serif;
}

.nav-link-2 {
  color: var(--white);
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 200;
}

.nav-link-2.w--current {
  color: var(--white);
  font-family: Manrope, sans-serif;
}

.image {
  text-align: left;
  max-width: 16%;
  margin-right: 0;
  padding-left: 0;
  position: absolute;
  inset: 0% auto auto 25%;
}

.image-2 {
  align-self: center;
  max-width: 45%;
  margin-top: 50px;
}

.paragraph-2 {
  text-align: center;
  color: #cc5a08;
  margin-top: -1.2em;
  font-family: Libre Baskerville, sans-serif;
  font-size: 18px;
  font-style: italic;
}

.paragraph-3 {
  color: #e8843c;
  margin-top: 1em;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 18px;
}

.image-3 {
  margin-top: -10px;
}

.home__cta-container {
  text-align: justify;
  justify-content: space-between;
  align-items: center;
  width: auto;
  display: flex;
}

.section-2 {
  margin-bottom: 80px;
}

.image-4 {
  position: relative;
  inset: 0% auto auto 0%;
}

.link-block {
  background-image: url('../images/Mask-group_1.webp');
  background-position: 0 0;
  background-size: auto;
  margin-top: 0;
  padding: 60px 100px;
}

.link-block-2 {
  background-image: url('../images/Mask-group_2.webp');
  background-position: 0 0;
  background-size: auto;
}

.link-block-3 {
  background-image: url('../images/Mask-group_3.webp');
  background-position: 0 0;
  background-size: auto;
  padding: 60px 100px;
}

.text-block {
  color: var(--white);
  text-align: center;
  font-family: Manrope, sans-serif;
  font-size: 21px;
}

.text-block-2 {
  color: var(--white);
  text-decoration: none;
}

.paragraph-4 {
  outline-offset: 0px;
  text-align: center;
  white-space: normal;
  outline: 3px #fff;
  text-decoration: none;
}

.div-block-molino {
  text-align: center;
  background-image: url('../images/Mask-group_3.webp');
  background-position: 0 0;
  background-size: auto;
  padding: 60px 100px 0;
  flex: 1;
  max-width: calc(50% - .375em);
}

.div-block-2-molino {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  background-image: url('../images/Mask-group_3.webp');
  background-position: 0 0;
  background-size: auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  min-width: auto;
  padding: 60px 100px 0;
  display: block;
  flex: 1;
  max-width: calc(50% - .375em);
}

.body {
  text-align: left;
  background-color: #f9f4ee;
}

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

.paragraph-6 {
  color: var(--white);
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 18px;
}

.text-span, .text-span-2 {
  font-family: Libre Baskerville, sans-serif;
}

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

.imagen-desarrollo-1-molino {
  mix-blend-mode: normal;
}

.paragraph-7 {
  text-align: center;
  color: #cc5a08;
  font-family: Libre Baskerville, sans-serif;
  font-size: 18px;
}

.text-span-3 {
  color: #e8843c;
  font-family: Manrope, sans-serif;
}

.image-7 {
  margin-bottom: 25px;
}

.paragraph-8 {
  text-align: left;
  color: #e8843c;
  padding-top: 0;
  font-size: 20px;
}

.div-block-3 {
  margin-top: -101px;
}

.image-8 {
  width: 548px;
  max-width: 110%;
  height: auto;
  margin-bottom: 0;
  position: static;
}

.section-3 {
  background-color: #fff;
  margin: 80px 40px 50px;
  padding-top: 0;
  padding-bottom: 60px;
  padding-left: 0;
  display: block;
}

.text-span-4 {
  font-size: 80px;
  line-height: 1em;
}

.text-span-5 {
  color: #cc5a08;
  font-family: Libre Baskerville, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

.image-9 {
  max-width: 115%;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -115px;
}

.image-10 {
  text-align: center;
  vertical-align: baseline;
  width: 600px;
  max-width: 130%;
  margin-top: 30px;
  margin-left: -380px;
  position: absolute;
}

.paragraph-9 {
  text-align: center;
  color: #e8843c;
  margin-top: 55px;
  margin-bottom: 2em;
  font-size: 35px;
  line-height: .8em;
}

.text-span-6 {
  font-family: Libre Baskerville, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 0;
}

.text-span-7 {
  font-size: 50px;
}

.image-11 {
  margin-top: 55px;
  padding-bottom: 10px;
}

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

.container {
  text-align: center;
  background-color: #e8843ccc;
  max-width: 600px;
  margin-top: 0;
  padding: 60px 0;
}

.heading-2 {
  color: var(--white);
  text-align: center;
  font-family: Baskervville, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.image-12 {
  text-align: center;
  max-width: 25%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.heading-3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
}

.button-2 {
  color: #cc5a08;
  background-color: #fff;
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 3px 40px;
  font-family: Manrope, sans-serif;
  font-weight: 400;
}

.div-block-5 {
  background-image: url('../images/Mask-group_6.webp');
  background-position: 0 0;
  background-size: auto;
  padding: 120px 130px;
}

.paragraph-10 {
  text-align: left;
  color: #e8843c;
  margin-top: 0;
  padding-top: 0;
  font-size: 20px;
  text-decoration: none !important;
}

.text-span-8 {
  font-size: 16px;
}

.text-span-9 {
  color: var(--naranja-principal);
  -webkit-text-decoration-color: var(--white);
  text-decoration-color: var(--white);
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  font-size: 17px;
  text-decoration-style: dashed;
  text-decoration: none !important;
}

.div-block-6 {
  padding-top: 40px;
  text-decoration: none;
}

.div-block-7, .div-block-8 {
  padding-top: 40px;
}

.image-13, .image-14, .image-15 {
  padding-right: 10px;
}

.link-block-4 {
  padding-top: 10px;
}

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

.section-4 {
  margin-top: -135px;
  padding-top: 0;
}

.background-video-3 {
  z-index: 10;
  border-radius: .75em;
  position: absolute;
}

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

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

.image-16 {
  max-width: 100%;
  height: 40px;
}

.section-5 {
  text-align: center;
  align-self: center;
  margin-top: 30px;
}

.paragraph-11 {
  color: var(--naranja-principal);
  padding-top: 30px;
  font-size: 70px;
  line-height: .8em;
}

.text-span-10 {
  font-size: 20px;
}

.text-span-11 {
  color: var(--naranja-secundario);
  font-family: Libre Baskerville, sans-serif;
  font-size: 18px;
  font-style: italic;
}

.image-17 {
  width: 760px;
  max-width: 55%;
  margin-top: -30px;
}

.image-18 {
  width: 900px;
}

.section-6 {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.section-7 {
  text-align: center;
  margin-top: -30px;
}

.button-segunda-opcion {
  color: #fff;
  background-color: #cc5a08;
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 3px 40px;
  font-family: Manrope, sans-serif;
  font-weight: 400;
}

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

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

.section-full-molino.dark {
  background-color: var(--dark-1);
  margin-top: 80px;
  margin-bottom: 0;
}

.desarrollo-medida-molino {
  color: var(--white);
  text-align: center;
  padding-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.boton-desarrolllo-molino {
  text-align: center;
}

.div-block {
  text-align: center;
  background-image: url('../images/Mask-group_1.webp');
  background-position: 0 0;
  background-size: auto;
  align-self: center;
  padding: 60px 80px 0;
}

.div-block-2 {
  text-align: center;
  background-image: url('../images/Mask-group_3.webp');
  background-position: 0 0;
  background-size: auto;
  align-self: center;
  padding: 60px 80px 0;
}

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

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

.section-full-molino-2.dark {
  background-color: var(--dark-1);
  margin-top: 80px;
  margin-bottom: 0;
}

.div-block-molino-3 {
  background-image: url('../images/Mask-group_3.webp');
  background-position: 0 0;
  background-size: auto;
  width: 600px;
  padding: 60px 100px 0;
}

.section-8 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.titulo {
  color: #e8843c;
  padding-top: 20px;
  font-size: 40px;
}

.div-block-9 {
  background-color: var(--naranja-principal);
  padding-top: 30px;
  padding-bottom: 30px;
}

.image-19 {
  max-width: 80%;
  padding-top: 15px;
  padding-left: 30px;
}

.imagen-equipamiento {
  z-index: -1;
  vertical-align: baseline;
  max-width: 150%;
  margin-top: 15px;
  margin-left: 0;
  padding-left: 0;
  position: absolute;
}

.equipamiento-seccion {
  background-color: #fff0;
  margin: 80px 40px 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: block;
}

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

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

.mapa-saratoga {
  width: 550px;
  max-width: 55%;
  margin-top: -30px;
}

.logo-saratoga {
  width: 1000px;
}

.div-block-saratoga, .div-block-2-saratoga {
  background-image: url('../images/Mask-group_1.webp');
  background-position: 0 0;
  background-size: auto;
  padding: 60px 100px 0;
}

.imagen-desarrollo-1-saratoga {
  mix-blend-mode: normal;
}

.image-20 {
  z-index: 12;
  padding-bottom: 40px;
  padding-right: 25px;
  position: fixed;
  inset: 540px 0% 0% auto;
}

.image-21, .image-22 {
  max-width: 70%;
}

.paragraph-12 {
  color: var(--white);
  text-align: left;
  -webkit-text-stroke-color: var(--light-1);
  border-bottom: 0 solid #000;
  border-radius: 0;
  padding-top: 0;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  text-decoration: none;
}

.whatsapp {
  z-index: 12;
  padding-top: 3px;
  padding-bottom: 40px;
  padding-right: 25px;
  position: fixed;
  inset: 400px 0% 0% auto;
}

.chat {
  z-index: 12;
  padding-top: 3px;
  padding-bottom: 40px;
  padding-right: 25px;
  position: fixed;
  inset: 467px 0% 0% auto;
}

.text-span-12 {
  color: var(--white);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.text-span-13 {
  color: var(--white);
  text-decoration: none;
}

.link-2 {
  text-decoration: none;
}

.link-3 {
  color: var(--white);
  text-decoration: none;
}

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

.navbar-contacto {
  background-color: #0000;
}

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

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

.nav-menu-contacto {
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.nav-link-2-contacto {
  color: var(--naranja-principal);
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 200;
}

.nav-link-2-contacto.w--current {
  color: var(--white);
  font-family: Manrope, sans-serif;
}

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

.button-light-contacto {
  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-contacto:hover {
  background-color: var(--white);
}

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

.button-contacto {
  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-contacto:hover {
  box-shadow: inset 0 0 0 1px var(--light-1-30);
  padding-left: 1.9em;
  padding-right: 1.9em;
}

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

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

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

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

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

.logo-contacto {
  object-fit: contain;
  height: 70px;
  margin-top: -30px;
}

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

.desktop-button-contacto {
  grid-column-gap: .7em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 140px;
  padding-top: 20px;
  display: flex;
}

.paragraph-12-contacto {
  width: 120px;
  color: var(--white);
  text-align: left;
  -webkit-text-stroke-color: var(--light-1);
  border-bottom: 0 solid #000;
  border-radius: 0;
  flex: 0 auto;
  padding-top: 0;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  text-decoration: none;
}

.link-2-contacto {
  text-decoration: none;
}

.link-3-contacto {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.link-3-contacto:hover {
  font-size: 14px;
}

.text-span-13-contacto {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.text-span-13-contacto:hover {
  font-size: 14px;
}

.menu-button-contacto {
  -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-contacto:hover {
  background-color: #0e1a2366;
}

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

.inicio-link---contacto {
  color: var(--naranja-principal);
  text-align: left;
  -webkit-text-stroke-color: var(--light-1);
  border-bottom: 0 solid #000;
  border-radius: 0;
  padding-top: 0;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  text-decoration: none;
}

.acerca-de---contacto {
  color: var(--naranja-principal);
  text-decoration: none;
}

.acerca-de-link---contacto-copy {
  color: var(--naranja-principal);
  text-align: left;
  -webkit-text-stroke-color: var(--light-1);
  border-bottom: 0 solid #000;
  border-radius: 0;
  padding-top: 0;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  text-decoration: none;
}

.nav-left-contacto-copy {
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  padding-left: 20px;
  display: flex;
}

.paragraph-13 {
  color: var(--white);
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}

.link-4 {
  color: var(--naranja-principal);
  text-decoration: none;
}

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

.link-4.w--current:hover {
  font-size: 14px;
}

.link-5 {
  color: var(--white);
  text-decoration: none;
}

.link-5:hover {
  font-size: 14px;
}

.link-6 {
  color: var(--white);
  text-decoration: none;
}

.link-6:hover {
  font-size: 14px;
}

.link-6.w--current {
  color: var(--naranja-principal);
}

.navbar-inicio {
  background-color: #0000;
}

.paragraph-14 {
  width: 120px;
  color: var(--naranja-principal);
  padding-right: 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.link-7 {
  color: var(--naranja-principal);
  text-decoration: none;
}

.link-8 {
  text-decoration: none;
  color: #e8853c !important;
}

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

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

.saratoga-link {
  color: var(--dark-2);
  text-decoration: none;
}

.saratoga-link:hover {
  font-size: 14px;
}

.molino-link {
  text-decoration: none;
  color: #e8853c !important;
}

.molino-link:hover {
  font-size: 14px;
}

.inicio-link {
  color: var(--naranja-principal);
  text-decoration: none;
}

.inicio-link.w--current {
  color: #e8853c !important;
}

.nav-left-contacto-link {
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.paragraph-link {
  width: 120px;
  color: var(--naranja-principal);
  text-align: left;
  padding-left: 15px;
  font-size: 13px;
  font-weight: 600;
}

.image-23 {
  max-width: 28%;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 0;
  display: inline-block;
}

.section-9 {
  text-align: center;
  margin-top: -140px;
  margin-bottom: 40px;
}

.heading-4 {
  color: var(--naranja-principal);
  text-align: center;
  column-count: auto;
  flex: 0 auto;
  order: 0;
  margin-top: 0;
  padding-top: 50px;
  font-family: Libre Baskerville, sans-serif;
  font-style: italic;
  font-weight: 400;
  display: block;
  position: relative;
}

.link-9 {
  text-decoration: none;
}

.link-10 {
  position: static;
}

.link-11, .link-12, .link-12.w--current, .link-13, .link-14 {
  color: var(--naranja-principal);
  font-size: 16px;
  text-decoration: none;
}

.paragraph-15 {
  color: var(--naranja-principal);
  text-align: center;
  font-size: 18px;
}

.field-label-2, .field-label-3, .field-label-4 {
  color: var(--naranja-principal);
  font-family: Manrope, sans-serif;
  font-weight: 300;
}

.formulario_contacto {
  text-align: left;
  background-color: #fff;
  align-self: center;
  width: 600px;
  margin-bottom: 30px;
  padding: 20px 30px 15px;
}

.section-11 {
  margin-bottom: 40px;
}

.submit-button-2 {
  background-color: #cc5a08;
  border-radius: 13px;
  padding: 4px 50px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
}

.text-field-2 {
  color: var(--naranja-principal);
  border: 0 solid #000;
  border-bottom: 1px solid #e8853c;
  font-family: Manrope, sans-serif;
}

.text-field-3, .text-field-4, .text-field-5 {
  border: 0 solid #000;
  border-bottom: 1px solid #e8853c;
}

.paragraph-16 {
  color: var(--naranja-secundario);
  text-align: center;
  font-family: Libre Baskerville, sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
}

.text-span-14 {
  color: var(--naranja-principal);
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-style: normal;
}

.section-12 {
  margin-top: 80px;
  margin-bottom: 30px;
}

.link-block-5, .link-block-6 {
  text-align: center;
}

.text-span-15, .text-span-16 {
  font-size: 15px;
  font-weight: 500;
}

.section-13 {
  margin-bottom: 100px;
}

.section-top-home {
  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-home.padding-0-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.section-top-home.image-bg {
  background-image: linear-gradient(to bottom, #00000026, #00000026), url('../images/Alberca.webp'), 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;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 10em;
}

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

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

.section-top-home.image-bg-home {
  background-image: linear-gradient(to bottom, #00000026, #00000026), url('../images/Frame-315.webp'), 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;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 10em;
}

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

.image-25 {
  margin-bottom: 20px;
}

.container-2 {
  margin-bottom: 0;
}

.code-embed, .link-block-7, .link-block-8, .code-embed-2, .code-embed-3 {
  padding-top: 20px;
}

.section-key-testiminios {
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.paragraph-15-copy {
  color: var(--naranja-principal);
  text-align: center;
  padding-bottom: 20px;
  font-size: 18px;
}

.paragraph-17 {
  color: var(--naranja-secundario);
  text-align: center;
  padding-bottom: 30px;
  font-family: Libre Baskerville, sans-serif;
  font-size: 20px;
  font-style: italic;
}

.video {
  width: 100%;
  min-width: 100%;
  max-width: 0%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.video-2 {
  width: 100%;
}

.section-14 {
  text-align: center;
  align-self: center;
  width: 103%;
  max-width: 100%;
}

.section-14-copy {
  text-align: center;
  align-self: center;
  width: 65%;
  max-width: 100%;
}

.link-15 {
  color: var(--white);
  text-decoration: none;
}

.link-15.w--current:hover {
  font-size: 14px;
}

.link-16 {
  color: var(--white);
  text-decoration: none;
}

.link-16:hover {
  font-size: 14px;
}

.link-17 {
  color: var(--white);
  text-decoration: none;
}

.link-17:hover {
  font-size: 14px;
}

.link-18 {
  color: var(--white);
  text-decoration: none;
}

.link-18:hover {
  font-size: 14px;
}

.link-19 {
  color: var(--naranja-principal);
  text-decoration: none;
}

.link-19:hover, .link-19.w--current:hover {
  font-size: 14px;
}

.link-20 {
  color: var(--naranja-principal);
  text-decoration: none;
}

.link-20:hover {
  font-size: 14px;
}

.link-21 {
  color: var(--naranja-principal);
  text-decoration: none;
}

.link-21:hover {
  font-size: 14px;
}

.link-22 {
  color: var(--naranja-principal);
  text-decoration: none;
}

.link-22.w--current:hover {
  font-size: 14px;
}

.link-23 {
  color: #e8843c;
  text-decoration: none;
}

.text-span-17 {
  font-size: 16px;
}

.text-span-18 {
  text-decoration: none;
}

.link-24, .link-25, .link-26, .link-27 {
  color: var(--orange);
  font-size: 16px;
  text-decoration: none;
}

.code-embed-4, .code-embed-5 {
  padding-top: 20px;
}

.section-15 {
  grid-column-gap: .75px;
  grid-row-gap: .75px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  margin-top: 60px;
  display: flex;
}

.paragraph-15-testimonio {
  color: var(--dark-2);
  text-align: left;
  padding-bottom: 20px;
  font-size: 18px;
}

.container-3 {
  align-self: center;
  width: 1300px;
  max-width: 952px;
  padding-left: 30px;
  padding-right: 30px;
}

.text-span-19 {
  color: var(--naranja-principal);
  font-style: italic;
  font-weight: 500;
}

.section-15-copy {
  grid-column-gap: .75px;
  grid-row-gap: .75px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  margin-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.container-3-copy {
  align-self: center;
  width: 1600px;
  max-width: 987px;
  padding-left: 30px;
  padding-right: 30px;
}

.imagen-equipamiento-copy {
  z-index: -1;
  vertical-align: baseline;
  max-width: 150%;
  margin-top: 15px;
  margin-left: 0;
  padding-left: 0;
  position: absolute;
}

.div-block-10 {
  text-align: center;
}

.div-block-10-copy {
  text-align: left;
}

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

.block-footer-copy, .block-footer-copy-2 {
  grid-row-gap: 1.8em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 22px;
  display: flex;
}

.submit-button-2-copy {
  background-color: #cc5a08;
  border-radius: 13px;
  padding: 4px 50px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
}

.container-5 {
  width: 1288px;
  max-width: 979px;
}

.container-6 {
  width: 1288px;
}

.banners-second-molino {
  grid-column-gap: .75em;
  justify-content: center;
  align-items: stretch;
  margin-top: 30px;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .section-2 {
    text-align: center;
    align-self: center;
  }
}

@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-link2.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 {
    padding-left: 0;
    padding-right: 0;
  }

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

  .grid-footer {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

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

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

  .banners {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    text-align: left;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-self: auto;
    padding-right: 0;
    display: block;
  }

  .image-thumbnail {
    height: 32vw;
  }

  .block-stay {
    padding: 2em;
  }

  .subsection {
    margin-top: 100px;
  }

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

  .image {
    max-width: 33%;
    left: 16%;
  }

  .image-2 {
    max-width: 80%;
    margin-top: 80px;
  }

  .div-block-2-molino {
    margin-top: 30px;
  }

  .text-span-4 {
    font-size: 55px;
  }

  .text-span-5 {
    font-size: 13px;
  }

  .image-10 {
    width: 583px;
    margin-left: -500px;
  }

  .section-full-molino-2 {
    display: flex;
  }

  .div-block-molino-3 {
    width: 745px;
    margin-top: 20px;
  }

  .titulo {
    font-size: 30px;
  }

  .imagen-equipamiento {
    max-width: 100%;
  }

  .equipamiento-seccion {
    margin-top: 0;
  }

  .div-block-2-saratoga {
    margin-top: 30px;
  }

  .hero-top-contacto {
    padding: 1.2em;
  }

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

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

  .desktop-button-contacto {
    display: none;
  }

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

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

  .desktop-button-final {
    display: none;
  }

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

  .imagen-equipamiento-copy {
    max-width: 100%;
  }

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

  .banners-second-molino {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    text-align: left;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-self: auto;
    padding-right: 0;
    display: block;
  }
}

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

  .div-block-molino-3 {
    width: 546px;
  }

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

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

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

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

  .section-hero {
    min-height: 118svh;
  }

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

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

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

  .icon-circle {
    margin-bottom: -203px;
  }

  .navbar {
    display: block;
  }

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

  .logo {
    margin-top: 0;
  }

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

  .content {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
  }

  .paragraph {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 17px;
  }

  .grid-footer {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .link-bottom-footer {
    font-size: .7em;
  }

  .block-footer {
    display: block;
  }

  .logo-footer {
    width: 206px;
    max-width: 120%;
    height: 150px;
    margin-bottom: 20px;
    padding-bottom: 0;
  }

  .review {
    padding: 4em 20%;
  }

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

  .subsection {
    margin-top: 0;
  }

  .grid-2-columns {
    grid-row-gap: 3em;
    margin-top: 0;
    display: block;
  }

  .image-map {
    margin-bottom: 80px;
  }

  .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 {
    max-width: 70%;
    margin-bottom: 70px;
    padding-bottom: 0;
    left: auto;
  }

  .image-2 {
    max-width: 111%;
    margin-top: 80px;
  }

  .paragraph-2 {
    font-size: 16px;
  }

  .paragraph-3 {
    font-size: 17px;
  }

  .div-block-molino, .div-block-2-molino {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-6 {
    font-size: 15px;
  }

  .paragraph-7 {
    margin-top: 40px;
    font-size: 17px;
  }

  .text-span-3 {
    font-size: 13px;
  }

  .image-7 {
    max-width: 100%;
    height: 80px;
    margin-bottom: 0;
  }

  .paragraph-8 {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
  }

  .image-8 {
    width: 543px;
    max-width: 100%;
    margin-top: 50px;
    font-size: 20px;
  }

  .section-3 {
    margin-left: 5px;
    margin-right: 5px;
  }

  .text-span-4 {
    font-size: 40px;
  }

  .image-10 {
    max-width: 100%;
    margin-left: 0;
    position: static;
    inset: 0% 0% auto auto;
  }

  .text-span-6 {
    font-size: 13px;
  }

  .text-span-7 {
    font-size: 33px;
  }

  .image-11 {
    margin-top: 0;
    padding-bottom: 0;
  }

  .image-12 {
    max-width: 55%;
  }

  .heading-3 {
    font-size: 15px;
  }

  .div-block-5 {
    padding: 20px;
  }

  .paragraph-10, .div-block-6 {
    text-align: center;
  }

  .div-block-7 {
    padding-top: 0;
  }

  .div-block-8 {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .paragraph-11 {
    font-size: 30px;
  }

  .div-block, .div-block-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .div-block-molino-3 {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .section-8 {
    margin-top: 0;
    margin-bottom: 0;
    display: none;
  }

  .titulo {
    text-align: center;
    padding-top: 0;
    font-size: 20px;
  }

  .div-block-9 {
    margin-top: 145px;
    padding-top: 30px;
  }

  .image-19 {
    text-align: center;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 10px;
  }

  .imagen-equipamiento {
    max-width: 100%;
    margin-bottom: 0;
  }

  .equipamiento-seccion {
    margin-top: 0;
    margin-left: 10px;
    margin-right: 10px;
  }

  .section-hero-saratoga {
    padding-bottom: 0;
  }

  .background-video-saratoga {
    max-width: 100%;
    height: 100%;
  }

  .mapa-saratoga {
    max-width: 100%;
    margin-top: 0;
  }

  .div-block-saratoga, .div-block-2-saratoga {
    padding-left: 0;
    padding-right: 0;
  }

  .image-21, .image-22 {
    max-width: 100%;
  }

  .nav-right-contacto, .paragraph-12-contacto, .paragraph-13, .paragraph-link {
    display: none;
  }

  .image-23 {
    max-width: 75%;
  }

  .section-9 {
    width: auto;
    margin-top: -80px;
  }

  .formulario_contacto {
    width: 290px;
  }

  .submit-button-2 {
    font-size: 11.5px;
  }

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

  .image-24 {
    width: 210px;
    max-width: 409%;
  }

  .image-25 {
    max-width: 409%;
  }

  .imagen-equipamiento-copy {
    max-width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
  }

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

  .code-embed-6 {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .image-26 {
    max-width: 100%;
    margin-top: 0;
    display: none;
  }

  .block-footer-copy, .block-footer-copy-2 {
    display: none;
  }

  .div-block-11 {
    padding-left: 0;
  }

  .div-block-12 {
    display: none;
  }

  .submit-button-2-copy {
    padding-left: 75px;
    padding-right: 75px;
    font-size: 11.5px;
  }

  .container-4 {
    justify-content: center;
    display: block;
  }

  .image-27 {
    margin-top: 130px;
  }

  .image-28 {
    max-width: 40%;
    margin-top: 120px;
  }
}

#w-node-da81788b-53f4-05a4-680d-70eae9a9d4dd-9cd159c8 {
  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-e38c32ef-ccab-58b6-3783-41d00f775f2e-3e028220, #w-node-e38c32ef-ccab-58b6-3783-41d00f775f34-3e028220, #w-node-e38c32ef-ccab-58b6-3783-41d00f775f36-3e028220, #w-node-_9c1957ba-8e1c-f6a7-d816-17741da40216-1da40214 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9c1957ba-8e1c-f6a7-d816-17741da4022e-1da40214 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_3aa68c6e-45c6-cffa-8062-d9e6ef5b53bb-17b06fc7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3aa68c6e-45c6-cffa-8062-d9e6ef5b53d8-17b06fc7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-_54145bf7-0c91-5c2f-40d3-2bd13e028229-3e028220, #w-node-e38c32ef-ccab-58b6-3783-41d00f775f34-3e028220 {
    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;
}