*:not([data-aos-duration]),::before,::after {
    transition: 0.3s ease-in-out all;
}
body,
html {
  scroll-behavior: smooth;
  margin: 0;
  font-family: "Montserrat", serif;
  color: #000;
}
.ast-plain-container, .ast-page-builder-template {
    background-color: #fff;
}
.ast-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  float: none;
}

#page .site-content {
  flex-grow: unset;
}

main {
  width: 100%;
}

/* GLOBAL CSS */
:root {
  --primary-background: #001b06;
  --seconday-background: #116B40;
  --text-color: #fff;
  --hero-title: clamp(1.875rem, 1.7157rem + 0.6536vw, 2.5rem);;
  /*40px*/
  --section-title: clamp(1.875rem, 1.7953rem + 0.3268vw, 2.1875rem);
  /*35px*/
}

body p {
  font-size: 16px;
}

.container,
.container-960,
.container-1300 {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  float: none;
}

.container {
  max-width: 1600px;
}

.container-960 {
  max-width: 960px;
}

.container-1300 {
  max-width: 1300px;
}

.padding-section {
  padding: 6rem 0;
}

.primary-background {
  background: var(--primary-background);
}

.primary-background.text-white * {
  color: var(--text-color);
}

.text-center {
  text-align: center;
}

.img {
  width: 100%;
  height: auto;
}

.section-title {
  font-size: var(--section-title);
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: var(--primary-background);
  font-weight: 400;
  margin-top: 0;
  position: relative;
  text-transform: uppercase;
}

.btn.btn-primary {
  display: inline-block;
  border: 1px solid var(--primary-background);
  padding: 8px 20px;
  font-size: 16px;
  text-decoration: none;
  color: var(--primary-background);
  margin-top: 20px;
  transition: background 0.3s ease, color 0.3s ease !important;
  text-transform: uppercase;
}

.btn.btn-primary:hover {
  background: var(--primary-background);
  color: white;
}

.btn.btn-secondary {
  display: inline-block;
  border: 1px solid var(--seconday-background);
  background-color: var(--seconday-background);
  padding: 8px 20px;
  font-size: 13px;
  text-decoration: none;
  color: var(--text-color);
  margin-top: 15px;
  transition: 0.3s;
}

.btn.btn-secondary:hover {
  background: var(--primary-background);
  border: 1px solid var(--primary-background);
  color: white;
}

.btn-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.cky-btn-revisit-wrapper {
  background: var(--primary-background) !important;
}

