@charset "UTF-8";
@import url("https://use.typekit.net/oxk5xtf.css");
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

.bg-light {
  background-color: #F7F5F2;
}

.bg-dark {
  background-color: #524C3F;
}

.bg-medium {
  background-color: #8D8B7E;
}

.bg-cta {
  background-color: #956b3d;
}

.block {
  width: 100%;
  height: 100%;
}
.block .block-inner {
  width: 100%;
  height: 100%;
}
.block .block-inner .block-content {
  width: 100%;
  height: 100%;
}

.block-hero-video {
  position: relative;
}
.block-hero-video .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 38, 37, 0.5);
  z-index: 10;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s ease;
}
.block-hero-video .video-overlay.hidden {
  opacity: 0;
}
.block-hero-video .responsive-iframe-wrapper {
  width: 100vw;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}
.block-hero-video .responsive-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
  margin-top: -14vh;
  z-index: -2000;
}
@media only screen and (max-width: 700px) {
  .block-hero-video .responsive-iframe {
    width: 200%;
    transform: translateX(-25%);
  }
}
@media only screen and (max-width: 700px) {
  .block-hero-video .block-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.block-hero-video .block-body {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f7f5f2;
  z-index: 20;
}
.block-hero-video .block-body p {
  font-size: 18px;
  color: #f7f5f2;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .block-hero-video .block-body p {
    font-size: 16px;
  }
}
.block-hero-video .block-body h1 {
  padding: 15px;
  font-family: "ivymode", sans-serif;
  font-size: 40px;
  color: #f7f5f2;
  font-weight: 400;
}
@media only screen and (max-width: 1200px) {
  .block-hero-video .block-body h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 890px) {
  .block-hero-video .block-body h1 {
    font-size: 30px;
  }
}
.block-hero-video .block-body .wrapper {
  opacity: 1;
  transition: opacity 2s ease-out;
}
.block-hero-video .block-body .wrapper.hidden {
  opacity: 0;
}
@media only screen and (max-width: 890px) {
  .block-hero-video .block-body .wrapper h1 {
    line-height: 24px;
    font-size: 16px;
  }
}
.block-hero-video .block-body .wrapper p {
  width: 50%;
}
@media only screen and (max-width: 890px) {
  .block-hero-video .block-body .wrapper p {
    width: 80%;
    line-height: 24px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 450px) {
  .block-hero-video .block-body .wrapper p {
    line-height: 20px;
    font-size: 12px;
  }
}
.block-hero-video .block-cta {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(38, 38, 37, 0.8);
  width: 100%;
  max-height: 0px;
  transition: max-height 1s ease-out;
  z-index: 30;
}
.block-hero-video .block-cta.active {
  max-height: 60px !important;
  font-size: 14px !important;
  text-align: center;
  line-height: 18px;
}
.block-hero-video .block-cta .link {
  color: #f7f5f2;
  font-weight: 300;
  margin: 7.5px;
}
@media only screen and (max-width: 460px) {
  .block-hero-video .block-cta .link {
    line-height: 18px;
    font-size: 12px !important;
  }
}

.block-info {
  overflow: hidden;
  background: linear-gradient(to right, #F7F5F2 80%, #8D8B7E 20%);
}
@media only screen and (max-width: 1000px) {
  .block-info .container {
    padding: 0px;
  }
}
@media only screen and (max-width: 1000px) {
  .block-info {
    background: linear-gradient(to bottom, #F7F5F2 80%, #8D8B7E 20%);
  }
}
.block-info .block-content {
  display: grid;
  grid-template-columns: 60% 40%;
  height: auto;
  gap: 2rem;
}
@media only screen and (max-width: 1000px) {
  .block-info .block-content {
    grid-template-columns: 1fr;
  }
}
.block-info h5 {
  padding-bottom: 1rem;
}
.block-info .col1 {
  padding: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media only screen and (max-width: 500px) {
  .block-info .col1 {
    flex-direction: column;
    text-align: center;
  }
}
@media only screen and (max-width: 500px) {
  .block-info .col1 .opening {
    padding-bottom: 3rem;
  }
}
.block-info .col1 a {
  color: #4c4c4c;
  font-weight: 300;
}
.block-info .col2 {
  position: relative;
  z-index: 1;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f7f5f2;
}
.block-info .col2 p {
  color: #f7f5f2;
  border-color: #f7f5f2;
  text-align: center;
}
.block-info .col2 a {
  color: #f7f5f2;
  border-color: #f7f5f2;
  text-align: center;
}
.block-info .col2 a:hover {
  color: #956b3d !important;
}
.block-info .col2 .btn-empty:hover {
  background-color: #F7F5F2;
}
.block-info .col2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 150%;
  height: 100%;
  background-color: #8D8B7E;
  border-top-left-radius: 250px;
  z-index: -1;
}
@media only screen and (max-width: 1000px) {
  .block-info .col2::before {
    left: 0;
    width: 100%;
    border-top-left-radius: 150px;
  }
}

.block-menu {
  position: relative;
  height: auto;
}
.block-menu .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: -2000;
}
.block-menu .bg1,
.block-menu .bg2 {
  width: 100%;
  height: 100%;
}
.block-menu .bg1 {
  background-color: transparent;
}
.block-menu .bg2 {
  background-color: #524C3F;
}
.block-menu .block-inner {
  padding: 0px;
}
.block-menu .block-content {
  background-color: #524C3F;
  border-top-left-radius: 300px;
  padding: 100px 60px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .block-menu .block-content {
    border-top-left-radius: 200px;
  }
}
@media only screen and (max-width: 450px) {
  .block-menu .block-content {
    padding: 80px 45px 45px 45px;
  }
}
.block-menu .wrapper {
  width: 60%;
}
@media only screen and (max-width: 1550px) {
  .block-menu .wrapper {
    width: 70%;
  }
}
@media only screen and (max-width: 1100px) {
  .block-menu .wrapper {
    width: 80%;
  }
}
@media only screen and (max-width: 900px) {
  .block-menu .wrapper {
    width: 90%;
  }
}
@media only screen and (max-width: 550px) {
  .block-menu .wrapper {
    width: 100%;
  }
}
.block-menu .wrapper h2 {
  color: #f7f5f2;
  text-align: center;
}

.swiper-basic {
  width: 100%;
  margin: 3rem auto;
  overflow: hidden; /* keep this so slides don’t overflow */
  position: relative; /* needed for the ::after overlay */
  /* fade overlay */
}
.swiper-basic .swiper-slide {
  text-align: center;
  padding: 8px;
  font-size: 1.2rem;
  color: #f7f5f2;
}
.swiper-basic::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px; /* adjust width of fade */
  height: 100%;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(to right, rgba(82, 76, 63, 0) 0%, rgb(82, 76, 63) 100%);
  /* 👆 replace 45,45,45 with your background color */
}

@media (min-width: 1100px) {
  .swiper-basic::after {
    display: none;
  }
}
.menu-body {
  margin-top: 6rem;
}
@media only screen and (max-width: 850px) {
  .menu-body {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 450px) {
  .menu-body {
    margin-top: 1rem;
  }
}
.menu-body .menu-section {
  margin-bottom: 3rem;
}
.menu-body .menu-section * {
  color: #f7f5f2;
}
.menu-body .menu-section .content-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 715px) {
  .menu-body .menu-section .content-item {
    align-items: flex-start;
  }
  .menu-body .menu-section .content-item .price-content {
    padding-top: 10px;
  }
}
.menu-body .menu-section .content-item .price-content {
  font-family: "filmotype-lucky", sans-serif;
  font-size: 18px;
}
.menu-body .menu-section h2 {
  text-align: left;
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f7f5f2;
  margin-bottom: 8px;
}
.menu-body .menu-section .text-content {
  padding: 0 50px 15px 0;
}
.menu-body .menu-section .menu-table {
  width: 100%;
  border-collapse: collapse;
}
.menu-body .menu-section .menu-table tr {
  vertical-align: top;
}
.menu-body .menu-section .menu-table td {
  padding: 0.4rem 0;
  color: #ffffff;
  font-size: 1rem;
}
.menu-body .menu-section .menu-table td:first-child {
  width: 80%;
}
.menu-body .menu-section .menu-table td.price {
  width: 20%;
  text-align: right;
  white-space: nowrap;
  font-style: italic;
  color: #d3d3d3;
}
.menu-body .menu-section .menu-table td em {
  display: block;
  font-size: 0.9rem;
  color: #aaaaaa;
  margin-top: 0.2rem;
  font-style: italic;
}
.menu-body .menu-note {
  font-style: italic;
  font-size: 0.9rem;
  color: #cccccc;
  margin-top: 2rem;
  line-height: 1.5;
}

.menu-tab {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; /* important! includes border in the height */
  font-weight: 300;
  background-color: rgba(247, 245, 242, 0.2);
}
@media only screen and (max-width: 450px) {
  .menu-tab {
    font-size: 16px;
  }
}

.menu-tab.active {
  border: 2px solid white;
  color: white;
  font-weight: 300;
}
@media only screen and (max-width: 450px) {
  .menu-tab.active {
    font-size: 16px;
  }
}

.menu-disclaimer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #f7f5f2;
  line-height: 1.5;
  text-align: center;
  font-weight: 300;
}

