@font-face {
  font-family: Boska Variable;
  src: url('../fonts/boska-variable.ttf') format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Boska;
  src: url('../fonts/boska-variableitalic.ttf') format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@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: #132430;
  --accent-1: #43561e;
  --light-2: #ede9df;
  --accent-2: #4a7fce;
  --light-1-60: #f6f4ef99;
  --blackish: #0e090f;
  --light-1-30: #f6f4ef4d;
  --dark-2: #0e1a23;
  --white: white;
  --light-1-15: #f6f4ef26;
  --dark-1-12: #1324301f;
  --accent-1-30: #bc9e594d;
}

.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: Montserrat, 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: Boska, sans-serif;
  font-size: 4.75em;
  font-style: italic;
  font-weight: 700;
  line-height: 1.03em;
}

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

h3 {
  color: var(--dark-1);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Boska, 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: Boska, 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: Boska, 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: Boska, sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.22em;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.12em;
  font-weight: 400;
  line-height: 1.6em;
}

a {
  text-decoration: none;
}

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 {
  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 {
  color: var(--accent-2);
  border: 1px #000;
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
}

.link:hover {
  color: var(--dark-1);
  border-style: none;
  border-color: #000;
}

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

.section-hero.mobileonly {
  display: none;
}

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

.background-video {
  z-index: 10;
  background-image: url('../images/villa-olivetum-new-bg-1.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: .75em;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.background-video.hide {
  display: 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%;
}

.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: 7.8em;
  font-size: 5em;
  font-weight: 600;
  line-height: 1em;
}

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

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

.heading-hero.dark.left {
  align-self: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
}

.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: 27em;
  font-size: 1em;
  font-weight: 500;
  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: 22em;
}

.paragraph-hero.dark.wide {
  max-width: 35em;
}

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

.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.w--current {
  color: var(--light-1);
}

.nav-link.dark, .nav-link.dark.w--current {
  color: var(--blackish);
}

.nav-link.dark.hide, .nav-link.hide {
  display: none;
}

.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;
  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(--blackish);
  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.hide {
  display: flex;
}

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

.block.bottom-margin {
  margin-bottom: 8.75em;
}

.heading {
  max-width: 9.2em;
  margin-bottom: -.17em;
  font-family: Boska, sans-serif;
}

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

.wave-accent {
  background-image: url('../images/olive-wave.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;
}

.paragraph.wide {
  max-width: 28em;
}

.paragraph.wide.small {
  font-size: .7em;
}

.subtitle {
  color: var(--dark-1);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: -.5em;
  font-family: URW Gothic, sans-serif;
  font-size: .9em;
  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);
  background-color: var(--light-1);
  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.big {
  width: 2.3em;
  height: 2.3em;
}

.icon-service.small {
  width: 1.8em;
  height: 1.8em;
}

.heading-service {
  max-width: 9em;
  margin-bottom: -.2em;
  font-family: URW Gothic, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
}

.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(--light-2);
  border-top-left-radius: .75em;
  border-top-right-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: 6.4em;
  margin-bottom: 3.4em;
}

.bottom-footer {
  background-color: var(--white);
  color: var(--dark-1);
  text-align: center;
  border-bottom-right-radius: .75em;
  border-bottom-left-radius: .75em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.8em 1em;
  display: flex;
  overflow: hidden;
}

.bottom-footer.vertical {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  padding-bottom: 0;
}

.link-bottom-footer {
  opacity: 1;
  color: var(--dark-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: .6;
}

.link-bottom-footer.hide {
  display: none;
}

.space-footer {
  background-color: var(--dark-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(--blackish);
  margin-top: -.3em;
  font-style: italic;
  text-decoration: none;
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94);
}

.paragraph-footer:hover {
  opacity: .3;
}

.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(--blackish);
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: URW Gothic, sans-serif;
  font-size: .9em;
  font-weight: 700;
  line-height: 1.2em;
}

.border-icon-footer {
  border: 1px solid var(--blackish);
  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 {
  z-index: 1;
  background-color: var(--light-2);
  position: relative;
}

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

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

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

.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: 80vh;
  overflow: hidden;
}

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

.image-slide.mirror {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.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: 4em;
  height: 4em;
  display: flex;
}

.slider-reviews {
  background-color: #0000;
  border-radius: .75em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.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;
  display: none;
}

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

.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;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.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;
  font-family: Montserrat, sans-serif;
  font-size: 2.4em;
}

.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%;
  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;
  padding-left: 0;
  font-size: 1em;
  line-height: 1.6em;
  list-style-type: none;
}

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

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

.heading-stay.light {
  color: var(--light-1);
  max-width: 300px;
}

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

.heading-stay.sub {
  color: var(--light-1);
  text-transform: uppercase;
  margin-top: 1em;
  font-family: Montserrat, sans-serif;
  font-size: .8em;
  line-height: 1.2em;
}

