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

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

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

:root {
  --dark: #102326;
  --paragraphs: #f8f2e899;
  --light: #f8f2e8;
  --accent: #f0c633;
  --border: #f8f2e82b;
}

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

body {
  background-color: var(--dark);
  color: var(--paragraphs);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 160%;
}

h1 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 55px;
  font-weight: 500;
  line-height: 106%;
}

h2 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 26px;
  font-size: 44px;
  font-weight: 500;
  line-height: 112%;
}

h3 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 35px;
  font-weight: 500;
  line-height: 116%;
}

h4 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
}

h5 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 500;
  line-height: 134%;
}

h6 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

p {
  margin-bottom: 28px;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 34px;
}

li {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 7px;
}

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

strong {
  color: var(--light);
  font-weight: 500;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 1px solid var(--accent);
  color: var(--light);
  margin-bottom: 28px;
  margin-left: 15px;
  padding: 0 24px;
  font-size: 22px;
  font-style: italic;
  line-height: 160%;
}

figure {
  margin-top: 36px;
  margin-bottom: 36px;
  overflow: hidden;
}

figcaption {
  text-align: center;
  margin-top: 0;
  padding: 14px 5%;
  font-size: 16px;
  line-height: 150%;
}

.link {
  border-width: 1px;
  border-color: var(--accent);
  color: var(--accent);
  border-bottom-style: solid;
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
}

.link:hover {
  border-bottom-color: var(--light);
  color: var(--light);
}

.rich-text-block {
  margin-top: 44px;
}

.rich-text-block a {
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  border-bottom-color: var(--light);
  color: var(--light);
}

.rich-text-block img {
  border-radius: 16px;
}

