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

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

@font-face {
  font-family: Jost;
  src: url('../fonts/Jost-500-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Jost;
  src: url('../fonts/Jost-400-BookItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Jost;
  src: url('../fonts/Jost-500-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}

:root {
  --dark-gray: #0e0e0f;
  --white: white;
  --granate-lou: #842134;
  --rojo-navidad: #a11c23;
  --border-color: #0e0e0f1a;
  --alert: #da2424;
  --success: #4ca355;
  --dorado-lou: #9f8255;
}

.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-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  background-color: var(--dark-gray);
  color: var(--dark-gray);
  font-family: Jost, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

h1 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

h3 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
}

h4 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

h5 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

h6 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

p {
  margin-bottom: 24px;
}

a {
  color: var(--dark-gray);
  font-weight: 500;
}

ul {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 20px;
}

strong {
  font-weight: 500;
}

blockquote {
  border-left: 2px solid var(--dark-gray);
  letter-spacing: -.01em;
  margin-bottom: 0;
  padding: 0 0 0 36px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 28px;
  line-height: 36px;
}

figure {
  margin-bottom: 10px;
}

.navbar-wrapper {
  z-index: 5;
  background-color: var(--white);
  order: 2;
  height: 100vh;
  position: sticky;
  top: 0;
}

.navbar {
  background-color: var(--granate-lou);
  height: 100vh;
}

.navbar.navidad {
  background-color: var(--rojo-navidad);
}

.navbar-column {
  flex-direction: column;
  justify-content: space-between;
  width: 72px;
  height: 100vh;
  max-height: 100vh;
  display: flex;
}

.menu-button {
  background-color: var(--dark-gray);
  justify-content: center;
  align-items: center;
  padding: 0;
}

.menu-button.w--open {
  background-color: var(--dark-gray);
}

.content-wrapper {
  border-left: 1px solid var(--border-color);
  background-color: var(--granate-lou);
  flex-direction: column;
  flex: 1;
  order: 3;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.gallery-wrapper {
  background-color: var(--dark-gray);
  width: 100%;
  max-width: 45vw;
  height: 100vh;
  max-height: 100vh;
  position: sticky;
  top: 0;
}

.container {
  width: 100%;
  max-width: 100%;
  color: var(--white);
  margin-left: 0;
  margin-right: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.container.footer-container {
  color: var(--dark-gray);
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.menu-button-icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
}

.page-title {
  margin-bottom: 48px;
  font-family: Jost, sans-serif;
}

.page-title.no-bottom-space {
  color: var(--white);
  font-family: Jost, sans-serif;
}

.gallery-logo-wrapper {
  z-index: 2;
  position: absolute;
  top: 48px;
  left: 48px;
}

.gallery {
  width: 100%;
  height: 100vh;
}

.display-none {
  display: none;
}

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

.page-wrapper {
  z-index: 1;
  display: flex;
  position: relative;
}

.nav-menu {
  background-color: var(--dark-gray);
  width: 55vw;
  max-height: 100vh;
  color: var(--white);
  text-align: left;
}

.nav-link {
  opacity: .5;
  color: var(--white);
  padding: 0;
  text-decoration: none;
  transition: opacity .2s;
}

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

.nav-link.large-heading {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-family: Jost, sans-serif;
}

.nav-link.large-heading.w--current {
  opacity: 1;
  color: var(--white);
}

.social-links {
  flex-direction: column;
  display: flex;
}

.social-link-item {
  border-top: 1px solid var(--border-color);
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
}

.page-content {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.navbar-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-logo-link {
  display: none;
}

.large-heading {
  letter-spacing: -.02em;
  margin-bottom: 24px;
  font-family: Bagnard Sans, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.vertical-grid {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.vertical-grid.menu-grid {
  grid-row-gap: 48px;
}

.nav-content-wrapper {
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 120px 24px 48px;
  display: flex;
}

.text-small {
  color: var(--white);
  font-size: 16px;
}

.nav-divider {
  border: 1px solid #ffffff40;
  width: 48px;
  height: 1px;
  margin-top: 36px;
  margin-bottom: 36px;
}

.menu-cross-button {
  z-index: 9999;
  opacity: .5;
  cursor: pointer;
  transition: opacity .2s;
  display: none;
  position: fixed;
  top: 48px;
  right: 48px;
}

.menu-cross-button:hover {
  opacity: 1;
}

.button {
  border: 1px solid var(--dark-gray);
  background-color: var(--dark-gray);
  height: 60px;
  color: var(--white);
  text-align: center;
  align-self: flex-start;
  padding: 18px 24px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.button.button-large {
  height: 72px;
  padding: 24px 36px;
}

.button.button-large.reserve-button {
  border: 1px solid var(--dark-gray);
  left: -1px;
}

.button.password-button {
  width: 100%;
  margin-top: 12px;
}

.reserve-button-wrapper {
  z-index: 4;
  background-color: var(--granate-lou);
  position: sticky;
  top: 0;
}

.reserve-button-wrapper.navidad {
  background-color: var(--rojo-navidad);
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content-body {
  background-color: var(--granate-lou);
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
}

.content-body.justify-content-center {
  background-color: var(--granate-lou);
  justify-content: center;
}

.content-body.navidad {
  background-color: var(--rojo-navidad);
}

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

.footer {
  border-top: 1px solid var(--border-color);
  background-color: var(--granate-lou);
  height: 72px;
  color: var(--dark-gray);
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer.navidad {
  background-color: var(--rojo-navidad);
}

.text-link {
  color: var(--white);
  transition: opacity .2s;
}

.text-link:hover {
  opacity: .5;
}

.button-animation-bg {
  z-index: 1;
  background-color: var(--white);
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
}

.button-text {
  z-index: 2;
  position: relative;
}

.menu-intro {
  margin-bottom: 20px;
}

.menu-list {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.menu-title {
  margin-bottom: 36px;
}

.menu-list-item {
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  padding-bottom: 18px;
  display: flex;
}

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

.form-input {
  border: 1px solid var(--border-color);
  height: 60px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: var(--dark-gray);
}

.form-input::placeholder {
  font-size: 18px;
}

.form-input.text-area-input {
  height: auto;
  min-height: 120px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.field-label {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
}

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

.checkbox {
  border-color: var(--dark-gray);
  cursor: pointer;
  border-radius: 0;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0;
  transition: background-color .2s;
}

.checkbox.w--redirected-checked {
  border-color: var(--dark-gray);
  background-color: var(--dark-gray);
  background-image: url('../images/icon-check.svg');
  background-size: 10px 10px;
}

.checkbox-field {
  align-items: flex-start;
  display: flex;
}

.checkbox-label {
  margin-bottom: 0;
  margin-left: 12px;
  font-size: 16px;
  position: relative;
  bottom: 3px;
}

.form-success {
  background-color: var(--success);
  color: var(--white);
  text-align: center;
  padding: 24px;
}

.form-error {
  background-color: var(--alert);
  color: var(--white);
  text-align: center;
  margin-top: 12px;
  padding: 12px;
  font-size: 16px;
}

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

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

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

.card {
  border: 1px solid var(--border-color);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 36px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.card.blog-card {
  border-color: var(--white);
  transition: border .2s;
}

.card.blog-card:hover {
  border-color: var(--dark-gray);
}

.blog-card-heading {
  color: var(--white);
  margin-bottom: 0;
}

.blog-sidebar-image {
  object-fit: cover;
  width: 100%;
  max-width: 45vw;
  height: 100vh;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.empty-state {
  background-color: #eee;
  padding: 24px;
}

.gallery-single-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.blog-post-date {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.article figure {
  margin-top: 48px;
  margin-bottom: 48px;
}

.article h5 {
  margin-top: 36px;
}

.article blockquote {
  margin-top: 48px;
  margin-bottom: 48px;
}

.article ul {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 36px;
  margin-bottom: 36px;
  display: grid;
}

.blog-next-post {
  margin-top: 36px;
}

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

.typeface-demo {
  background-color: var(--dark-gray);
  color: var(--white);
  text-align: center;
  padding: 24px;
  font-weight: 400;
  text-decoration: none;
}

.typeface-text {
  margin-bottom: 12px;
  font-size: 72px;
  line-height: 72px;
}

.typeface-text.bagnard {
  font-family: Bagnard Sans, sans-serif;
}

.style-guide-heading {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.space-bottom {
  margin-bottom: 18px;
}

.bg-gray {
  background-color: var(--dark-gray);
  color: var(--white);
}

.bg-white {
  background-color: var(--white);
}

.icons-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
}

.icon {
  width: 20px;
  height: 20px;
}

.menu-item-price {
  margin-left: 24px;
}

.utility-page-content {
  text-align: left;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.subheadinghero {
  margin-top: 11px;
}

.is-txt-small {
  color: #0a227d;
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.4;
}

.timeline_dot {
  z-index: 1;
  background-color: #ea4537;
  border: 4px solid #0a227d;
  border-radius: 99px;
  width: 24px;
  height: 24px;
  position: relative;
}

.timeline_progress {
  z-index: 1;
  background-color: #ea4537;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 3px;
  height: 5%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto 50%;
  transform: translate(-50%);
}

.container-2 {
  width: 100%;
  max-width: 90em;
  margin-left: auto;
  margin-right: auto;
}

.is-h2 {
  color: #94bac7;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4em;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}

.timeline_track {
  background-color: #94bac7;
  flex-direction: column;
  align-items: center;
  width: 2px;
  height: 100%;
}

.is-h4 {
  color: #0a227d;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.9375em;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.timeline_grid {
  grid-column-gap: 1.5em;
  grid-row-gap: 0em;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr .25fr 1fr;
  width: 100%;
}

.timeline_progress-overlay-bottom {
  background-image: linear-gradient(#0a227d00, #0a227d);
  width: 6px;
  height: 4em;
  position: absolute;
  inset: auto 0% 0 47%;
}

.timeline_grid-wrap {
  position: relative;
}

.timeline_inner {
  grid-row-gap: 6em;
  flex-direction: column;
  display: flex;
}

.timeline_progress-overlay-top {
  z-index: 0;
  background-image: linear-gradient(#0a227d, #0a227d00);
  width: 6px;
  height: 2em;
  position: absolute;
  inset: 0% 0% auto -2px;
}

.timeline_track-wrap {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.page-padding-m {
  padding: 6em 14.72%;
}

.timeline_item {
  grid-row-gap: 1em;
  background-color: #94bac7;
  border-radius: .5em;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.9em;
  margin-bottom: 1.9em;
  padding: 2em;
  display: flex;
  box-shadow: 6px 6px #ea4537;
}

.timeline {
  position: relative;
}

.timeline_heading-wrap {
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block {
  border-bottom: .5px dashed #000;
  align-items: stretch;
  margin-top: 5px;
}

.div-block-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: space-between;
  display: flex;
}

.div-block-3 {
  padding-top: 5px;
}

.plato, .precio {
  font-weight: 500;
}

.button-2 {
  background-color: var(--dorado-lou);
  text-align: center;
  margin-bottom: 12px;
  font-family: Jost, sans-serif;
  display: block;
}

.button-2.floting {
  position: fixed;
  bottom: 10px;
  right: 20px;
}

.button-2.floting.w--current {
  z-index: 50;
}

.menuselector {
  margin-bottom: 30px;
}

.heading, .heading-2, .heading-3 {
  font-family: Jost, sans-serif;
}

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

.heading-4, .rich-text-block, .heading-5, .heading-6 {
  font-family: Jost, sans-serif;
}

@media screen and (max-width: 991px) {
  .navbar-wrapper {
    border-right-style: none;
    order: -1;
    height: auto;
    position: static;
  }

  .navbar {
    height: auto;
  }

  .navbar-column {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .content-wrapper {
    border-left-style: none;
    flex: none;
    order: 3;
    min-height: auto;
  }

  .content-wrapper.blog-post-content-wrapper {
    order: 3;
  }

  .gallery-wrapper {
    background-color: var(--white);
    order: 2;
    max-width: none;
    height: 600px;
    max-height: none;
    padding-bottom: 72px;
  }

  .gallery-wrapper.blog-post-gallery-wrapper {
    border-top: 1px solid var(--border-color);
    order: 2;
    padding-top: 48px;
    padding-bottom: 0;
    position: relative;
  }

  .menu-button-icon-wrapper {
    height: 72px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-logo-wrapper {
    display: none;
  }

  .gallery {
    height: 120%;
    margin-left: auto;
    margin-right: auto;
  }

  .page-wrapper {
    flex-direction: column;
  }

  .nav-menu {
    width: 100vw;
  }

  .social-links {
    border-bottom: 1px solid var(--border-color);
    flex-direction: row;
    justify-content: space-between;
  }

  .social-link-item {
    border-right: 1px solid var(--border-color);
    flex: 1;
  }

  .navbar-top {
    padding-left: 24px;
  }

  .navbar-logo-link {
    display: block;
  }

  .button.button-large.reserve-button {
    text-align: center;
    align-self: stretch;
    left: 0;
  }

  .reserve-button-wrapper {
    flex-direction: column;
    display: flex;
    position: relative;
  }

  .content-body {
    background-color: var(--granate-lou);
    flex: none;
  }

  .content-body.justify-content-center {
    flex: 0 auto;
    position: relative;
  }

  .content-body.navidad {
    background-color: var(--rojo-navidad);
  }

  .menu-intro {
    margin-bottom: 48px;
  }

  .menu-title.subtitle {
    margin-top: 20px;
  }

  .blog-sidebar-image {
    order: -1;
    display: none;
  }

  .gallery-single-image {
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
  }

  .background-video {
    height: 120%;
  }

  .page-padding-m {
    padding-left: 4%;
    padding-right: 4%;
  }

  .image {
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 40px;
  }

  blockquote {
    letter-spacing: 0;
    padding-left: 24px;
    font-family: Jost, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }

  .gallery-wrapper {
    padding-bottom: 18px;
  }

  .gallery-wrapper.blog-post-gallery-wrapper {
    padding-top: 0;
  }

  .page-title {
    margin-bottom: 24px;
  }

  .gallery {
    height: 110%;
  }

  .large-heading {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 40px;
  }

  .vertical-grid.menu-grid {
    grid-row-gap: 36px;
  }

  .nav-content-wrapper {
    padding-top: 48px;
  }

  .content-body {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .menu-intro {
    margin-bottom: 48px;
  }

  .menu-title {
    margin-bottom: 24px;
  }

  .map {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .article figure {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .article h5 {
    margin-top: 24px;
  }

  .article blockquote {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .article ul {
    grid-row-gap: 12px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .background-video {
    height: 110%;
  }

  .timeline_dot {
    width: 20px;
    height: 20px;
  }

  .timeline_progress {
    inset: 0% auto auto 2.5em;
  }

  .is-h2 {
    font-size: 2rem;
  }

  .is-h4 {
    font-size: 1.5rem;
  }

  .timeline_grid {
    grid-template-columns: 5em 1fr;
  }

  .timeline_progress-overlay-bottom {
    background-image: linear-gradient(#0a227d00, #0a227d 59%);
    height: 4em;
  }

  .timeline_progress-overlay-top {
    background-image: linear-gradient(#0a227d 18%, #0a227d00);
  }

  .page-padding-m {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }

  .timeline_item-wrap.is-hidden-mobile {
    display: none;
  }
}

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

  h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .gallery-wrapper {
    height: 55vh;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-wrapper.blog-post-gallery-wrapper {
    padding-top: 18px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container.footer-container {
    flex-direction: column;
  }

  .gallery {
    height: 100%;
  }

  .nav-link.large-heading {
    padding-bottom: 5px;
  }

  .large-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .vertical-grid.menu-grid {
    grid-row-gap: 24px;
  }

  .footer {
    height: auto;
  }

  .menu-intro {
    margin-bottom: 36px;
  }

  .form-input, .form-input::placeholder {
    font-size: 16px;
  }

  .card {
    padding: 24px;
  }

  .article figure, .article blockquote {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .typeface-text {
    font-size: 40px;
    line-height: 48px;
  }

  .background-video {
    height: 100%;
  }

  .timeline_dot {
    width: 1.2rem;
    height: 1.2rem;
  }

  .timeline_progress {
    left: 2em;
  }

  .is-h2 {
    font-size: 2rem;
  }

  .is-h4 {
    font-size: 1.5rem;
  }

  .timeline_grid {
    grid-column-gap: 1em;
    grid-template-columns: 4em 1fr;
  }

  .page-padding-m {
    padding-left: 4%;
    padding-right: 4%;
  }

  .timeline {
    min-height: 120em;
    overflow: hidden;
  }

  .div-block-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .button-2.floting {
    z-index: 99;
  }
}


@font-face {
  font-family: 'Bagnard Sans';
  src: url('../fonts/BagnardSans.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-400-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-500-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-400-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-500-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}