/* Reserve a Table */
.floating-reserve-btn {
    position: fixed;
    top: 100px;
    right: 60px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-background);
    border: 4px solid var(--text-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-reserve-btn span {
    pointer-events: none;
}
.floating-reserve-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.floating-reserve-btn .text {
    color: var(--text-color);
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.floating-reserve-btn .line {
    width: 60%;
    height: 1px;
    background-color: var(--text-color);
    margin: 10px 0;
}


/* -------------------------------- */
/* HERO */
/* -------------------------------- */

/*.hero {*/
/*    position: relative;*/
/*    text-align: center;*/
/*    display: grid;*/
/*    > * {*/
/*        grid-area: 1/1;*/
/*        place-content: center;*/
/*    }*/
/*}*/
/*.hero, .hero .hero-img {*/
/*    height: 100vh;*/
/*    object-fit: cover;*/
/*    width: 100%;*/
/*    object-position: top;*/
/*}*/

/*.hero-overlay {*/
/*    background: var(----primary-background);*/
/*    padding: 60px 20px;*/
/*    color: var(--text-color);*/
/*}*/

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: #00000052;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-bg.active {
  opacity: 1;
}

.hero .hero-title {
  position: relative;
  z-index: 2;
  color: var(--text-color);
  font-size: var(--hero-title);
  font-weight: 200;
  text-align: center;
  letter-spacing: 2px;
}

/* -------------------------------- */
/* WELCOME SECTIONS */
/* -------------------------------- */
.welcome-text {
  font-size: 1.3em;
}

.welcome-splitter {
  height: 1px;
  background: white;
  width: 6%;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 30px;
}

/* -------------------------------- */
/* TWO COLUMN SECTIONS */
/* -------------------------------- */

.two-col {
  display: flex;
  align-items: center;
  padding: 6rem 30px;
  gap: 100px;
}

.two-col.reverse {
  flex-direction: row;
}

.two-col:not(.reverse) .col-right .section-title {
  position: relative
}

/*.two-col:not(.reverse) .col-right .section-title:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -200px;
  width: 180px;
  height: 2px;
  background: var(--primary-background);
}*/

/*.two-col .col-left .section-title:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -200px;
  width: 180px;
  height: 2px;
  background: var(--primary-background);
}*/

.quote-wrap {
    position: relative;
    margin-top: 20px;
    padding-left: 20px;
    border-left: 2px solid #001b06;
}
.quote-wrap p {
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px !important;
}
.col-left * {
  text-align: right;
}

.col-right img,
.col-left img {
  object-fit: cover;
}

.two-col .col-left .btn.btn-primary {
  float: right;
}

.img-portrait {
  aspect-ratio: 11/14;
  max-width: 100%;
}

.img-landscape {
  aspect-ratio: 5/4;
}

.img-felix {
  aspect-ratio: 5/5;
}

.two-col .col-left,
.two-col.reverse .col-right {
  position: relative;
  z-index: 9;
}

.two-col .col-left {
  width: 40%;
}

.two-col .col-right {
  width: 60%;
}

.felix-and-leo .col-left img {
    object-position: right;
}
.felix-and-leo .col-left img {
    max-width: calc(456px / 2 + 20px);
    -o-object-fit: contain;
    object-fit: contain;
}
.felix-and-leo .col-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 500px;
}
.felix-and-leo .col-left img:last-child {
    margin-left: -40px;
    object-position: bottom;
}
/*.felix-and-leo .col-left img:first-child {
    object-position: -5px top;
}*/


/** FOR SAFARI **/
.felix-and-leo .col-left {
    display: flex;
    align-items: stretch;
    height: 500px; /* important for Safari */
}

.felix-and-leo .col-left img {
    width: calc(456px / 2 + 20px);
    height: 100%;
    object-fit: contain;
}

.felix-and-leo .col-left .img-wrap:first-child img {
    object-position: left top;
}

.felix-and-leo .col-left {
    display: flex;
    height: 500px;
}

.felix-and-leo .img-wrap {
    width: calc(100% / 2 + 20px);
    height: 100%;
}

.felix-and-leo .img-wrap img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}
.felix-and-leo .col-left .img-wrap:last-child {
    width: calc(100% / 2 + 20px);
    margin-left: -40px;
    object-position: center bottom;
}
/** END FOR SAFARI **/

.our-team .col-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 600px;
}
.our-team .col-right img {
    max-width: calc(684px / 2 + 20px);
    object-fit: cover;
    height: 400px;
}
.our-team .col-right img:first-child {
    margin-top: 190px;
    z-index: 2;
    max-width: calc(684px / 2 + 80px);
}
.our-team .col-right img:last-child {
    margin-left: -40px;
    max-width: calc(684px / 2 - 40px);
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  margin: 8px 0;
}

.menu-list a {
  color: var(--primary-background);
  text-decoration: none;
}
.menu-list-wrap {
    margin-top: 20px;
}
.menu-list-wrap ul {
    margin: 0 !important;
    list-style-type: none;
    letter-spacing: 2px;
}

.menu-list-wrap a {
    transition: font-weight 0.3s ease;
}

.menu-list-wrap a:hover {
    font-weight: bold;
}

/* -------------------------------- */
/* CONTACT */
/* -------------------------------- */