.background-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1300px) {
  .background-section {
    height: 70vh;
  }
}
@media only screen and (max-width: 950px) {
  .background-section {
    height: 60vh;
  }
}

.overlay-content {
  position: absolute;
  bottom: 100px;
  width: 100%;
  padding: 0 20px 0 0;
}

.hr-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.custom-hr {
  flex: 0 0 90%;
  border: none;
  height: 2px;
  background-color: #fff;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  .custom-hr {
    flex: 0 0 80%;
  }
}
@media only screen and (max-width: 500px) {
  .custom-hr {
    flex: 0 0 70%;
  }
}

.hr-logo {
  flex: 0 0 10%;
  max-height: 80px;
  object-fit: contain;
}

.block-gallery .block-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 16px); /* 3-column layout with gap compensation */
  box-sizing: border-box;
}

.gallery-item img {
  width: 100%;
  height: 800px;
  display: block;
  object-fit: cover;
}
@media (max-width: 900px) {
  .gallery-item img {
    width: 100%;
    height: 500px;
  }
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 900px) {
  .block-gallery .block-content {
    flex-direction: column;
  }
  .gallery-item {
    flex: 1 1 100%;
  }
}
.btn {
  max-width: 250px;
  border-radius: 0px;
  font-size: 0.9rem;
  margin: 1rem 0;
  padding: 0 1rem;
  font-weight: 400;
  display: grid;
  place-items: center;
  font-style: normal;
  letter-spacing: 1px;
  text-shadow: none;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}
