:root {
  --black: #121212;
  --7vw: 7vw;
  --cta: #a39bff;
  --hover: #5b4dff;
  --grey-1: #ebe6e0;
  --gold-lighter: #faf6f3;
  --white: white;
  --gold: #bd9a5f;
  --grey-2: #d6d2ce;
  --gold-light: #d2bfa7;
  --green: #3d441d;
  --hover-2: #0000001a;
  --orange: #ff6636;
  --red: #ac4f52;
  --purple: #a88799;
  --pink: #ffc5af;
  --blue: #36565b;
  --light-blue: #b0d0d5;
  --cyan: #a0c1b9;
  --green-light: #acb790;
}

.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-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

body {
  color: var(--black);
  letter-spacing: 1px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 80px;
  font-weight: 700;
  line-height: 90px;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

p {
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

a {
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: lower-alpha;
}

label {
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

strong {
  font-weight: bold;
}

.todelete {
  text-align: left;
  background-color: #ffe837;
  margin-bottom: 0;
  padding: 40px 15%;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  display: none;
}

.todelete strong {
  font-weight: 800;
}

.form_component {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer_component {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--black);
  flex-direction: column;
  align-items: center;
  padding: 60px 200px;
  display: flex;
}

.cookie_component {
  display: none;
}

.returnbtn {
  z-index: 1000;
  background-color: #fff;
  background-image: url('../images/left-arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  border: 2px solid #000;
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  inset: 10px auto auto 10px;
}

.button {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--cta);
  background-color: var(--cta);
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
  transition: color .35s cubic-bezier(.25, .46, .45, .94), border-color .35s cubic-bezier(.25, .46, .45, .94), background-color .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

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

.button.is-negative {
  color: var(--cta);
  background-color: #fff;
  border-color: #fff;
}

.button.is-negative:hover {
  border-color: var(--hover);
  background-color: var(--hover);
  color: #fff;
}

.button.is-secondary {
  color: var(--cta);
  background-color: #5b4cff00;
}

.button.is-secondary:hover {
  background-color: var(--hover);
  color: #fff;
}

.button.is-secondary.is-negative {
  color: #fff;
}

.button.is-text {
  border-style: none none solid;
  border-bottom-color: var(--black);
  color: var(--black);
  background-color: #0000;
  border-radius: 0;
  padding: 0;
}

.button.is-text:hover {
  color: var(--black);
  border-bottom-color: #0000;
}

.button.is-text.is-negative {
  color: #fff;
  border-bottom-color: #fff;
}

.button.is-text.is-negative:hover {
  border-bottom-color: var(--cta);
  color: var(--cta);
  background-color: #0000;
}

.button_component {
  cursor: pointer;
  text-decoration: none;
}

.button_icon {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.page_wrapper {
  z-index: 0;
  position: relative;
}

.container {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
}

.container.is-gdpr {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 50px 0;
}

.container.is-flex {
  flex-flow: row;
}

.container.is-flex.is-gig, .container.is-flex.is-passaggi {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1300px;
}

.container.is-full {
  z-index: 2;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 15em;
  position: relative;
  overflow: hidden;
}

.container.is-relative {
  z-index: 3;
  max-width: none;
  position: relative;
}

.container.contact {
  z-index: 2;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.section {
  z-index: 1;
  position: relative;
}

.section.is-technical {
  background-image: linear-gradient(#00000080, #00000080), url('../images/AC1439_Bergamo_Chorus-Life_VPExt_001_rev01-copia.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  align-items: center;
  height: 700px;
  min-height: 100vh;
  display: flex;
}

.section.padding {
  padding: 100px;
}

.section.padding.bg-color_grey1 {
  background-color: var(--grey-1);
}

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

.section.padding-top-bottom.bg-color_gold-lighter {
  background-color: var(--gold-lighter);
  overflow: hidden;
}

.section.is-fullimg {
  justify-content: center;
  align-items: stretch;
  height: 80vh;
  min-height: 600px;
  display: flex;
  overflow: hidden;
}

.header_component {
  z-index: 5;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  color: var(--white);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100vh;
  padding: 60px 150px;
  display: flex;
  position: relative;
}

.header_container {
  z-index: 3;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.header_hover {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(90deg, #000000b3 47%, #0000004d);
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: baseline;
  position: absolute;
  inset: 0%;
}

.scroll_component {
  border: 1px solid var(--white);
  background-image: url('../images/buttom-arrow---white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin-top: 60px;
  transition: border-color .35s, background-color .35s;
}

.scroll_component:hover {
  border-color: var(--gold);
  background-color: var(--gold);
}

.scroll_component.is-scroll-up {
  width: 40px;
  height: 40px;
  margin-top: 0;
  transform: rotate(180deg);
}

.scroll_lottie {
  width: 60px;
  height: 60px;
}

.nav_component {
  z-index: 2;
  background-color: var(--white);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  position: sticky;
  inset: 0% 0% auto;
  box-shadow: 0 2px 4px #0000001a;
}

.note_txt.cliente {
  margin-bottom: -10px;
}

.cookie-prefs_checkbox {
  z-index: 1;
  cursor: pointer;
  background-color: #cacaca;
  background-image: url('../images/check_dot.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  border-width: 2px;
  border-color: #cacaca;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.cookie-prefs_checkbox.w--redirected-checked {
  background-color: #4353ff;
  background-image: url('../images/check_dot.svg');
  background-position: 100%;
  background-size: contain;
  border-color: #4353ff;
}

.cookie-prefs_checkbox.w--redirected-focus {
  box-shadow: none;
}

.cookie-prefs_open-txt {
  opacity: .5;
  color: #000;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  height: 24px;
  display: flex;
  position: absolute;
  top: 0;
  right: 70px;
}

.cookie-prefs_trigger, .cookie-banner_trigger, .manager_trigger {
  display: none;
}

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

.link-logo {
  width: 200px;
  height: 51px;
}

.link-logo.hero {
  z-index: 3;
  position: relative;
}

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

.counter_wrap {
  border-right: 1px solid var(--grey-2);
  align-items: center;
  height: 32px;
  margin-right: 30px;
  padding-right: 30px;
  display: flex;
}

.counter_txt {
  text-align: right;
  width: 120px;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
}

.counter_txt.persone {
  border-style: solid none;
  border-width: 2px;
  border-color: var(--gold-light);
  color: var(--gold);
  text-align: left;
  width: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
}

.counter {
  color: var(--gold);
  text-align: center;
  flex: none;
  margin-left: 6px;
  margin-right: 6px;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
}

.button-primary {
  z-index: 1;
  background-color: var(--gold);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 40px;
  padding: 10px 35px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .35s;
  display: flex;
  position: relative;
}

.button-primary:hover {
  background-color: var(--black);
  color: #f3f1ed;
}

.btn-txt {
  margin-top: 0;
}

.h1-hero {
  letter-spacing: 0;
  max-width: 650px;
  margin-top: 0;
  font-family: Recoleta, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 55px;
}

.text-block {
  color: var(--gold);
  text-transform: uppercase;
  align-self: flex-start;
  max-width: 650px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}

.text-block.width-auto {
  max-width: none;
  margin-top: 10px;
  margin-bottom: 0;
}

.no-wrap {
  white-space: nowrap;
}

.button-secondary {
  z-index: 1;
  background-color: var(--gold);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 40px;
  padding: 10px 35px;
  font-weight: 500;
  text-decoration: none;
  transition: color .35s, background-color .35s;
  display: flex;
  position: relative;
}

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

.passaggi_txt_wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.box-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.box-title.max-width-220 {
  max-width: 220px;
}

.passaggi_img__wrap {
  width: 70%;
  height: 188.188px;
  margin-bottom: 0;
}

.passaggi__container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  border-radius: 16px;
  flex-flow: row;
  align-items: stretch;
  width: 100%;
  padding: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 24px #46484b0d;
}

.passaggi__container.margin {
  margin-left: 0%;
  margin-right: 0%;
}

.passaggi__container.margin.h-auto {
  justify-content: center;
  align-items: center;
  height: 100%;
}

.passaggi__container.h-100 {
  background-color: var(--gold-lighter);
  padding: 80px 40px;
}

.arrow {
  background-image: url('../images/buttom-arrow---gold.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 22px;
  padding-left: 25px;
  padding-right: 25px;
}

.passaggi-number {
  color: var(--gold);
  text-transform: uppercase;
  width: 55px;
  margin-top: 0;
  font-family: Recoleta, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
}

.passaggi__wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-self: center;
  width: 100%;
  max-width: 1100px;
  display: flex;
}

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

.fit-cover.is-absolute {
  position: absolute;
  inset: 0%;
}

.fit-cover.is-absolute.position_50-100 {
  object-position: 50% 100%;
}

.grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr .75fr 1fr;
  width: 60%;
  height: 65vh;
  min-height: 550px;
  max-height: 800px;
  margin-bottom: 0;
}

.image-wrapper {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.image-wrapper._02 {
  background-image: url('../images/AC1439_Bergamo_Chorus-Life_VPExt_001_dettaglio03_rev00-copia.webp');
}

.image-wrapper._01 {
  background-image: url('../images/AC1439_Bergamo_Chorus-Life_VPExt_003_dettaglio_rev00-copia.webp');
}

.image-wrapper._03 {
  background-image: url('../images/AC1439_ITA-Bergamo_Chorus-Life_VPInt_01_closeup01_rev01-copia.webp'), url('../images/AC1439_Bergamo_Chorus-Life_VPExt_001_rev01-copia.webp');
  background-position: 50%, 0%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.image-wrapper._04 {
  background-image: url('../images/AC1439_Bergamo_Chorus-Life_VPExt_001_dettaglio_rev01-copia.webp');
  background-position: 50% 100%;
}

.text-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 400px;
  display: flex;
}

.text-wrapper.is-centred {
  justify-content: center;
  align-self: center;
  align-items: center;
}

.text-wrapper.max-width {
  text-align: left;
  align-self: flex-start;
  max-width: 1000px;
  margin-left: 15em;
  padding-right: 50px;
  display: block;
}

.text-wrapper.max-width.magin-dx-0 {
  margin-left: 0;
  padding-right: 0;
}

.title {
  text-align: left;
  letter-spacing: 0;
  align-self: flex-start;
  margin-bottom: 20px;
  font-family: Recoleta, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
}

.title.is-centred {
  text-align: center;
}

.title.is-centred.size-60 {
  color: var(--black);
  align-self: center;
  font-size: 60px;
  font-weight: 500;
  line-height: 75px;
}

.title.font {
  font-family: Plus Jakarta Sans, sans-serif;
  font-weight: 600;
}

.button-wrap {
  align-self: flex-start;
  margin-top: 60px;
  display: flex;
}

.button-wrap.align-center {
  align-self: center;
}

.footer_container {
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.footer_container.line-bottom {
  border-bottom: 1px solid #ffffffb3;
  padding-bottom: 20px;
}

.footer_row {
  grid-column-gap: 15px;
  grid-row-gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer_row.line-bottom {
  border-top: 1px solid var(--white);
  flex-flow: row;
  justify-content: flex-start;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
}

.footer_row.gap-80 {
  grid-column-gap: 80px;
}

.footer_row.gap-80.line-bottom {
  border-top-style: none;
  justify-content: flex-start;
  align-items: flex-end;
  width: auto;
  padding-top: 0;
  padding-bottom: 10px;
}

.footer_link {
  color: var(--white);
  cursor: pointer;
  border-bottom: 1px solid #0000;
  padding-bottom: 2px;
  text-decoration: none;
  transition: border-color .35s;
}

.footer_link:hover {
  border-bottom-color: var(--white);
}

.footer_link.hide {
  display: none;
}

.footer_link.is-maps {
  font-size: 12px;
}

.ancor-top {
  display: none;
  position: absolute;
}

.flag-04_container {
  z-index: 2;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: fixed;
  top: 200px;
  right: 0;
}

.flag-04_icon {
  background-image: url('../images/arrow---bold.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 33px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: 4px;
  margin-right: 4px;
  padding-bottom: 3px;
  display: flex;
  overflow: hidden;
}

.flag-04_component {
  border-style: solid none solid solid;
  border-width: 1px;
  border-color: var(--white);
  background-color: var(--gold);
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  height: 60px;
  padding-left: 20px;
  padding-right: 0;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .35s;
  display: flex;
  overflow: hidden;
}

.flag-04_component:hover {
  background-color: var(--green);
}

.text-block-2 {
  text-align: right;
  line-height: 1.5;
}

.paragraph {
  text-align: center;
}

.footer-txt {
  color: var(--white);
  margin-bottom: 3px;
}

.footer-txt.is-small {
  font-size: 10px;
}

.flex-block.orizontal {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
}

.h1-hero-gold {
  color: var(--gold);
  letter-spacing: 0;
  max-width: 600px;
  margin-top: 0;
}

.text-block-copy {
  max-width: 650px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
}

.slider-hero_component {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hide {
  display: none;
}

.slider-hero {
  width: 100%;
  height: 100%;
}

.title-gold {
  color: var(--gold);
  text-align: left;
  letter-spacing: 0;
  align-self: flex-start;
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
}

.tipologici_wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 45px;
  display: grid;
}

.tipologici {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  background-color: var(--gold-lighter);
  background-image: linear-gradient(#faf6f3f2, #faf6f3f2), url('../images/Icon.svg');
  background-position: 0 0, 120% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 340px;
  border-radius: 16px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px;
  display: flex;
}

.tagli-title {
  letter-spacing: .15px;
  text-transform: uppercase;
  font-family: Recoleta, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
}

.text-block-24 {
  width: 444px;
  font-size: 72px;
  line-height: 86px;
}

.text-span-3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
}

.slider-11_container {
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  height: 100%;
  display: flex;
  overflow: visible;
}

.slider-11_slide {
  color: #fff;
  text-align: center;
  border-radius: 24px;
  flex: none;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  margin-right: 1em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider-11_text {
  z-index: 3;
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  height: 90px;
  font-family: Recoleta, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
  position: relative;
}

.slider-servizi_component {
  background-color: #0000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 70vh;
  max-height: 80vw;
  padding-bottom: 60px;
  display: flex;
  overflow: hidden;
}

.header_hover-3 {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #00000080;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: baseline;
  position: absolute;
  inset: 0%;
}

.div-block-100 {
  flex-flow: column;
  flex: none;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  height: 85%;
  display: flex;
  position: absolute;
  inset: 40px;
}

.txt-servizi {
  z-index: 3;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 26px;
  position: relative;
}

.arrow-slider {
  z-index: 3;
  border: 1px solid var(--gold);
  background-image: url('../images/buttom-arrow---gold.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  transition: all .35s;
  position: relative;
}

.arrow-slider:hover {
  background-color: var(--gold);
  background-image: url('../images/buttom-arrow---white---dx.svg'), url('../images/buttom-arrow---gold.svg');
  background-position: 50%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 20px, 20px;
}

.slider_arrow {
  border: 1px solid var(--gold);
  background-image: url('../images/buttom-arrow---gold.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  bottom: 0;
  right: 50px;
}

.slider_arrow.is-left {
  z-index: 0;
  background-image: url('../images/buttom-arrow---gold.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  margin-right: 60px;
  transition: all .35s;
  transform: rotate(180deg);
}

.slider_arrow.is-left:hover {
  background-color: var(--gold);
  background-image: url('../images/buttom-arrow---white---dx.svg'), url('../images/buttom-arrow---gold.svg');
  background-position: 50%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 20px, 20px;
}

.slider_arrow.is-right {
  z-index: 0;
  background-image: url('../images/buttom-arrow---gold.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  transition: all .35s;
}

.slider_arrow.is-right:hover {
  background-color: var(--gold);
  background-image: url('../images/buttom-arrow---white---dx.svg'), url('../images/buttom-arrow---gold.svg');
  background-position: 50%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 20px, 20px;
}

.slider_pagination {
  background-color: #12121233;
  border-radius: 2px;
  width: 252px;
  height: 4px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.display-none {
  display: none;
}

.arrow-disable {
  z-index: 1;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: auto 50px 0 auto;
}

.arrow-disable.right {
  z-index: 3;
  display: none;
}

.arrow-disable.left {
  z-index: 3;
  margin-right: 60px;
  display: none;
}

.icon-footer {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
}

.icon-footer.in {
  background-image: url('../images/Icona-social_Linkedin.svg');
}

.icon-footer.ig {
  background-image: url('../images/Icona-social_Instagram.svg');
}

.icon-footer.yt {
  background-image: url('../images/Icona-social_YouTube.svg');
}

.icon-footer.fb {
  background-image: url('../images/Icona-social_Facebook.svg');
}

.contact_column {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.form_par {
  text-align: left;
  max-width: 310px;
  margin-top: 10px;
}

.form_container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.form_wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

.stylesheet {
  grid-column-gap: 0px;
  grid-row-gap: 1.5rem;
  background-color: #00000029;
  border: 1px solid #00000029;
  border-radius: 0 .5rem .5rem;
  flex: 1;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  place-items: center;
  min-width: 30%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px 20px 40px;
  display: none;
  position: relative;
}

.policy-flag {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-direction: row;
  align-items: flex-start;
  padding-left: 5px;
  font-size: 12px;
  display: flex;
}

.form_label {
  margin-bottom: 0;
  font-weight: 600;
}

.button-2 {
  cursor: pointer;
  font-size: 14px;
}

.button-2.is-submit {
  background-color: var(--gold);
  text-transform: uppercase;
  border-radius: 20px;
  align-self: flex-start;
  padding: 10px 50px;
  font-size: 16px;
  transition: background-color .35s;
}

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

.button-2.is-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--black);
  align-items: center;
  transition: color .35s;
  display: flex;
}

.button-2.is-icon:hover {
  color: var(--green);
}

.policyflagscontainer {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
}

.form_link {
  color: var(--black);
  border-bottom: 1px solid #000;
  font-size: 12px;
  text-decoration: none;
  transition: border-color .35s;
}

.form_link:hover {
  border-bottom-color: #0000;
  text-decoration: none;
}

.form_field {
  color: var(--black);
  background-color: #0000;
  border: 1px #000;
  border-bottom-style: solid;
  border-radius: 0;
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.form_field:active, .form_field:focus {
  border-bottom-color: var(--black);
  color: var(--black);
}

.form_field:focus-visible, .form_field[data-wf-focus-visible] {
  color: var(--black);
}

.form_field::placeholder {
  color: #12121299;
}

.form_field.text-capitalize-everyword::placeholder, .form_field.text-capitalize-lowercase::placeholder {
  text-transform: none;
}

.form_field.is-message {
  min-height: 100px;
}

.form_field_wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form_message {
  opacity: 0;
  background-color: #0000;
  padding: 0;
}

.form_text {
  font-size: 12px;
}

.logo-footer {
  width: 118px;
  height: 70px;
}

.flex-block-3 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
}

.container-2 {
  flex-direction: column;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-2.is-technical {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: linear-gradient(#fffc, #fffc);
  justify-content: flex-start;
  align-items: center;
  padding: 40px;
}

.button-technical_wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.title-centred {
  text-align: center;
  letter-spacing: 0;
  align-self: center;
  margin-bottom: 20px;
  font-family: Recoleta, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 45px;
}

.gtm {
  display: none;
}

.box-par {
  font-size: 14px;
  line-height: 22px;
}

.box_sep {
  background-color: var(--gold);
  width: 1px;
}

.box_sep.trans {
  background-color: #0000;
}

.apt-info {
  grid-column-gap: 5px;
  grid-row-gap: 10px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.apt-info-mobile {
  grid-column-gap: 5px;
  grid-row-gap: 10px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.cover_img {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
}

.code-embed {
  height: 400px;
}

.note-text h1 {
  font-size: 30px;
  line-height: 30px;
}

.note-text h2 {
  text-transform: none;
  font-size: 18px;
  font-weight: 600;
}

.note-text p {
  font-size: 14px;
}

.note-text a {
  color: var(--gold);
}

.tecma_txt {
  color: #000000a1;
  text-align: right;
  width: 100%;
  font-size: 11px;
}

.tecma_txt.is-last {
  color: #0a2e38;
  margin-top: 20px;
  font-size: 12px;
}

.link {
  color: var(--gold);
  transition: color .35s;
}

.link:hover {
  color: #edab78;
}

@media screen and (max-width: 991px) {
  .footer_component {
    padding-right: var(--7vw);
    padding-left: var(--7vw);
  }

  .container.is-flex.is-gig {
    flex-flow: column-reverse;
  }

  .container.is-flex.is-passaggi {
    flex-flow: column;
  }

  .container.is-full {
    padding-left: var(--7vw);
  }

  .container.contact {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section.padding {
    padding: 60px var(--7vw);
  }

  .header_component {
    padding-right: var(--7vw);
    padding-left: var(--7vw);
  }

  .header_hover {
    background-color: #121212bf;
    background-image: none;
  }

  .nav_component {
    flex-direction: row;
    padding-top: 20px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .link-logo.hero {
    margin-bottom: 60px;
  }

  .button-primary {
    margin-bottom: 0;
  }

  .h1-hero {
    max-width: 500px;
    font-size: 40px;
    line-height: 50px;
  }

  .text-block {
    font-size: 16px;
  }

  .text-block.width-auto {
    line-height: 24px;
  }

  .button-secondary {
    margin-bottom: 0;
  }

  .passaggi_txt_wrap {
    margin-left: 10px;
  }

  .box-title {
    font-size: 16px;
    line-height: 22px;
  }

  .passaggi_img__wrap {
    width: 80%;
    height: 130px;
  }

  .passaggi__container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .passaggi__container.h-100 {
    height: 300px;
  }

  .arrow {
    height: 25px;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .passaggi__wrap {
    justify-content: flex-start;
    align-items: center;
    min-width: 650px;
  }

  .grid {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    max-height: 650px;
  }

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

  .text-wrapper.max-width {
    margin-left: 5em;
  }

  .text-wrapper.max-width.magin-dx-0 {
    max-width: none;
    margin-right: 100px;
  }

  .title {
    align-self: flex-start;
  }

  .title.is-centred.size-60 {
    font-size: 40px;
    line-height: 45px;
  }

  .footer_container {
    grid-row-gap: 15px;
  }

  .footer_row.gap-80.line-bottom {
    grid-row-gap: 40px;
    flex-flow: wrap;
  }

  .flag-04_container {
    margin-top: 0;
    top: 140px;
  }

  .flag-04_component {
    height: 50px;
  }

  .paragraph {
    text-align: center;
  }

  .text-block-copy {
    font-size: 16px;
  }

  .title-gold {
    align-self: flex-start;
  }

  .tipologici_wrap {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .slider-11_container {
    width: 80%;
  }

  .slider-servizi_component {
    min-height: 550px;
  }

  .slider_pagination {
    width: 294px;
  }

  .icon-footer, .icon-footer.ig {
    width: 20px;
    height: 20px;
  }

  .contact_column {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
  }

  .form_par {
    max-width: none;
  }

  .form_container {
    grid-column-gap: 40px;
  }

  .form_wrapper {
    margin-top: 0;
    margin-bottom: auto;
  }

  .form_field {
    border-radius: 0;
    line-height: 20px;
  }

  .title-centred {
    max-width: 450px;
  }

  .tecma_txt.is-last {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .footer_component {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container.is-flex.is-gig, .container.is-flex.is-passaggi {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .container.is-full {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding-left: 40px;
  }

  .section.padding, .section.padding-top-bottom.bg-color_gold-lighter {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.is-fullimg {
    min-height: 400px;
  }

  .header_component {
    padding-bottom: 60px;
  }

  .nav_component {
    padding-right: var(--7vw);
    padding-left: var(--7vw);
  }

  .counter_wrap {
    border-right-style: none;
    max-width: 210px;
    margin-right: 0;
    padding-right: 0;
  }

  .counter_txt {
    width: auto;
  }

  .h1-hero {
    font-size: 45px;
    line-height: 50px;
  }

  .text-block {
    line-height: 25px;
  }

  .text-block.width-auto {
    max-width: 450px;
  }

  .passaggi__container.h-100 {
    height: 200px;
  }

  .arrow {
    margin-left: 0;
    margin-right: 0;
    transform: rotate(90deg);
  }

  .passaggi-number {
    margin-bottom: 10px;
  }

  .passaggi__wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: center;
    min-width: auto;
    max-width: none;
  }

  .grid {
    height: 450px;
    min-height: auto;
    max-height: none;
  }

  .text-wrapper {
    min-width: auto;
  }

  .text-wrapper.max-width.magin-dx-0 {
    margin-right: 40px;
  }

  .title {
    font-size: 35px;
    line-height: 40px;
  }

  .title.is-centred.size-60 {
    font-size: 35px;
  }

  .button-wrap {
    margin-top: 20px;
  }

  .footer_container {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer_row {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer_row.line-bottom {
    border-top-style: none;
    padding-right: 0;
  }

  .footer_row.gap-80.line-bottom {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .flag-04_container {
    top: 100px;
  }

  .flag-04_icon {
    width: 50px;
  }

  .flag-04_component {
    top: 28px;
  }

  .mobile-hide {
    display: none;
  }

  .text-block-copy {
    max-width: 420px;
    line-height: 25px;
  }

  .title-gold {
    font-size: 35px;
  }

  .tipologici {
    padding: 20px 40px;
  }

  .text-block-24 {
    width: auto;
    font-size: 50px;
    line-height: 55px;
  }

  .slider-11_container {
    height: 95%;
  }

  .slider-11_text {
    height: 80px;
    font-size: 35px;
    line-height: 40px;
  }

  .txt-servizi {
    font-size: 18px;
    line-height: 24px;
  }

  .slider_arrow.is-left, .slider_arrow.is-right {
    bottom: 20px;
    right: 20px;
  }

  .contact_column {
    width: 100%;
  }

  .form_par {
    width: 100%;
    max-width: 100%;
  }

  .form_container {
    grid-column-gap: 10px;
  }

  .form_field {
    border-radius: 0;
    margin-bottom: 15px;
  }

  .flex-block-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: wrap;
  }

  .container-2.is-technical {
    padding-left: 20px;
    padding-right: 20px;
  }

  .title-centred {
    font-size: 35px;
    line-height: 40px;
  }

  .text-block-25 {
    text-align: center;
    max-width: 400px;
  }

  .tecma_txt {
    margin-top: 0;
  }

  .link {
    white-space: nowrap;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 16px;
    line-height: 22px;
  }

  .container.is-full {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .section.padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.is-fullimg {
    height: 250px;
    min-height: auto;
  }

  .header_component {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .scroll_component {
    width: 40px;
    height: 40px;
    margin-top: 40px;
  }

  .nav_component {
    padding: 12px 10px 10px;
  }

  .note_txt {
    font-size: .9em;
  }

  .cookie-prefs_open-txt {
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
    position: static;
  }

  .counter_wrap {
    height: auto;
  }

  .counter_txt {
    width: 140px;
    line-height: 17px;
  }

  .button-primary {
    min-width: auto;
    height: auto;
  }

  .h1-hero {
    font-size: 30px;
    line-height: 40px;
  }

  .text-block {
    max-width: 300px;
    font-size: 14px;
    line-height: 20px;
  }

  .text-block.width-auto {
    max-width: 300px;
  }

  .button-secondary {
    min-width: 170px;
    height: 36px;
    padding-left: 9px;
    padding-right: 9px;
    font-size: 10px;
  }

  .passaggi_img__wrap {
    height: 200px;
  }

  .passaggi__container {
    flex-flow: column;
    width: 275px;
    padding: 20px;
  }

  .grid {
    height: 350px;
  }

  .text-wrapper {
    width: 100%;
    min-width: auto;
  }

  .text-wrapper.max-width {
    width: auto;
    max-width: none;
    margin-left: 20px;
    margin-right: 20px;
    padding-right: 0;
  }

  .text-wrapper.max-width.magin-dx-0 {
    margin-right: 60px;
  }

  .title, .title.is-centred.size-60 {
    font-size: 30px;
    line-height: 35px;
  }

  .footer_row {
    flex-flow: column;
  }

  .footer_link {
    text-align: center;
  }

  .footer_link.is-maps {
    text-align: left;
  }

  .flag-04_component {
    width: 160px;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .text-block-copy {
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 22px;
  }

  .title-gold {
    font-size: 26px;
    line-height: 33px;
  }

  .tipologici {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-24 {
    font-size: 40px;
    line-height: 45px;
  }

  .slider-11_container {
    width: 90%;
  }

  .slider-11_slide {
    border-radius: 30px;
    max-height: 130vw;
  }

  .slider-11_text {
    font-size: 30px;
  }

  .div-block-100 {
    inset: 20px;
  }

  .txt-servizi {
    font-size: 16px;
  }

  .arrow-slider {
    width: 40px;
    height: 40px;
  }

  .slider_arrow.is-left {
    left: 0;
    right: auto;
  }

  .slider_arrow.is-right {
    left: 60px;
    right: auto;
  }

  .slider_pagination {
    width: 80%;
    max-width: 294px;
  }

  .contact_column {
    flex-direction: column;
    display: flex;
  }

  .form_par {
    font-size: 16px;
    line-height: 24px;
  }

  .form_field {
    border-radius: 0;
  }

  .title-centred {
    align-self: center;
    font-size: 28px;
    line-height: 33px;
  }

  .text-block-25 {
    font-size: 12px;
  }

  .box_sep, .box_sep.trans {
    width: 100%;
    height: 1px;
  }

  .apt-info {
    display: none;
  }

  .apt-info-mobile {
    grid-column-gap: 5px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr auto;
    grid-auto-columns: 1fr;
    place-items: start;
    width: 100%;
    display: grid;
  }

  .tecma_txt {
    margin-top: 60px;
  }
}

#w-node-_95370cfc-cb95-e3c8-0463-db50bc4be9fa-16970860 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_95370cfc-cb95-e3c8-0463-db50bc4be9fc-16970860 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_95370cfc-cb95-e3c8-0463-db50bc4be9fd-16970860 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3d9e17eb-bc30-058e-2ec1-385c725f35a0-16970860, #w-node-_93239c5c-c347-0c0d-4ca4-b6e2f141b2d2-16970860, #w-node-cd1e2f2d-a184-bd87-f717-8f3097be8a26-16970860, #w-node-_6fa4dd6a-297a-7f06-3af7-c4f3519d7074-16970860, #w-node-_24f9cfdb-1149-4605-9f9b-65171e7d9ab0-16970860, #w-node-d9b82f50-2ac6-080d-f1d3-162759cb42b6-16970860, #w-node-d9b82f50-2ac6-080d-f1d3-162759cb42b9-16970860, #w-node-d9b82f50-2ac6-080d-f1d3-162759cb42bc-16970860, #w-node-d9b82f50-2ac6-080d-f1d3-162759cb42bf-16970860, #w-node-d9b82f50-2ac6-080d-f1d3-162759cb42c2-16970860, #w-node-ecdd7881-0782-7a03-b67d-dadec4c9b797-16970860, #w-node-ecdd7881-0782-7a03-b67d-dadec4c9b79a-16970860, #w-node-ecdd7881-0782-7a03-b67d-dadec4c9b79d-16970860, #w-node-ecdd7881-0782-7a03-b67d-dadec4c9b7a0-16970860, #w-node-ecdd7881-0782-7a03-b67d-dadec4c9b7a3-16970860, #w-node-deba4932-b998-62f2-8366-a30b4ba69f34-16970860, #w-node-deba4932-b998-62f2-8366-a30b4ba69f39-16970860, #w-node-deba4932-b998-62f2-8366-a30b4ba69f3e-16970860, #w-node-deba4932-b998-62f2-8366-a30b4ba69f43-16970860, #w-node-deba4932-b998-62f2-8366-a30b4ba69f48-16970860 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc80-b786cc64, #w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc84-b786cc64, #policyFlagsContainer.w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc87-b786cc64 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc8a-b786cc64 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc8b-b786cc64 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc70-b786cc64, #w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc74-b786cc64, #w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc78-b786cc64, #w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc7c-b786cc64, #w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc80-b786cc64, #w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc84-b786cc64 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #policyFlagsContainer.w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc87-b786cc64 {
    grid-column: span 1 / span 1;
  }

  #w-node-_1e5bb1dd-2004-eb27-61ca-8112b786cc8a-b786cc64 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d9b82f50-2ac6-080d-f1d3-162759cb42b8-16970860, #w-node-d9b82f50-2ac6-080d-f1d3-162759cb42bb-16970860, #w-node-d9b82f50-2ac6-080d-f1d3-162759cb42be-16970860, #w-node-d9b82f50-2ac6-080d-f1d3-162759cb42c1-16970860, #w-node-deba4932-b998-62f2-8366-a30b4ba69f36-16970860, #w-node-deba4932-b998-62f2-8366-a30b4ba69f3b-16970860, #w-node-deba4932-b998-62f2-8366-a30b4ba69f40-16970860, #w-node-deba4932-b998-62f2-8366-a30b4ba69f45-16970860 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}