/*.contact-section {*/
/*    display: flex;*/
/*    padding: 80px 10%;*/
/*    background: var(--primary-background);*/
/*    color: white;*/
/*    gap: 40px;*/
/*}*/

/*.contact-box {*/
/*    flex: 1;*/
/*}*/

/*.contact-img-box {*/
/*    flex: 1;*/
/*}*/

/*.note {*/
/*    margin-top: 20px;*/
/*    font-size: 14px;*/
/*}*/
.contact-section {
  position: relative;
  /* display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  margin: 0px 282px; */
}

.contact-section p {
  margin: 0;
}

.contact-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-color);
  position: relative;
  text-align: right;
  z-index: 1;
  /* background-color: var(--primary-background);
  padding: 72px 142px;
  padding-right: 142px; */
}

.contact-box h3 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.contact-box .section-title {
  color: var(--text-color);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-item span {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  opacity: 0.8;
}

.contact-item a {
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.7;
}

.contact-img-box {
  position: relative;
  overflow: visible;
  z-index: 2;
}

/* .contact-img-box .img {
  width: calc(100% + 80px);
  height: 80%;
  object-fit: cover;
  position: absolute;
  top: 40px;
  left: -80px;
} */

.contact-item p:first-child {
  margin: -1px 0;
}

.contact-item a {
  color: var(--text-color);
  font-size: 0.9em;
  font-weight: 600;
}

p.opening-hours {
  font-weight: 600;
}

.contact-section .contact-box {
    width: 40%;
    padding: 0;
    padding-right: 50px;
}
.contact-section .contact-img-box {
    width: 60%;
    padding-left: 100px;
}
.contact-img-box .img {
    position: relative;
    inset: unset;
}
.contact-blocks {
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
}
.contact-blocks:before {
    content: '';
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-background);
    z-index: -1;
}
.contact-box .section-title {
    position: relative;
}
/*.contact-box .section-title:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    right: -200px;*/
/*    width: 180px;*/
/*    height: 2px;*/
/*    background: var(--text-color);*/
/*}*/

.col-right p {
  text-align: left;
  font-size: 0.9em;
  margin-bottom: 0;
}

.col-right>p {
  margin-top: 0.8em;
  font-size: 1em;
}


/* -------------------------------- */
/* Social Media */
/* -------------------------------- */

