/**
===================================================================================
===============================  FRONT PAGE STYLE START  ==========================
===================================================================================

 */
/*
=============================================================================
>>>> color variable <<<<
==============================================================================
*/
:root {
    /* --theme-color: #231F1E; */
    --theme-color: #e0b863;
    --on-theme-color: #ffffff;
    /* --secondary-color: #213400; */
    --secondary-color: #484801;
    /* --secondary-color: #022b31; */
    --on-secondary-color: #ffffff;
    --bg-color: #231F1E;
    --on-bg-color: #ffffff;
}

/*
=============================================================================
 1. DEFAULT STYLE START
==============================================================================
*/
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 25px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Della Respira', serif;
}

span.signatre {
    font-family: 'Alex Brush', cursive;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    letter-spacing: 1px;
}

a:hover,
a:focus {
    text-decoration: none;
}

.section-padding {
    padding: 80px 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/**
================================================================================
  1. DEFAULT STYLE END
================================================================================
*/

/**
===================================================================================
===============================  FRONT PAGE STYLE START  ==========================
===================================================================================
 */

/**
================================================================================
navigation menu section style start
================================================================================
*/
.navigation-menu span.open-nav-btn {
    position: fixed;
    right: 40px;
    top: 20px;
    z-index: 15;
    background-color: var(--theme-color);
    padding: 15px;
    border-radius: 50%;
    font-size: 25px;
    color: var(--secondary-color);
    cursor: pointer;
}

/* The side navigation menu */
.navigation-menu .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 16;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    overflow-x: hidden;
    padding-top: 60px;
    box-shadow: 0 0 5px #000;
    transition: 0.5s;
    text-align: center;
}

.navigation-menu .sidenav ul {
    padding: 25px 0;
}

.navigation-menu .sidenav ul li a {
    padding: 10px 0;
    text-transform: capitalize;
    font-size: 1.1rem;
    color: var(--theme-color);
    display: block;

    transition: 0.3s;
}

div.closebtn {
    color: var(--on-secondary-color);
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border: 2px dotted var(--on-secondary-color);
    line-height: 35px;
    font-size: 1.3rem;
}

/**
================================================================================
navigation menu section style end
================================================================================
*/
/**
================================================================================
hero section style start
================================================================================
*/
.hero-section {
    position: relative;
    height: 400px;
}

video.fullscreen {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    &::-webkit-media-controls {
        display: none !important;
    }
}

