* {
    padding: 0;
    margin: 0;
}
:root {
    --primary-color: #6d1c12;
    --secondary-color: #f0ebe1;
    --third-color: #4c2010;
    --primary-font: "Plus Jakarta Sans", sans-serif;
    --secondary-font: "EB Garamond", sans-serif;
    --neutral-pri-color: #2b2116;
    --main-font-size: 56px;
    --text-font-size: 24px;
    --subtext-font-size: var(--subtext-font-size);
}
html,
body {
    /* overflow-x: hidden; */
}
header {
    background-color: var(--primary-color);
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
}
.reser-text:hover {
    color: var(--secondary-color);
}
.dots {
    position: fixed;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    height: 100%;
    justify-content: center;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    height: 24px;
    border-radius: 0; /* if your active image is not round */
    background: url(../images/dot-active.svg) no-repeat center center / contain;
}
.absolute-footer svg {
    max-width: 100%;
}
/* highlight current dot with :target (basic way) */
section:target ~ .dots a[href="#hero"] {
    background: url(../images/dot-active.svg) no-repeat center center / contain;
}
section:target ~ .dots a[href="#story"] {
    background: url(../images/dot-active.svg) no-repeat center center / contain;
}
section:target ~ .dots a[href="#introduction"] {
    background: url(../images/dot-active.svg) no-repeat center center / contain;
}
section:target ~ .dots a[href="#team-member"] {
    background: url(../images/dot-active.svg) no-repeat center center / contain;
}
section:target ~ .dots a[href="#our-team"] {
    background: url(../images/dot-active.svg) no-repeat center center / contain;
}
section:target ~ .dots a[href="#keepup"] {
    background: url(../images/dot-active.svg) no-repeat center center / contain;
}
section:target ~ .dots a[href="#contact"] {
    background: url(../images/dot-active.svg) no-repeat center center / contain;
}

.lp-offcanvas {
    background-color: var(--primary-color);
    width: 423px;
}
.lp-offcanvas .btn-close {
    background-image: url(/assets/images/close-btn.svg) !important;
    opacity: 1;
    width: 22px;
    height: 22px;
    padding: 0;
}
.lp-offcanvas .offcanvas-header {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 30px;
    padding-bottom: 0;
}
.lp-offcanvas .offcanvas-body {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 60px;
    /* overflow: hidden; */
    overflow-y: auto;
    overflow-x: hidden;
}
.offcanvas-footer {
    padding-left: 60px;
    padding-right: 60px;
    margin-bottom: 60px;
}
.lp-offcanvas .navbar-nav {
    gap: 30px;
}
.lp-offcanvas .navbar-nav .nav-link {
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    padding: 0;
    transition: all 1s ease;
}
.lp-offcanvas .navbar-nav .nav-link:hover {
    text-decoration: underline;
}
.main-header {
    height: 70px;
}
.reser-text {
    padding: 12px 18px;
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 16px;
    margin-bottom: 0;
}
.reser-box {
    max-width: 206px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    padding: 0;
}
.offcanvas-footer .reser-box {
    max-width: 100%;
}
.container {
    max-width: 1320px !important;
}
.main-logo img {
    max-width: 182px;
}
.hero-text {
    position: absolute;
    bottom: 0;
    /* width: 100vw; */
}
.hero-img {
    width: 100%;
}