@media only screen and (max-width: 768px) {
  .btn {
    font-size: 0.9rem;
  }
}

.btn-fill {
  width: 250px;
  color: #fff;
  border-color: #956b3d;
  background-color: #956b3d;
}
@media only screen and (max-width: 768px) {
  .btn-fill {
    width: 100%;
  }
}
.btn-fill:hover {
  background-color: #ba864d;
  border-color: #ba864d;
}

.btn-empty {
  width: 250px;
  color: #956b3d;
  border-color: #956b3d;
  background-color: transparent;
}
@media only screen and (max-width: 768px) {
  .btn-empty {
    width: 100%;
  }
}
.btn-empty:hover {
  background-color: #956b3d;
  border: 2px solid #956b3d;
  color: #f7f5f2 !important;
  transition: 0.5s ease-in-out;
}

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

.card {
  overflow: hidden;
}
.card .card-inner {
  text-decoration: none; /* Remove the underline */
  color: inherit; /* Make the link color same as the surrounding text */
  background-color: transparent; /* Remove any background color */
  cursor: pointer; /* Ensure it shows as a clickable item */
  border: none; /* Remove any borders */
  outline: none; /* Remove focus outline */
  padding: 0; /* Remove any padding */
  margin: 0; /* Remove any margin */
}

body img.gform_ajax_spinner {
  display: none !important;
}