.hero-content {
  z-index: 100;
  -webkit-text-fill-color: inherit;
  background-image: url('../images/Textura1.jpg'), linear-gradient(#f1f0dc, #f1f0dc);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
  background-clip: border-box;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  min-height: 100vh;
  margin-left: auto;
  padding: 40px 60px 45px;
  display: flex;
  position: relative;
}

.hero-fixed {
  z-index: 0;
  width: 50%;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.slider {
  z-index: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
}

.slide {
  perspective: 1000px;
  height: 100%;
  overflow: visible;
  transform: perspective(1000px);
}

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

.mask {
  width: 100%;
  height: 100%;
}

.slider-gradient {
  z-index: 20;
  background-image: linear-gradient(150deg, #000000e6, #0000 55%);
  position: absolute;
  inset: 0%;
}

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

.heading-hero {
  color: var(--dark);
  text-align: left;
  text-transform: uppercase;
  margin-top: 115px;
  margin-bottom: 30px;
  font-family: Td neumann, sans-serif;
  font-size: 5vw;
  font-weight: 400;
  line-height: 120%;
}

.heading-hero.dos {
  margin-top: -25px;
  margin-bottom: 143px;
  font-size: 2vw;
}

.block-hero {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 84%;
  margin-top: 185px;
  margin-left: 45px;
  display: flex;
}

.text-accent {
  color: var(--dark);
  text-align: center;
  font-size: 7vw;
}

.paragraph-hero {
  color: var(--dark);
  text-align: center;
  max-width: 540px;
  margin-bottom: 60px;
  font-family: Td neumann, sans-serif;
  font-size: 19px;
  line-height: 160%;
}

.button {
  color: var(--light);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #000;
  border-radius: 50px;
  padding: 20px 36px;
  font-family: Jost, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  background-color: #0000004d;
}

.block-info {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 80px;
  display: flex;
}

.info {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: 20px;
  display: flex;
}

.info.right {
  text-align: right;
  align-items: flex-end;
  margin-right: 0;
}

.text-info {
  color: var(--dark);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

.heading-info {
  color: var(--dark);
  text-align: left;
  margin-bottom: 0;
  font-family: Td neumann, sans-serif;
  font-size: 18px;
  line-height: 120%;
}

.navbar {
  z-index: 100;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: fixed;
  inset: 50px auto 50px 60px;
}

.nav-menu {
  flex-direction: column;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  margin-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.logo {
  height: 50px;
}

.brand {
  padding: 5px;
}

.nav-link {
  color: var(--light);
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.nav-link:hover {
  color: var(--accent);
}

.icon-nav-link {
  background-color: var(--light);
  border-radius: 100%;
  flex: none;
  width: 6px;
  height: 6px;
  margin-right: 12px;
}

.text-nav-link {
  text-shadow: 3px 3px 8px #000;
  white-space: normal;
  font-family: Td neumann, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
}

.loading-fill {
  z-index: 300;
  background-color: #000;
  width: 0%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.loading-fill-dark {
  background-color: #000;
  width: 0%;
  position: absolute;
  inset: 0%;
}

.page-content {
  z-index: 100;
  background-color: var(--dark);
  background-image: url('../images/Textura1.jpg');
  background-size: auto;
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
  min-height: 100vh;
  margin-left: auto;
  padding: 40px 60px 45px;
  display: flex;
  position: relative;
}

.footer {
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-left: -20px;
  margin-right: -20px;
  padding-top: 46px;
  display: flex;
}

.block-footer {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-footer {
  opacity: .45;
  color: var(--light);
  padding: 6px 20px;
  font-size: 16px;
  line-height: 120%;
  text-decoration: none;
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
}

.link-footer:hover {
  opacity: 1;
}

.block-page {
  text-align: center;
  align-self: center;
  margin-bottom: 70px;
}

.block-page.margin-0 {
  margin-bottom: 0;
}

.block-top {
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
}

.grid-top {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid var(--border);
  grid-template: ". Area"
  / 1fr .25fr .25fr;
  padding-bottom: 34px;
}

.heading-top {
  color: #000000a6;
  text-transform: none;
  margin-top: 7px;
  margin-bottom: 0;
  margin-right: 44px;
  font-family: Td neumann, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 98%;
}

.block-paragraph-top {
  border-left: 1px solid var(--border);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  overflow: visible;
}

.paragraph-top {
  max-width: 360px;
  margin-bottom: 0;
  overflow: hidden;
}

.block-heading {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 60px;
  display: flex;
}

.heading {
  outline-offset: 0px;
  color: #000;
  text-align: center;
  letter-spacing: 7px;
  text-transform: uppercase;
  outline: 3px #000;
  margin-bottom: 0;
  font-family: Derivia, sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-decoration: none;
}

.icon-circle {
  justify-content: center;
  align-items: center;
  margin-right: 24px;
  display: flex;
}

.circle-a {
  background-color: var(--accent);
  border-radius: 100%;
  flex: none;
  width: 5px;
  height: 5px;
  margin-right: 4px;
}

.circle-b {
  background-color: var(--accent);
  border-radius: 100%;
  flex: none;
  width: 11px;
  height: 11px;
}

.grid-menu {
  grid-column-gap: 3px;
  grid-row-gap: 10px;
  border-bottom: 1px dashed var(--border);
  grid-template-rows: auto;
  grid-template-columns: 2fr;
  justify-content: center;
  justify-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.grid-menu.events {
  padding-top: 30px;
  padding-bottom: 30px;
}

.heading-menu {
  color: #000;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Derivia, sans-serif;
  font-size: 21px;
  font-style: normal;
}

.heading-menu.catering {
  text-align: left;
  text-transform: none;
}

.paragraph-menu {
  color: #000000a6;
  text-align: left;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 0;
  font-family: Td neumann, sans-serif;
  font-size: 16px;
  line-height: 160%;
}

.price-menu {
  color: #000;
  text-align: right;
  padding-top: 10px;
  font-family: Derivia, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}

.block-menu {
  border-top: 1px solid var(--border);
}

.field-label {
  color: var(--light);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

.text-field {
  color: var(--light);
  background-color: #0d1a1d;
  border: 1px solid #0000;
  border-radius: 50px;
  height: 66px;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
  line-height: 140%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-color: var(--border);
}

.text-field::placeholder {
  color: #f8f2e880;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-submit {
  background-color: var(--accent);
  color: var(--dark);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-top: 20px;
  padding: 20px 36px;
  font-size: 17px;
  font-weight: 500;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.form-block {
  margin-bottom: 0;
}

.success-message {
  background-color: #1ca7301a;
  border-radius: 16px;
  padding: 20px;
}

.text-success {
  color: #1ca730;
  line-height: 130%;
}

.error-message {
  text-align: center;
  background-color: #f0333326;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px;
}

.text-error {
  color: #f03333;
  line-height: 130%;
}

.grid-contact {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-areas: ". Area";
  align-items: center;
  margin-top: 44px;
  margin-bottom: 44px;
}

.contact-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.contact-left.abajo {
  margin-top: -10px;
  padding-top: 0;
}

.contact-right {
  border-left: 1px solid var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 0;
  display: flex;
}

.image-map {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 500px;
  margin-top: 57px;
}

.space {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 74px;
  margin-bottom: 74px;
}

.image {
  border-radius: 16px;
  width: 50%;
  margin-top: 50px;
  margin-bottom: 50px;
}

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

.image.margin-0.fotogrupo, .image.fotojan {
  width: 100%;
}

.empty-state {
  text-align: center;
  background-color: #0c1a1d;
  border-radius: 16px;
  padding: 20px;
}

.text-empty {
  color: var(--light);
  line-height: 130%;
}

.collection-list-wrapper {
  margin-top: 80px;
}

.collection-list {
  grid-column-gap: 0px;
  grid-row-gap: 46px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-blog {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  border-bottom: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding-bottom: 46px;
}

.image-thumbnail {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.date {
  color: var(--accent);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

.link-heading-blog {
  margin-bottom: 20px;
  text-decoration: none;
}

.heading-blog, .paragraph-summary {
  margin-bottom: 0;
}

.block-blog {
  padding-top: 18px;
  padding-bottom: 18px;
}

.link-thumbnail {
  height: 100%;
}

.image-main {
  z-index: 20;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.heading-top-blog {
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0;
  margin-right: 44px;
  font-family: Six Caps, sans-serif;
  font-size: 7vw;
  font-weight: 400;
  line-height: 98%;
}

.date-top {
  color: var(--light);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

.utility-page-wrap {
  background-image: url('../images/illustration.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  padding: 30px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 280px;
  margin-bottom: 0;
  display: flex;
}

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

.illustration {
  z-index: 20;
  background-image: url('../images/illustration.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.grid-colors {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.block-color {
  border: 1px solid var(--border);
  background-color: var(--dark);
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 120px;
  padding: 20px;
  display: flex;
}

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

.block-color.accent {
  background-color: var(--accent);
}

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

.block-color.paragraphs {
  background-color: var(--paragraphs);
}

.text-color {
  color: var(--light);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.text-color.dark {
  color: var(--dark);
}

.hex-color {
  color: #f8f2e880;
  text-transform: uppercase;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.hex-color.dark {
  color: #10232680;
}

.template-info {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  align-items: center;
  margin-top: 15px;
  padding: 30px;
  display: flex;
}

.button-light {
  background-color: var(--light);
  color: var(--dark);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 20px 36px;
  font-size: 17px;
  font-weight: 500;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.jost {
  margin-bottom: 0;
}

.six-caps {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Six Caps, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 98%;
}

.grid-licensing {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.image-licensing {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 25vw;
}

.image-2 {
  max-width: 42%;
  margin-bottom: 60px;
}

.bold-text {
  color: var(--dark);
}

.body, .body-2, .body-3, .body-4 {
  background-color: #000;
}

.paragraph {
  color: #0009;
  font-family: Td neumann, sans-serif;
}

.paragraph.historia {
  text-align: justify;
}

.paragraph-2 {
  color: #0009;
  font-family: Td neumann, sans-serif;
}

.paragraph-2.historia {
  text-align: justify;
}

.paragraph-3 {
  color: #0009;
  font-family: Td neumann, sans-serif;
}

.paragraph-3.historia {
  text-align: justify;
  margin-bottom: 0;
}

.paragraph-4 {
  color: #0009;
}

.body-5 {
  background-color: #000;
}

.float-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  flex-direction: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 0;
  margin-right: 0;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.sociall-wrapper {
  float: right;
  justify-content: flex-start;
  transition: opacity .2s;
  display: flex;
  position: static;
  top: -4px;
}

.social-icon {
  opacity: .74;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-text-fill-color: inherit;
  background-color: #000;
  background-image: url('../images/fa-facebook_100_0_ffffff_none_1fa-facebook_100_0_ffffff_none.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  background-clip: border-box;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin-left: 0;
  margin-right: 5px;
  padding-right: 0;
  transition: opacity .2s, all .4s;
  display: block;
  position: static;
}

.social-icon:hover {
  opacity: 1;
  background-color: #0000004d;
}

.social-icon.instagram {
  background-image: url('../images/font-awesome_4-6-3_instagram_100_0_ffffff_none_1font-awesome_4-6-3_instagram_100_0_ffffff_none.png');
  background-size: 18px;
}

.social-icon.twitter {
  background-image: url('../images/twitter_1twitter.png');
  background-size: 21px;
}

.container {
  text-align: left;
  object-fit: fill;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  margin-top: 0;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.social-icon-2 {
  background-color: var(--dark);
  opacity: .6;
  background-image: url('../images/fa-facebook_100_0_ffffff_none_1fa-facebook_100_0_ffffff_none.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  transition: all .4s;
  display: inline-block;
  position: relative;
}

.social-icon-2:hover {
  background-color: var(--dark);
  opacity: .33;
}

.social-icon-2.instagram {
  background-image: url('../images/font-awesome_4-6-3_instagram_100_0_ffffff_none_1font-awesome_4-6-3_instagram_100_0_ffffff_none.png');
  background-size: 18px;
}

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

.image-map-2 {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 500px;
}

.html-embed {
  margin-top: 50px;
}

.container-3 {
  margin-top: -70px;
  padding-top: 0;
}

.grid {
  grid-column-gap: 25px;
  grid-template-rows: auto;
  align-items: center;
  margin-top: -160px;
}

@media screen and (min-width: 1920px) {
  .nav-menu {
    padding-bottom: 140px;
  }

  .float-right {
    inset: auto 0% 0%;
  }

  .sociall-wrapper {
    margin-right: 215px;
  }
}

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

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 21px;
  }

  h6 {
    font-size: 17px;
  }

  .hero-content {
    width: 100%;
    min-height: 50vh;
    margin-left: 0;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    top: 50vh;
  }

  .hero-fixed {
    width: 100%;
    height: 50vh;
  }

  .slider {
    z-index: -50;
  }

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

  .paragraph-hero {
    font-size: 20px;
  }

  .text-info {
    margin-bottom: 8px;
  }

  .heading-info {
    font-size: 19px;
  }

  .navbar {
    top: 40px;
    left: 40px;
  }

  .nav-menu {
    font-size: 12px;
  }

  .nav-link {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .text-nav-link {
    font-size: 18px;
  }

  .page-content {
    width: 100%;
    margin-left: 0;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    top: 50vh;
  }

  .heading-top {
    font-size: 4vw;
  }

  .heading-top-blog {
    font-size: 15vw;
  }

  .image-licensing {
    height: 40vw;
  }

  .sociall-wrapper {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 19px;
  }

  .footer {
    margin-left: -15px;
    margin-right: -15px;
  }

  .link-footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .block-page {
    margin-bottom: 60px;
  }

  .grid-top {
    padding-bottom: 40px;
  }

  .heading-top {
    margin-right: 30px;
  }

  .block-paragraph-top {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 30px;
  }

  .block-heading {
    margin-top: 60px;
  }

  .icon-circle {
    margin-right: 18px;
  }

  .field-label {
    margin-bottom: 10px;
  }

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

  .grid-contact {
    grid-template-columns: 2.75fr;
    grid-template-areas: ". Area";
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .space {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .collection-list-wrapper {
    margin-top: 60px;
  }

  .collection-list {
    grid-row-gap: 36px;
  }

  .grid-blog {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-bottom: 36px;
  }

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

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

  .sociall-wrapper {
    padding-right: 36px;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .rich-text-block {
    margin-top: 34px;
  }

  .hero-content {
    z-index: 100;
    padding: 30px;
    top: 80vh;
  }

  .hero-content.home {
    top: 90vh;
  }

  .hero-fixed {
    height: 85vh;
    inset: 0%;
  }

  .hero-fixed.home {
    height: 90vh;
  }

  .hero-fixed.menu, .hero-fixed.reservierung, .hero-fixed.uberuns {
    height: 85vh;
  }

  .slider-gradient {
    opacity: 1;
    background-image: linear-gradient(123deg, #000000e6 11%, #0000 55%);
  }

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

  .block-hero {
    margin-top: 157px;
    margin-left: 20px;
  }

  .paragraph-hero {
    font-size: 18px;
  }

  .button {
    padding: 18px 30px;
    font-size: 15px;
  }

  .block-info {
    opacity: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
    overflow: visible;
  }

  .info.right {
    text-align: left;
    align-items: flex-start;
    margin-top: 30px;
  }

  .heading-info {
    align-self: flex-start;
    font-size: 15px;
  }

  .navbar {
    top: 30px;
    bottom: auto;
    left: 30px;
  }

  .nav-menu {
    margin-top: 35px;
  }

  .logo {
    max-width: 100%;
    height: 30px;
  }

  .nav-link {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .text-nav-link {
    font-size: 18px;
  }

  .page-content {
    padding: 30px 30px 10px;
    top: 85vh;
  }

  .footer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 18px;
  }

  .block-footer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .link-footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .block-page {
    margin-bottom: 45px;
  }

  .block-page.margin-0 {
    margin-top: -30px;
  }

  .grid-top {
    grid-row-gap: 30px;
    grid-template-columns: 2.25fr .25fr .25fr;
    grid-template-areas: ". Area";
  }

  .heading-top {
    margin-top: 6px;
    font-size: 6vw;
    text-decoration: none;
  }

  .block-paragraph-top {
    border-top: 1px solid var(--border);
    border-left-style: none;
    padding-top: 0;
    padding-left: 0;
  }

  .block-heading {
    margin-top: 45px;
  }

  .heading {
    font-size: 25px;
  }

  .grid-menu {
    grid-template-columns: 1.75fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading-menu.catering {
    text-align: left;
  }

  .paragraph-menu {
    text-align: center;
    text-transform: none;
    object-fit: fill;
    padding-left: 0;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
  }

  .grid-contact {
    grid-row-gap: 20px;
    text-align: left;
    grid-template: "."
    / 2.75fr;
  }

  .contact-left {
    text-align: left;
    padding-top: 0;
  }

  .contact-right {
    border-top: 1px solid var(--border);
    border-left-style: none;
    padding-top: 0;
    padding-left: 0;
  }

  .space {
    margin-top: 45px;
    margin-bottom: 45px;
  }

  .image {
    margin-top: 20px;
  }

  .image.fotocarlos {
    width: 100%;
  }

  .collection-list-wrapper {
    margin-top: 45px;
  }

  .grid-blog {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
    padding-bottom: 12px;
  }

  .heading-top-blog {
    margin-right: 0;
    font-size: 18vw;
  }

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

  .utility-page-wrap {
    padding: 20px;
  }

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

  .template-info {
    flex-direction: column;
    padding: 20px;
  }

  .button-light {
    padding: 18px 30px;
    font-size: 15px;
  }

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

  .image-licensing {
    height: 60vw;
  }

  .image-2 {
    max-width: 60%;
  }

  .body {
    height: auto;
  }

  .paragraph, .paragraph-2, .paragraph-3 {
    font-family: Td neumann, sans-serif;
  }

  .float-right {
    margin-right: 0;
    padding-top: 0;
    position: absolute;
    inset: auto 0% 0%;
    overflow: visible;
  }

  .sociall-wrapper {
    margin-top: 0;
    margin-bottom: auto;
    padding-right: 0;
    display: block;
    top: auto;
    overflow: visible;
  }

  .social-icon, .social-icon.instagram {
    width: 30px;
    height: 30px;
    display: block;
  }

  .social-icon-2 {
    width: 30px;
    height: 30px;
    margin-bottom: 3px;
    margin-right: 0;
    display: block;
  }

  .social-icon-2.instagram {
    width: 30px;
    height: 30px;
    display: block;
  }

  .html-embed {
    border-radius: 80px;
    margin-top: -1px;
    margin-bottom: 60px;
  }

  .container-3 {
    margin-top: -1px;
    padding-top: 0;
  }

  .grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-top: -45px;
  }
}

#w-node-_16f50e9d-c943-8c8a-2862-c114be2ba284-24f5ff05, #w-node-_4c87393d-9e19-9fa3-a71c-eb0e1b184721-24f5ff05, #w-node-_9423566d-bc5f-e942-0b9f-ff06fd44aad5-fd44aad5, #w-node-_16f50e9d-c943-8c8a-2862-c114be2ba284-74f5ff16, #w-node-_4c87393d-9e19-9fa3-a71c-eb0e1b184721-74f5ff16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cca89c12-c0a2-e877-4358-0c30a9da7cf8-74f5ff16 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-bd0100af-b910-7c40-d116-96c8ddc38ad0-74f5ff16 {
  align-self: center;
}

#w-node-_5da1724b-be14-745e-20cc-24e5dbd2cb35-74f5ff16 {
  place-self: auto;
}

#w-node-_16f50e9d-c943-8c8a-2862-c114be2ba284-4cf5ff18, #w-node-_4c87393d-9e19-9fa3-a71c-eb0e1b184721-4cf5ff18, #w-node-_5a7b1bc5-6294-da63-74dd-9a54b06637a1-4cf5ff18 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5f837cc0-b032-57f7-0ea0-7ffb1b6945e9-4cf5ff18, #w-node-_5f837cc0-b032-57f7-0ea0-7ffb1b6945ee-4cf5ff18 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_16f50e9d-c943-8c8a-2862-c114be2ba284-40f5ff1a, #w-node-_4c87393d-9e19-9fa3-a71c-eb0e1b184721-40f5ff1a, #w-node-_5a7b1bc5-6294-da63-74dd-9a54b06637a1-40f5ff1a, #w-node-_59dd1251-c281-0958-9e12-ecfb03b405d8-40f5ff1a, #w-node-_42214f57-1f88-fa2c-1fcc-0a688fdb90f4-40f5ff1a, #w-node-_87e017f9-08bd-90b1-2807-7f734f929164-40f5ff1a, #w-node-_655d0049-aab9-7764-e244-5fc2f33eaf90-8bf5ff1b, #w-node-_655d0049-aab9-7764-e244-5fc2f33eafa0-8bf5ff1b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_655d0049-aab9-7764-e244-5fc2f33eafa5-8bf5ff1b, #w-node-_6fcccdc5-9c58-35c2-8b76-8cbe07b8b138-8bf5ff1b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_16f50e9d-c943-8c8a-2862-c114be2ba284-9ef5ff1d, #w-node-_4c87393d-9e19-9fa3-a71c-eb0e1b184721-9ef5ff1d, #w-node-d71ddb49-f6d3-59b6-1b8e-40063fb11474-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e35d6164-c94a-218a-2e9f-4d02adf94591-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_46416e60-165f-25d0-d2c7-445c79e1605e-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto center;
}

#w-node-_27863277-6c94-e26b-91d2-87e3c2b60f5d-9ef5ff1d, #w-node-_1da732db-ef76-c552-b3d4-6e8b70054567-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_1da732db-ef76-c552-b3d4-6e8b7005456c-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto center;
}

#w-node-_1da732db-ef76-c552-b3d4-6e8b70054570-9ef5ff1d, #w-node-d210b3b8-6b7b-af06-bc7f-1b5c03c4379b-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-d210b3b8-6b7b-af06-bc7f-1b5c03c437a0-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto center;
}

#w-node-d210b3b8-6b7b-af06-bc7f-1b5c03c437a4-9ef5ff1d, #w-node-_00de9d1c-c05a-1e77-5213-5bc47dcdbe0f-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_00de9d1c-c05a-1e77-5213-5bc47dcdbe14-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto center;
}

#w-node-_00de9d1c-c05a-1e77-5213-5bc47dcdbe16-9ef5ff1d, #w-node-c8da05fe-733d-200a-3f8a-b331fe782018-9ef5ff1d, #w-node-_95d5ceea-b7af-dac5-4075-9174156cf201-9ef5ff1d, #w-node-c8da05fe-733d-200a-3f8a-b331fe78201c-9ef5ff1d, #w-node-_28dad231-7a64-38eb-0991-86c2c02ea31a-9ef5ff1d, #w-node-_28dad231-7a64-38eb-0991-86c2c02ea31c-9ef5ff1d, #w-node-_28dad231-7a64-38eb-0991-86c2c02ea31e-9ef5ff1d, #w-node-b9ea9fe8-fe25-5bd5-b89d-b13044072883-9ef5ff1d, #w-node-b9ea9fe8-fe25-5bd5-b89d-b13044072885-9ef5ff1d, #w-node-b9ea9fe8-fe25-5bd5-b89d-b13044072887-9ef5ff1d, #w-node-_0813080a-f334-7eed-1f3b-2f1eebe0f097-9ef5ff1d, #w-node-_0813080a-f334-7eed-1f3b-2f1eebe0f099-9ef5ff1d, #w-node-_0813080a-f334-7eed-1f3b-2f1eebe0f09b-9ef5ff1d, #w-node-_1d725f43-9542-bbae-a832-a3df3fce8b85-9ef5ff1d, #w-node-aaecfe4b-f1d3-09b7-51a0-f298ec99a122-9ef5ff1d, #w-node-_1d725f43-9542-bbae-a832-a3df3fce8b89-9ef5ff1d, #w-node-_1d725f43-9542-bbae-a832-a3df3fce8b8c-9ef5ff1d, #w-node-_484424af-8e02-22cb-df22-dce36eac4475-9ef5ff1d, #w-node-_1d725f43-9542-bbae-a832-a3df3fce8b90-9ef5ff1d, #w-node-cd9cf377-37c3-58b6-c937-8e4743f3c019-9ef5ff1d, #w-node-_30b99909-9167-38fe-b046-fc4f482592d1-9ef5ff1d, #w-node-cd9cf377-37c3-58b6-c937-8e4743f3c01d-9ef5ff1d, #w-node-f6369c26-75af-8a4f-ed9d-a0c627065e26-9ef5ff1d, #w-node-aa76e02b-86e7-408d-cca9-d64ace3e990e-9ef5ff1d, #w-node-f6369c26-75af-8a4f-ed9d-a0c627065e2a-9ef5ff1d, #w-node-_5400bc0a-7082-e434-4b1d-3b168549cbbd-9ef5ff1d, #w-node-_5400bc0a-7082-e434-4b1d-3b168549cbbf-9ef5ff1d, #w-node-_5400bc0a-7082-e434-4b1d-3b168549cbc1-9ef5ff1d, #w-node-e7342ff2-86a0-de7f-f835-21720b5f2f5d-9ef5ff1d, #w-node-e7342ff2-86a0-de7f-f835-21720b5f2f5f-9ef5ff1d, #w-node-e7342ff2-86a0-de7f-f835-21720b5f2f61-9ef5ff1d, #w-node-ff32e151-11b8-d50d-cf97-0b76362f71d3-9ef5ff1d, #w-node-ff32e151-11b8-d50d-cf97-0b76362f71d5-9ef5ff1d, #w-node-ff32e151-11b8-d50d-cf97-0b76362f71d7-9ef5ff1d, #w-node-eae068ae-f44a-f509-205f-d4239c30063b-9ef5ff1d, #w-node-eae068ae-f44a-f509-205f-d4239c30063d-9ef5ff1d, #w-node-eae068ae-f44a-f509-205f-d4239c30063f-9ef5ff1d, #w-node-_2430968c-0ff0-337a-1e78-938f35ca7033-9ef5ff1d, #w-node-_07e6187e-1417-10f8-8660-5ce3fcb3b9c6-9ef5ff1d, #w-node-_2430968c-0ff0-337a-1e78-938f35ca7037-9ef5ff1d, #w-node-_2430968c-0ff0-337a-1e78-938f35ca703a-9ef5ff1d, #w-node-_80c3146b-6513-903a-35f0-51a1d2e95193-9ef5ff1d, #w-node-_2430968c-0ff0-337a-1e78-938f35ca703e-9ef5ff1d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_16f50e9d-c943-8c8a-2862-c114be2ba284-57361e67, #w-node-_4c87393d-9e19-9fa3-a71c-eb0e1b184721-57361e67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cca89c12-c0a2-e877-4358-0c30a9da7cf8-57361e67 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8476c044-b72d-0e68-59b0-6bc745c6377c-57361e67, #w-node-_8476c044-b72d-0e68-59b0-6bc745c6377e-57361e67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-d71ddb49-f6d3-59b6-1b8e-40063fb11474-57361e67, #w-node-cd9cf377-37c3-58b6-c937-8e4743f3c019-57361e67, #w-node-cd9cf377-37c3-58b6-c937-8e4743f3c01b-57361e67, #w-node-f6369c26-75af-8a4f-ed9d-a0c627065e26-57361e67, #w-node-f6369c26-75af-8a4f-ed9d-a0c627065e28-57361e67, #w-node-_679f6a1e-6ba0-1d9e-eebf-ec2a4f763470-57361e67, #w-node-_679f6a1e-6ba0-1d9e-eebf-ec2a4f763472-57361e67, #w-node-a637f04b-82e7-3da9-afcb-58724c91bda6-57361e67, #w-node-a637f04b-82e7-3da9-afcb-58724c91bda8-57361e67, #w-node-_0449938f-c40e-56fb-e532-1459d0edcec6-57361e67, #w-node-_0449938f-c40e-56fb-e532-1459d0edcec8-57361e67, #w-node-_39c558ad-d5f6-dcdd-13b4-12b987ceee01-57361e67, #w-node-_39c558ad-d5f6-dcdd-13b4-12b987ceee03-57361e67, #w-node-c8da05fe-733d-200a-3f8a-b331fe782018-57361e67, #w-node-c8da05fe-733d-200a-3f8a-b331fe78201a-57361e67, #w-node-_2102da45-7250-33a4-30b3-ee0d0a925c2f-57361e67, #w-node-_2102da45-7250-33a4-30b3-ee0d0a925c31-57361e67, #w-node-_1d725f43-9542-bbae-a832-a3df3fce8b85-57361e67, #w-node-_1d725f43-9542-bbae-a832-a3df3fce8b87-57361e67, #w-node-_1d725f43-9542-bbae-a832-a3df3fce8b8c-57361e67, #w-node-_1d725f43-9542-bbae-a832-a3df3fce8b8e-57361e67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_5a7b1bc5-6294-da63-74dd-9a54b06637a1-40f5ff1a {
    grid-area: Area;
    justify-self: auto;
  }

  #w-node-_96fa0dc6-b8d3-81be-906e-50f558876891-40f5ff1a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_59dd1251-c281-0958-9e12-ecfb03b405d8-40f5ff1a, #w-node-_42214f57-1f88-fa2c-1fcc-0a688fdb90f4-40f5ff1a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a637f04b-82e7-3da9-afcb-58724c91bda8-57361e67, #w-node-_0449938f-c40e-56fb-e532-1459d0edcec8-57361e67 {
    justify-self: auto;
  }
}


@font-face {
  font-family: 'Derivia';
  src: url('../fonts/Derivia-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Td neumann';
  src: url('../fonts/td-neumann.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Antro vectra';
  src: url('../fonts/Antro_Vectra.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}