.heading-stay.sub.green {
  color: var(--accent-1);
  margin-top: 1em;
}

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

.subsection.last {
  margin-bottom: 8.75em;
}

.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%;
  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: 12px;
  width: 26vw;
  height: 32vw;
  margin-left: 1.8em;
  margin-right: 1.8em;
  overflow: hidden;
}

.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: url('../images/section-about-pool.webp'), linear-gradient(to bottom, var(--dark-1), var(--dark-1));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  min-height: 42vw;
  padding-top: 10em;
  padding-bottom: 10em;
}

.section-top.dark {
  background-color: var(--accent-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(--accent-1);
  text-align: left;
  border-radius: .75em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 3.2em;
  display: flex;
}

.block-stay-page.white {
  background-color: var(--white);
}

.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: 25em;
  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-family: Montserrat, sans-serif;
  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: 9;
  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;
  font-family: Montserrat, sans-serif;
}

.submit-button {
  background-color: var(--accent-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(--blackish);
}

.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: #0000;
  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;
}

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

.button-green:hover {
  background-color: var(--blackish);
}

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

.button-green.cookie {
  border: 1px solid var(--blackish);
}

.button-green.large {
  padding: 1.6em 2.4em;
}

.body, .body-beige {
  background-color: var(--light-1);
}

.list-item-stay {
  color: var(--light-1);
  background-image: url('../images/list-icon-white.svg');
  background-position: 0 10px;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 1.6em;
  font-size: 1.1em;
}

.list-item-stay.green {
  color: var(--accent-1);
  background-image: url('../images/image_8_traced_.webp');
}

.slider-stay {
  background-color: #0000;
  border-radius: .75em;
  max-width: 60vw;
  height: 100%;
  overflow: hidden;
}

.stay-inner-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.wg-selector-2 {
  color: #000;
  cursor: pointer;
  padding: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
  position: relative;
  overflow: hidden;
}

.wg-selector-2:hover {
  color: #4049ff;
}

.wg-selector-2.w--current {
  cursor: default;
}

.wg-selector-2.s2:hover {
  color: var(--accent-1);
}

.wg-element-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.wg-selector2-text-lang2 {
  color: var(--accent-1);
  position: relative;
}

.wg-selector2-text-lang2.white {
  color: var(--light-1);
}

.wg-selector2-text-lang1 {
  color: #fff;
  position: relative;
}

.wg-selector2-text-lang1.white {
  color: var(--light-1);
}

.wg-selector-2-fill {
  background-color: var(--accent-1);
}

.wg-selector-2-fill.f2 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(-101%);
}

.wg-selector-2-fill.f1 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.hide {
  display: none;
}

.slide-text {
  color: var(--light-1);
  text-align: center;
  max-width: 500px;
  padding-top: 15px;
  padding-bottom: 15px;
}

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

.profila-image {
  border-radius: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 5px;
  display: flex;
  overflow: hidden;
}

.slider-review {
  background-color: var(--dark-1);
  border-radius: .75em;
  height: 100%;
  overflow: hidden;
}

.slide-review {
  padding-top: 4em;
  padding-bottom: 4em;
}

.review-logo {
  opacity: .8;
  max-width: 80px;
}

.slide-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon.right {
  margin-right: 30px;
}

.icon.left {
  margin-left: 30px;
}

.bottom-cookie-wrapper {
  z-index: 10000;
  background-color: var(--accent-1);
  opacity: 0;
  padding: 15px 28px;
  position: fixed;
  inset: auto 0% 0%;
}

.cookie-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 5px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cookie-content {
  align-items: center;
  display: flex;
}

.paragraph-cookie {
  color: #ffffff8c;
  letter-spacing: 2px;
  max-width: 1000px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 170%;
}

.button-light-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #172536;
  border: 2px solid #fff;
  border-radius: 80px;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);
}

.button-light-2:hover {
  color: #fff;
  background-color: #0f1a28;
}

.white-x {
  cursor: pointer;
  background-image: url('../images/vector-2-stroke.svg');
  background-position: 0 0;
  background-size: auto;
  width: 17px;
  height: 17px;
  margin-left: 20px;
}

.paragraph-cookie-2 {
  color: #ffffff8c;
  letter-spacing: 2px;
  max-width: 1000px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 170%;
}

.paragraph-tender {
  text-align: left;
  align-self: flex-start;
  font-weight: 500;
}

.paragraph-tender.title {
  text-transform: uppercase;
  align-self: flex-start;
  font-weight: 700;
}

.tender-link {
  color: var(--dark-1-80);
  align-self: flex-start;
}

.olive-left {
  align-self: flex-start;
}

.razpis-logo {
  align-self: flex-start;
  max-width: 400px;
}

