:root {
  --neutral--black-800: #27262b;
  --font--paragraph-font: "DM Sans", sans-serif;
  --neutral--gray-200: #8e8d94;
  --font--heading-font: Rajdhani, sans-serif;
  --neutral--white-100: #f4f3f5;
  --neutral--black-700: #201f22;
  --primary--button: #ff8e00;
  --neutral--blue-600: #46454b;
}

.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(--neutral--black-800);
  font-family: var(--font--paragraph-font);
  color: var(--neutral--gray-200);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

h1 {
  font-family: var(--font--heading-font);
  color: var(--neutral--white-100);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.875rem;
  font-weight: 700;
  line-height: 5.375rem;
}

h2 {
  font-family: var(--font--heading-font);
  color: var(--neutral--white-100);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 4rem;
}

h3 {
  font-family: var(--font--heading-font);
  color: var(--neutral--white-100);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
}

h4 {
  font-family: var(--font--heading-font);
  color: var(--neutral--white-100);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}

h5 {
  font-family: var(--font--heading-font);
  color: var(--neutral--white-100);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}

h6 {
  font-family: var(--font--heading-font);
  color: var(--neutral--white-100);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.625rem;
}

p {
  margin-bottom: 0;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

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

.utility-page-content {
  background-color: var(--neutral--black-700);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 75rem;
  height: 25.375rem;
  display: flex;
}

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

.padding-section-large {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.padding-section-large.padding-top-medium {
  padding-top: 2.5rem;
}

.padding-section-large.is-header {
  padding-top: 6.25rem;
}

.note-wrapper {
  background-color: var(--neutral--black-700);
  padding: 1.5rem 1.625rem;
}

.button {
  border: .0625rem solid var(--primary--button);
  background-color: var(--primary--button);
  font-family: var(--font--paragraph-font);
  color: var(--neutral--black-800);
  margin-bottom: 0;
  padding: .75rem 1.875rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
  transition: color .3s, border-color .4s, background-color .4s;
}

.button:hover {
  background-color: var(--neutral--black-800);
  color: var(--primary--button);
}

.button.is-footer {
  margin-left: -9.375rem;
}

.button.is-contact {
  z-index: 4;
  margin-top: 26px;
  position: relative;
}

.button.is-secondary {
  grid-row-gap: .3125rem;
  color: var(--primary--button);
  background-color: #0000;
  border-style: none;
  flex-flow: column;
  padding: 0;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.style-guide-menu {
  grid-row-gap: 1.25rem;
  border: .0625rem solid var(--neutral--blue-600);
  background-color: var(--neutral--black-800);
  flex-direction: column;
  padding: 1.875rem;
  display: flex;
  position: sticky;
  top: .9375rem;
}

.style-guide-color-wrapper {
  min-height: 7.875rem;
}

.style-guide-color-wrapper.is-black-800 {
  background-color: #1e1e2f;
}

.style-guide-color-wrapper.is-white-100 {
  background-color: var(--neutral--white-100);
  border: .0625rem solid #ededed;
}

.style-guide-color-wrapper.is-black-800 {
  border: .0625rem solid var(--neutral--black-700);
  background-color: var(--neutral--black-800);
}

.style-guide-color-wrapper.is-blue-600 {
  background-color: var(--neutral--blue-600);
}

.style-guide-color-wrapper.is-gray-200 {
  background-color: var(--neutral--gray-200);
}

.style-guide-color-wrapper.is-button {
  background-color: var(--primary--button);
  border: .0625rem solid #ededed;
}

.style-guide-heading-wrapper {
  background-color: var(--neutral--black-700);
  justify-content: center;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
}

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

.container-large.is-headline {
  border-bottom: .0625rem solid var(--neutral--blue-600);
}

.style-guide-menu-link-item {
  font-family: var(--font--paragraph-font);
  color: var(--neutral--gray-200);
  padding: .5rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-decoration: none;
  position: static;
}

.style-guide-menu-link-item.w--current {
  background-color: var(--neutral--black-700);
  font-family: var(--font--paragraph-font);
  color: #ededed;
  border-radius: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.margin-bottom {
  margin: 0;
}

.margin-bottom.margin-large {
  margin-bottom: 2.25rem;
}

.margin-bottom.margin-xxsmall {
  margin-bottom: .75rem;
}

.margin-bottom.margin-xsmall {
  margin-bottom: 1.25rem;
}

.button-row {
  grid-column-gap: 1.25rem;
  align-items: center;
  display: flex;
}

.button-row.align-center {
  justify-content: center;
}

.style-guide-content-wrapper {
  border: .0625rem solid var(--neutral--blue-600);
  background-color: var(--neutral--black-800);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.heading-style-h6.text-color-gray-200 {
  color: var(--neutral--gray-200);
}

.style-guide-content {
  background-color: #f8f8f8;
  justify-content: center;
  align-items: center;
  padding-top: .625rem;
  padding-bottom: .625rem;
  display: flex;
}

.padding-bottom {
  width: 100%;
  padding: 0;
}

.padding-bottom.padding-large {
  padding-bottom: 5rem;
}

.padding-bottom.padding-medium {
  padding-bottom: 2.5rem;
}

.padding-bottom.padding-small {
  padding-bottom: 1.875rem;
}

.text-size-regular {
  font-family: var(--font--paragraph-font);
  color: var(--neutral--gray-200);
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.text-size-regular.text-color-is-white-100 {
  color: var(--neutral--white-100);
}

.text-size-regular.text-color-orange {
  color: var(--primary--button);
}

.text-size-regular.text-color-white {
  color: #fff;
}

.text-size-regular.grey2 {
  color: var(--neutral--blue-600);
}

.text-size-regular.testi-content-black {
  color: var(--neutral--black-700);
}

.divider {
  background-color: #2c2c42;
  width: 100%;
  height: .0625rem;
}

.divider.color-gray {
  border: .0625rem solid var(--neutral--blue-600);
}

.padding-global {
  z-index: 200;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}

.padding-global.white_bg {
  background-color: #ececec;
  background-image: none;
  background-size: auto;
}

.padding-global.head-top {
  background-color: #292929;
}

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

.style-guide-content-item {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.style-guide-content-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.85rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.style-guide-content-layout {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 16.1875rem 57rem;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-size-small {
  font-family: var(--font--paragraph-font);
  color: var(--neutral--white-100);
  white-space: normal;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.375rem;
}

.text-size-small.text-color-gray-200 {
  color: var(--neutral--gray-200);
}

.heading-style-h3.is-service {
  flex: none;
}

.heading-style-h3.black {
  color: var(--neutral--black-800);
}

.heading-style-h1.custo {
  text-transform: capitalize;
  text-shadow: 1px 4px 2px #000000b5;
  margin-left: 10px;
  margin-right: 10px;
  font-family: Dynalight, sans-serif;
  font-weight: 300;
}

.heading-style-h1.custo.gold {
  color: var(--primary--button);
  text-transform: none;
  margin-left: 20px;
  margin-right: 20px;
  font-family: Great Vibes, cursive;
  font-size: 7rem;
  line-height: 9rem;
}

.heading-style-h2.text-color-orange {
  color: var(--primary--button);
  flex: none;
}

.heading-style-h2.is-contact, .heading-style-h2.is-grow {
  flex: none;
}

.heading-style-h2.black {
  color: var(--neutral--blue-600);
}

.heading-style-h5.is-about {
  color: var(--neutral--gray-200);
  flex: none;
}

.heading-style-h5.grey2 {
  color: var(--neutral--blue-600);
}

.license-content-wrapper {
  grid-row-gap: 1.25rem;
  background-color: var(--neutral--black-700);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1.875rem;
  display: flex;
}

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

.license-image {
  width: 100%;
  display: flex;
}

.license-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.license-link {
  color: var(--neutral--gray-200);
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline;
}

.license-text-wrapper {
  max-width: 57.0625rem;
}

.license-photography-field-wrapper {
  max-width: 54.3125rem;
}

.license-icon-field-wrapper {
  max-width: 51.875rem;
}

.section-change-log {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.change-log-component {
  background-color: var(--neutral--black-700);
}

.change-log-content {
  grid-row-gap: 1.25rem;
  border-radius: .625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 49.375rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  display: flex;
}

.change-log-top-content {
  background-color: var(--neutral--black-800);
  padding: .75rem 1.875rem;
}

.field-label {
  display: none;
}

.password-input-field-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  height: 2.5rem;
  display: flex;
}

.password-input {
  background-color: var(--neutral--black-800);
  width: 18.0625rem;
  height: 2.5rem;
  font-family: var(--font--paragraph-font);
  border: .0625rem solid #0000;
  margin-bottom: 0;
  padding: .5625rem 1.25rem;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.375rem;
}

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

._404-container-large {
  background-color: var(--neutral--black-700);
  width: 60rem;
  height: 29.625rem;
  margin-left: auto;
  margin-right: auto;
}

._404-component {
  flex-direction: column;
  align-items: center;
  max-width: 49.4375rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  display: flex;
}

.headline-component {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.headline-right-content {
  grid-column-gap: 1.25rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.headline-call {
  grid-column-gap: .875rem;
  color: var(--neutral--white-100);
  text-decoration: none;
  display: flex;
}

.headline-line {
  background-color: var(--neutral--blue-600);
  width: .0625rem;
  height: 3.9375rem;
}

.headline-social-icon-wrapper {
  grid-column-gap: .9375rem;
  display: flex;
}

.section-navbar {
  background-color: #00000045;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.nav-container {
  border-bottom: .0625rem none var(--neutral--blue-600);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
  display: flex;
}

.nav-brand-logo {
  max-width: 185px;
  margin-top: -20px;
  margin-bottom: -10px;
}

.nav-menu {
  grid-column-gap: 1.875rem;
  display: flex;
}

.nav-link {
  color: var(--neutral--gray-200);
  padding: .625rem;
  font-weight: 500;
  line-height: 1rem;
}

.nav-link.w--current {
  color: var(--primary--button);
}

.section-hero {
  background-color: #ececec;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  height: 100vh;
  margin-top: -81px;
  padding-top: 14.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.hero-component {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.hero-top-content {
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 50.375rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button-line {
  background-color: var(--primary--button);
  width: 100%;
  height: .0625rem;
  transform: translate(-101%);
}

.section-about {
  z-index: 22;
  margin-top: -115px;
  position: relative;
}

.section-about.about-page {
  margin-top: auto;
}

.about-top-content {
  grid-column-gap: 1.5625rem;
  justify-content: center;
  align-items: center;
  margin-bottom: -1rem;
  display: flex;
}

.about-line {
  background-color: var(--neutral--blue-600);
  width: 100%;
  height: .0625rem;
}

.about-line._02 {
  width: 19.125rem;
}

.about-line.vertical {
  width: 1px;
  height: 37.75rem;
  margin-right: .5rem;
}

.about-line-wrapper {
  border-left: .0625rem solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1.4375rem;
  display: flex;
}

.about-line-wrapper.left {
  border-right: .0625rem solid var(--neutral--blue-600);
  border-left-style: none;
}

.about-component.is-about {
  grid-column-gap: 2rem;
  border-top: 1px solid var(--neutral--blue-600);
  border-bottom: 1px solid var(--neutral--blue-600);
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.about-bottom-content-wrapper {
  border-bottom: .0625rem solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-left-content {
  grid-row-gap: 3.9375rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-right: 2.375rem;
  display: flex;
}

.about-left-content.is-about {
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 38.6875rem;
  margin-right: 0;
}

.about-image {
  max-width: 250px;
}

.about-image.about-primary {
  max-width: 100%;
}

.about-left-bottom-content {
  grid-row-gap: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-star-wrapper {
  grid-column-gap: .25rem;
  display: flex;
}

.about-rating {
  grid-row-gap: .375rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-content-wrapper {
  border-right: .0625rem solid var(--neutral--blue-600);
  border-left: .0625rem solid var(--neutral--blue-600);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 3.125rem 2.375rem 2.5rem;
  display: flex;
}

.about-content {
  grid-row-gap: .5625rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 27.625rem;
  display: flex;
}

.about-history-content-wrapper {
  grid-column-gap: 5.0625rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.about-history-content {
  grid-row-gap: .375rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 13.4375rem;
  display: flex;
}

.about-signature {
  color: var(--neutral--white-100);
  font-family: Dynalight, sans-serif;
  font-size: 2.75rem;
  line-height: 2.75rem;
}

.about-signature.black {
  color: var(--neutral--black-800);
}

.about-right-content {
  grid-row-gap: 3.375rem;
  flex-flow: column;
  display: flex;
}

.about-location-wrapper {
  grid-column-gap: .75rem;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2.0625rem;
  text-decoration: none;
  display: flex;
}

.about-location {
  grid-row-gap: .375rem;
  flex-flow: column;
  max-width: 12.875rem;
  display: flex;
}

.about-time-wrapper {
  grid-column-gap: .75rem;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2.0625rem;
  text-decoration: none;
  display: flex;
}

.about-time {
  grid-row-gap: .375rem;
  flex-flow: column;
  max-width: none;
  display: flex;
}

.about-contact-wrapper {
  grid-column-gap: .75rem;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2.0625rem;
  text-decoration: none;
  display: flex;
}

.about-contact {
  grid-row-gap: .375rem;
  flex-flow: column;
  max-width: none;
  display: flex;
}

.menu-component.is-menu {
  grid-row-gap: 3.75rem;
  flex-flow: column;
  display: flex;
}

.menu-top-content {
  text-align: center;
  overflow: hidden;
}

.menu-bottom-content {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  display: flex;
  position: relative;
}

.menu-tabs {
  max-width: 47.1797rem;
}

.tabs-menu {
  grid-column-gap: 4.375rem;
  margin-bottom: 3.125rem;
  padding-left: 10.875rem;
  display: flex;
}

.menu-tab-link {
  font-family: var(--font--heading-font);
  color: var(--neutral--white-100);
  padding: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625rem;
}

.menu-tab-link.w--current {
  border-bottom: .0625rem solid var(--primary--button);
  color: var(--primary--button);
  background-color: #0000;
}

.menu-tab-link {
  background-color: #0000;
}

.menu-tab-link._02 {
  margin-left: 4.375rem;
  margin-right: 4.375rem;
}

.menu-content-wrapper.is-menu {
  width: 100%;
  max-width: 51rem;
  margin-left: auto;
  margin-right: auto;
}

.menu-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.menu-line {
  border: .0625rem dashed var(--neutral--blue-600);
  width: 21.1875rem;
  height: .0625rem;
}

.menu-line.is-header {
  background-color: var(--neutral--blue-600);
  border-right-style: none;
  width: 100%;
  height: 1px;
}

.menu-line.home {
  border-style: solid;
  width: 100%;
  height: 1px;
}

.menu-dish-name {
  grid-column-gap: 1.125rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.menu-dish-price {
  grid-column-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu-bottom-right-content-wrapper {
  border-left: .0625rem solid var(--neutral--blue-600);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: .675rem;
  padding-left: 2.125rem;
  display: flex;
}

.menu-bottom-right-content {
  grid-row-gap: 1.875rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.menu-dish-details {
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 21.25rem;
  display: flex;
}

.section-testimonial.white-bg {
  background-color: #e6e6e6;
}

.testimonial-top-content {
  grid-column-gap: 1.875rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-line-wrapper {
  border-right: .0625rem solid var(--neutral--blue-600);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 1.4375rem;
  display: flex;
}

.testimonial-line-wrapper.right {
  border-left: .0625rem solid var(--neutral--blue-600);
  border-right-style: none;
}

.testimonial-line {
  background-color: var(--neutral--blue-600);
  width: 100%;
  height: .0625rem;
}

.testimonial-bottom-content-wrapper {
  grid-column-gap: 9.375rem;
  display: flex;
  overflow: hidden;
}

.testimonial-bottom-left-content {
  z-index: 7;
  background-color: #e6e6e6;
  width: 100%;
  max-width: 20rem;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.testimonial-mask {
  width: 21.875rem;
  overflow: visible;
}

.testimonial-slide {
  margin-right: 1.875rem;
}

.testimonial-arrow {
  z-index: 7;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 0;
  bottom: 0;
  left: -29.375rem;
}

.testimonial-arrow.right {
  left: -90.75rem;
}

.testimonial-arrow.left {
  transform: rotate(180deg);
}

.testimonial-slide-nav {
  display: none;
}

.testimonial-card {
  grid-row-gap: 1rem;
  border: .0625rem solid var(--neutral--blue-600);
  background-color: var(--neutral--black-700);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.875rem;
  display: flex;
}

.testimonial-card.white {
  border-color: var(--neutral--white-100);
  background-color: var(--neutral--white-100);
}

.testimonial-card-content-wrapper {
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.testimonial-card-content {
  grid-row-gap: .5rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.testimonial-author-name {
  grid-row-gap: .25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.testimonial-star-wrapper {
  grid-column-gap: .25rem;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.testimonial-star {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  text-decoration: none;
  display: flex;
}

.feature-component {
  border-bottom: .0625rem solid var(--neutral--blue-600);
  display: flex;
}

.feature-left-content-wrapper {
  border-top: .0625rem solid var(--neutral--blue-600);
  border-right: .0625rem solid var(--neutral--blue-600);
  max-width: 500px;
  max-height: 660px;
  padding-top: 2.5rem;
  padding-bottom: 2.125rem;
  padding-right: 3.4375rem;
}

.feature-left-content {
  grid-row-gap: 1.875rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 30rem;
  text-decoration: none;
  display: flex;
}

.feature-icon {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.feature-content-wrapper {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 21.25rem;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: flex;
}

.feature-bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.feature-bg._02 {
  background-image: url('../images/Star-bg.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
  position: absolute;
  top: 4.7rem;
  left: 1rem;
}

.feature-details {
  grid-row-gap: .75rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.feature-dishe-name {
  grid-row-gap: .75rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.feature-slider {
  background-color: #0000;
  height: 100%;
}

.slide-nav {
  display: none;
}

.feature-arrow {
  width: 2.5rem;
  height: 2.5rem;
}

.feature-arrow.right {
  transition: all .3s;
  right: -1.875rem;
}

.feature-arrow.right:hover {
  right: -2rem;
}

.feature-arrow.left {
  transition: all .3s;
  left: -1.875rem;
}

.feature-arrow.left:hover {
  left: -2rem;
}

.feature-right-content-wrapper {
  flex-flow: column;
  display: flex;
}

.feature-right-top-content {
  grid-column-gap: 1.875rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: -1.25rem;
  display: flex;
}

.feature-arrow-wrapper {
  border-right: .0625rem solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  width: 9.8125rem;
  height: 1.5rem;
  display: flex;
}

.feature-arrow-wrapper.right {
  border-left: .0625rem solid var(--neutral--blue-600);
  border-right-style: none;
}

.feature-line {
  background-color: var(--neutral--blue-600);
  width: 100%;
  height: .0625rem;
}

.feature-line._02 {
  margin-top: 5.25rem;
  margin-bottom: 3.8125rem;
}

.feature-card {
  grid-column-gap: 4rem;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2.5rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.feature-card-content-wrapper {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 19.1875rem;
  text-decoration: none;
  display: flex;
}

.feature-card-content {
  grid-row-gap: .75rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.feature-discount-button {
  grid-row-gap: .0625rem;
  border-top: .0625rem solid var(--primary--button);
  border-bottom: .0625rem solid var(--primary--button);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 7.8125rem;
  padding-top: .0625rem;
  padding-bottom: .0625rem;
  text-decoration: none;
  display: flex;
}

.feature-right-content {
  position: relative;
}

.service-card {
  grid-column-gap: 5rem;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 75.5313rem;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.service-image {
  object-fit: cover;
}

.service-right-content {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 38.5rem;
  text-decoration: none;
  display: flex;
}

.section-team {
  display: none;
}

.team-top-content {
  grid-column-gap: 1.875rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.team-top-content-wrapper {
  grid-row-gap: 1.875rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.team-arrow-wrapper {
  border-right: .0625rem solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  height: 1.5rem;
  display: flex;
}

.team-arrow-wrapper.right {
  border-left: .0625rem solid var(--neutral--blue-600);
  border-right-style: none;
}

.team-line {
  background-color: var(--neutral--blue-600);
  width: 100%;
  height: .0625rem;
}

.team-collection-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-card {
  border: .0625rem solid var(--neutral--blue-600);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.team-card.is-details {
  border-top-style: none;
  border-bottom-style: none;
  border-left-style: none;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 30.375rem;
}

.team-image-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 1.875rem;
  display: flex;
}

.team-card-content-wrapper {
  border-top: .0625rem solid var(--neutral--blue-600);
  padding: 1.875rem 1.25rem;
}

.team-card-content-wrapper.is-details {
  display: flex;
}

.team-content {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.team-card-content {
  grid-row-gap: .75rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.team-card-line {
  border-top: .0625rem dashed var(--neutral--blue-600);
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: .0625rem;
  text-decoration: none;
  display: flex;
}

.team-card-bottom-content {
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.team-card-bottom-content.is-details {
  grid-column-gap: 8.4375rem;
  grid-row-gap: 8.4375rem;
}

.team-social-icon-wrapper {
  grid-column-gap: .9375rem;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.fooer-section {
  grid-row-gap: 5rem;
  background-color: #27262b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 4.375rem;
  padding-bottom: 1.875rem;
  text-decoration: none;
  display: flex;
}

.footer-component {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-top-content {
  border: .0625rem solid #46454b;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 1.875rem 2.5rem;
  text-decoration: none;
  display: flex;
}

.footer-newsletter-left-content-wrapper {
  grid-column-gap: 1rem;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-email-logo {
  grid-row-gap: .625rem;
  border: .0625rem solid #46454b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.1875rem;
  height: 3.1875rem;
  padding: .3125rem;
  text-decoration: none;
  display: flex;
}

.footer-input {
  grid-column-gap: 7.5rem;
  background-color: var(--neutral--black-700);
  height: 3.6875rem;
  color: var(--neutral--white-100);
  border: 1px #000;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: .625rem .625rem .625rem 1.875rem;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
}

.footer-grid {
  grid-column-gap: 10.125rem;
  grid-row-gap: 10.125rem;
  grid-template-rows: auto;
  grid-template-columns: 2fr max-content max-content max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  max-width: 75rem;
  text-decoration: none;
  display: grid;
}

.footer-left-content {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.footer-brand-logo-wrapper {
  grid-column-gap: .3125rem;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-link {
  grid-column-gap: .625rem;
  color: var(--neutral--gray-200);
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.footer-link-list {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.footer-bottom-content {
  grid-row-gap: 1.875rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.footer-line {
  background-color: var(--neutral--blue-600);
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: .0625rem;
  text-decoration: none;
  display: flex;
}

.copy-right-links {
  grid-column-gap: .3125rem;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.section-blog {
  display: none;
}

.blog-top-content-wrapper {
  grid-row-gap: 1.875rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-top-content-wrapper.is-details {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}

.blog-top-content {
  grid-column-gap: 1.875rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.blog-arrow-wrapper {
  border-right: .0625rem solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  width: 16.875rem;
  height: 1.5rem;
  display: flex;
}

.blog-arrow-wrapper.right {
  border-left: .0625rem solid var(--neutral--blue-600);
  border-right-style: none;
}

.blog-line {
  background-color: var(--neutral--blue-600);
  width: 100%;
  height: .0625rem;
}

.blog-collection-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-card {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 0rem;
  border: 1px solid var(--neutral--blue-600);
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.blog-image {
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.blog-card-content-wrapper {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 1.5625rem 1.125rem 1.5625rem 1.5625rem;
  text-decoration: none;
  display: flex;
}

.blog-category-wrapper {
  grid-column-gap: 1rem;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.blog-category {
  border: .0625rem solid #46454b;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: .25rem .75rem;
  text-decoration: none;
  display: flex;
}

.blog-content {
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.blog-card-content {
  grid-row-gap: .625rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.blog-read-more-button {
  grid-row-gap: .3125rem;
  border-bottom: .0625rem solid var(--primary--button);
  color: var(--primary--button);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: .3125rem;
  line-height: 1rem;
  text-decoration: none;
  display: flex;
}

.blog-datetime {
  border: .0625rem solid #46454b;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: .25rem .75rem;
  text-decoration: none;
  display: flex;
}

.footer-brand-logo {
  width: 100%;
  max-width: 300px;
}

.value-component {
  grid-column-gap: 4.375rem;
  border-top: 1px solid var(--neutral--blue-600);
  border-bottom: 1px solid var(--neutral--blue-600);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.value-card {
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 20rem;
  padding-top: 20px;
  display: flex;
}

.value-card-content {
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.value-line {
  background-color: var(--neutral--blue-600);
  width: 1px;
  height: 16.5rem;
}

.image-gallery-top-content {
  grid-column-gap: 1.875rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-gallery-line-wrapper {
  border-right: 1px solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 9.4375rem;
  height: 1.5rem;
  display: flex;
}

.image-gallery-line-wrapper.right {
  border-left: 1px solid var(--neutral--blue-600);
  border-right-style: none;
}

.image-gallery-line {
  background-color: var(--neutral--blue-600);
  width: 100%;
  height: 1px;
}

.image-gallery-bottom-content {
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-gallery-image-wrapper {
  grid-column-gap: 1.25rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.footer-form-block {
  width: 100%;
  max-width: 30rem;
}

.website-link {
  color: var(--neutral--gray-200);
  text-decoration: none;
}

.blog-category-collection-list-item {
  grid-column-gap: 1rem;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.blog-category-collection-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.blog-category-button {
  border: 1px solid var(--neutral--blue-600);
  color: var(--neutral--gray-200);
  padding: .625rem 1.25rem;
  font-size: .875rem;
  line-height: 1.375rem;
  text-decoration: none;
}

.blog-category-button.w--current {
  background-color: var(--neutral--black-700);
}

.menu-header {
  grid-column-gap: 1.9375rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu-line-wrapper {
  border-right: 1px solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1.5rem;
  display: flex;
}

.menu-line-wrapper.right {
  border-left: 1px solid var(--neutral--blue-600);
  border-right-style: none;
}

.menu-line-wrapper.home {
  width: 6.4375rem;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-line-wrapper._02 {
  border-left: 1px solid var(--neutral--blue-600);
  border-right-style: none;
  width: 30.3125rem;
  position: absolute;
  top: 0;
  right: 0;
}

.service-collection-list {
  grid-row-gap: 3.75rem;
  flex-flow: column;
  display: flex;
}

.service-collection-list-item {
  grid-row-gap: 2.5rem;
  flex-flow: column;
  display: flex;
}

.service-top-content {
  grid-column-gap: 1.875rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-line-wrapper {
  border-right: 1px solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1.5rem;
  display: flex;
}

.service-line-wrapper.right {
  border-left: 1px solid var(--neutral--blue-600);
  border-right-style: none;
}

.service-line {
  background-color: var(--neutral--blue-600);
  width: 100%;
  height: 1px;
}

.contact-component {
  max-width: 62.4375rem;
  height: 28.2rem;
  max-height: 29.375rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.contact-top-content {
  grid-column-gap: 1.875rem;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: translate(0, -32px);
}

.contact-line-wrapper {
  border-right: 1px solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1.5rem;
  display: flex;
}

.contact-line-wrapper.right {
  border-left: 1px solid var(--neutral--blue-600);
  border-right-style: none;
}

.contact-line {
  background-color: var(--neutral--blue-600);
  width: 100%;
  height: 1px;
}

.contact-line.vartical {
  width: 1px;
  height: 95%;
  position: absolute;
  top: 0;
}

.contact-line.vartical._02 {
  right: 0;
}

.contact-form-block {
  max-width: 51.5rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: 0fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.input {
  grid-column-gap: 7.5rem;
  background-color: var(--neutral--black-700);
  height: 2.875rem;
  color: var(--neutral--white-100);
  border: 1px #000;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: .625rem .625rem .625rem 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
}

.input::placeholder {
  color: #fff;
}

.input.is-massage {
  width: 33.875rem;
  height: 9.625rem;
}

.input.book-table {
  width: 24rem;
}

.contact-bottom-content {
  grid-column-gap: 195px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 10px;
}

.success-message {
  color: var(--neutral--white-100);
  background-color: #09c909;
  padding: 1.25rem;
}

.error-message {
  color: var(--neutral--white-100);
  text-align: center;
  background-color: #ee5f5f;
  padding: 1.25rem;
}

.team-details-component {
  grid-column-gap: 4.375rem;
  border-top: 1px solid var(--neutral--blue-600);
  border-bottom: 1px solid var(--neutral--blue-600);
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.teat-details-right-content {
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 39rem;
  margin-top: 61px;
  margin-bottom: 57px;
  display: flex;
}

.team-details p {
  margin-bottom: 1rem;
}

.service-details-top-content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.service-details-image {
  width: 36.5625rem;
}

.service-details-top-right-content {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.service-details {
  text-align: center;
  max-width: 62.25rem;
  margin-bottom: -2.125rem;
  margin-left: auto;
  margin-right: auto;
}

.service-details h3, .service-details h4 {
  margin-bottom: 1rem;
}

.service-details p {
  margin-bottom: 2.125rem;
  font-size: .875rem;
  line-height: 1.375rem;
}

.blog-details-component {
  flex-flow: column;
  max-width: 62.4375rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-details-top-content {
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-details {
  text-align: center;
  margin-bottom: -2.125rem;
}

.blog-details p {
  margin-bottom: 2.125rem;
  font-size: .875rem;
  line-height: 1.375rem;
}

.blog-details h3, .blog-details h4 {
  margin-bottom: 1rem;
}

.blog-details blockquote {
  background-color: var(--neutral--black-700);
  border-left-style: none;
  margin-bottom: 2.125rem;
  padding: 1.75rem 1.25px;
  font-size: .875rem;
  font-style: italic;
  line-height: 1.375rem;
}

.book-table-component {
  max-width: 62.4375rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.book-table-component.is-home {
  border-bottom: 1px solid var(--neutral--blue-600);
  max-width: none;
  padding-bottom: 2.5rem;
}

.book-table-top-content {
  grid-column-gap: 1.875rem;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: translate(0, -32px);
}

.book-table-line-wrapper {
  border-right: 1px solid var(--neutral--blue-600);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1.5rem;
  display: flex;
}

.book-table-line-wrapper.right {
  border-left: 1px solid var(--neutral--blue-600);
  border-right-style: none;
}

.book-table-line {
  background-color: var(--neutral--blue-600);
  width: 100%;
  height: 1px;
}

.book-table-line-form-block {
  max-width: 51.5rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.book-table-line-form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: 0fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.hero-heading-wrapper {
  overflow: hidden;
}

.hero-heading-wrapper._2nd {
  margin-top: -37px;
}

.hero-text-wrapper {
  max-width: 40.625rem;
  overflow: hidden;
}

.hireus-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hireus-badge-wrapper {
  z-index: 99699999;
  grid-column-gap: 1.25rem;
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
}

.hireus-button-wrapper {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.bold-text {
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
}

.hireus-button-icon-wrap {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hire-us-button-text {
  color: #fff;
  text-shadow: 0 0 4px #000c;
  font-weight: 400;
  line-height: 1.5rem;
  transition: opacity .2s;
}

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

.hireus-content._2nd {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
}

.hireus-inner-content {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  background-color: #000;
  border: 5px solid #f4f2f0;
  border-radius: .75rem;
  flex-flow: column;
  padding: .75rem .625rem .5625rem;
  display: flex;
  overflow: hidden;
  box-shadow: inset 0 -2px 4px #0000001f, 0 4px 6px #0000000a;
}

.hireus-content-wrap {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-flow: column;
  display: flex;
}

.hireus-button {
  grid-column-gap: .375rem;
  color: #fff;
  white-space: nowrap;
  background-image: url('../images/image-4.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #656565;
  border-radius: .625rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: .4375rem .7rem .4375rem .875rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: .875rem;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.hireus-icon-wrap {
  background-color: #fff;
  border: 1.5px solid #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.hireus-icon-wrap.third {
  margin-left: -6px;
}

.hireus-icon-wrap.first {
  z-index: 2;
  position: relative;
}

.hireus-icon-wrap.second {
  z-index: 1;
  margin-left: -6px;
  position: relative;
}

.hire-us-paragraph {
  color: #a8a8a8;
  flex: 1;
  max-width: 16.8rem;
  margin-bottom: 0;
  font-size: .75rem;
  line-height: 1.25rem;
}

.image, .image-2, .image-3 {
  background-color: #303030;
  border-radius: 50%;
}

.image-4 {
  border-radius: 10px;
  max-width: 150px;
}

.hero-logo {
  max-width: 70%;
}

.image-5 {
  max-width: 510px;
  margin-top: 22px;
  margin-left: -161px;
  position: absolute;
}

.div-block {
  opacity: .2;
  background-image: url('../images/grill-bg-1.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  position: absolute;
  inset: 0%;
}

.div-block-2 {
  z-index: 1;
  background-image: url('../images/bg-2.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  position: absolute;
  inset: 0%;
}

.div-block-3 {
  z-index: 5;
  background-image: url('../images/bg-sand.png');
  background-position: 50% 0;
  background-size: auto;
  height: 100px;
  position: relative;
}

.div-block-4 {
  z-index: 2;
  margin-bottom: -396px;
  transition: opacity .2s;
  position: absolute;
  inset: auto 0% 0%;
  transform: rotate(47deg);
}

.div-block-5 {
  z-index: 2;
  position: absolute;
  inset: auto 0% 0%;
}

.div-block-6 {
  z-index: 3;
  opacity: .21;
  position: absolute;
  inset: 0%;
}

.background-video {
  height: 96vh;
  position: relative;
}

.div-block-7 {
  display: none;
}

.image-6, .image-7, .image-8 {
  border-radius: 10px;
  max-width: 150px;
}

.image-9 {
  min-width: 150px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 4rem;
    line-height: 4.5rem;
  }

  h2 {
    font-size: 3.25rem;
    line-height: 3.75rem;
  }

  h3 {
    font-size: 3rem;
    line-height: 3.5rem;
  }

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

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

  h6 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

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

  .padding-section-large.is-header {
    padding-top: 5rem;
  }

  .button {
    font-size: .875rem;
  }

  .button.is-footer {
    margin-left: -8.875rem;
  }

  .style-guide-menu {
    padding: 2rem 3rem;
    position: static;
  }

  .style-guide-heading-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .container-large {
    max-width: 100%;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .style-guide-content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .padding-bottom.padding-large {
    padding-bottom: 2.5rem;
  }

  .text-size-regular {
    font-size: .9375rem;
    line-height: 1.4375rem;
  }

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

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

  .style-guide-content-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .style-guide-content-layout {
    grid-template-columns: 1fr;
  }

  .text-size-small {
    white-space: normal;
  }

  .heading-style-h3.is-service, .heading-style-h2.is-contact, .heading-style-h2.is-grow {
    flex: 0 auto;
  }

  .license-content-wrapper {
    padding: 2rem 1.5rem;
  }

  .license-grid {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .section-change-log {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .change-log-content {
    max-width: none;
  }

  .utility-page-wrapper {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  ._404-container-large {
    max-width: 100%;
  }

  ._404-component {
    max-width: none;
  }

  .nav-menu {
    background-color: var(--neutral--black-800);
    padding: 1rem 1rem .375rem;
  }

  .nav-link {
    margin-bottom: .625rem;
  }

  .about-top-content {
    width: 100%;
    margin-bottom: 0;
  }

  .about-line._02 {
    width: 100%;
  }

  .about-line.vertical {
    display: none;
  }

  .about-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .about-bottom-content-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 3rem;
    border-bottom-style: none;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .about-left-content {
    margin-right: 0;
  }

  .about-left-content.is-about {
    max-width: none;
  }

  .about-image {
    width: 100%;
  }

  .about-content-wrapper {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
    padding: 0;
  }

  .about-content {
    max-width: none;
  }

  .about-right-content {
    grid-row-gap: 2rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }

  .about-location-wrapper {
    margin-left: 0;
  }

  .about-location {
    max-width: none;
  }

  .about-time-wrapper, .about-contact-wrapper {
    margin-left: 0;
  }

  .menu-bottom-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .menu-bottom-right-content-wrapper {
    border-left-style: none;
    padding-left: 0;
  }

  .menu-dish-details {
    max-width: none;
  }

  .testimonial-bottom-content-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
  }

  .testimonial-bottom-left-content {
    text-align: center;
    max-width: none;
  }

  .feature-component {
    border-bottom-style: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .feature-left-content-wrapper {
    border-top-style: none;
    border-right-style: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2.5rem;
    display: flex;
  }

  .feature-left-content {
    grid-row-gap: 2.5rem;
    max-width: none;
  }

  .feature-bg._02 {
    top: 3.4rem;
    left: 7.8rem;
  }

  .feature-right-content-wrapper {
    margin-bottom: 0;
  }

  .feature-right-top-content {
    margin-top: 0;
  }

  .feature-line._02 {
    margin-top: 3.75rem;
  }

  .feature-card {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    margin-left: 0;
  }

  .feature-discount-button {
    width: auto;
  }

  .service-card {
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .service-image {
    width: 100%;
  }

  .service-right-content {
    max-width: none;
  }

  .team-top-content {
    grid-column-gap: 0rem;
    text-align: center;
  }

  .team-collection-list {
    grid-column-gap: 2.1rem;
    grid-row-gap: 2.1rem;
    grid-template-columns: 1fr 1fr;
  }

  .team-card.is-details {
    border-right-style: none;
    max-width: none;
  }

  .team-card-content-wrapper {
    padding: 1.25rem;
  }

  .team-card-content-wrapper.is-details {
    justify-content: center;
    align-items: center;
  }

  .team-content {
    width: 100%;
  }

  .fooer-section {
    padding-top: 2.75rem;
  }

  .footer-component {
    grid-row-gap: 2rem;
  }

  .footer-top-content {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    flex-flow: column;
    padding: 1.5rem 2rem;
  }

  .footer-grid {
    grid-column-gap: 4.8rem;
    grid-row-gap: 4.8rem;
    grid-template-columns: 1fr 1fr;
  }

  .blog-top-content {
    text-align: center;
  }

  .blog-collection-list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .about-image-wrapper {
    width: 100%;
  }

  .value-component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 2.5rem;
    border-top-style: none;
    border-bottom-style: none;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .value-line {
    display: none;
  }

  .image-gallery-top-content {
    text-align: center;
  }

  .menu-line-wrapper.home, .menu-line-wrapper._02 {
    display: none;
  }

  .service-top-content {
    text-align: center;
  }

  .service-line-wrapper {
    display: none;
  }

  .contact-component {
    grid-row-gap: 2rem;
    flex-flow: column;
    height: auto;
    max-height: none;
    display: flex;
  }

  .contact-top-content {
    transform: none;
  }

  .contact-line-wrapper, .contact-line.vartical {
    display: none;
  }

  .contact-form-block {
    width: 100%;
  }

  .contact-form {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .contact-bottom-content {
    display: none;
  }

  .team-details-component {
    flex-flow: column;
  }

  .teat-details-right-content {
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
  }

  .service-details-top-content-wrapper {
    flex-flow: column;
  }

  .service-details-image {
    width: auto;
  }

  .service-details-top-right-content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .blog-details-top-content {
    max-width: none;
  }

  .book-table-line-wrapper, .book-table-line-wrapper.right {
    display: none;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-menu-line-wrapper {
    grid-row-gap: 6px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-menu-line {
    background-color: #fff;
    width: 1.5rem;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 4rem;
    line-height: 4.5rem;
  }

  h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }

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

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

  h5 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }

  h6 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .padding-section-large {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .padding-section-large.is-header {
    padding-top: 3.75rem;
  }

  .note-wrapper {
    padding: 1rem;
  }

  .style-guide-menu {
    padding: 1.5rem 2.5rem;
  }

  .style-guide-heading-wrapper {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .style-guide-content-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .padding-bottom.padding-large {
    padding-bottom: 2.5rem;
  }

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

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

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

  .style-guide-content-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .license-content-wrapper {
    padding: 1.5rem 1rem;
  }

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

  .section-change-log {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .change-log-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .utility-page-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .headline-component {
    flex-flow: row;
  }

  .about-component.is-about {
    grid-row-gap: 2.5rem;
    border-bottom-style: none;
  }

  .tabs-menu {
    grid-column-gap: 3rem;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
  }

  .menu-content {
    flex-flow: row;
  }

  .menu-line {
    display: none;
  }

  .menu-dish-name {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .menu-dish-price {
    justify-content: space-between;
    align-items: center;
  }

  .testimonial-bottom-content-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .testimonial-bottom-left-content {
    max-width: none;
  }

  .feature-component {
    grid-column-gap: 34px;
    grid-row-gap: 34px;
  }

  .feature-left-content-wrapper {
    border-top-style: none;
    border-right-style: none;
    padding: 0;
  }

  .feature-bg._02 {
    top: 3rem;
    left: -1.4rem;
  }

  .feature-right-top-content {
    grid-column-gap: 0rem;
    text-align: center;
    margin-top: 0;
  }

  .feature-card {
    justify-content: flex-start;
    align-items: center;
  }

  .feature-right-content {
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }

  .team-collection-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-column-gap: 6.1rem;
    grid-row-gap: 3rem;
  }

  .blog-collection-list {
    grid-template-columns: 1fr;
  }

  .blog-image {
    width: 100%;
  }

  .value-component {
    grid-column-gap: 2rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .value-card {
    max-width: none;
  }

  .image-gallery-image-wrapper {
    grid-row-gap: 1.25rem;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .image-gallery-image-light-box._02 {
    height: 542px;
    overflow: hidden;
  }

  .contact-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    height: auto;
    max-height: none;
    display: flex;
  }

  .contact-form-block {
    width: 100%;
    max-width: none;
  }

  .contact-form, .input.is-massage {
    width: 100%;
  }

  .service-details p {
    margin-bottom: 2rem;
  }

  .menu-button {
    padding: 0;
  }

  .gallery-image {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }

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

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

  h4 {
    font-size: 1.875rem;
    line-height: 2.375rem;
  }

  h5 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  h6 {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

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

  .padding-section-large.is-header {
    padding-top: 2.5rem;
  }

  .note-wrapper {
    border-radius: .65rem;
  }

  .button {
    text-align: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
  }

  .button.is-footer {
    margin-left: 0;
  }

  .style-guide-menu {
    border-radius: .65rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-large {
    margin-bottom: 2rem;
  }

  .margin-bottom.margin-xsmall {
    margin-bottom: 1rem;
  }

  .button-row {
    grid-row-gap: 1.25rem;
    flex-direction: column;
    align-items: stretch;
  }

  .button-row.align-center {
    align-items: center;
  }

  .style-guide-content-wrapper {
    border-radius: .65rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-bottom.padding-large {
    padding-bottom: 2rem;
  }

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

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

  .style-guide-content-list {
    grid-template-columns: 1fr;
  }

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

  .heading-style-h3.is-service {
    flex: 0 auto;
  }

  .license-content-wrapper {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .license-image {
    justify-content: flex-start;
  }

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

  .change-log-content {
    text-align: center;
    padding: 3rem 1rem;
  }

  .utility-page-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  ._404-component {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  ._404-image {
    max-width: 35%;
  }

  .section-headline {
    flex-flow: column;
  }

  .headline-component {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .headline-line {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .nav-menu {
    padding: 1.5rem 1.5rem 1.5rem 1rem;
  }

  .section-hero {
    padding-top: 3.75rem;
  }

  .menu-component.is-menu {
    grid-row-gap: 2.5rem;
  }

  .tabs-menu {
    grid-column-gap: 0rem;
  }

  .menu-content {
    grid-column-gap: .6rem;
    grid-row-gap: .6rem;
  }

  .menu-bottom-right-content-wrapper {
    border-left-style: none;
  }

  .testimonial-component {
    text-align: center;
  }

  .testimonial-line-wrapper, .testimonial-line-wrapper.right {
    display: none;
  }

  .testimonial-mask {
    width: 19rem;
  }

  .testimonial-slide {
    margin-right: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .feature-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .feature-content-wrapper {
    max-width: none;
  }

  .feature-details {
    width: auto;
  }

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

  .feature-right-top-content {
    justify-content: center;
    align-items: center;
  }

  .feature-arrow-wrapper {
    display: none;
  }

  .feature-arrow-wrapper.right {
    flex-flow: wrap;
    display: none;
  }

  .feature-card {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .feature-card-content-wrapper {
    max-width: none;
  }

  .team-arrow-wrapper {
    flex-flow: wrap;
    display: none;
  }

  .team-card-bottom-content.is-details {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-top-content {
    padding: 1.5rem 1.5rem 1rem;
  }

  .footer-newsletter-left-content-wrapper {
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-grid {
    grid-column-gap: 3.5rem;
    grid-row-gap: 2.5rem;
  }

  .blog-top-content-wrapper.is-details {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog-arrow-wrapper {
    display: none;
  }

  .blog-arrow-wrapper.right {
    flex-flow: wrap;
    display: none;
  }

  .blog-card-content-wrapper {
    padding: 1rem;
  }

  .blog-category-wrapper {
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .value-card {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .image-gallery-line-wrapper {
    display: none;
  }

  .image-gallery-image-light-box._02 {
    height: auto;
  }

  .footer-form {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .blog-category-collection-list-wrapper {
    width: 100%;
  }

  .blog-category-collection-list-item {
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .blog-category-collection-list {
    text-align: center;
    flex-flow: column;
  }

  .menu-line-wrapper, .menu-line-wrapper.right, .service-line-wrapper {
    display: none;
  }

  .contact-component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    height: auto;
    max-height: none;
  }

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

  .input {
    grid-column-gap: 0rem;
  }

  .input.book-table {
    grid-column-gap: 0rem;
    width: 100%;
  }

  .team-details-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    border-top-style: none;
    border-bottom-style: none;
  }

  .book-table-component.is-home {
    grid-row-gap: 1.5rem;
    border-bottom-style: none;
    flex-flow: column;
    max-width: none;
    padding-bottom: 0;
    display: flex;
  }

  .book-table-top-content {
    transform: none;
  }

  .book-table-line-form-block {
    width: 100%;
    max-width: none;
  }

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

  .hireus-content-wrapper {
    flex-flow: column;
  }

  .hireus-badge-wrapper {
    left: 16px;
    right: 16px;
  }

  .hireus-button-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hireus-content._2nd {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
  }
}

#Time.w-node-fe3523a7-9dd1-141c-e5d3-5efc8cc6cb73-38454262, #w-node-ba8d84df-4de2-fcd2-9aad-ea5d876be3b1-38454262 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_72908e18-a1fe-107b-803b-6bfadf9d8865-38454264 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Massage.w-node-_36a6a1a9-747e-fff3-f859-614aad7b3f0d-38454267, #w-node-_5174628a-0e1f-78d9-d8c2-5cda07e212a1-38454267 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e083838d-b165-e9f2-5a9b-1aee5cd7d608-38454268 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-e083838d-b165-e9f2-5a9b-1aee5cd7d618-38454268, #w-node-e083838d-b165-e9f2-5a9b-1aee5cd7d626-38454268, #w-node-e083838d-b165-e9f2-5a9b-1aee5cd7d62b-38454268, #w-node-e083838d-b165-e9f2-5a9b-1aee5cd7d630-38454268, #w-node-e083838d-b165-e9f2-5a9b-1aee5cd7d635-38454268, #w-node-e083838d-b165-e9f2-5a9b-1aee5cd7d63a-38454268, #w-node-_88c91c23-20e1-007d-aa7a-88a305250551-38454269, #w-node-_88c91c23-20e1-007d-aa7a-88a305250553-38454269, #w-node-_88c91c23-20e1-007d-aa7a-88a305250555-38454269, #w-node-_88c91c23-20e1-007d-aa7a-88a305250559-38454269, #w-node-_88c91c23-20e1-007d-aa7a-88a30525055b-38454269, #w-node-_88c91c23-20e1-007d-aa7a-88a30525055d-38454269, #w-node-_88c91c23-20e1-007d-aa7a-88a30525055f-38454269, #w-node-_17e67fab-f589-8daf-36bf-525a3c463eea-3845426d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_92732031-744b-e865-b557-66d989dc45d3-38454263 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #Name-3.w-node-ba8d84df-4de2-fcd2-9aad-ea5d876be3ac-38454262, #Email-3.w-node-ba8d84df-4de2-fcd2-9aad-ea5d876be3ad-38454262, #Person.w-node-ba8d84df-4de2-fcd2-9aad-ea5d876be3ae-38454262, #Date-3.w-node-ba8d84df-4de2-fcd2-9aad-ea5d876be3af-38454262, #Time.w-node-fe3523a7-9dd1-141c-e5d3-5efc8cc6cb73-38454262, #w-node-ba8d84df-4de2-fcd2-9aad-ea5d876be3b1-38454262 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ca22bb3f-a633-0475-553c-95afaea6a7a3-aea6a78f, #name.w-node-_30130eeb-5ef6-bd7c-f03a-4d40eec85fdb-38454267, #Email.w-node-af9a72c9-51cf-f39f-ea4c-5d023d08375e-38454267, #Time.w-node-f7a65e48-3b0d-93dc-262a-1931118e0f90-38454267, #Date.w-node-_905cb4ec-3b07-a96e-7e73-65d4691d317c-38454267, #w-node-_5174628a-0e1f-78d9-d8c2-5cda07e212a1-38454267 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


