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

:root {
  --spring-wood: #fcf7ed;
  --black: #000;
  --soft-amber: #e0d5c1;
  --white: white;
  --rock: #523c31;
  --midnight: #1a3047;
  --regent-gray: #7e9aaf;
  --coffee-bean: #281d12;
}

body {
  background-color: var(--spring-wood);
  color: var(--black);
  font-family: work-sans, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

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

.page_wrapper {
  flex-flow: column;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100svh;
  min-height: 700px;
  max-height: 100svh;
}

.page_wrapper.is-full-size {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 800px;
  max-height: 100svh;
  display: flex;
}

.page_wrapper.is-legal {
  height: auto;
  min-height: 100vh;
  max-height: none;
  display: flex;
}

.header_componet {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.header_componet.is-404 {
  min-height: 100%;
  max-height: 100%;
  position: relative;
}

.footer_component {
  z-index: 2;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #1a304733;
  width: 100%;
  height: 70px;
  position: absolute;
  inset: auto 0% 0%;
}

.footer_component.is-legal {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: #1a304733;
  background-image: url('../images/Crescendo_dark-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
}

.header_container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: relative;
}

.header_container.is-absolute, .header_container.is-404 {
  position: absolute;
  inset: 0%;
}

.footer_container {
  grid-column-gap: 2vw;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: relative;
}

.footer_link {
  color: var(--soft-amber);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
  transition: color .3s;
}

.footer_link:hover {
  color: var(--spring-wood);
}

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

.footer_link.isl-small {
  font-size: 10px;
}

.footer-column {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-column.developer {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
}

.footer-column.is-legal {
  position: absolute;
  inset: auto auto auto 2vw;
}

.footer-column.is-contact {
  width: 331.125px;
  margin-right: auto;
}

.footer-column.is-absolute {
  position: absolute;
  inset: auto 2vw auto auto;
}

.social-link {
  color: var(--soft-amber);
  cursor: pointer;
  transition: color .3s;
  display: none;
}

.social-link:hover {
  color: var(--spring-wood);
}

.social-link.absolute {
  position: absolute;
  left: auto;
  right: 2vw;
}

.social-link.mobile {
  display: none;
  position: absolute;
  left: auto;
  right: 2vw;
}

.icon-ig {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.footer-logo {
  cursor: pointer;
  width: 160px;
  height: 30px;
  transition: all .3s;
}

.footer-logo:hover {
  filter: brightness(120%);
}

.footer-logo.mygg {
  width: 80px;
  height: 25px;
}

.footer-logo.lake-como {
  width: 170px;
  height: 40px;
}

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

.gold-line {
  background-image: linear-gradient(90deg, var(--rock), var(--soft-amber) 30%, var(--soft-amber) 60%, var(--rock));
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% 0% auto;
}

.header-background {
  z-index: 1;
  background-color: var(--midnight);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header-video {
  width: 100%;
  height: 100%;
}

.header_wrapper {
  z-index: 2;
  grid-column-gap: 8vh;
  grid-row-gap: 8vh;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  bottom: 40px;
}

.header_wrapper.is-404 {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  bottom: 0;
}

.header-logo {
  width: 230px;
  height: 180px;
}

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

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

.header-video-overlay {
  background-image: linear-gradient(#00000073, #00000073);
  position: absolute;
  inset: 0%;
}

.main-txt_wrap {
  color: var(--soft-amber);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.main-txt {
  letter-spacing: 7px;
  text-transform: uppercase;
  font-family: mencken-std, sans-serif;
  font-size: 25px;
  line-height: 1.2;
}

.span-calligraph {
  letter-spacing: 0;
  text-transform: none;
  font-family: Malverya, Times New Roman, sans-serif;
  font-size: 40px;
  position: relative;
  bottom: 3px;
}

.language_wrap {
  z-index: 10;
  display: flex;
  position: absolute;
  inset: 2vw auto auto 2vw;
}

.language_link {
  border: 1px solid var(--soft-amber);
  width: 35px;
  height: 35px;
  color: var(--soft-amber);
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.language_link:hover {
  background-color: var(--soft-amber);
  color: var(--midnight);
}

.contact_wrap {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 2vw 2vw auto auto;
}

.contact_link {
  color: var(--soft-amber);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: color .3s;
}

.contact_link:hover {
  color: var(--spring-wood);
}

.div-block {
  margin-bottom: 5px;
}

.nav_legal {
  z-index: 10;
  background-color: var(--midnight);
  width: 100%;
  height: 80px;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-legal_contain {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
}

.nav-legal_logo {
  justify-content: flex-start;
  align-items: center;
  width: 60px;
  height: 60px;
}

.link-back {
  color: var(--soft-amber);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: color .3s;
}

.link-back:hover {
  color: var(--spring-wood);
}

.link-back.in-page {
  margin-top: 10px;
  text-decoration: underline;
}

.section-legal {
  width: 100%;
  max-width: 1220px;
  height: 100%;
  margin: 140px auto 40px;
}

.legal-txt_block h1 {
  color: var(--midnight);
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: mencken-std, sans-serif;
  font-size: 25px;
  line-height: 1.4;
}

.legal-txt_block h2 {
  color: var(--regent-gray);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.legal-txt_block p {
  color: var(--midnight);
  font-size: 13px;
  line-height: 1.8;
}

.legal-txt_block a {
  color: var(--regent-gray);
}

.legal-txt_block ul {
  color: var(--midnight);
  font-size: 13px;
  line-height: 1.8;
}

.legal-txt_block li {
  margin-bottom: 5px;
}

.cookiebot-embed {
  width: 100%;
  color: var(--midnight);
  font-size: 13px;
  line-height: 1.8;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.div-block-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.text-block {
  color: var(--soft-amber);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.8;
}

.div-block-3 {
  background-image: url('../images/Crescendo_DigitalBrochure_rev10-1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

@media screen and (max-width: 991px) {
  .page_wrapper.is-full-size {
    max-height: none;
  }

  .footer_component {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #1a304700;
    background-image: url('../images/Crescendo_dark-bg.webp');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    position: static;
  }

  .header_container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer_container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    flex-flow: column;
    padding: 30px;
  }

  .footer-column {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: center;
    align-items: center;
  }

  .footer-column.developer {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    order: -9999;
    justify-content: center;
    align-items: center;
  }

  .footer-column.is-legal {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-left: 0;
    position: static;
  }

  .footer-column.is-contact {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    position: static;
  }

  .footer-column.is-absolute {
    order: 9999;
    position: static;
  }

  .social-link.absolute {
    display: none;
    position: static;
  }

  .social-link.mobile {
    display: flex;
    position: static;
  }

  .footer-logo {
    width: 180px;
    min-width: auto;
    height: 30px;
    min-height: auto;
  }

  .footer-logo.mygg {
    width: 80px;
    min-width: auto;
    height: 20px;
    min-height: auto;
  }

  .header_wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .header-logo {
    width: 250px;
    min-width: auto;
    height: 200px;
    min-height: auto;
  }

  .main-txt {
    font-size: 25px;
  }

  .span-calligraph {
    font-size: 40px;
    bottom: 5px;
  }

  .language_wrap {
    inset: 30px 30px auto auto;
  }

  .contact_wrap {
    justify-content: center;
    align-items: center;
    inset: auto 0% 4vh;
  }

  .div-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-bottom: 0;
    display: flex;
  }

  .nav-legal_contain, .section-legal {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .page_wrapper {
    justify-content: flex-end;
    align-items: center;
    max-height: none;
    display: flex;
  }

  .page_wrapper.is-legal {
    justify-content: flex-start;
    align-items: stretch;
  }

  .social-link.absolute, .social-link.mobile {
    position: static;
  }

  .header_wrapper {
    bottom: 0;
  }

  .header-logo {
    width: 200px;
    height: 150px;
  }

  .main-txt {
    font-size: 20px;
  }

  .span-calligraph {
    font-size: 35px;
  }

  .language_wrap {
    inset: 30px auto auto 30px;
  }

  .contact_wrap {
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    inset: 30px 30px auto auto;
  }
}

@media screen and (max-width: 479px) {
  .page_wrapper.is-404 {
    height: auto;
    min-height: auto;
  }

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

  .footer_container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .footer-column {
    flex-flow: column;
    margin-top: 10px;
  }

  .footer-column.developer {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    order: 0;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    display: grid;
  }

  .footer-column.is-legal {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: row;
    margin-top: 0;
  }

  .footer-column.is-contact {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: row;
  }

  .footer-column.is-absolute {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: row;
    margin-top: 0;
  }

  .social-link.absolute, .social-link.mobile {
    margin-top: 5px;
  }

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

  .footer-logo.lake-como {
    width: 180px;
    height: 45px;
  }

  .header_wrapper {
    bottom: 30px;
  }

  .header_wrapper.is-404 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .main-txt {
    font-size: 18px;
  }

  .span-calligraph {
    font-size: 32px;
    bottom: 2px;
  }

  .language_wrap {
    inset: 20px 20px auto auto;
  }

  .contact_wrap {
    justify-content: center;
    align-items: center;
    inset: auto 0% 5vh;
  }

  .div-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .nav_legal {
    height: 70px;
  }

  .nav-legal_contain {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-legal_logo {
    width: 50px;
    height: 50px;
  }

  .link-back {
    font-size: 10px;
  }

  .section-legal {
    margin-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-txt_block h1 {
    font-size: 22px;
  }

  .legal-txt_block ul {
    padding-left: 20px;
  }

  .div-block-3 {
    background-position: 60%;
    height: 130vh;
    padding-bottom: 0;
  }

  #w-node-_11f040ad-f7df-fb0c-a271-933f5c0dfaf0-5c0dfaec {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_11f040ad-f7df-fb0c-a271-933f5c0dfaf2-5c0dfaec {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_95a9b30c-8134-9b55-a2b9-78ac085d91ac-085d91a8 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_95a9b30c-8134-9b55-a2b9-78ac085d91ae-085d91a8 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


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