.hero-content-wrapper {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    display: grid;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content-wrapper h1,
.logo-wrapper h1 {
    color: var(--theme-color);
    font-family: 'Alex Brush', cursive;
    text-transform: capitalize;
    font-size: 1.7rem;
    font-weight: 600;
    text-shadow: -2px 2px #000;
    text-align: center;
}

.logo-wrapper h1 {
    font-size: 4.5rem;
}

.hero-content-wrapper h3 {
    color: var(--theme-color);
    font-size: 1.2rem;
    text-align: center;
    text-transform: capitalize;
    text-shadow: -2px 2px #000;
}

.logo {
    position: absolute;
    left: 10px;
    top: 10px;
    /* width: 150px; */
    z-index: 2;
}

.logo a {
    display: inline-block;
    width: 100px;
    margin-right: 10px;
}

.logo span {
    color: var(--theme-color);
    font-family: 'Alex Brush', cursive;
    text-transform: capitalize;
    font-size: 1.7rem;
    font-weight: 600;
    text-shadow: -2px 2px #000;
    text-align: center;
}

.hero-cont {
    position: absolute;
    right: 40px;
    bottom: 10px;
}

.w-165 {
    width: 165px;
}

.btn-wrapper .theme-btn a {
    background: var(--bg-color);
    color: var(--on-secondary-color);
    align-items: center;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    border-color: var(--secondary-color);
}

.subscribe-wrapper button.btn {
    background: var(--theme-color);
    color: #000;
    margin: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.subscribe-wrapper button.btn:focus {
    box-shadow: none;
}

p.success-msg {
    color: green;
}

p.error-msg {
    color: red;
}

.subscribe-alert {
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-weight: bold;
    font-size: 1.2rem;
}

@keyframes cssAnimation {
    to {
        width: 0;
        height: 0;
        overflow: hidden;
    }
}

@-webkit-keyframes cssAnimation {
    to {
        width: 0;
        height: 0;
        padding: 0;
        visibility: hidden;
    }
}

div#myModal button[type="submit"] {
    border: none;
    background: var(--theme-color);
    padding: 7px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
}

/**
================================================================================
hero section style end
================================================================================
*/
/**
================================================================================
chef speech section style start
================================================================================
*/
.pattern-bg-section {
    position: relative;
}

.secondary-color {
    background-color: var(--secondary-color);
}

.cont-wrapper {
    text-align: center;
    padding: 40px;
    border: 2px solid var(--secondary-color);
}

.cont-secondary-color {
    background-color: var(--secondary-color);
    border-color: var(--theme-color);
    color: var(--on-secondary-color);
}

.cont-wrapper h3 {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cont-wrapper h3.about-title {
    line-height: 18px;
}

.cont-wrapper h3 span.experience {
    position: absolute;
    right: 30px;
}

.cont-wrapper h3 strong span {
    font-size: 6rem;
}

.cont-wrapper .theme-btn {
    margin-bottom: 30px;
}

.cont-wrapper span {
    color: var(--theme-color);
    font-size: 2rem;
    margin: 15px 0 30px 0;
    display: inline-block;
}

.btn-wrapper .theme-btn {
    display: inline-block;
    margin-right: 10px;
    margin-top: 25px;
}

.theme-btn a {
    display: inline-block;
    text-transform: uppercase;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    padding: 6px 15px;
    transition: all 0.5s;
}

.theme-btn a:hover,
.theme-btn a:focus {
    background-color: var(--theme-color);
    color: #000;
}

/**
================================================================================
chef speech section style end
================================================================================
*/
/**
================================================================================
menu links section style start
================================================================================
*/
.menu-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.mdh h2 small {
    font-size: 1.3rem;
}

.menu-list a {
    display: block;
}

.single-menu-link {
    overflow: hidden;
    position: relative;
    height: 280px;
    display: block;
}

.single-menu-link .menu-excerpt {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.single-menu-link:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    mix-blend-mode: multiply;
    z-index: 1;
    transition: all 0.5s;
}

.single-menu-link img {
    width: 100%;
    height: 100%;
    transform: scale(1.0);
    z-index: -1;
    transition: all 1500ms;
}

.single-menu-link:hover:before {
    background: rgba(0, 0, 0, 0);
}

.single-menu-link:hover img {
    transform: scale(1.2);
}

.single-menu-link:hover .menu-excerpt img {
    transform: scale(1.0);
}

.menu-excerpt img {
    width: auto;
}

.menu-excerpt h3 {
    font-size: 1.7rem;
    text-transform: capitalize;
    line-height: 3rem;
}

/**
================================================================================
menu links section style end
================================================================================
*/
/**
================================================================================
accolades section style start
================================================================================
*/

.bg-color {
    background-color: var(--bg-color);
}

.pattern-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-1.png');
    background-repeat: no-repeat;
    opacity: .40;
    background-position: bottom left;
}

.cont-bg-color {
    background-color: var(--bg-color);
    border-color: var(--theme-color);
    color: var(--on-secondary-color);
}

.accolades-cont-wrapper .theme-btn a {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.accolades-cont-wrapper .theme-btn a:hover {
    color: var(--theme-color);
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.accolades-logos {
    margin: 25px 0;
}

.marquee-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
}

.tripadvisor-logo {
    background-color: #34e0a1;
    height: 50px;
}

.tripadvisor-logo img {
    background-color: #34e0a1;
    height: 50px;
    padding: 10px;
}

div.marquee-cont {
    background-color: #fff;
    color: #000;
    border: 2px solid #34e0a1;
    height: 50px;
    overflow: hidden;
}

div.marquee-cont .cont-scroll {
    -moz-animation: marquee 30s linear infinite;
    -webkit-animation: marquee 30s linear infinite;
    animation: marquee 30s linear infinite;
    padding: 10px 0;
    display: inline-block;
    overflow: hidden;
    text-align: initial;
    white-space: nowrap;
}

div.marquee-cont .cont-scroll span {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0;
}

span.reviewTitle {
    font-weight: 600;
}

@-moz-keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}



/**
================================================================================
accolades section style end
================================================================================
*/

/**
================================================================================
team section style start
================================================================================
*/
.team-members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    align-items: center;
    margin: 30px 0;
}

