@font-face {
  font-family: Dima Sina;
  src: url('../fonts/dima-sina.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mizanar Lt;
  src: url('../fonts/MizanAR-LT-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mizanar Lt;
  src: url('../fonts/MizanAR-LT-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --text-color--text-primary: #001c1799;
  --text-color--text-secondary: var(--base-color-brand--green);
  --link-color--link-primary: #001c1799;
  --background-color--background-primary: var(--base-color-brand--orange-light);
  --background-color--background-green: var(--base-color-brand--green);
  --border-color--border-alternate: var(--base-color-brand--orange);
  --text-color--text-alternate: var(--base-color-brand--white);
  --link-color--link-secondary: var(--base-color-brand--green);
  --border-color--border-primary: var(--base-color-brand--white);
  --link-color--link-alternate: var(--base-color-brand--white);
  --base-color-brand--orange-light: #f9efe6;
  --base-color-brand--green: #5bafaa;
  --base-color-brand--black: black;
  --base-color-brand--orange: #e40008;
  --background-color--background-alternate: var(--base-color-brand--white);
  --base-color-brand--green-light: #ebfffc;
  --base-color-brand--white: #fff;
  --text-color--text-orange: var(--base-color-brand--orange);
  --base-color-brand--white-60: #fff9;
  --background-color--background-secondary: var(--base-color-brand--green-light);
  --border-color--border-secondary: var(--base-color-brand--green);
  --link-color--link-orange: var(--base-color-brand--orange);
  --link-color--link-white-60: var(--base-color-brand--white-60);
  --text-color--text-white-60: var(--base-color-brand--white-60);
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--text-color--text-primary);
  font-family: Lato, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}

h1 {
  color: var(--text-color--text-secondary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Sansita, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
}

h2 {
  color: var(--text-color--text-secondary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Sansita, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.5rem;
}

h3 {
  color: var(--text-color--text-secondary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Sansita, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}

h4 {
  color: var(--text-color--text-secondary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Sansita, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.875rem;
}

h5 {
  color: var(--text-color--text-secondary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Sansita, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375rem;
}

h6 {
  color: var(--text-color--text-secondary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Sansita, sans-serif;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.25rem;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--link-color--link-primary);
  transition: color .25s;
}

a:hover {
  color: var(--text-color--text-secondary);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page-component {
  background-color: var(--background-color--background-primary);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--background-color--background-green);
  text-align: center;
  border-radius: 1.875rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 30rem;
  margin-bottom: 0;
  padding: 2rem;
  display: flex;
}

.utility-page-wrapper.is-404 {
  background-color: #0000;
  max-width: none;
}

.utility-page-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page-image {
  margin-left: auto;
  margin-right: auto;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.heading-style-h3 {
  color: var(--text-color--text-secondary);
  font-family: Sansita, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.heading-style-h1 {
  color: var(--text-color--text-secondary);
  font-family: Sansita, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
}

.heading-style-h1.text-align-left {
  color: var(--border-color--border-alternate);
  text-align: right;
  font-family: Dima Sina, Arial, sans-serif;
  font-size: 2.9rem;
  font-weight: 400;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-section-small {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

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

.text-size-regular {
  color: #000;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
}

.text-size-regular.text-color-orange.hide-mobile-landscape {
  color: var(--link-color--link-secondary);
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.text-align-left {
  text-align: left;
}

.form-input {
  border: 1px solid var(--border-color--border-primary);
  color: var(--text-color--text-alternate);
  background-color: #0000;
  border-radius: 2.3125rem;
  min-height: 52px;
  margin-bottom: 1.25rem;
  padding: .9375rem 1.25rem;
  font-size: 1rem;
}

.form-input:active {
  border-color: var(--border-color--border-alternate);
}

.form-input:focus {
  border-style: solid;
  border-color: var(--border-color--border-alternate);
}

.form-input:focus-visible, .form-input[data-wf-focus-visible] {
  border-color: var(--border-color--border-alternate);
}

.form-input::placeholder {
  color: var(--link-color--link-alternate);
  font-size: 1.125rem;
  line-height: 1.375rem;
}

.heading-style-h2 {
  color: var(--text-color--text-secondary);
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 3.5rem;
}

.form_message-error {
  background-color: var(--base-color-brand--orange-light);
  color: var(--text-color--text-secondary);
  margin-top: .75rem;
  padding: .75rem;
}

.button {
  border: 1px solid var(--background-color--background-green);
  background-color: var(--base-color-brand--green);
  color: var(--base-color-brand--black);
  text-align: center;
  border-radius: 2.3125rem;
  padding: 1.1rem 2.5rem;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.875rem;
  transition: color .25s, background-color .25s;
}

.button:hover {
  border-color: var(--background-color--background-green);
  background-color: var(--base-color-brand--black);
  color: var(--base-color-brand--green);
}

.button.w--current {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.padding-section-medium {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.container-medium {
  width: 100%;
  max-width: 73.125rem;
  margin-left: auto;
  margin-right: auto;
}

.nav_brand.w--current {
  padding-left: 0;
}

.nav_logo {
  width: 100px;
}

.nav_menu_link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--base-color-brand--green);
  justify-content: flex-start;
  align-items: center;
  padding: 0 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
}

.nav_menu_link:hover {
  color: var(--background-color--background-green);
  text-decoration: underline;
}

.hero-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  width: 100%;
  max-width: 550px;
  display: flex;
  position: relative;
}

.hero_image {
  object-fit: contain;
  object-position: 50% 50%;
  border-top-left-radius: 14.875rem;
  border-top-right-radius: 14.875rem;
  width: 100%;
  height: 100%;
  margin-top: 0;
  position: absolute;
  inset: 0%;
}

.section-hero {
  background-color: var(--background-color--background-primary);
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.section-hero.padding-section-medium {
  border-bottom: 0px none var(--base-color-brand--orange);
  padding-top: 8rem;
  padding-bottom: 5.0625rem;
  position: relative;
}

.hero-grid {
  grid-column-gap: 11.5625rem;
  grid-row-gap: 11.5625rem;
  grid-template-rows: auto;
  grid-template-columns: 1.3fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.common-heading-wrap {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 25.0625rem;
  height: 100%;
  padding-top: 28.5rem;
  position: relative;
}

.featured-wrapper {
  grid-column-gap: 8.25rem;
  grid-row-gap: 8.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.featured-wrapper.is-horizontal {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: wrap;
  justify-content: center;
  place-items: center stretch;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.featured-wrapper.is-vertical {
  grid-template-columns: 1fr 1fr;
}

.featured-icon.horizontal-one {
  width: 34px;
}

.featured-content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.featured-item {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: .84375rem;
  padding-right: .84375rem;
  display: flex;
}

.featured-item.is-horizontal {
  flex-flow: row;
  flex: 1;
  padding-left: 0;
  padding-right: 0;
}

.social-icon {
  filter: invert();
  width: 20px;
  height: 20px;
  position: absolute;
}

.section-our-menu {
  background-color: var(--background-color--background-alternate);
  position: relative;
}

.section-our-menu.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.menu-list-wrapper {
  grid-column-gap: 3.125rem;
  grid-row-gap: 3.125rem;
  grid-template: "."
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  display: block;
}

.section-booking-form {
  background-color: var(--base-color-brand--green);
  color: var(--text-color--text-secondary);
  position: relative;
}

.section-booking-form.padding-section-medium {
  padding-top: 0;
  padding-bottom: 1rem;
}

.social-bar-wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-icon-wrap {
  background-color: var(--base-color-brand--white);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .25s;
  display: flex;
  position: relative;
}

.common-grid-one-col {
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

.image {
  color: var(--border-color--border-alternate);
}

.featured-text-wrap {
  text-align: center;
  flex-flow: column;
  display: flex;
}

.featured-text-wrap.is-max-width {
  max-width: 14.6875rem;
}

.section-featured.padding-section-medium {
  background-color: var(--base-color-brand--orange-light);
}

.featured-icon-wrap {
  background-color: var(--base-color-brand--green);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 80px;
  height: 100%;
  min-height: 76px;
  max-height: 80px;
  display: flex;
}

.social-icon-alternate {
  opacity: 0;
  filter: invert();
  width: 20px;
  height: 20px;
  position: absolute;
}

.header {
  z-index: 9999;
  width: 100%;
  position: fixed;
}

.header.padding-section-small {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.header-wrapper {
  justify-content: space-between;
  display: flex;
}

.heading {
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 20rem;
  line-height: .8;
}

.three-column-horizontal-comp {
  font-family: Mizanar Lt, Arial, sans-serif;
  font-weight: 700;
}

.field-label-2 {
  color: #fff;
  margin-bottom: 10px;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.radio-button-label-2 {
  line-height: 1.5;
  display: none;
}

.heading-29 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 1rem;
  line-height: 3.3rem;
}

.div-block-155 {
  margin-top: 5px;
}

.radio-button {
  opacity: 0;
  cursor: pointer;
  margin-top: 5px;
  margin-left: 0;
}

.error-message-2 {
/*   background-color: #dad7d412;
  border-radius: 14px;
  margin-top: 20px;
  padding: 20px;
  font-family: Mizanar Lt, Arial, sans-serif; */
}

.radio-button-field {
  grid-column-gap: 0vw;
  grid-row-gap: 0vw;
  cursor: pointer;
  border: 1px solid #fff;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.div-block-157 {
  border: 1px solid #fff;
}

.paragraph {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
}

.select-field {
  background-color: var(--base-color-brand--green);
  border: 1px solid #fff;
  border-radius: 5px;
  height: 42px;
  margin-bottom: 0;
  padding: 0 10px;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 1.2rem;
}

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

.submit-button-2 {
  color: #000;
  background-color: #fff;
  border: 1px #f4bd03;
  border-radius: 100px;
  margin-top: 20px;
  padding: 22px 45px;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
}

.submit-button-2:hover {
  background-color: var(--base-color-brand--black);
  color: var(--base-color-brand--green);
  font-family: Mizanar Lt, Arial, sans-serif;
}

.form-block-3 {
  width: 100%;
  max-width: 680px;
  margin-top: 2vh;
  margin-bottom: 0;
}

.grid-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.heading-28 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 3rem;
}

.div-block-156 {
  border: 1px solid #fff;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.headingdown {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.7rem;
}

.customclass {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
}

.div-block-148 {
  grid-column-gap: 1.5vw;
  grid-row-gap: 1.5vw;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60vw;
  display: flex;
}

.text-field-3 {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 42px;
  margin-bottom: 0;
  padding: 5px 10px;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field-3:focus {
  border-width: 1px;
  border-color: #000;
}

.text-field-3::placeholder {
  color: #dad7d480;
  font-size: 17px;
}

.div-block-158 {
  border: 1px solid #fff;
}

.success-message-3 {
  background-color: #dad7d429;
  border-radius: 14px;
  padding: 20px;
}

.text-message {
  color: var(--base-color-brand--white);
  font-family: Mizanar Lt, Arial, sans-serif;
  font-weight: 500;
}

.menu-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.menu-item-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.paragraph-2 {
  color: #585858;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.paragraph-2.small-paragraph {
  color: #33333380;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.menus-tab {
  grid-column-gap: 80px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.price {
  color: #333;
  font-size: 40px;
  line-height: 1;
}

.tabs-menu {
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.list {
  grid-row-gap: 31px;
  flex-direction: column;
  display: flex;
}

.menu-detail {
  flex: 1;
}

.menu-detail.margin-left-right-40px {
  margin-left: 40px;
  margin-right: 40px;
}

.image-container.width-200px {
  width: 200px;
}

.tab-link-3 {
  flex-direction: row;
  align-items: center;
  height: 60px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

.menu-price {
  display: flex;
}

.menu-image-2 {
  border-radius: 5px;
}

.tab-link-3 {
  background-color: var(--base-color-brand--orange-light);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tab-link-3:hover {
  background-color: var(--base-color-brand--green);
  color: var(--base-color-brand--black);
}

.tab-link-3.w--current {
  background-color: var(--base-color-brand--green);
  border-radius: 0;
}

.tab-link-3.last {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.tab-link-3.first.w--current {
  color: #000;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.tab-link-3.first.w--current:hover {
  color: #000;
}

.text-block {
  font-family: Mizanar Lt, Arial, sans-serif;
}

.footer-subscribe {
  border-bottom: 1px #e4ebf3;
  padding: 0 30px;
  position: relative;
}

.footer-wrapper-three {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-block-2 {
  font-family: Mizanar Lt, Arial, sans-serif;
}

.footer-dark {
  background-color: var(--base-color-brand--green);
  border-bottom: 1px solid #e4ebf3;
  padding: 0 30px;
  position: relative;
}

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

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-copyright-center {
  color: var(--base-color-brand--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Mizanar Lt, Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.image-2 {
  width: 150px;
}

@media screen and (min-width: 1440px) {
  .text-size-regular {
    color: #000;
    font-size: 1.4rem;
  }

  .text-size-regular.text-color-orange.hide-mobile-landscape {
    color: var(--link-color--link-secondary);
  }

  .button {
    border-color: var(--base-color-brand--green);
    background-color: var(--base-color-brand--green);
    color: var(--base-color-brand--black);
  }

  .button:hover {
    background-color: var(--base-color-brand--black);
    color: var(--base-color-brand--green);
  }

  .nav_logo {
    width: 130px;
  }

  .nav_menu_link, .nav_menu_link:hover {
    color: var(--background-color--background-green);
  }

  .section-hero.padding-section-medium {
    padding-top: 10rem;
  }

  .section-our-menu.padding-section-medium {
    background-color: var(--base-color-brand--green-light);
  }

  .social-icon-wrap {
    width: 51px;
    height: 51px;
  }

  .featured-icon-wrap {
    background-color: var(--base-color-brand--green);
  }

  .radio-button-label-2 {
    margin-bottom: 0;
  }

  .radio-button {
    margin-top: 5px;
  }

  .radio-button-field {
    justify-content: center;
    align-items: center;
  }

  .submit-button-2 {
    font-family: Mizanar Lt, Arial, sans-serif;
  }

  .form-block-3 {
    max-width: 800px;
  }

  .container-2 {
    max-width: none;
  }

  .footer-wrapper {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-copyright-center {
    margin-bottom: 10px;
  }

  .image-2 {
    width: 200px;
  }
}

@media screen and (max-width: 991px) {
  h1, .heading-style-h1 {
    font-size: 2.625rem;
    line-height: 2.625rem;
  }

  .heading-style-h1.text-align-left {
    text-align: right;
    font-size: 2.6rem;
    line-height: 3.6rem;
  }

  .text-size-regular {
    text-align: right;
  }

  .text-size-regular.text-color-orange.hide-mobile-landscape {
    font-size: 1rem;
  }

  .max-width-medium {
    text-align: center;
    max-width: none;
  }

  .text-align-left {
    text-align: left;
  }

  .button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .nav_logo {
    width: 80px;
  }

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

  .hero-content {
    text-align: right;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
  }

  .section-hero.padding-section-medium {
    padding-top: 12rem;
  }

  .hero-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
  }

  .hero-image-wrapper {
    order: -1;
    display: none;
  }

  .featured-wrapper.is-horizontal {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .featured-wrapper.is-vertical {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .featured-content {
    text-align: center;
  }

  .social-icon {
    width: 17px;
    height: 17px;
  }

  .menu-list-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: ".";
    place-items: center;
  }

  .social-icon-wrap {
    width: 35px;
    height: 35px;
  }

  .common-grid-one-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .image {
    width: 22px;
  }

  .social-icon-alternate {
    width: 17px;
    height: 17px;
  }

  .field-label-2 {
    font-size: 1.1rem;
  }

  .heading-29 {
    font-size: 1rem;
    line-height: 2.5rem;
  }

  .paragraph {
    font-size: 1.2rem;
  }

  .select-field {
    font-size: 1.1rem;
  }

  .submit-button-2 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .heading-28 {
    font-size: 1.2rem;
  }

  .headingdown {
    font-size: 1.5rem;
  }

  .div-block-148 {
    width: 74vw;
  }

  .text-field-3 {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem;
  }

  .footer-subscribe {
    padding-bottom: 0;
  }

  .footer-wrapper-three {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-dark {
    padding-top: 40px;
  }

  .container-2 {
    max-width: 728px;
  }

  .footer-divider {
    margin-top: 20px;
  }

  .image-2 {
    width: 140px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }

  h4 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  h6 {
    font-size: .875rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .heading-style-h1.text-align-left {
    font-size: 2rem;
    line-height: 3.7rem;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .text-size-regular.text-color-orange.hide-mobile-landscape {
    display: block;
  }

  .max-width-medium.max-width-tablet {
    max-width: 94%;
  }

  .text-align-left {
    text-align: left;
  }

  .form-input {
    min-height: 54px;
  }

  .form-input::placeholder {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .button {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .nav_logo {
    width: 71%;
    max-width: 7.125rem;
  }

  .nav_menu_link {
    padding-left: 0;
    padding-right: 0;
    font-size: 1rem;
  }

  .hero-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-items: center;
  }

  .section-hero.padding-section-medium {
    padding-top: 8.5rem;
    padding-bottom: 3rem;
  }

  .hero-grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    grid-template-columns: 1.3fr;
    justify-content: flex-start;
    place-items: center;
  }

  .common-heading-wrap {
    justify-content: center;
    align-items: center;
  }

  .hero-image-wrapper {
    justify-content: center;
    align-items: center;
    display: none;
  }

  .featured-wrapper {
    grid-template-columns: 1fr;
  }

  .featured-wrapper.is-horizontal {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .featured-icon.vertical-first, .featured-icon.vertical-second {
    max-width: 1.875rem;
  }

  .featured-icon.horizontal-one, .featured-icon.horizontal-two {
    max-width: 2.5rem;
  }

  .featured-icon.horizontal-third {
    max-width: 1.6875rem;
  }

  .featured-content {
    text-align: left;
  }

  .featured-item.is-horizontal {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .menu-list-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .common-grid-one-col {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .featured-icon-wrap {
    max-width: 60px;
    min-height: 60px;
  }

  .header.padding-section-small {
    background-color: var(--base-color-brand--orange-light);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .heading {
    font-size: 15rem;
  }

  .field-label-2, .select-field {
    font-size: 1rem;
  }

  .submit-button-2 {
    font-size: 16px;
  }

  .heading-28 {
    margin-top: 0;
    font-size: 1.1rem;
  }

  .headingdown {
    font-size: 1.3rem;
  }

  .customclass {
    padding-left: 2vh;
    padding-right: 2vh;
  }

  .div-block-148 {
    width: 84vw;
  }

  .paragraph-2 {
    line-height: 1.4em;
  }

  .paragraph-2.small-paragraph {
    font-size: 14px;
  }

  .menus-tab {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .tabs-menu {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-subscribe {
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .footer-wrapper {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .footer-divider {
    margin-top: 20px;
  }
}

@media screen and (max-width: 479px) {
  .utility-page-wrapper.is-404 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-style-h1.text-align-left {
    font-size: 1.4rem;
    line-height: 3.5rem;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-size-regular {
    font-size: .9rem;
  }

  .max-width-medium.max-width-tablet {
    max-width: 100%;
  }

  .text-align-left {
    text-align: left;
  }

  .button {
    padding: .7rem 1rem;
    font-size: 1rem;
  }

  .nav_logo {
    width: 50%;
  }

  .nav_menu_link {
    line-height: 1.1rem;
  }

  .section-hero.padding-section-medium {
    padding-top: 8.1rem;
  }

  .hero-image-wrapper {
    max-width: 21.4375rem;
    padding-top: 24.375rem;
  }

  .featured-wrapper.is-vertical {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
  }

  .social-icon {
    width: 15px;
    height: 15px;
  }

  .section-booking-form.padding-section-medium {
    padding-bottom: 1.25rem;
  }

  .social-icon-wrap {
    width: 30px;
    height: 30px;
  }

  .image {
    width: 24px;
  }

  .social-icon-alternate {
    width: 20px;
    height: 20px;
  }

  .header.padding-section-small {
    background-color: #f9efe600;
    padding-bottom: 1rem;
  }

  .heading {
    font-size: 10rem;
  }

  .three-column-vertical-comp, .three-column-horizontal-comp {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .field-label-2 {
    font-size: .8rem;
  }

  .radio-button-label-2 {
    font-size: 70%;
  }

  .heading-29 {
    padding: 10px 5px;
    font-size: 14px;
    line-height: 100%;
  }

  .radio-button {
    margin-top: 1px;
  }

  .radio-button-field {
    justify-content: center;
    align-items: center;
  }

  .paragraph {
    font-size: 20px;
  }

  .select-field {
    height: 33px;
    font-size: .9rem;
  }

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

  .submit-button-2 {
    margin-top: 20px;
    font-size: 13px;
  }

  .heading-28 {
    font-size: .9rem;
    line-height: 3rem;
  }

  .headingdown {
    font-size: 1rem;
    line-height: 2.5rem;
  }

  .customclass {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .div-block-148 {
    width: auto;
  }

  .text-field-3 {
    height: 33px;
    font-size: .8rem;
  }

  .menu-item-2 {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

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

  .menu-detail.margin-left-right-40px {
    margin: 20px 0;
  }

  .image-container.width-200px {
    width: auto;
  }

  .tab-link-3 {
    justify-content: center;
  }

  .footer-subscribe {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-dark {
    padding-top: 30px;
  }

  .container-2 {
    max-width: none;
  }

  .footer-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .footer-divider {
    margin-top: 20px;
  }

  .image-2 {
    width: 100px;
  }
}

#w-node-a4dba64d-cd09-77a1-6e70-46a6f75cbee5-8acc528d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a4dba64d-cd09-77a1-6e70-46a6f75cbee7-8acc528d {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a4dba64d-cd09-77a1-6e70-46a6f75cbef4-8acc528d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a473-336bf70b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a47b-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a47e-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a482-336bf70b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a486-336bf70b, #Place.w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a489-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a48a-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a48d-336bf70b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a4a2-336bf70b {
  place-self: center;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a4a6-336bf70b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a540-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a543-336bf70b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a55c-336bf70b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a624-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a627-336bf70b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a640-336bf70b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a695-336bf70b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a698-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a69c-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a6a0-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a6a4-336bf70b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a6a8-336bf70b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

@media screen and (max-width: 767px) {
  #w-node-_3fd3635c-3b78-10a2-9e5c-ff415deec5f3-8acc528d {
    order: -9999;
  }

  #w-node-a4dba64d-cd09-77a1-6e70-46a6f75cbef4-8acc528d {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a476-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a47a-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a47e-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a482-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a698-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a69c-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a6a0-336bf70b, #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a6a4-336bf70b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8a836eeb-afba-7ed1-9eb1-03a084b7a6a8-336bf70b {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }
}


@font-face {
  font-family: 'Dima Sina';
  src: url('../fonts/dima-sina.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mizanar Lt';
  src: url('../fonts/MizanAR-LT-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mizanar Lt';
  src: url('../fonts/MizanAR-LT-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mizanar Lt';
  src: url('../fonts/MizanAR-LT-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