.row-banner-text {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}
.banner-text {
    color: #f7f8f9;
    font-family: var(--secondary-font);
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}
.banner-subtext {
    color: #f7f8f9;
    /* font-family: Satoshi; */
    font-family: var(--secondary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.primary-bgr {
    background-color: var(--primary-color);
}
.flavour-title {
    font-size: var(--main-font-size);
    font-family: var(--secondary-font);
    font-style: italic;
    line-height: 120%;
    color: var(--secondary-color);
    text-transform: lowercase;
}
.info-text {
    color: var(--secondary-color);
    font-size: 28px;
    font-family: var(--secondary-font);
    font-weight: 500;
    line-height: 140%;
}
.about-text {
    color: var(--secondary-color);
    font-size: var(--subtext-font-size);
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 140%;
}

.second-bgr {
    background-color: var(--secondary-color);
}
.introduction-title {
    font-size: var(--main-font-size);
    font-family: var(--secondary-font);
    color: var(--primary-color);
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 0;
}
.introduction-btn {
    width: 130px;
    color: var(--primary-color);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    padding: 12px 18px;
    float: right;
}
.img {
    width: 100%;
}
.dish-title {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    padding: 20px 0;
    margin-bottom: 0;
}
.dish-desc {
    color: var(--neutral-pri-color);
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; */
}
.sub-col-dish .dish-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.team-title {
    color: var(--secondary-color);
    font-family: var(--secondary-font);
    font-size: var(--main-font-size);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    max-width: 493px;
    margin-bottom: 0;
}

.col-mem-text .mem-text {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.our-team-title {
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--secondary-font);
    font-size: var(--main-font-size);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 0;
}
.our-team-container {
    /* border: 2px solid var(--third-color);
    background: var(--third-color); */
    padding: 32px;
    background-image: url(../images/our-team-bgr.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.our-team-container .row-border {
    /* border: 2px solid var(--secondary-color); */
}
.chef-title {
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.chef-position {
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--secondary-font);
    font-size: var(--text-font-size);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.chef-desc {
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--secondary-font);
    font-size: var(--text-font-size);
    font-style: italic;
    font-weight: 400;
    line-height: 130%;
}
.col-chef {
    padding: 50px 75px;
}
.col-chef-tabs {
    padding: 10px;
}
.row-border > .row {
    max-width: 100%;
    margin: 0;
}
.col-chef-tabs .nav.nav-tabs {
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    padding: 1px;
    border-bottom: none;
    margin-bottom: 0 !important;
}
.col-chef-tabs .nav-link {
    color: #fff;
    font-size: 16px;
    font-family: var(--primary-font);
    padding: 12px 50px;
}
.col-chef-tabs .nav.nav-tabs .nav-link.active {
    background: url(../images/tab-bgr.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
}
.col-chef-tabs .nav.nav-tabs .nav-link.active {
    color: #5f1811;
}
.col-team-info {
    max-width: 476px;
    margin: auto;
}
.hero-container {
    max-width: 100% !important;
    padding: 0 !important;
    position: relative;
}

.gallery-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}
.main-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}
.thumbnails {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}
.thumbnails img.active {
    border-color: #007bff;
}
.keepup-text {
    color: var(--secondary-color);
    font-family: var(--secondary-font);
    font-size: var(--main-font-size);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.keepup-subtext {
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: var(--subtext-font-size);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
#reserve_your_spot {
    background-color: #0f3f76;
    background-image: url(../images/bgr-2.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}
.row-keepup {
}
.flower {
    position: absolute;
    width: auto;
    height: 625px;
    bottom: 0;
}
.timing-wrap {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 8px;
    width: auto;
    max-width: max-content;
}
.timing-text {
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 0;
}
.reserve-text {
    color: #d9dadb;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.reserve-btn {
    border-radius: 8px;
    border: 1px solid #d9dadb;
    padding: 12px 18px;
    max-width: max-content;
    cursor: pointer;
}
.contact-title {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: var(--main-font-size);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}
.contact-text {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: var(--subtext-font-size);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.contact-main {
    margin-bottom: 60px;
}
.main {
    color: var(--primary-color);
}

.hero > .col {
    position: relative;
}
.social-icons {
    gap: 16px;
}
.footer-tax p {
    margin-bottom: 0;
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.footer-title {
    color: var(--secondary-color);
    font-family: var(--secondary-font);
    font-size: var(--text-font-size);
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
.footer-text {
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.footer-right {
    /* gap: 30px; */
}
.absolute-footer {
    background: var(--neutral-pri-color);
    /* padding: 8px; */
    padding-bottom: 8px;
}
.absolute-footer p {
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.button-phone {
    position: absolute;
    bottom: 0;
    width: 68px;
    height: 68px;
    right: -10px;
}
#team-member {
    background-image: url(../images/bgr-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#our-set-menu {
    background-image: url(../images/bgr-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.social-icons img {
    width: auto;
    height: 32px;
}
.footer-logo {
    max-width: 233px;
}
.fade-in-bottom {
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1)
        both;
    animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-9-1 16:37:50
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in-left {
    -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1)
        both;
    animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-9-1 16:39:22
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}
.menu_page .flavour-title {
    text-transform: uppercase;
    font-style: normal;
    font-weight: 500;
}

.beverage-title {
    color: var(--secondary-color);
    text-align: right;
    font-family: var(--secondary-font);
    font-size: 42px;
    font-style: italic;
    font-weight: 400;
    line-height: 120%;
    text-transform: lowercase;
}
.beverage-list-title {
    color: var(--secondary-color);
    font-family: var(--secondary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 8px;
}
.beverage-list-subtitle {
    color: rgba(240, 235, 225, 0.6);
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.white-btn {
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    float: right;
    padding: 12px 18px;
}
.white-btn:hover {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}
.white {
    color: var(--secondary-color) !important;
}
.dish-desc.white {
    color: rgba(240, 235, 225, 0.6) !important;
    margin-bottom: 0;
}
.row-menu-item img {
    height: 280px;
    width: auto;
}
.set_menu_title {
    color: var(--primary-color);
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-top: 10px;
}
.set_menu_desc {
    color: var(--primary-color);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.col_main_set {
    background-image: url(../images/mem-text-bgr.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: initial;
    padding: 18px;
    height: fit-content;
}
.set_menu_wrap {
    padding: 24px;
}
.dropdown-menu {
    min-width: 50px;
}

.btn-style1,
.btn-style2 {
    position: relative;
    transition: all 0.35s;
}
.btn-style2:hover {
    box-shadow: inset 5em 0 0 0 var(--secondary-color),
        inset -10em 0 0 0 var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-style2:hover a,
.btn-style2:hover {
    color: var(--primary-color);
}
.btn-style2:hover::before {
    opacity: 1;
}
.btn-style2::before {
    width: 100%;
    height: 1em;
    position: absolute;
    left: 0;
    bottom: -1.35em;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0) 80%
    );
    opacity: 0;
    transition: all 0.65s;
    content: "";
}

.btn-style1:hover {
    transform: translateY(-0.25em);
    box-shadow: inset 5em 0 0 0 var(--primary-color),
        inset -5em 0 0 0 var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    /* border-color: #5e5e5e;
    color: #5e5e5e; */
}
.btn-style1:hover::before {
    opacity: 1;
}
.btn-style1::before {
    width: 100%;
    height: 1em;
    position: absolute;
    left: 0;
    bottom: -1.35em;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0) 80%
    );
    opacity: 0;
    transition: all 0.65s;
    content: "";
}
.bell {
    width: 2rem;
}
.reserve-btn:hover .bell,
.bell:focus {
    animation: bellshake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    backface-visibility: hidden;
    transform-origin: top right;
}
@keyframes bellshake {
    0% {
        transform: rotate(0);
    }
    15% {
        transform: rotate(5deg);
    }
    30% {
        transform: rotate(-5deg);
    }
    45% {
        transform: rotate(4deg);
    }
    60% {
        transform: rotate(-4deg);
    }
    75% {
        transform: rotate(2deg);
    }
    85% {
        transform: rotate(-2deg);
    }
    92% {
        transform: rotate(1deg);
    }
    100% {
        transform: rotate(0);
    }
}
.nav-tabs .nav-link {
    transition: all 0.35s;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
    background: url(../images/tab-bgr.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    color: #5f1811;
}

@media (max-width: 850px) {
    :root {
        --main-font-size: 32px;
        --text-font-size: 20px;
        --subtext-font-size: 18px;
    }
    .col-map iframe {
        max-width: 100%;
    }
    .col-mem-text {
        background-image: url("../images/mem-text-bgr.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    .col-mem-2 {
        background-image: url("../images/mem-text-bgr-2.png");
    }
    .row-menu-item img {
        height: auto;
        width: 100%;
    }
    .col_main_set {
        margin-bottom: 30px;
    }
    .white-btn {
        float: left;
    }
    .beverage-title {
        font-size: 30px;
    }
    .main-header {
        /* flex-direction: ; */
    }
    .row-banner-text {
        bottom: 0;
    }
    .banner-text {
        font-size: 28px;
    }
    .banner-subtext {
        font-size: 14px;
    }
    .pt-row {
        padding-top: 30px;
    }
    .our-team-container {
        background-size: cover;
    }
    .our-team-container .tab-pane {
        margin-top: 20px;
    }
    .introduction-btn {
        float: left;
        margin-top: 10px;
    }
    .col-mem-text {
        background-size: cover;
        margin-top: 30px;
        margin-bottom: 30px;
        max-width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
        padding: 30px;
    }
    .col-mem-text p {
        margin-top: 1rem;
    }
    .chef-title {
        font-size: 30px;
    }
    .chef-position {
        margin-bottom: 0;
    }
    .main-logo {
        text-align: center !important;
    }
    .dish-title {
        padding: 10px 0;
        line-height: 120%;
    }
    .info-text {
        font-size: 26px;
    }
    .col-chef-tabs {
        padding: 0;
    }
    .col-chef-tabs .nav-link {
        font-size: 13px;
        width: 100%;
        padding: 12px 20px;
    }

    .col-chef-tabs .nav {
        justify-content: space-between;
        padding: 0 !important;
    }
    .sub-keepup-col {
        padding-bottom: 30px;
    }
    .contact-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .contact-main {
        margin-bottom: 20px;
    }
    .col-main-contact {
        margin-bottom: 20px;
    }
    .dots {
        display: none;
    }
    .beverage-img-2 {
        width: 60%;
    }
    .beverage-img-3 {
        width: 40%;
    }
    .col-beverage-img {
        align-items: center;
    }
    #beverage {
        padding-bottom: 30px;
    }
    .sub-col-dish:not(:first-child) {
        margin-top: 30px;
    }
    #our-set-menu {
        padding-bottom: 30px;
    }
    .col-chef-tabs li.nav-item {
        width: calc(100% / 3);
    }
}
@media (max-width: 400px) {
    .col-chef-tabs .nav-link {
        padding: 12px 15px;
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .row-mem {
        overflow: visible;
        align-items: start;
    }
    .col-mem-text {
        position: sticky;
        top: 0px;
        z-index: 10;
        /* padding: 25px 28px; */
    }
    .col-mem-text .col-inner {
        background-image: url(../images/mem-text-bgr.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 25px 28px !important;
    }
    .col-mem-text .col-inner .mem-text {
        padding: 0 35px;
    }

    .col-mem-2 .col-inner {
        background-image: url("../images/mem-text-bgr-2.png");
    }

    .row-mem {
        /* min-height: 100vh; */
    }
    .col-mem-text {
        height: 100%;
    }
    .sticky-top {
        top: 100px;
        width: 100%;
        z-index: 10;
    }

    .sub-col-dish img {
        height: 279px;
        width: 100%;
        object-fit: fill;
    }
    .sub-col-dish .dish-title {
        min-height: 119px;
    }

    .pt-row {
        padding-top: 60px;
    }
    .col-mem-text .col-inner {
        padding: 0 50px;
    }
    .row-mem {
        flex-wrap: nowrap;
    }
    .row-mem-2 {
        padding-bottom: 60px;
    }
    /* .col-mem-text {
        padding: 25px 28px !important;
    } */
    .section-3 {
        padding-bottom: 60px;
    }
    .row-keepup {
        padding-bottom: 120px;
    }
    .sub-keepup-col {
        padding-right: 100px;
    }
    .contact-main {
        max-width: 454px;
    }
    .contact-info {
        max-width: 390px;
    }
    .col-main-contact {
        padding: 60px 0;
    }
    .hero-container {
        width: 100%;
        height: 95vh;
        overflow: hidden;
    }
    .hero-container .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .col-map {
        position: absolute;
        right: 0;
        padding: 0;
        max-width: 600px;
        height: 487px;
    }
    .menu.hero-container {
        height: 100%;
    }
    .beverage-img-1 {
        height: 300px;
        width: auto;
    }
    .beverage-img-2,
    .beverage-img-3 {
        height: 300px;
        width: auto;
    }
    .col-beverage-img {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .beverage-list {
        margin-top: 60px;
    }
    .beverage-item:not(:first-child) {
        margin-top: 44px;
    }
    #beverage {
        padding-bottom: 60px;
    }
    .row-menu-item .dish-title {
    }
    .sub-col-dish:nth-child(n + 3) {
        margin-top: 70px;
    }
    #our-set-menu {
        padding-bottom: 120px;
    }
}

@media (min-width: 1200px) and (max-width: 1680px) {
    .lp-offcanvas .offcanvas-body {
        margin-top: 20px;
    }
    .lp-offcanvas .navbar-nav {
        gap: 25px;
    }
}