.single-member img {
    border-radius: 50%;
    max-width: 180px;
    margin-bottom: 15px;
}

.single-member p {
    font-size: 1.5rem;
    font-family: 'Alex Brush', cursive
}

/**
================================================================================
team section style end
================================================================================
*/
/**
================================================================================
gallery and instagram follow section style start
================================================================================
*/
.gallery-and-insta-follow-section {
    display: flex;
    align-items: center;
    border-bottom: 4px solid var(--secondary-color);
}

.gallery-wrapper {
    width: 70%;
    margin-bottom: 5px;
}

.gallery-content img {
    height: 250px;
}

.insta-follow {
    width: 30%;
    background-color: var(--secondary-color);
    height: 255px;
    display: grid;
    align-items: center;
}

.insta-cont {
    margin: 30px;
    padding: 15px;
    border: 2px solid var(--theme-color);
    text-align: center;
}

.insta-cont i {
    font-size: 70px;
    color: var(--theme-color);
    margin-bottom: 30px;
}

.insta-cont h3 {
    color: var(--theme-color);
}

/**
================================================================================
gallery and instagram follow section style end
================================================================================
*/
/**
================================================================================
navigation and cancelation policy section style start
================================================================================
*/
section.navigation-and-cancelation-policy {
    background-color: #c5c55a;
    padding: 15px 0;
}

.navigation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.navigation a h4 {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 5px 0;
}

.navigation a:hover {
    background-image: linear-gradient(180deg, #c09c51 0%, #93773f 100%);
}

/* .navigation {
    margin-bottom: 25px;
} */
.navigation {
    background-color: #c5c55a;
}

.cancelation-policy {
    margin-bottom: 25px;
    text-align: center;
}

.cancelation-policy .title {
    position: relative;
    z-index: 1;
}

.cancelation-policy .title:after {
    position: absolute;
    content: "";
    width: 100%;
    border-bottom: 1px solid var(--secondary-color);
    left: 0;
    top: 50%;
    z-index: -1;
}

.cancelation-policy .title p:first-child {
    display: inline-block;
    background: #c5c55a;
    margin: 0;
    padding: 0 10px;
}

.cancelation-policy p {
    color: #000;
}

.healthy-world-policy {
    margin-top: 35px;
}

/**
================================================================================
navigation and cancelation policy section style end
================================================================================
*/
/**
================================================================================
footer section style start
================================================================================
*/
footer.footer-section {
    background-color: var(--secondary-color);
    color: var(--theme-color);
}

.logo-wrapper img {
    width: 150px;
}

/* .logo-wrapper img:last-child {
    width: 350px;
} */

.logo-wrapper img {
    display: inline-block;
}

.logo-wrapper h1 {
    font-size: 3rem;
    display: inline-block;
}

.social-links ul li {
    display: inline-block;
}

.social-links ul li a {
    display: block;
    width: 30px;
    height: 30px;
    background: var(--theme-color);
    line-height: 30px;
    color: var(--secondary-color);
    border-radius: 50%;
    margin: 30px 0;
}

a.policy {
    color: var(--theme-color);
    text-transform: uppercase;
    font-size: 1.3rem;
}

/**
================================================================================
footer section style end
================================================================================
*/
/**
===================================================================================
===============================  FRONT PAGE STYLE END  ============================
===================================================================================
 */
/*back to top start*/
/*.back_to_top i.fa {
    color: var(--theme-color);
    font-size: 35px;
    background: #ccc;
    padding: 20px;
    position: fixed;
    right: 5%;
    bottom: 10%;
    z-index: 9999;
    border-radius: 2px;
}

i.fa.fa-arrow-up:hover {
    cursor: pointer;
    transform: rotateZ(720deg);
    transition: all 0.4s;
}*/
/*back to top end*/

/**
===================================================================================
===============================  CONTACT PAGE STYLE START==========================
===================================================================================
 */
.map-section iframe {
    width: 100%;
}

.contact-info-section .two-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    grid-gap: 10px;
}

.contact-info-section span {
    font-size: 1rem;
}