.social-section .section-title {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.social-section .section-title svg {
    width: 20px;
    height: 20px;
    margin: 0 !important;
    transition: all ease 0.3s;
}
.social-section .section-title a {
    height: 20px;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    transition: all ease 0.3s;
}
.social-section .section-title a:hover {
    transform: scale(1.2);
}
.social-section .section-title {
    font-size: 18px;
    letter-spacing: 0.5px;
}
.social-section.padding-section {
    padding: 4rem 0;
}
section.social-section.padding-section .section-title {
    margin-bottom: 0;
}
/* -------------------------------- */
/* Food Gallery Card */
/* -------------------------------- */

/*.food-gallery-card {*/
/*    padding: 60px 10%;*/
/*    text-align: center;*/
/*}*/

/*.food-gallery-card h3 {*/
/*    margin-bottom: 30px;*/
/*    letter-spacing: 2px;*/
/*}*/

/*.gallery {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 50px;*/
/*}*/

/*.gallery img {*/
/*    width: 300px;*/
/*    height: 300px;*/
/*    object-fit: cover;*/
/*}*/

.food-gallery-card .section-title {
  text-transform: initial;
  letter-spacing: 0;
  margin-bottom: 34px;
}

.food-gallery-card .section-title a {
  text-decoration: none;
  color: var(--primary-background);
}

.food-gallery-card .section-title a:hover {
  letter-spacing: 1px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.restaurant-container {
    align-self: flex-start;
}


/* -------------------------------- */
/* RESPONSIVE */
/* -------------------------------- */
@media (max-width: 1600px) {
  .contact-section {
    margin: 0 100px;
  }
}
@media (max-width: 1280px) {
.contact-section .contact-box {
    padding-right: 20px;
  }
  .contact-section .contact-img-box {
    padding-left: 50px;
  }
}
@media (max-width: 1024px) {

  /*.hero, .hero .hero-img {*/
  /*    height: auto;*/
  /*}*/
  .two-col.reverse {
    flex-direction: column-reverse;
  }

  .two-col,
  .contact-section {
    flex-direction: column;
  }

  .two-col {
    gap: 40px;
  }

  .two-col {
    padding: 40px 0;
  }

  .two-col:not(.reverse) .col-right .section-title:before,
  .two-col .col-left .section-title:before {
    display: none
  }

  .col-right img,
  .col-left img {
    min-height: auto;
  }

  .section-title,
  section p {
    text-align: center;
  }

  .btn.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    float: none;
    width: max-content;
  }

  .gallery {
    flex-wrap: wrap;
  }

  .contact-section {
    margin: 0;
  }
}

/* ADDITIONAL ONLY */
@media (max-width: 1024px) {
    .padding-section {
        padding: 2rem 0;
    }
    .welcome-wrapper p {
        margin-bottom: 0;
    }
    .contact-item a {
        width: 100%;
        display: block;
        text-align: center;
    }
    .contact-section .contact-box {
        padding-right: 0;
    }
    .contact-box .section-title:before {
        display: none;
    }
    .contact-img-box .img {
        width: 100%;
    }
    .contact-section .contact-img-box {
        padding-left: 0;
    }
    
    article .two-col:not(:first-child) .col-right * {
        text-align: right;
    }
    .col-right p {
        text-align: center;
        margin-bottom: 20px;
    }
    .two-col .col-left .btn.btn-primary {
        float: none;
    }
    .col-left * {
        text-align: center;
    }
    .two-col .col-left, .two-col .col-right {
        width: 80%;
    }
    .contact-blocks {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .contact-blocks:before {
        width: 100%;
    }
    .two-col .col-right * {
        text-align: left;
    }
    .two-col .col-right .btn.btn-primary {
        margin: unset;
    }
    .btn-wrapper {
        justify-content: flex-end;
    }
    .two-col.felix-and-leo .col-right .btn.btn-primary {
        float: right;
    }
    .restaurant-container {
        align-self: center;
    }
    .felix-and-leo .col-left img {
        max-width: 100%;
        margin-left: 0 !important;
    }
    .felix-and-leo .col-left {
        min-height: 800px;
    }
    
    .our-team .col-right img:first-child {
        max-width: calc(684px / 2 + 105px);
    }
    .our-team .col-right img:last-child {
        max-width: calc(100% / 2 - 40px);
    }
    .two-col.reverse .col-left * {
        text-align: left;
    }
    .two-col.reverse.about-section * {
        text-align: center;
    }
    .contact-section .container-1300 {
        width: 100%;
    }
    .social-section .section-title {
        margin-bottom: 0;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media (max-width: 820px) {
    main article {
        background: var(--primary-background);
    }
    .welcome {
        margin-top: -1px;
    }
  section.two-col p {
    text-align: center;
    margin-bottom: 20px;
  }

  .two-col .col-left .btn.btn-primary {
    float: none;
  }

  .two-col .col-left,
  .two-col .col-right {
    width: 100%;
  }

  .contact-section {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin: -1px 0 0 0;
  }

  .contact-box {
    padding: 40px 20px;
    text-align: center;
  }

  .contact-img-box {
    height: 400px;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .contact-img-box .img,
  .contact-img-box img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-box .section-title:before {
      right: 12%;
  }
  .contact-section .contact-img-box, .contact-section .contact-box {
      width: 80%;
  }
  .contact-box .section-title:before {
      right: 12%;
  }
  .contact-section .container-1300 {
      width: 100%;
  }
  .contact-blocks {
      padding: 0 0 40px 0;
  }
  .contact-section .contact-img-box {
      width: 100%;
  }
  
    article .container-1300 {
        width: 100%;
    }
    .two-col .col-right, .two-col.reverse .col-left {
        padding: 40px;
        background: var(--primary-background);
        margin-top: -1px;
    }
    .two-col {
        gap: 0;
        padding: 0;
    }
    .two-col .col-right *,
    .two-col.reverse .col-left *{
        color: #fff;
    }
    .quote-wrap {
        border-left: 2px solid #fff;
    }
    .two-col .col-right .btn.btn-primary {
        border: 1px solid #fff;
    }
    .two-col.reverse .col-right {
        padding: 0;
    }
    
    .felix-and-leo .col-left {
        background-color: var(--primary-background);
    }
    .felix-and-leo {
        margin-top: -1px;
    }
    
    .our-team .col-right img:last-child {
        max-width: calc(100% / 2 - 10px);
    }
}

@media (max-width: 500px) {
    .btn-wrapper {
        flex-direction: column;
        align-items: flex-end;
    }
    .contact-box h3 {
      font-size: 1.6rem;
      margin-bottom: 40px;
      font-weight: 400;
    }
    
    .felix-and-leo .col-left {
        min-height: 430px;
    }
    
    .our-team .col-right img:first-child {
         max-width: 330px;
        margin-top: 270px;
        height: auto;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .our-team .col-right img:last-child {
       max-width: 330px;
        margin-left: -44vw;
        height: auto;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        margin-bottom: 60px;
    }
    .our-team .col-right {
        min-height: auto;
    }
    .our-team .col-right img {
        aspect-ratio: 16/9;
        -o-object-fit: contain;
        object-fit: contain;
    }
    
    .social-section .section-title {
        margin-bottom: 0;
        flex-direction: column;
    }
    .social-section.padding-section {
        padding: 2rem 0;
    }
    .social-section .section-title {
        font-size: 14px;
    }
    .floating-reserve-btn {
        display: none;
    }
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
    /*.floating-reserve-btn {
        bottom: 15%;
        top: unset;
        right: 0;
        width: 50px;
        height: 50px;
        border-radius: 10px 0 0 10px;
        border: 2px solid #fff;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-right: none;
    }
    .floating-reserve-btn span {
        display: none;
    }
    .floating-reserve-btn:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-size: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23fff' class='bi bi-calendar3' viewBox='0 0 16 16'%3E%3Cpath d='M14 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M1 3.857C1 3.384 1.448 3 2 3h12c.552 0 1 .384 1 .857v10.286c0 .473-.448.857-1 .857H2c-.552 0-1-.384-1-.857z'/%3E%3Cpath d='M6.5 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2'/%3E%3C/svg%3E");
    }*/
}

@media (min-width: 500px) {
    .two-col.felix-and-leo .felix-and-leo-mobile, .our-team .col-right.our-team-mobile {
        display: none;
    }
}
@media (max-width: 500px) {
    .two-col.felix-and-leo  .col-left:not(.felix-and-leo-mobile),
    .our-team .col-right:not(.our-team-mobile) {
        display: none;
    }
    .two-col .col-left.felix-and-leo-mobile,
    .our-team .col-right.our-team-mobile {
        min-height: auto;
    }
    .two-col .col-left.felix-and-leo-mobile img,
    .our-team .col-right.our-team-mobile img {
        width: 100%;
        max-width: 100%;
        object-position: center;
        margin: 0 auto;
        object-fit: contain;
        min-height: 320px;
    }
    .col-right.felix-leo-text {
        padding-top: 10px;
    }
}



@media (max-width: 400px) {
    .two-col .col-right .btn.btn-primary:last-child {
        font-size: 14px;
    }
    /*.our-team .col-right img:last-child {
        margin-left: -60vw;
        object-position: center -34vw;
    }*/
}