.gform_fields input,
.gform_fields textarea {
  letter-spacing: 1px !important;
  font-size: 0.8rem !important;
  padding-left: 0.8rem !important;
  font-style: italic !important;
  font-weight: 300 !important;
  margin: 0 !important;
  box-shadow: 1px 2px 5px 1px rgba(182, 182, 182, 0.49);
}
.gform_fields select {
  padding-left: 0.8rem !important;
  margin: 0 !important;
  box-shadow: 1px 2px 5px 1px rgba(182, 182, 182, 0.49);
}
.gform_fields select {
  -webkit-appearance: listbox !important;
}
.gform_fields option {
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: 1px !important;
  font-size: 0.8rem !important;
}
.gform_fields .gf_placeholder {
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: 1px !important;
  font-size: 0.8rem !important;
}
.gform_fields input::placeholder {
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: 1px !important;
  font-size: 0.8rem !important;
}

body .gform_wrapper .gform_footer input[type=submit] {
  text-align: center !important;
  min-width: 300px !important;
  max-width: 400px !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  margin: 1rem 0 !important;
  padding: 0.5rem 2rem !important;
  font-weight: 400 !important;
  display: grid !important;
  place-items: center !important;
  font-style: normal !important;
  letter-spacing: 1px !important;
  text-shadow: none !important;
  transition: background-color 0.3s ease !important;
  border: 2px solid transparent !important;
  color: #fff !important;
  border-color: #956b3d !important;
  background-color: #956b3d !important;
}
body .gform_wrapper .gform_footer input[type=submit]:hover {
  background-color: #ba864d;
  border-color: #ba864d;
}
@media only screen and (max-width: 768px) {
  body .gform_wrapper .gform_footer input[type=submit] {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 768px) {
  body .gform_wrapper .gform_footer input[type=submit] {
    padding: 0.5rem 0.5rem;
    font-size: 0.75rem;
    width: 100%;
  }
}

.gform_wrapper label.gfield_label,
legend {
  letter-spacing: 1px;
  font-weight: 300 !important;
  font-size: 0.9rem !important;
}

.gform_wrapper.gravity-theme .gform_footer {
  justify-content: space-around !important;
}

.gform_wrapper .gfield_checkbox input[type=checkbox] {
  appearance: none; /* Remove default appearance */
  -webkit-appearance: none; /* For Safari */
  background: url("unchecked_checkbox_image_url") no-repeat center center;
  width: 15px; /* Custom width */
  height: 15px; /* Custom height */
  background-color: #fff;
}

.gform_wrapper .gfield_checkbox input[type=checkbox] {
  appearance: none; /* Hide default checkbox */
  -webkit-appearance: none; /* Hide default checkbox for Safari */
  background-color: #fff; /* Background color of the box */
  border: 2px solid #ddd; /* Border color of the box */
  padding: 8px 6px 8px 6px; /* Size of the box */
  display: inline-block;
  position: relative;
}

.gform_wrapper .gfield_checkbox input[type=checkbox]:checked::before {
  content: "✓"; /* Unicode checkmark symbol */
  position: absolute;
  top: -12px; /* Adjust these values based on your specific alignment needs */
  left: -1px; /* Adjust these values based on your specific alignment needs */
  color: #956b3d; /* Color of the checkmark */
  font-size: 30px; /* Size of the checkmark */
}

.nav-main {
  height: 8vh;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 5000;
  transition: background-color 0.3s ease;
}
.nav-main.scrolled {
  background-color: rgba(38, 38, 37, 0.8);
}
.nav-main .nav-inner {
  height: 100%;
}
.nav-main .nav-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-main .nav-content .nav-logo {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  .nav-main .nav-content .nav-logo {
    width: 50%;
  }
}
.nav-main .nav-content .nav-logo img {
  padding-top: 20px;
  height: 100%;
}

.bg-active {
  background-color: #524C3F;
}

.nav-footer {
  background-color: #262625;
}
.nav-footer .nav-content {
  padding: 60px 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
}
@media only screen and (max-width: 900px) {
  .nav-footer .nav-content {
    display: block;
  }
}
@media only screen and (max-width: 900px) {
  .nav-footer .nav-content .col {
    padding-bottom: 1rem;
  }
}
.nav-footer .nav-content .footer-message {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.nav-footer .nav-content .footer-message p {
  color: #f7f5f2;
  padding: 0 15px;
  font-weight: 300;
}
@media only screen and (max-width: 1100px) {
  .nav-footer .nav-content .footer-message p {
    text-align: left;
  }
}
@media only screen and (max-width: 900px) {
  .nav-footer .nav-content .footer-message p {
    padding-bottom: 30px;
    text-align: center;
    font-size: 14px;
  }
}
.nav-footer .nav-content .footer-message p a {
  color: #f7f5f2;
}
.nav-footer .nav-content .footer-logo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.nav-footer .nav-content .footer-logo img {
  max-height: 150px;
}
@media only screen and (max-width: 900px) {
  .nav-footer .nav-content .footer-logo {
    padding-bottom: 2rem;
  }
}
.nav-footer .nav-content .footer-cta {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.nav-footer .nav-content .footer-cta h5 {
  color: #f7f5f2;
  text-align: center;
  padding: 15px;
}
.nav-footer .nav-content .footer-cta ul .wrapper {
  display: flex;
  grid-gap: 2rem;
}
.nav-footer .nav-content .footer-cta li {
  list-style: none;
}
.nav-footer .nav-content .footer-cta li img {
  width: 35px;
  height: auto;
}

.sub-footer {
  background-color: #262625;
}
.sub-footer p {
  color: #f7f5f2;
  text-align: center;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-weight: 300;
}
@media only screen and (max-width: 550px) {
  .sub-footer p {
    width: 80%;
    margin: 0 auto;
  }
}
.sub-footer p a {
  color: #f7f5f2;
}

.container {
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
  overflow: hidden;
}

.w-10 {
  max-width: 10%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-20 {
  max-width: 20%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-30 {
  max-width: 30%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-40 {
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-50 {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-60 {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-70 {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-80 {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-90 {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-100 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.wp-block-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 450px) {
  .wp-block-column {
    gap: 1rem;
  }
}

.w-70 {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media only screen and (max-width: 768px) {
  .w-70 {
    max-width: 80%;
  }
}
@media only screen and (max-width: 450px) {
  .w-70 {
    max-width: 90%;
  }
}

.has-text-align-center {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 780px) {
  .spacer {
    height: 2rem !important;
  }
}

.page-404 {
  padding-top: 100px;
}
.page-404 .page-body-inner {
  border-top-left-radius: 300px;
}
@media only screen and (max-width: 768px) {
  .page-404 .page-body-inner {
    border-top-left-radius: 250px;
  }
}
.page-404 .page-content {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 3rem;
}
.page-404 .page-content .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body {
  font-family: "circe", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  color: #4c4c4c;
  text-align: justify;
}

h1 {
  font-family: "circe", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #000000;
  font-style: regular;
}
@media only screen and (max-width: 1100px) {
  h1 {
    font-size: 1.4rem !important;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 1.1rem !important;
    line-height: 2.1rem;
  }
}

h2 {
  padding-bottom: 15px;
  font-family: "circe", sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  font-size: 28px;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 28px;
    line-height: 32px;
  }
}

h3 {
  font-family: "circe", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #4c4c4c;
  font-style: normal;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 0.8rem;
    line-height: 30px;
  }
}

p {
  font-weight: 300;
  line-height: 40px;
  font-size: 16px;
  font-style: normal;
  color: #4c4c4c;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 1000px) {
  p {
    line-height: 35px;
  }
}

strong {
  font-weight: 600;
}

a {
  font-family: "circe", sans-serif;
  font-weight: 600;
  line-height: 35px;
  color: #956b3d;
  font-size: inherit;
  letter-spacing: 0.5px;
}

em {
  font-style: italic;
}

ul {
  display: block;
}

li {
  font-weight: 300;
  line-height: 26px;
  font-style: normal;
  list-style-position: inside;
  list-style-type: disc;
  color: #4c4c4c;
  letter-spacing: 0.5px;
}

.detail-font {
  font-family: "filmotype-lucky", sans-serif;
  font-size: 20px;
}

/*# sourceMappingURL=bbr.css.map */
