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

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

@font-face {
  font-family: Josefinsans;
  src: url('../fonts/josefinsans-extralight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --light-cream: #fafaf8;
  --light-grey: #5a5a5a;
  --titoli-e-highlight: "Cormorant Garamond", "Trebuchet MS", sans-serif;
  --primary-text: #0e5a68;
  --dark-grey: #3d3d3d;
  --crema-sfondo: #e2d7bb;
  --dark-cream: #e2ded5;
  --forest-green: #838a7b;
  --gold: #cda434;
  --body-text: Josefinsans, Verdana, sans-serif;
  --white: white;
  --black: black;
  --light-crema-sfondo: #fff3dd;
  --light-crema-sfondo-2: #fff4db;
}

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

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

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--light-cream);
  color: var(--light-grey);
  font-family: Josefinsans, Verdana, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  font-family: var(--titoli-e-highlight);
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 8vw;
  font-weight: 400;
  line-height: 110%;
}

h2 {
  font-family: var(--titoli-e-highlight);
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 6vw;
  font-weight: 400;
  line-height: 120%;
}

h3 {
  font-family: var(--titoli-e-highlight);
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 5vw;
  font-weight: 400;
  line-height: 110%;
}

h4 {
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Rufina, sans-serif;
  font-size: 4.5vw;
  font-weight: 400;
  line-height: 110%;
}

h5 {
  font-family: var(--titoli-e-highlight);
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 120%;
}

h6 {
  font-family: var(--titoli-e-highlight);
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 2vw;
  font-weight: 400;
  line-height: 120%;
}

p {
  color: var(--primary-text);
  margin-bottom: 16px;
  font-family: Josefinsans, Verdana, sans-serif;
  font-size: 1.7vw;
  font-weight: 200;
  line-height: 130%;
}

a {
  color: var(--dark-grey);
  font-family: Raleway, sans-serif;
  font-size: 1.7vw;
  font-style: italic;
  line-height: 120%;
  text-decoration: underline;
}

ul {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 32px;
}

li {
  padding-bottom: 8px;
  font-size: 1.4vw;
  line-height: 160%;
}

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

label {
  color: var(--light-grey);
  margin-bottom: 5px;
  font-family: Raleway, sans-serif;
  font-size: 1.4vw;
  font-weight: 400;
  line-height: 140%;
  display: block;
}

em {
  font-style: italic;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 1.1vw;
  line-height: 140%;
}

.section {
  padding-top: 144px;
  padding-bottom: 144px;
}

.section.top-padding-192 {
  background-color: var(--light-cream);
  padding-top: 192px;
}

.section.padding-192 {
  padding-top: 8em;
  padding-bottom: 192px;
}

.section.padding-192.new {
  padding-bottom: 1em;
}

.section.bottom-padding-192 {
  padding-bottom: 192px;
}

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

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

.section.bg-color-1 {
  background-color: var(--crema-sfondo);
}

.section.bg-color-1.overlap-section-top {
  background-color: var(--primary-text);
  margin-top: -240px;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  position: relative;
}

.container.room-slider-section {
  overflow: hidden;
}

.styleguide-section-wrapper {
  align-items: flex-start;
  display: flex;
}

.styleguide-title-wrapper {
  z-index: 2;
  width: 25%;
  padding-right: 32px;
  position: sticky;
  top: 64px;
}

.styleguide-content-wrapper {
  width: 75%;
  padding-left: 8px;
}

.style-guide-color-grid {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-columns: 1fr 1fr 1fr;
}

.styleguide-color {
  width: 200px;
  height: 200px;
  margin-bottom: 8px;
}

.styleguide-color.dark-cream {
  border: 1px solid var(--dark-cream);
  background-color: var(--dark-cream);
}

.styleguide-color.forest-green {
  border: 1px solid var(--forest-green);
  background-color: var(--forest-green);
}

.styleguide-color.light-grey {
  border: 1px solid var(--light-grey);
  background-color: var(--light-grey);
}

.styleguide-color.dark-grey {
  border: 1px solid var(--dark-grey);
  background-color: var(--dark-grey);
}