.razpis-logo.center {
  align-self: center;
  max-width: 350px;
}

.footer-razpis {
  text-align: center;
  align-self: center;
  margin-top: .5em;
  margin-bottom: 3.2em;
  font-size: .9em;
}

.link-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

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

.rating-image {
  width: 350px;
  max-width: 100%;
}

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

.flex-hori-center.gap40 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.flex-hori-center.gap40.tabletonly {
  display: none;
}

.flex-vert-center {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  display: flex;
}

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

  .section-hero {
    min-height: 30vh;
    padding-bottom: 0;
  }

  .section-hero.mobileonly {
    z-index: 9;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 0;
    display: flex;
  }

  .background-video.bg2 {
    background-image: url('../images/dining-room-gallery-7.webp');
    background-position: 50%;
  }

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

  .hero-center.desktoponly {
    display: none;
  }

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

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

  .hero-bottom.desktoponly {
    display: none;
  }

  .hero-top {
    padding: 1.2em;
  }

  .navbar {
    z-index: 10000;
  }

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

  .nav-link, .nav-link.w--current, .nav-link.dark, .nav-link.dark.w--current, .text-button.dark {
    color: var(--blackish);
  }

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

  .section.halfpad {
    z-index: 1;
    margin-bottom: 0;
    padding-top: 3em;
    padding-bottom: 3em;
    position: relative;
  }

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

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

  .block-circle {
    opacity: .8;
    width: 3.5em;
    height: 3.5em;
  }

  .block-circle-light.filled {
    opacity: .7;
    width: 3.5em;
    height: 3.5em;
    display: none;
  }

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

  .slide-text {
    max-width: 400px;
  }

  .icon.right {
    margin-right: 20px;
  }

  .icon.left {
    margin-left: 20px;
  }

  .bottom-cookie-wrapper {
    height: auto;
  }

  .footer-razpis {
    margin-top: 1em;
  }

  .flex-hori-spacearound {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .flex-hori-center.gap40.tabletonly {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .desktoponly {
    display: none;
  }
}

@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 {
    max-width: 23em;
    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;
  }

  .block.bottom-margin {
    margin-bottom: 5.75em;
  }

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

  .bottom-footer {
    grid-row-gap: .5em;
    border-bottom-right-radius: .75em;
    border-bottom-left-radius: .75em;
    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: 5em 0%;
  }

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

  .heading-banner {
    font-size: 2em;
  }

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

  .image-thumbnail {
    height: 100vw;
  }

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

  .subsection {
    margin-top: 5.75em;
  }

  .subsection.last {
    margin-bottom: 5.75em;
  }

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

  .image-full {
    border-radius: .75em;
  }

  .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-column-gap: 3em;
    grid-row-gap: 3em;
  }

  .collection-item-page {
    grid-row-gap: .75em;
    flex-direction: column;
  }

  .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-radius: .75em;
    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;
  }

  .slider-stay {
    max-width: none;
    min-height: 40vh;
  }

  .html-embed {
    width: 100%;
  }

  .figure {
    min-height: 30vh;
  }

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

  .cookie-content {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .cookie-content.bottom-banner-content {
    align-items: center;
  }

  .paragraph-cookie, .paragraph-cookie-2 {
    text-align: center;
  }

  .footer-razpis {
    max-width: 80%;
  }
}

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

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

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

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

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

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

  .hero-top {
    padding-top: .4em;
  }

  .brand.w--current, .nav-link.dark.w--current {
    color: var(--blackish);
  }

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

  .section.halfpad {
    padding-top: 1.7em;
    padding-bottom: 1.7em;
  }

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

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

  .slider {
    min-height: 50vh;
  }

  .review {
    padding: 4em 5%;
  }

  .wrapper-banner {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
  }

  .block-text-banner {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-banner {
    text-align: center;
    max-width: none;
  }

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

  .wrapper-top {
    padding-left: .5em;
    padding-right: .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;
  }

  .button-green.large {
    padding: 1.2em 2em;
  }

  .slide-text {
    max-width: 200px;
  }

  .icon {
    opacity: .9;
    inset: auto 50% 20px;
  }

  .icon.right {
    margin-right: 5px;
  }

  .icon.left {
    margin-left: 5px;
  }

  .bottom-cookie-wrapper {
    flex-direction: column-reverse;
    padding-top: 25px;
  }

  .cookie-wrap {
    align-items: center;
  }

  .cookie-content.bottom-banner-content {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .paragraph-cookie {
    text-align: center;
    line-height: 150%;
  }

  .button-light-2 {
    border-width: 1px;
  }

  .paragraph-cookie-2 {
    text-align: center;
    line-height: 150%;
  }

  .razpis-logo.center {
    max-width: 100%;
  }

  .flex-hori-spacearound {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .flex-hori-center.gap40 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .olive-branch-image-vert {
    max-width: 28px;
  }

  .flex-vert-center {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }
}

#w-node-_9e1a1db6-c0c4-ae36-d0cb-2cdb6ef5b272-22a27594, #w-node-_2b9f9a5e-deb7-e17a-0f7b-b03f3a391da6-22a27594, #w-node-_01061d6b-eb13-8b36-4c57-9a7d54c1d3bc-22a27594, #w-node-_94e87928-9f29-91db-450c-843a6019758c-22a27594, #w-node-_3a8fdb1b-808a-a7aa-2a54-76cdc5c2a788-22a27594, #w-node-_99e22630-66d0-e9da-e4b6-b23bf302a66d-22a27594, #w-node-_9d9793ad-3c4c-2f27-e0ea-5b667bd79d98-22a27594, #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, #w-node-_9c1957ba-8e1c-f6a7-d816-17741da4022e-1da40214, #w-node-_7055beb5-4684-e756-5027-6ce817b06fc9-17b06fc7, #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-22a27597, #w-node-_03ccc11b-55f6-b755-22b6-d15d38b5839f-22a27597 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-efff5ed5-9902-9ef8-6a62-23337bc806e1-22a27597, #w-node-efff5ed5-9902-9ef8-6a62-23337bc806ea-22a27597, #w-node-efff5ed5-9902-9ef8-6a62-23337bc806f1-22a27597, #w-node-efff5ed5-9902-9ef8-6a62-23337bc806f8-22a27597, #w-node-efff5ed5-9902-9ef8-6a62-23337bc806ff-22a27597, #w-node-efff5ed5-9902-9ef8-6a62-23337bc80706-22a27597 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

#w-node-_9e1a1db6-c0c4-ae36-d0cb-2cdb6ef5b272-2866070b, #w-node-_2b9f9a5e-deb7-e17a-0f7b-b03f3a391da6-2866070b, #w-node-_01061d6b-eb13-8b36-4c57-9a7d54c1d3bc-2866070b, #w-node-_94e87928-9f29-91db-450c-843a6019758c-2866070b, #w-node-_3a8fdb1b-808a-a7aa-2a54-76cdc5c2a788-2866070b, #w-node-_2d87ebac-cf02-4698-f9a8-a23e6fbce92c-2866070b, #w-node-_9d9793ad-3c4c-2f27-e0ea-5b667bd79d98-2866070b, #w-node-f8d96325-43a8-f138-929e-4671ec4c9dc4-ec4c9dc1, #w-node-f8d96325-43a8-f138-929e-4671ec4c9dca-ec4c9dc1, #w-node-f8d96325-43a8-f138-929e-4671ec4c9dd0-ec4c9dc1, #w-node-a5eb1056-e7ad-4c0e-65f6-ac86b7eb5bda-b7eb5bd8, #w-node-a5eb1056-e7ad-4c0e-65f6-ac86b7eb5bf1-b7eb5bd8, #w-node-c6c2f8aa-e4e3-9455-fa8d-e76a5b8a970c-5b8a970a, #w-node-c6c2f8aa-e4e3-9455-fa8d-e76a5b8a9723-5b8a970a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e5be0fa9-ebc9-01e5-da82-381e05d62c4f-d3de1f14, #w-node-e61edb74-5152-8ff2-38c6-2b3550557016-d3de1f14, #w-node-dfa72421-748e-d7eb-1955-c271a0cc5e16-5ce4c9c3, #w-node-_03ccc11b-55f6-b755-22b6-d15d38b5839f-5ce4c9c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_3e330675-ccfb-0d92-0d14-043357847dc7-5ce4c9c3, #w-node-_3e330675-ccfb-0d92-0d14-043357847dce-5ce4c9c3, #w-node-_3e330675-ccfb-0d92-0d14-043357847dd5-5ce4c9c3, #w-node-_3e330675-ccfb-0d92-0d14-043357847ddc-5ce4c9c3, #w-node-_3e330675-ccfb-0d92-0d14-043357847de3-5ce4c9c3, #w-node-_3e330675-ccfb-0d92-0d14-043357847dea-5ce4c9c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_54145bf7-0c91-5c2f-40d3-2bd13e028229-3e028220 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_54145bf7-0c91-5c2f-40d3-2bd13e028229-3e028220, #w-node-e61edb74-5152-8ff2-38c6-2b3550557016-22a2759b, #w-node-e61edb74-5152-8ff2-38c6-2b3550557016-22a2759d, #w-node-f8d96325-43a8-f138-929e-4671ec4c9dca-ec4c9dc1, #w-node-e61edb74-5152-8ff2-38c6-2b3550557016-d3de1f14 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Boska Variable';
  src: url('../fonts/boska-variable.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Boska';
  src: url('../fonts/boska-variableitalic.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@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;
}