.contact-way {
    text-align: left;
    color: var(--theme-color);
    display: grid;
    grid-gap: 10px;
}

.opening-times {
    text-align: left;
    color: var(--theme-color);
}

.opening-times ul li {
    display: block;
}

.opening-times ul li div {
    float: right;
}

.opening-times ul {
    display: grid;
    grid-gap: 5px;
}

section.contact-info-section p {
    color: var(--theme-color);
    margin-bottom: 35px;
}

/**
===================================================================================
===============================  CONTACT PAGE STYLE END  ==========================
===================================================================================
 */
/**
===================================================================================
====================  PRIVACY & GUARANTEE PAGE STYLE START  =======================
===================================================================================
 */
.breadcrumb-section {
    position: relative;
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: grid;
    align-items: center;
    z-index: -1;
}

.breadcrumb-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    mix-blend-mode: multiply;
    z-index: 1;
}

.breadcrumb-cont {
    position: relative;
    text-align: center;
    z-index: 2;
}

.breadcrumb-cont h1 {
    font-size: 4rem;
    text-transform: capitalize;
    color: var(--theme-color);
}

.gray-color {
    background-color: #d3d3d3;
}

.cont-gray-color {
    background-color: #d3d3d3;
    color: #000;
    border-color: #000;
}

.good-fortune-section .cont-wrapper h3,
.reservation-note h3 {
    color: #000;
}

/**
===================================================================================
====================  PRIVACY & GUARANTEE PAGE STYLE END  =========================
===================================================================================
 */
/**
===================================================================================
====================  MENU & RESERVATION PAGE STYLE START  =========================
===================================================================================
 */
.menu-list-section .cont-wrapper span {
    margin: initial;
    font-size: initial;
    display: block;
}

/**
===================================================================================
====================  MENU & RESERVATION PAGE STYLE END  =========================
===================================================================================
 */
/**
===================================================================================
====================  ABOUT US PAGE STYLE START  =========================
===================================================================================
 */
.gallery img {
    height: 330px;
    width: 100%;
}

.gallery .owl-dots button span {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 20px 2px 0 2px;
}

.gallery .owl-dots button.active span {
    background-color: #fff;
}

.cont-wrapper.black-heading h3 {
    color: #000;
}

.sub-headgin-with-icon i {
    background: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}

.sub-headgin-with-icon {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-gap: 10px;
    margin: 10px 0;
    font-family: 'Della Respira', serif;
}

.sub-headgin-with-icon span {
    font-size: 1.5rem;
    color: #000;
    text-transform: capitalize;
    margin: 0;
}

.reservation-rules ul li {
    display: block;
    padding: 10px;
}

.reservation-rules ul li i {
    margin-right: 10px;
    font-weight: 600;
}

.map iframe {
    width: 100%;
}

.award-list ul li i {
    font-weight: bold;
    color: var(--theme-color);
}

.award-list ul li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 10px;
    align-items: start;
    padding: 5px 0;
    text-transform: uppercase;
}

.sponsor {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

/**
===================================================================================
====================  ABOUT US PAGE STYLE END  =========================
===================================================================================
 */

/**
===================================================================================
====================  MENU DETAILS PAGE STYLE START  =========================
===================================================================================
 */
.menu-details-tab ul.nav {
    display: block;
    text-align: center;
}

.menu-details-tab ul.nav li {
    display: inline-block;
}

.menu-details-tab ul.nav li a {
    display: block;
    text-transform: capitalize;
    font-size: 1.2rem;
    color: var(--theme-color);
    padding: 10px 15px;
    font-weight: 600;
}

.menu-details-tab ul.nav li a.active {
    background: #fff;
}

.menu-details-tab .tab-content {
    background: #fff;
    color: #000;
    padding: 25px 0;
    margin-bottom: 25px;
}

.single-menu-item {
    padding: 10px;
}

.single-menu-item p {
    margin-bottom: 5px;
}

/**
===================================================================================
====================  MENU DETAILS PAGE STYLE END  =========================
===================================================================================
 */

/**
===================================================================================
====================  DOWNLOAD PAGE STYLE START  =========================
===================================================================================
 */
.single-download img {
    height: 100px;
    width: auto;
}

/**
===================================================================================
====================  DOWNLOAD PAGE STYLE END  =========================
===================================================================================
 */