.styleguide-heading-wrapper {
  border-top: 1px solid var(--light-grey);
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.styleguide-heading-wrapper.last {
  border-bottom: 1px solid var(--light-grey);
}

.styleguide-heading-content {
  width: 85%;
}

.styleguide-heading-label {
  width: 15%;
  padding-right: 16px;
}

.display {
  font-size: 12vw;
}

.display.light.hero-home {
  font-family: Cormorant Garamond, Trebuchet MS, sans-serif;
  font-size: 9.8vw;
}

.feature-paragraph {
  font-family: var(--titoli-e-highlight);
  color: var(--gold);
  font-size: 1.8vw;
  font-weight: 400;
  line-height: 140%;
}

.feature-paragraph.medium-width {
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.feature-paragraph.arrive {
  font-size: 1.7vw;
  line-height: 120%;
}

.small-text {
  color: var(--light-grey);
  margin-bottom: 8px;
  font-family: Raleway, sans-serif;
  font-size: 1.1vw;
  line-height: 140%;
}

.small-text.right-arrow-text {
  transform-origin: 0 0;
  color: var(--light-cream);
  white-space: nowrap;
  width: 120px;
  position: absolute;
  inset: 138px auto auto 0%;
  transform: rotate(-90deg);
}

.small-text.left-arrow-text {
  transform-origin: 100% 100%;
  color: var(--light-cream);
  text-align: left;
  white-space: nowrap;
  width: 120px;
  position: absolute;
  inset: auto 0% 112px auto;
  transform: rotate(-90deg);
}

.styleguide-buttons-wrapper {
  border-top: 1px solid var(--light-grey);
  padding-top: 32px;
  padding-bottom: 16px;
}

.button {
  border: 1px solid var(--primary-text);
  background-color: var(--primary-text);
  color: var(--light-cream);
  text-align: left;
  cursor: pointer;
  background-image: url('../images/dark_btn_arrow.svg');
  background-position: 86% 42%;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 16px 96px 16px 32px;
  transition: background-position .3s;
}

.button:hover {
  background-position: 90% 42%;
}

.button.light {
  border-color: var(--light-cream);
  background-color: var(--light-cream);
  color: var(--dark-grey);
  background-image: url('../images/light_btn_arrow.svg');
}

.button.outline {
  color: var(--dark-grey);
  background-color: #0000;
  background-image: url('../images/light_btn_arrow.svg');
}

.button.secondary {
  color: var(--dark-grey);
  background-color: #0000;
  background-image: url('../images/light_btn_arrow.svg');
  border-style: none;
  padding-left: 0;
}

.styleguide-single-button {
  margin-top: 24px;
  margin-bottom: 24px;
  margin-right: 56px;
  display: inline-block;
}

.styleguide-single-button.light {
  background-color: var(--forest-green);
  padding: 24px;
}

.button-rounded {
  border: 1px solid var(--dark-grey);
  background-color: var(--dark-grey);
  background-image: url('../images/dark_btn_arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}

.button-rounded.light {
  border-color: var(--light-cream);
  background-color: var(--light-cream);
  background-image: url('../images/light_btn_arrow.svg');
}

.button-rounded.outline {
  background-color: #0000;
  background-image: url('../images/light_btn_arrow.svg');
}

.hero4 {
  padding-top: 30vh;
  padding-left: 5vw;
  position: relative;
}

.hero1 {
  min-height: 170vh;
  position: relative;
}

.hero1-content-wrapper {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5vh;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: sticky;
  top: 0;
}

.hero1-content {
  width: 100%;
  padding-left: 10vw;
  position: relative;
}

.light {
  color: #fff;
}

.light.right-align {
  font-family: Cormorant Garamond, Trebuchet MS, sans-serif;
}

.light.green {
  color: var(--primary-text);
  text-align: center;
  font-size: 4.5vw;
}

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

.subhero-section {
  background-color: var(--crema-sfondo);
  padding-top: 24px;
  padding-bottom: 24px;
}

.form-input {
  font-family: var(--titoli-e-highlight);
  color: var(--dark-grey);
  letter-spacing: 10%;
  background-color: #0000;
  border: 1px #0000;
  border-bottom: 2px dotted #5c5a5380;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.4vw;
  font-style: italic;
  line-height: 140%;
  transition: border-color .3s;
}

.form-input:focus {
  border-bottom-color: var(--light-grey);
  color: var(--dark-grey);
}

.form-input::placeholder {
  color: #3c3a3499;
}

.two-column-body-grid {
  grid-column-gap: 128px;
}

.two-column-body-grid._1-row {
  grid-template-rows: auto;
}

.two-column-body-wrapper {
  padding-bottom: 96px;
  padding-left: 10vw;
  padding-right: 10vw;
}

.heading-wrapper {
  padding-bottom: 96px;
}

.heading-wrapper.inner-spacing {
  padding-left: 5vw;
}

.heading-wrapper.centered {
  text-align: center;
  margin-top: -1.5em;
}

.overlap-image-wrapper {
  height: 70vh;
  overflow: hidden;
}

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

.div-block {
  padding-left: 10vh;
}

.divider._288px {
  height: 288px;
}

.divider._288px.mobile-none {
  display: block;
}

.divider._144px {
  height: 144px;
}

.divider._96px {
  height: 96px;
}

.home-room-slider-wrapper {
  overflow: hidden;
}

.grid-layout-content-wrapper.left-padding20 {
  padding-left: 20vw;
}

.card-image-wapper {
  align-items: flex-end;
  display: flex;
  overflow: hidden;
}

.card-content-wrapper {
  padding-top: 24px;
}

.card-image {
  overflow: hidden;
}

.split-section-wrapper {
  grid-template-rows: auto;
  display: flex;
}

.testimonial-wrapper {
  flex-direction: column;
  align-items: flex-end;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.testimonial-content {
  margin-bottom: 40px;
}

.testimonial-profile {
  align-items: center;
  display: flex;
}

.testimonial-profile:where(.w-variant-15a684d8-855d-1a6c-bcb0-e5a40ea7a9f1) {
  display: none;
}

.paragraph-width-medium {
  max-width: 60vw;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.full-frame-image-wrapper {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 3vw;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.full-frame-image-wrapper.homepage {
  background-image: url('../images/esterno-piscina-frontale.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
}

.full-frame-image-wrapper.gastronomy {
  background-image: url('../images/gastronomia-parallax.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.full-frame-image-wrapper.experiences {
  background-image: url('../images/beachsurfing.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.full-frame-image-wrapper.hotel {
  background-image: url('../images/ida-boutique-hotel-desk.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.full-frame-image-wrapper.contact {
  background-image: url('../images/contatti-hero.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.grid-list-item-wrapper {
  border-top: 1px solid var(--light-grey);
  padding-top: 32px;
  padding-bottom: 32px;
  font-style: normal;
  text-decoration: none;
  display: flex;
}

.cta-1-grid {
  grid-column-gap: 8px;
  grid-row-gap: 16px;
  grid-template: ". . . Area-2 Area-2 . . . . . Area-4 Area-4" minmax(auto, 1fr)
                 "Area Area . . . . Area-3 Area-3 Area-3 . Area-4 Area-4" minmax(auto, 1fr)
                 / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.cta-wrapper {
  position: relative;
}

.cta-area-1, .cta-area-2, .cta-area-3, .cta-area-4 {
  overflow: hidden;
}

.cta-1-link-block {
  justify-content: center;
  align-items: center;
  font-style: normal;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0%;
}

.cta-1-arrow {
  margin-left: 32px;
}

.footer-wrapper {
  border-top: 1px solid var(--light-grey);
  padding-top: 56px;
  padding-bottom: 16px;
}

.footer-top-row {
  padding-bottom: 96px;
  display: flex;
}

.footer-bottom-row {
  justify-content: space-between;
  display: flex;
}

.footer-menu {
  width: 25%;
}

.footer-contact {
  width: 30%;
}

.footer-logo {
  flex-direction: column;
  justify-content: space-between;
  width: 45%;
  padding-right: 10%;
  display: flex;
}

.footer-link {
  font-family: var(--titoli-e-highlight);
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 2.2rem;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.footer-link:hover {
  color: #838a7bb3;
}

.footer-contact-link {
  align-items: flex-start;
  margin-bottom: 8px;
  font-family: Cormorant Garamond, Trebuchet MS, sans-serif;
  font-size: 2.2vw;
  font-style: normal;
  line-height: 140%;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.footer-contact-link:hover {
  color: #838a7bb3;
}

.footer-contact-icon {
  margin-right: 16px;
  padding-top: 10px;
}

.footer-secondary-link {
  margin-right: 32px;
  font-size: 1.1vw;
  font-style: normal;
  line-height: 140%;
  text-decoration: none;
  transition: color .3s;
}

.footer-secondary-link:hover {
  color: #838a7bb3;
}

.footer-logo-link {
  margin-bottom: 24px;
}

.footer-social-link {
  width: 40px;
  margin-right: 32px;
}

.hero2 {
  background-color: var(--forest-green);
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.hero2-image-wrapper {
  width: 70%;
  height: 85%;
  position: absolute;
  inset: 10% 0% 0% auto;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  padding-bottom: 5vh;
  padding-left: 5vw;
  position: relative;
}

.hero2-content-wrapper {
  flex: 1;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5vh;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
}

.hero2-image-overlay {
  background-image: linear-gradient(87deg, #251e1673, #382c2000);
  position: absolute;
  inset: 0%;
}

.room-type-wrapper {
  padding-bottom: 196px;
  display: flex;
}

.room-type-wrapper:nth-child(2n) {
  flex-direction: row-reverse;
}

.room-type-image-wrapper {
  align-items: flex-end;
  width: 50%;
  display: flex;
  overflow: hidden;
}

.room-type-content-wrapper {
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  display: flex;
}

.room-amenity-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.room-amenity-icon {
  width: 40px;
  margin-right: 8px;
}

.collection-item {
  width: 100%;
  margin-bottom: 1em;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.room-amenity-section {
  border-top: 1px solid var(--light-grey);
  padding-top: 40px;
}

.right-padding {
  padding-right: 5vw;
}

.left-padding {
  padding-left: 5vw;
}

.room-type-btn-wrapper {
  justify-content: flex-start;
  margin-top: 4em;
  margin-bottom: 4em;
  display: flex;
}

.full-frame-slider-wrapper {
  overflow: hidden;
}

.full-frame-slider {
  background-color: #0000;
  height: 100vh;
  position: relative;
}

.left-arrow {
  align-items: center;
  width: 20vw;
  height: 90vh;
  padding-left: 1vw;
  display: flex;
}

.right-arrow {
  justify-content: flex-end;
  align-items: center;
  width: 20vw;
  height: 90vh;
  padding-right: 1vw;
  display: flex;
}

.full-frame-single-slide-wrapper {
  width: 100%;
  height: 100%;
}

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

.slide-nav {
  text-align: left;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

.slider-mask {
  padding-bottom: 50px;
}

.cta-2-link-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  font-style: normal;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0%;
}

.cta-2-link-block.mobile {
  display: none;
}

.cta-2-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "." minmax(auto, 1fr)
                 "." minmax(auto, 1fr)
                 / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.centered-paragraph {
  text-align: center;
  padding-top: 96px;
}

.hero3 {
  align-items: flex-end;
  width: 100%;
  min-height: 100vh;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
}

.footer-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

.banner {
  justify-content: center;
  align-items: center;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.subtitle {
  color: var(--light-grey);
  margin-bottom: 8px;
  font-family: Josefinsans, Verdana, sans-serif;
  font-size: 1.7vw;
  font-weight: 200;
  line-height: 140%;
}

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

.italics {
  font-style: italic;
}

.banner-collection-list {
  justify-content: space-around;
  display: flex;
}

.banner-collection-item {
  border-right: 1px solid var(--light-grey);
  text-align: center;
  flex: 1;
  padding-top: 16px;
  padding-bottom: 8px;
}

.banner-title {
  border-right: 1px solid var(--light-grey);
  padding-top: 16px;
  padding-bottom: 8px;
  padding-right: 56px;
}

.home-room-slider {
  background-color: #0000;
  width: 100%;
  height: auto;
}

.home-room-mask {
  width: 70vw;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.home-room-single-slide {
  padding-left: 5vw;
  padding-right: 5vw;
}

.room-slider-collection-item {
  height: 100%;
}

.room-slide-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  font-style: normal;
  text-decoration: none;
  display: flex;
}

.room-slide-image-wrapper {
  transform-origin: 50% 100%;
  flex-direction: column;
  justify-content: flex-end;
  height: 70vh;
  display: flex;
}

.room-slide-content-wrapper {
  padding-top: 32px;
  display: flex;
}

.hide {
  display: none;
}

.room-slide-title {
  width: 40%;
  padding-right: 16px;
}

.room-slide-description {
  width: 60%;
  padding-left: 16px;
}

.room-slide-image {
  transform-origin: 50% 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.room-slider-collection-list-wrapper, .room-slider-collection-list {
  height: 100%;
}

.room-slide-image-container {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-arrow {
  position: absolute;
  inset: auto 0% -64px auto;
}

.mobile-only {
  display: none;
}

.room-slider-right-arrow {
  z-index: 2;
  width: 10vw;
  padding-top: 10vh;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.room-slider-left-arrow {
  z-index: 2;
  width: 10vw;
  padding-top: 75vh;
}

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

.main-content {
  border-right: 1px solid var(--light-grey);
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 5vw;
}

.secondary-content {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 5vw;
}

.room-flex-thirds {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.room-item {
  width: 32%;
}

.image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 16px;
}

.grid-layout {
  flex-flow: wrap;
  grid-template-rows: auto;
  display: flex;
}

.grid-layout-section-content {
  width: 50%;
}

.grid-layout-section-content.space-between {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.grid-split-section {
  grid-row-gap: 144px;
  grid-template-rows: auto;
}

.grid-split-section._2row {
  grid-row-gap: 96px;
  grid-template-rows: auto auto;
}

.grid-split-section._3row {
  grid-row-gap: 144px;
  grid-template-rows: auto auto auto;
}

.image-container {
  align-items: flex-end;
  display: flex;
  overflow: hidden;
}

.content-container {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.medium-height {
  height: 70vh;
}

.small-height {
  height: 50vh;
}

.split-section {
  width: 50%;
}

.split-section.padding-top {
  padding-top: 48px;
}

.btn-wrapper {
  margin-top: 64px;
}

.large-height {
  height: 75vh;
}

.full-frame-video {
  height: 100%;
}

.extra-small-height {
  height: 35vh;
}

.right-padding10 {
  padding-right: 10vw;
}

.hero-paragraph {
  padding-left: 15vw;
  padding-right: 5vw;
}

.hero-image-overlay {
  background-color: #382c2066;
  position: absolute;
  inset: 0%;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-content-wrapper {
  flex: 1;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
}

.grid-layout-2 {
  flex-wrap: wrap;
  grid-template-rows: auto;
  display: flex;
}

.grid-layout-2-section-center {
  width: 100%;
  padding-left: 20vw;
  padding-right: 20vw;
}

.grid-layout-2-section-left {
  width: 40%;
}

.grid-layout-2-section-right {
  width: 60%;
}

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

.contact-input {
  text-align: left;
  margin-bottom: 40px;
}

.contact-info {
  margin-top: 40px;
}

.contact-link {
  align-items: flex-start;
  margin-bottom: 24px;
  font-family: Cormorant Garamond, Trebuchet MS, sans-serif;
  font-size: 2.2vw;
  font-style: normal;
  line-height: 140%;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.contact-link:hover {
  color: #838a7bb3;
}

.maps-wrapper {
  height: 75vh;
  overflow: hidden;
}

.map {
  height: 100%;
}

.tab-link {
  background-color: #0000;
  margin-right: 56px;
  padding-left: 0;
  padding-right: 0;
  font-family: Cormorant Garamond, Trebuchet MS, sans-serif;
  font-size: 2.2vw;
  font-style: normal;
  line-height: 140%;
}

.tab-link.w--current {
  border-bottom: 1px solid var(--light-grey);
  background-color: #0000;
}

.tab-pane {
  padding-top: 64px;
}

.hero1-arrow {
  position: absolute;
  inset: auto auto 0% 0%;
}

.nav-link {
  padding-top: 1vh;
  padding-bottom: 1vh;
  font-family: Cormorant Garamond, Trebuchet MS, sans-serif;
  font-size: 5vw;
  font-style: normal;
  text-decoration: none;
  display: inline-block;
}

.nav-link.w--current {
  color: var(--forest-green);
}

.navigation-bar {
  z-index: 99;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: .5rem 5vw;
  display: flex;
  position: relative;
}

.navigation-bar.dark {
  background-color: var(--light-cream);
}

.nav-logo {
  z-index: 99;
  align-self: center;
  padding-left: 0;
  position: relative;
}

.nav-buttons {
  z-index: 99;
  flex: 1;
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.book-button {
  margin-right: 32px;
  padding: 16px;
}

.menu-button {
  cursor: pointer;
  align-self: center;
  align-items: center;
  padding: 0 0 0 16px;
  font-size: 1.4vw;
  text-decoration: none;
  display: flex;
}

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

.nav-links-container {
  z-index: 98;
  background-color: var(--dark-cream);
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding-top: 60px;
  padding-left: 5vw;
  padding-right: 5vw;
  display: none;
  position: absolute;
  inset: 0%;
}

.nav-links-container.light {
  display: none;
}

.nav-primary-wrapper {
  flex: 1;
  align-items: center;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.nav-primary-links-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  padding-right: 5vw;
  display: flex;
}

.nav-image-wrapper {
  align-items: center;
  width: 50%;
  display: flex;
}

.nav-image-wrapper.medium-height {
  position: relative;
  overflow: hidden;
}

.main-nav-image {
  position: absolute;
  inset: auto 0% 0%;
}

.secondary-nav-image {
  align-self: center;
  position: absolute;
  inset: auto 0% 0%;
}

.secondary-nav-image._1, .secondary-nav-image._2, .secondary-nav-image._3, .secondary-nav-image._4, .secondary-nav-image._5 {
  display: none;
}

.lottie-btn {
  width: 40px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-top: 4px;
}

.no-margin {
  margin-bottom: 0;
}

.nav-container {
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  display: flex;
  position: relative;
}

.navigation-bar-dark {
  z-index: 99;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.btn-explore {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.arrow-img {
  width: 90px;
}

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

.slider-arrow-image {
  width: 90px;
  height: 90px;
}

.room-collection-list {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.rooms-collection-list-wrapper {
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
}

.collection-image-wrapper {
  height: 70vh;
  margin-bottom: 16px;
  overflow: hidden;
}

.booking-close-btn {
  align-items: center;
  height: 60px;
  margin-right: 80px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0% 5vw auto auto;
}

.room-slider-next {
  width: 10vw;
  height: 45.5vh;
  padding-top: 10vh;
  position: absolute;
  inset: 24.5vh 0% auto auto;
}

.room-slider-previous {
  width: 10vw;
  height: 45.5vh;
  padding-top: 10vh;
  position: absolute;
  inset: 24.5vh auto auto 0%;
}

.room-link-block {
  width: 100%;
  text-decoration: none;
}

.collection-content-wrapper {
  align-items: center;
  padding-top: 8px;
  padding-bottom: 0;
  display: flex;
}

.collection-arrow-img {
  margin-bottom: 8px;
  margin-left: 20px;
  margin-right: 20px;
}

.banner-collection-list-wrapper {
  flex: 1;
}

.lottie-mobile {
  width: 40px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-top: 4px;
  display: none;
}

.utility-page-wrap {
  background-color: var(--dark-cream);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 50%;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
}

.nav-link-light {
  color: var(--light-cream);
  font-size: 1.4vw;
}

._404-grid {
  grid-row-gap: 64px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1.25fr 1fr;
  max-width: 100%;
  min-height: 100vh;
  padding: 15vh 5vw 5vh;
  position: absolute;
  inset: 0%;
}

._404-grid-1 {
  overflow: hidden;
}

._404-grid-2 {
  padding-right: 10vw;
}

._404-grid-4 {
  overflow: hidden;
}

._404-grid-3 {
  padding-left: 10vw;
}

._404-grid-image {
  opacity: .6;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.navigation-dark {
  z-index: 998;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation-light {
  z-index: 1001;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-link-dark {
  font-size: 1.4vw;
}

.testimonial-section {
  padding-top: 144px;
  padding-bottom: 144px;
}

.testimonial-section:where(.w-variant-15a684d8-855d-1a6c-bcb0-e5a40ea7a9f1) {
  padding-top: 92px;
  padding-bottom: 112px;
}

.hero-bg-image {
  background-image: url('../images/ida-boutique-hotel-desk.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  position: absolute;
  inset: 0%;
}

.hero-bg-overlay {
  background-image: linear-gradient(359deg, #382c2000, #382c20b3);
  position: absolute;
  inset: 0%;
}

.card-image-wapper-fixed {
  overflow: hidden;
}

.card-image-wapper-fixed.large-height.var-1 {
  height: 75%;
}

.card-image-wapper-fixed.extra-large-height {
  height: 90vh;
}

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

.loader {
  z-index: 9999;
  background-color: var(--dark-cream);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.loader-logo-wrapper {
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.loader-line {
  background-color: var(--primary-text);
  transform-origin: 50% 100%;
  height: 1px;
  margin-top: 32px;
}

.full-frame-image-content {
  position: absolute;
  inset: auto 5vw 3vw;
}

.full-frame-video-wrapper {
  justify-content: flex-start;
  align-items: flex-end;
  height: 100vh;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-content-centered {
  text-align: center;
  padding-top: 30vh;
  padding-left: 5vw;
  padding-right: 5vw;
  position: relative;
}

.blog-post {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.blog-post img {
  margin-top: 56px;
  margin-bottom: 56px;
}

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

.blog-flex-thirds {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.blog-item {
  width: 32%;
}

.collection-link-block {
  cursor: pointer;
  width: 100%;
  text-decoration: none;
}

.blog-list-item {
  flex-wrap: wrap;
  margin-bottom: 144px;
  display: flex;
}

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

.blog-list-item:last-child {
  margin-bottom: 0;
}

.blog-image-container {
  align-items: flex-end;
  width: 50%;
  display: flex;
  overflow: hidden;
}

.blog-content-container {
  flex-direction: column;
  justify-content: center;
  width: 50%;
  display: flex;
}

.filter-section {
  background-color: var(--dark-cream);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.filter-link {
  margin-bottom: 8px;
  font-family: Cormorant Garamond, Trebuchet MS, sans-serif;
  font-size: 2.2vw;
  font-style: normal;
  line-height: 140%;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.filter-link:hover {
  color: #838a7bb3;
}

.filter-link.w--current {
  color: #3c3a34b3;
}

.filter-collection-item {
  text-align: center;
  padding: 16px 32px 8px;
}

.filter-collection-list {
  justify-content: flex-start;
  display: flex;
}

.filter-collection-list-wrapper {
  flex: 1;
}

.filter-wrapper {
  padding: 16px 32px 8px;
}

.filter-banner {
  justify-content: flex-start;
  align-items: center;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

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

.footer-contacts {
  font-family: var(--titoli-e-highlight);
  font-size: 1.8vw;
}

.heading-7 {
  font-size: 3vw;
}

.rooms_heading2 {
  font-size: 5vw;
}

.flex-block {
  flex-flow: column;
  align-self: flex-start;
}

.lista-amenities {
  grid-column-gap: 12svw;
  grid-row-gap: 12svw;
  justify-content: center;
  align-items: center;
}

.amenities_list {
  text-align: left;
}

.lista-amenities-wrap {
  grid-column-gap: 5svw;
  grid-row-gap: 5svw;
  justify-content: center;
  align-items: center;
  padding-top: 48px;
  display: block;
}

.container-cta {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

.menu_item {
  list-style-type: none;
}

.menu_list {
  padding-left: 0;
  list-style-type: none;
}

.menu_list.info {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.included-rooms {
  flex-flow: column;
}

.rooms-summary {
  color: var(--primary-text);
  font-size: 1.1rem;
  font-weight: 200;
  line-height: 130%;
}

.rooms-summary-title {
  color: var(--primary-text);
  margin-bottom: .5rem;
  font-family: Josefinsans, Verdana, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 130%;
}

.collection-list-wrapper-3 {
  flex-flow: column;
  display: flex;
}

.section-2 {
  display: none;
}

.heading-9 {
  font-family: Cormorant Garamond, Trebuchet MS, sans-serif;
}

.footer-bottom-data {
  justify-content: space-between;
  width: 33%;
  display: flex;
}

.dati_azienda {
  color: var(--light-grey);
  font-family: Josefinsans, Verdana, sans-serif;
  font-size: .9rem;
  font-weight: 200;
  line-height: 1.2rem;
}

.text-span-2 {
  font-weight: 700;
}

.default-text-page {
  margin-left: 5rem;
  margin-right: 5rem;
  padding-left: 8.25em;
  padding-right: 8.25em;
}

.text-page-wrap {
  background-color: var(--dark-cream);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100vw;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin-top: 5.3rem;
  padding-top: 5.6rem;
  padding-bottom: 5rem;
  display: flex;
  overflow: hidden;
}

.heading-10 {
  margin-left: 5rem;
  margin-right: 5rem;
  padding-left: 8.25rem;
  padding-right: 8.25rem;
}

.wpml_language_switcher_widget {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2rem;
  margin-right: 1rem;
  padding-left: .5rem;
  padding-right: .5rem;
  font-family: Raleway, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  display: flex;
}

.selettore_lingua {
  color: var(--white);
  font-family: Raleway, sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
  text-decoration: underline;
}

.selettore_lingua_dark {
  color: var(--dark-grey);
  font-family: Raleway, sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
  text-decoration: underline;
}

.lenguage_switch_mobile {
  color: var(--dark-grey);
  font-family: Raleway, sans-serif;
  font-weight: 400;
  display: none;
  position: relative;
  left: 95%;
}

.line {
  background-color: var(--dark-grey);
  width: 100%;
  height: 2px;
  display: none;
}

@media screen and (min-width: 1280px) {
  .form-input {
    font-size: 1.8vw;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 7vw;
  }

  p {
    font-size: 1.7vw;
    line-height: 130%;
  }

  a {
    font-size: 1.4vw;
  }

  li, label {
    font-size: 1.2vw;
  }

  .container {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .display {
    font-size: 10vw;
  }

  .display.light.hero-home {
    font-size: 8.6vw;
  }

  .feature-paragraph {
    font-size: 1.8vw;
  }

  .feature-paragraph.medium-width {
    max-width: 60vw;
  }

  .small-text {
    font-family: var(--body-text);
    font-weight: 200;
  }

  .button {
    background-color: var(--primary-text);
    font-family: var(--titoli-e-highlight);
    font-size: 1.4vw;
  }

  .hero1-content-wrapper {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .card-image {
    width: 100%;
  }

  .paragraph-width-medium {
    max-width: 50vw;
  }

  .full-frame-image-wrapper {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .footer-link {
    font-size: 1.5rem;
  }

  .footer-contact-link {
    font-size: 2vw;
  }

  .hero2 {
    flex-direction: column;
  }

  .hero2-content-wrapper {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .slide-nav {
    max-width: 1600px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .hero3 {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .room-flex-thirds {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .nav-logo {
    width: 250px;
  }

  .nav-logo.mobile-none {
    width: auto;
  }

  .menu-button {
    font-size: 1.2vw;
  }

  .nav-links-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .nav-links-container.dark, .nav-links-container.light {
    display: none;
  }

  .nav-primary-wrapper {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .logo-light {
    width: 250px;
  }

  .logo-light.mobile-none {
    width: auto;
  }

  .navigation-bar-dark, .rooms-collection-list-wrapper {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .nav-link-light, .nav-link-dark {
    font-size: 1.2vw;
  }

  .blog-collection-list-wrapper {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .blog-flex-thirds {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .filter-link {
    font-size: 2vw;
  }

  .heading-3 {
    font-family: var(--titoli-e-highlight);
    color: var(--primary-text);
    font-weight: 400;
  }

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

  .heading-5, .heading-6 {
    font-family: var(--titoli-e-highlight);
    color: var(--primary-text);
  }

  .container-cta {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .dati_azienda {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .selettore_lingua, .selettore_lingua_dark {
    font-family: Raleway, sans-serif;
    font-weight: 400;
    line-height: 120%;
  }
}

@media screen and (min-width: 1920px) {
  .display.light.hero-home {
    font-size: 8.6vw;
  }

  .footer-link {
    font-size: 2rem;
    line-height: 2.6rem;
  }

  .navigation-bar {
    padding-top: .5rem;
  }

  .card-image-wapper-fixed.large-height.var-1 {
    height: 100%;
  }

  .spacer {
    height: 1vh;
  }

  .dati_azienda {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .default-text-page {
    margin-left: 8rem;
    margin-right: 8rem;
    padding-left: 8.25em;
    padding-right: 8.25em;
  }

  .heading-10 {
    margin-left: 8rem;
    margin-right: 8rem;
  }
}

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

  h2 {
    font-size: 8vw;
  }

  h3 {
    font-size: 6.5vw;
  }

  h4 {
    font-size: 5vw;
  }

  h5 {
    font-size: 4vw;
  }

  h6 {
    font-size: 3vw;
  }

  p {
    font-size: 2vw;
  }

  a {
    font-size: 2.5vw;
  }

  li, label {
    font-size: 2vw;
  }

  figcaption {
    font-size: 1.6vw;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.top-padding-192 {
    padding-top: 96px;
  }

  .section.padding-192 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.bottom-padding-192 {
    padding-bottom: 64px;
  }

  .section.bg-color-1.overlap-section-top {
    margin-top: -128px;
    padding-top: 128px;
  }

  .style-guide-color-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .styleguide-color {
    width: 140px;
    height: 140px;
  }

  .feature-paragraph {
    font-size: 3vw;
  }

  .feature-paragraph.arrive {
    font-size: 2vw;
  }

  .small-text {
    font-size: 1.6vw;
  }

  .small-text.right-arrow-text {
    top: 316px;
  }

  .button {
    padding-left: 32px;
  }

  .button.secondary {
    border-style: solid;
    padding-left: 32px;
  }

  .hero4 {
    padding-top: 40vh;
    padding-left: 0;
  }

  .hero1 {
    min-height: 100vh;
  }

  .hero1-content-wrapper {
    position: relative;
  }

  .hero1-content {
    padding-bottom: 15vw;
    padding-left: 0;
  }

  .subhero-section {
    display: none;
  }

  .form-input {
    font-size: 2vw;
  }

  .two-column-body-grid {
    grid-column-gap: 64px;
  }

  .two-column-body-wrapper {
    padding-bottom: 48px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .heading-wrapper {
    padding-bottom: 48px;
  }

  .divider._288px {
    height: 144px;
  }

  .divider._144px {
    height: 96px;
  }

  .divider._96px {
    height: 48px;
  }

  .paragraph-width-medium {
    max-width: 75vw;
  }

  .full-frame-image-wrapper {
    height: 50vh;
  }

  .grid-list-item-wrapper {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .cta-1-grid {
    width: 100%;
  }

  .cta-wrapper {
    display: none;
  }

  .footer-top-row {
    flex-wrap: wrap;
    padding-bottom: 48px;
  }

  .footer-bottom-row {
    flex-wrap: wrap;
  }

  .footer-menu, .footer-contact {
    width: 50%;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-link {
    font-size: 1.5rem;
  }

  .footer-contact-link {
    margin-bottom: 16px;
    font-size: 3vw;
  }

  .footer-contact-icon {
    padding-top: 0;
  }

  .footer-bottom-links {
    width: 100%;
    margin-bottom: 16px;
  }

  .footer-secondary-link {
    font-size: 2vw;
  }

  .footer-social-links {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .footer-social-link {
    width: 40px;
  }

  .hero-content {
    padding-bottom: 15vh;
    padding-left: 0;
  }

  .room-type-wrapper {
    padding-bottom: 98px;
  }

  .room-type-image-wrapper.large-height.right-padding {
    height: auto;
  }

  .room-amenity-wrapper {
    text-align: center;
    flex-direction: column;
  }

  .room-amenity-icon {
    margin-right: 0;
  }

  .room-amenity-section {
    margin-top: 24px;
    padding-top: 16px;
  }

  .room-type-btn-wrapper {
    flex-direction: column;
    margin-top: 32px;
  }

  .full-frame-slider {
    height: 70vh;
  }

  .cta-2-link-block {
    display: flex;
    position: relative;
  }

  .cta-2-link-block.mobile {
    display: flex;
  }

  .cta-2-grid {
    width: 100%;
  }

  .centered-paragraph {
    padding-top: 64px;
  }

  .banner {
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .subtitle {
    font-size: 2.5vw;
  }

  .banner-collection-item {
    padding-left: 32px;
    padding-right: 32px;
  }

  .banner-title {
    align-items: center;
    padding-right: 32px;
    display: flex;
  }

  .room-slide-image-wrapper {
    height: 55vh;
  }

  .room-slide-content-wrapper {
    flex-wrap: wrap;
  }

  .room-slide-title {
    width: 100%;
    padding-right: 0;
  }

  .room-slide-description {
    width: 100%;
    padding-left: 0;
  }

  .hero-arrow {
    bottom: -32px;
  }

  .room-slider-left-arrow {
    padding-top: 60vh;
  }

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

  .main-content {
    border-bottom: 1px solid var(--light-grey);
    border-right-style: none;
  }

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

  .grid-split-section, .grid-split-section._3row {
    grid-row-gap: 96px;
  }

  .medium-height {
    height: 40vh;
  }

  .small-height {
    height: 35vh;
  }

  .btn-wrapper {
    margin-top: 32px;
  }

  .large-height {
    height: 55vh;
  }

  .extra-small-height {
    height: 20vh;
  }

  .hero-content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-layout-2-section-center {
    padding-left: 15vw;
    padding-right: 15vw;
  }

  .contact-link {
    font-size: 3vw;
  }

  .maps-wrapper {
    height: 50vh;
  }

  .tab-link {
    font-size: 3vw;
  }

  .nav-link {
    font-size: 6.5vw;
  }

  .menu-button {
    font-size: 2vw;
  }

  .nav-primary-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .btn-explore {
    width: 80px;
    height: 80px;
    inset: auto 16px 16px auto;
  }

  .arrow-img {
    display: none;
  }

  .room-collection-list {
    flex-flow: row;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .collection-image-wrapper {
    height: 50vh;
  }

  .room-slider-next, .room-slider-previous {
    height: 55vh;
    top: 0;
  }

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

  .no-padding-tablet {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link-light {
    font-size: 2vw;
  }

  ._404-grid-2 {
    padding-right: 5vw;
  }

  ._404-grid-3 {
    padding-left: 5vw;
  }

  .nav-link-dark {
    font-size: 2vw;
  }

  .testimonial-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .testimonial-section:where(.w-variant-15a684d8-855d-1a6c-bcb0-e5a40ea7a9f1) {
    padding-bottom: 20px;
  }

  .hero-bg-image {
    background-image: url('../images/ida-boutique-hotel.jpg');
  }

  .card-image-wapper-fixed.extra-large-height {
    height: 65vh;
  }

  .full-frame-video-wrapper {
    height: 50vh;
  }

  .hero-arrow-image {
    height: 80px;
  }

  .hero-content-centered {
    padding-top: 40vh;
    padding-left: 0;
  }

  .blog-post {
    max-width: 100%;
  }

  .blog-post img {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .filter-link {
    font-size: 3vw;
  }

  .filter-collection-item {
    padding-left: 32px;
    padding-right: 32px;
  }

  .filter-wrapper {
    align-items: center;
    padding-right: 32px;
    display: flex;
  }

  .filter-banner {
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-7:where(.w-variant-15a684d8-855d-1a6c-bcb0-e5a40ea7a9f1) {
    font-size: 4vw;
  }

  .rooms-summary, .rooms-summary-title {
    font-size: .8rem;
  }

  .footer-bottom-data {
    flex-wrap: wrap;
    width: 50%;
  }

  .default-text-page {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-10 {
    padding-left: 0;
    padding-right: 0;
  }

  .selettore_lingua, .selettore_lingua_dark {
    font-size: .8rem;
  }
}

@media screen and (max-width: 767px) {
  .section.top-padding-192 {
    padding-top: 64px;
  }

  .style-guide-color-grid {
    grid-column-gap: 8px;
    grid-row-gap: 32px;
  }

  .styleguide-color {
    width: auto;
    height: 120px;
  }

  .button {
    font-size: 3vw;
  }

  .hero1-content-wrapper {
    padding-top: 10vh;
  }

  .subhero-section {
    display: none;
  }

  .form-input {
    font-size: 2.5vw;
  }

  .two-column-body-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-wrapper {
    padding-bottom: 32px;
  }

  .overlap-image {
    margin-bottom: 52px;
  }

  .split-section-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .split-section-wrapper.reverse-wrap {
    flex-wrap: wrap-reverse;
  }

  .testimonial-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-width-medium {
    max-width: 100%;
  }

  .full-frame-image-wrapper {
    height: 100vh;
  }

  .footer-top-row {
    flex-wrap: wrap;
  }

  .footer-menu, .footer-contact {
    width: 50%;
  }

  .footer-logo {
    width: 100%;
  }

  .hero-content {
    padding-top: 10vh;
    padding-bottom: 5vh;
  }

  .full-frame-slider {
    height: 100vh;
  }

  .left-arrow, .right-arrow {
    display: none;
  }

  .room-slide-image-wrapper {
    height: 70vh;
  }

  .hero-arrow {
    inset: auto 0% 0% auto;
  }

  .room-item {
    margin-right: 16px;
  }

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

  .medium-height {
    height: 65vh;
  }

  .small-height {
    height: 50vh;
  }

  .large-height {
    height: 70vh;
  }

  .extra-small-height {
    height: 35vh;
  }

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

  .contact-info {
    width: 50%;
  }

  .maps-wrapper {
    height: 100vh;
  }

  .hero1-arrow {
    inset: auto 0% 0% auto;
  }

  .book-button {
    margin-right: 16px;
  }

  .nav-image-wrapper.medium-height {
    height: 70vh;
  }

  .main-nav-image, .secondary-nav-image._1 {
    inset: 0% 0% auto;
  }

  .room-collection-list {
    display: flex;
  }

  .booking-close-btn {
    z-index: 2;
    margin-right: 0;
  }

  .testimonial-section {
    padding-bottom: 32px;
  }

  .full-frame-video-wrapper {
    height: 100vh;
  }

  .blog-item {
    margin-right: 16px;
  }

  .footer-contacts {
    font-size: 3vw;
  }

  .footer-bottom-data {
    width: 100%;
  }

  .default-text-page, .heading-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
}

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

  h2 {
    font-size: 15vw;
    line-height: 100%;
  }

  h3 {
    margin-bottom: 8px;
    font-size: 12vw;
  }

  h4 {
    font-size: 9vw;
  }

  h5 {
    font-size: 7vw;
  }

  h6, p {
    font-size: 6vw;
  }

  a {
    font-size: 4.5vw;
  }

  ul {
    padding-left: 16px;
  }

  li {
    font-size: 4.5vw;
  }

  label {
    font-size: 5vw;
  }

  figcaption {
    font-size: 4vw;
  }

  .section.padding-192.new {
    padding-bottom: 0;
  }

  .section.bottom-padding-192 {
    padding-bottom: 64px;
  }

  .styleguide-section-wrapper {
    flex-wrap: wrap;
  }

  .styleguide-title-wrapper {
    background-color: var(--light-cream);
    width: 100%;
    margin-bottom: 32px;
    padding-top: 60px;
    padding-right: 0;
    top: 0;
  }

  .styleguide-content-wrapper {
    width: 100%;
    padding-left: 0;
  }

  .style-guide-color-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .styleguide-heading-content {
    width: 100%;
  }

  .styleguide-heading-label {
    display: none;
  }

  .display {
    font-size: 26vw;
  }

  .feature-paragraph {
    font-size: 6.5vw;
  }

  .feature-paragraph.arrive {
    font-size: 6vw;
  }

  .small-text {
    font-size: 4vw;
  }

  .small-text.right-arrow-text {
    top: 156px;
  }

  .button {
    width: 100%;
    font-size: 5vw;
    font-style: italic;
  }

  .button:hover {
    background-position: 86%;
  }

  .hero4 {
    padding-top: 35vh;
    padding-left: 0;
  }

  .hero1-content-wrapper {
    padding-top: 0;
  }

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

  .form-input {
    font-size: 5vw;
  }

  .two-column-body-grid {
    grid-template: "."
                   "."
                   "."
                   / 1fr;
  }

  .two-column-body-wrapper {
    padding-bottom: 64px;
  }

  .heading-wrapper {
    padding-bottom: 8px;
  }

  .heading-wrapper.inner-spacing {
    padding-left: 0;
  }

  .heading-wrapper.centered {
    text-align: left;
  }

  .overlap-image-wrapper {
    height: 65vh;
  }

  .overlap-image {
    margin-bottom: 26px;
  }

  .divider._288px {
    height: 64px;
    display: none;
  }

  .divider._144px, .divider._96px {
    height: 64px;
  }

  .grid-layout-content-wrapper {
    margin-bottom: 80px;
  }

  .grid-layout-content-wrapper.left-padding {
    order: 1;
  }

  .grid-layout-content-wrapper.last {
    margin-bottom: 0;
  }

  .testimonial-wrapper {
    align-items: flex-start;
  }

  .full-frame-image-wrapper {
    height: 65vh;
    margin-top: 32px;
  }

  .full-frame-image-wrapper.experiences {
    background-position: 100%;
  }

  .full-frame-image-wrapper.hotel {
    background-position: 30% 100%;
  }

  .full-frame-image-wrapper.contact {
    background-position: 50%;
  }

  .grid-list-item-wrapper {
    flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-1-grid {
    grid-column-gap: 16px;
    grid-row-gap: 8px;
    grid-template: "Area Area Area . . ." minmax(auto, .5fr)
                   "Area Area Area . Area-4 Area-4" minmax(auto, .5fr)
                   ". . . . Area-4 Area-4" minmax(auto, 1fr)
                   "Area-2 Area-2 Area-2 . . ."
                   "Area-2 Area-2 Area-2 Area-3 Area-3 Area-3"
                   ". . . Area-3 Area-3 Area-3"
                   / 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .cta-area-1 {
    padding-left: 0;
  }

  .cta-1-link-block {
    text-align: center;
    flex-direction: column;
  }

  .footer-wrapper {
    padding-top: 48px;
  }

  .footer-top-row {
    padding-bottom: 48px;
  }

  .footer-bottom-row {
    flex-direction: column;
  }

  .footer-menu, .footer-contact {
    width: 100%;
    margin-top: 48px;
  }

  .footer-logo {
    padding-right: 0%;
  }

  .footer-link {
    margin-bottom: .8rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .footer-link.w--current {
    margin-bottom: .5rem;
  }

  .footer-contact-link {
    margin-bottom: 16px;
    font-size: 6.5vw;
  }

  .footer-contact-icon {
    width: 24px;
    padding-top: 8px;
  }

  .footer-secondary-link {
    margin-bottom: .5rem;
    margin-right: 0;
    font-size: 4vw;
    display: block;
  }

  .footer-social-links {
    padding-top: 32px;
    padding-bottom: 0;
  }

  .hero2-image-wrapper {
    width: 80%;
    height: 100%;
    inset: auto 0% 0% auto;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 10vh;
  }

  .room-type-wrapper {
    flex-wrap: wrap;
    padding-bottom: 80px;
  }

  .room-type-image-wrapper {
    width: 100%;
  }

  .room-type-image-wrapper.large-height.right-padding {
    height: 55vh;
  }

  .room-type-content-wrapper {
    flex-direction: column-reverse;
    order: 1;
    align-content: flex-end;
    width: 100%;
  }

  .room-type-content-wrapper.right-padding {
    flex-flow: wrap;
  }

  .room-amenity-wrapper {
    padding-left: 4px;
    padding-right: 4px;
  }

  .room-amenity-section {
    border-bottom: 1px solid var(--light-grey);
    margin-bottom: 32px;
    padding-bottom: 16px;
  }

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

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

  .room-type-btn-wrapper {
    flex-wrap: wrap;
  }

  .full-frame-slider {
    height: 50vh;
  }

  .cta-2-link-block {
    text-align: center;
    flex-wrap: wrap;
    align-content: center;
  }

  .cta-2-grid {
    grid-row-gap: 8px;
    grid-template-rows: minmax(auto, .25fr) minmax(auto, .25fr) minmax(auto, .25fr) minmax(auto, .25fr) minmax(auto, .25fr) minmax(auto, .25fr) minmax(auto, .25fr);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .banner {
    flex-direction: column;
    align-items: stretch;
  }

  .subtitle {
    font-size: 5.5vw;
  }

  .banner-collection-item {
    border-right-style: none;
    width: 33%;
    padding-left: 0;
    padding-right: 0;
  }

  .banner-title {
    border-bottom: 1px solid var(--light-grey);
    text-align: center;
    border-right-style: none;
    justify-content: center;
  }

  .home-room-mask {
    width: 85vw;
    margin-left: 5vw;
  }

  .home-room-single-slide {
    padding-left: 0;
  }

  .room-slide-wrapper {
    justify-content: flex-start;
    overflow: hidden;
  }

  .room-slide-image-wrapper {
    height: 45vh;
  }

  .room-slide-content-wrapper {
    flex-wrap: wrap;
  }

  .room-slide-title, .room-slide-description {
    width: 100%;
  }

  .hero-arrow {
    bottom: -48px;
    right: -2vw;
  }

  .mobile-only {
    display: block;
  }

  .room-slider-left-arrow {
    display: none;
  }

  .main-content {
    padding-top: 0;
  }

  .room-flex-thirds {
    width: 270%;
  }

  .room-item {
    width: 90%;
  }

  .grid-layout {
    flex-wrap: wrap;
  }

  .grid-layout-section-content {
    width: 100%;
  }

  .grid-split-section {
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .grid-split-section._2row {
    grid-row-gap: 24px;
  }

  .grid-split-section._3row {
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto auto auto auto;
  }

  .content-container {
    margin-bottom: 56px;
  }

  .medium-height {
    height: 50vh;
  }

  .small-height {
    height: 40vh;
  }

  .split-section {
    width: 100%;
  }

  .large-height {
    height: 55vh;
  }

  .hero-paragraph, .grid-layout-2-section-center {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-layout-2-section-left {
    order: 1;
    width: 100%;
  }

  .grid-layout-2-section-right, .contact-info {
    width: 100%;
  }

  .contact-link {
    margin-bottom: 16px;
    font-size: 8vw;
  }

  .maps-wrapper {
    height: 80vh;
    margin-top: 32px;
  }

  .tab-link {
    white-space: nowrap;
    margin-right: 32px;
    font-size: 6.5vw;
  }

  .hero1-arrow {
    bottom: 5vh;
  }

  .nav-link {
    font-size: 13vw;
  }

  .book-button {
    margin-right: 0;
  }

  .menu-button {
    background-color: var(--dark-grey);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-left: 16px;
    padding-left: 0;
    display: flex;
  }

  .nav-links-container {
    position: fixed;
  }

  .nav-primary-links-wrapper {
    width: 100%;
  }

  .nav-image-wrapper.medium-height {
    display: none;
  }

  .lottie-btn {
    margin-left: 0;
    display: none;
  }

  .no-margin {
    padding-top: 1rem;
  }

  .no-margin.room-feature {
    font-size: 4.5vw;
  }

  .mobile-none {
    display: none;
  }

  .no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-grid-image-wrapper.first {
    padding-left: 5vw;
  }

  .rooms-collection-list-wrapper {
    padding-bottom: 24px;
    padding-left: 5vw;
    overflow: scroll;
  }

  .tabs-menu {
    padding-bottom: 16px;
    display: flex;
    overflow: scroll;
  }

  .room-slider-next {
    width: 8vw;
    height: 45vh;
    padding-top: 0;
  }

  .room-slider-previous {
    display: none;
  }

  .room-link-block {
    width: 100%;
  }

  .collection-content-wrapper {
    justify-content: center;
  }

  .lottie-mobile {
    width: 32px;
    margin-left: 0;
    display: block;
  }

  .utility-page-content {
    width: 100%;
  }

  .nav-link-light {
    font-size: 4.5vw;
  }

  ._404-grid {
    display: none;
  }

  .nav-link-dark {
    font-size: 4.5vw;
  }

  .full-frame-video-wrapper {
    height: 65vh;
    margin-top: 32px;
  }

  .hero-content-centered {
    padding-top: 35vh;
    padding-left: 0;
  }

  .blog-post img {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .blog-collection-list-wrapper {
    padding-bottom: 24px;
    padding-left: 5vw;
    overflow: scroll;
  }

  .blog-flex-thirds {
    width: 270%;
  }

  .blog-item {
    width: 90%;
  }

  .collection-link-block {
    width: 100%;
  }

  .blog-list-item {
    margin-bottom: 24px;
  }

  .blog-image-container {
    width: 100%;
  }

  .blog-content-container {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 56px;
  }

  .filter-section {
    padding-top: 8px;
    padding-bottom: 8px;
    display: block;
  }

  .filter-link {
    margin-bottom: 16px;
    font-size: 6.5vw;
  }

  .filter-collection-item {
    border-right-style: none;
    width: 33%;
    padding: 8px 16px 0;
  }

  .filter-wrapper {
    padding: 8px 16px 0;
  }

  .filter-banner {
    align-items: stretch;
    padding-left: 5vw;
    padding-right: 5vw;
    overflow: scroll;
  }

  .footer-contacts {
    font-size: 6vw;
  }

  .heading-7 {
    font-size: 5.5vw;
    line-height: 130%;
  }

  .heading-7:where(.w-variant-15a684d8-855d-1a6c-bcb0-e5a40ea7a9f1) {
    font-size: 6vw;
  }

  .lista-amenities {
    grid-column-gap: 0svw;
    grid-row-gap: 0svw;
    flex-flow: column;
    padding-left: 8vw;
  }

  .menu_list.info {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .included-rooms {
    flex-flow: wrap;
  }

  .rooms-summary {
    font-size: 1rem;
    line-height: 140%;
  }

  .footer-bottom-data {
    flex-direction: column;
  }

  .dati_azienda {
    font-size: .9rem;
  }

  .default-text-page, .heading-10 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .wpml_language_switcher_widget, .selettore_lingua, .selettore_lingua_dark {
    display: none;
  }

  .lenguage_switch_mobile {
    margin-top: .25rem;
    margin-bottom: 1rem;
    padding-top: 1vh;
    padding-bottom: 1vh;
    display: flex;
    left: 0%;
  }

  .line {
    height: 1px;
    display: flex;
  }
}

#w-node-_3e824ed7-12ab-072e-7ca8-32671c13ff24-a28a5396 {
  grid-area: Area;
}

#w-node-b45193f4-b25a-c406-7151-8c01831a36e5-a28a5396 {
  grid-area: Area-2;
}

#w-node-fb63b2f3-6ff6-11e1-1c83-17e8c863bfb7-a28a5396 {
  grid-area: Area-3;
}

#w-node-_9ce6b1f4-930a-5747-baa4-6080f7aec469-a28a5396 {
  grid-area: Area-4;
}

#w-node-_223db901-30ae-8711-866c-2717421d6be9-a28a539b {
  grid-column-end: 1.99537;
  grid-column-start: 1;
  grid-row-end: 1.99537;
  grid-row-start: 1;
}

#w-node-a9fb467c-00a9-c6a4-43ef-58fb3b464767-a28a539b {
  grid-area: 2 / 1 / 4 / 2;
}

#w-node-_033ccabb-28a9-346c-7f15-04f28c3896fc-a28a539b {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-adbd8067-ca87-9736-946f-2d3b63949519-a28a539b {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-fa076686-28b0-e54c-dc56-09600ee43816-a28a53a9 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a7204c47-76d9-b664-fced-a38af7cb1570-a28a53a9 {
  grid-area: 2 / 4 / 3 / 6;
}

#w-node-bdcc890f-8cc3-e57a-617d-4322725da9ae-a28a53a9 {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-_0b3ec6fa-d6d4-b9f9-c2a3-39480fea69b3-a28a53a9 {
  grid-area: 1 / 11 / 3 / 13;
}

#w-node-_0af0a280-8a8f-0537-2477-eb8e0212c345-e8979852 {
  grid-column-end: 1.99537;
  grid-column-start: 1;
  grid-row-end: 1.99537;
  grid-row-start: 1;
}

#w-node-_0af0a280-8a8f-0537-2477-eb8e0212c347-e8979852 {
  grid-area: 2 / 1 / 4 / 2;
}

#w-node-_0af0a280-8a8f-0537-2477-eb8e0212c349-e8979852 {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-_0af0a280-8a8f-0537-2477-eb8e0212c34b-e8979852 {
  grid-area: 3 / 3 / 4 / 4;
}

@media screen and (max-width: 479px) {
  #w-node-_422ef78a-5f57-0e02-3f6e-2aad2d13167f-a28a53a4, #w-node-c30c76bc-a3a5-9b87-8909-ab48b26c483d-a28a53a8 {
    grid-column-end: 1.99537;
    grid-row: 4 / 5;
    grid-column-start: 1;
  }

  #offer2.w-node-_0c5d86fd-7772-3e67-d1c0-e43075770958-a28a53a8 {
    grid-column-end: 1.99537;
    grid-column-start: 1;
    grid-row-end: 4.98148;
    grid-row-start: 3.98611;
  }

  #w-node-fa076686-28b0-e54c-dc56-09600ee43816-a28a53a9 {
    grid-column: 1 / 5;
    grid-row-end: 3;
  }

  #w-node-a7204c47-76d9-b664-fced-a38af7cb1570-a28a53a9 {
    grid-column: 5 / 7;
    grid-row-end: 4;
  }

  #w-node-bdcc890f-8cc3-e57a-617d-4322725da9ae-a28a53a9 {
    grid-area: 5 / 1 / 7 / 4;
  }

  #w-node-_0b3ec6fa-d6d4-b9f9-c2a3-39480fea69b3-a28a53a9 {
    grid-area: 6 / 4 / 8 / 7;
  }

  #w-node-_953dc96d-2c5c-e8a8-2727-12f20f350290-a28a53aa {
    grid-column-end: 1.99537;
    grid-row: 4 / 5;
    grid-column-start: 1;
  }
}


@font-face {
  font-family: 'Rufina';
  src: url('../fonts/rufina-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rufina';
  src: url('../fonts/rufina-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefinsans';
  src: url('../fonts/josefinsans-extralight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefinsans';
  src: url('../fonts/josefinsans-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorantgaramond-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}