
/*============================================

1. Color Veriables

2. Preloader

3. Scroll top button

4. General

5. Animation keyframes

6. Header 

7. Home page one

8. Home page two

9. Home page three

10. About Us page

11. Services page

12. Product detail page

13. Team Chef Page

14. Blog Page

15. Blog detail Page

16. Reservation page

17. Contect Us page

18. Error page 

19. Footer

============================================*/


/*--------------------------------------------------------------

# Color Veriables

--------------------------------------------------------------*/


:root {

    --primary-color: #534930;

    --secondary-color: #B28E6A;

    --tertiary-color: #FAF4ED;

    --quaternary-color: #ffffff;

    --primary-black: #000000;

    --secondary-gray: #535353;

    --tertiary-gray: #A3A3A3;

    --text-primary-color: #000000;

    --text-secondary-color: #534930;

    --text-hover-color: #B28E6A;

    --bg-color: #F7F7F7;

}

:root {

    scroll-behavior: smooth;

}

/*--------------------------------------------------------------

# thank you font

--------------------------------------------------------------*/
@font-face {
    font-family: 'Thank You';
    src: url('../webfonts/ThankYouRegular.eot');
    src: url('../webfonts/ThankYouRegulard41d.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/ThankYouRegular.woff2') format('woff2'),
        url('../webfonts/ThankYouRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*--------------------------------------------------------------
  
  # Preloader
  
  --------------------------------------------------------------*/

#preloader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    overflow: hidden;

    background: var(--quaternary-color);

    -webkit-transition: all 0.6s ease-out;

    -o-transition: all 0.6s ease-out;

    transition: all 0.6s ease-out;

    width: 100%;

    height: 100vh;

}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;

}

@-webkit-keyframes animate-preloader {

    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }



    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }

}

@keyframes animate-preloader {

    0% {

        width: 10px;

        height: 10px;

        top: calc(50% - 5px);

        left: calc(50% - 5px);

        opacity: 1;

    }



    100% {

        width: 72px;

        height: 72px;

        top: calc(50% - 36px);

        left: calc(50% - 36px);

        opacity: 0;

    }

}

/*--------------------------------------------------------------
  
  # Scroll top button
  
  --------------------------------------------------------------*/

.scroll-top {

    position: fixed;

    visibility: hidden;

    opacity: 0;

    right: 15px;

    bottom: 15px;

    z-index: 99999;

    background: var(--primary-color);

    width: 44px;

    height: 44px;

    border-radius: 50px;

    -webkit-transition: all 0.4s;

    -o-transition: all 0.4s;

    transition: all 0.4s;

    -webkit-transform: scale(0);

    -ms-transform: scale(0);

    transform: scale(0);

}

.scroll-top i {

    font-size: 24px;

    color: #fff;

    line-height: 0;

    margin-top: -5px;

}

.scroll-top:hover {

    background: var(--secondary-color);

    color: #fff;

}

.scroll-top.active {

    visibility: visible;

    opacity: 1;

    -webkit-transform: scale(1);

    -ms-transform: scale(1);

    transform: scale(1);

}

/*--------------------------------------------------------------
  
  # General
  
  --------------------------------------------------------------*/

body {

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    color: var(--text-secondary-color);

    background-color: var(--quaternary-color);

    line-height: 26px;

    overflow-x: hidden !important;

}

::-webkit-scrollbar {height: 4px;width: 10px;background: var(--primary-color);}

::-webkit-scrollbar-thumb {background: var(--secondary-color);-webkit-border-radius: 1ex;-webkit-box-shadow: 0px 0px 0px #000000bf;}

::-webkit-scrollbar-corner {background: transparent;}

* {

    margin: 0;

    padding: 0;

    -webkit-box-sizing: border-box;

    box-sizing: border-box;

}

img {

    max-width: 100%;

    height: auto;

}

.primary-btn {

    -webkit-box-sizing: border-box;

    box-sizing: border-box;
    place-items: center;
    height: 62px;
    -webkit-mask-image: none;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--quaternary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    padding: 20px 39px 20px 73px;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 100px;
    font-family: "DM Sans", sans-serif;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

.primary-btn:before {
    background:
        #fff;
    border-radius: 50px;
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    height: 56px;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(3px, -50%);
    -ms-transform: translate(3px, -50%);
    transform: translate(3px, -50%);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    width: 56px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    color: var(--secondary-color);
    padding: 20px;

}

.primary-btn:hover:before {
    width: calc(100% - 6px);
    color: var(--text-hover-color);
}

.primary-btn:hover {
    color: var(--text-hover-color);
    z-index: 10;
}

.primary-btn span {
    position: relative;
    z-index: 2;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/************************ rotet img ********************************/

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotet img {
    -webkit-animation: rotate 50s linear infinite;
    animation: rotate 50s linear infinite;
}

a {

    color: var(--primary-color);

    -webkit-transition: all 0.2s;

    -o-transition: all 0.2s;

    transition: all 0.2s;

    text-decoration: none;

}

a:hover {

    color: var(--text-hover-color);

}

a,
a:hover,
a:active,
a:focus {

    text-decoration: none;

    outline: none;

}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {

    font-family: "Syne", sans-serif;

    color: var(--text-primary-color);

    line-height: 1.4;

}

h1,
.h1 {

    font-family: "Syne", sans-serif;

    font-size: 74px;

    font-weight: 800;

    line-height: 81.9px;

    text-align: left;

}

h2,
.h2 {font-family: 'DM Sans';font-size: 56px;font-weight: 700;line-height: 70.56px;text-align: left;}

h3,
.h3 {font-family: 'DM Sans';font-size: 44px;font-weight: 600;line-height: 55.44px;text-align: left;}

h4,
.h4 {

    font-family: "Syne", sans-serif;

    font-size: 32px;

    font-weight: 700;

    line-height: 40.32px;

    text-align: left;

}

h5,
.h5 {font-family: 'DM Sans';font-size: 26px;font-weight: 700;line-height: 32.76px;text-align: left;}

h6,
.h6 {font-family: 'DM Sans';font-size: 22px;font-weight: 500;line-height: 29.4px;text-align: left;}

p {

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 19px;

    color: var(--text-primary-color);

}

.spin-animation {

    -webkit-animation: spin 10s linear infinite;

    animation: spin 10s linear infinite;

}

main {
    overflow-y: hidden;
    overflow-x: hidden;
    height: 100%;
}

/*----------------------------------------------------------------- home-page-one -----------------------------------------------------------------*/

/*--------------------------------------------------------------

# Banner Section-1

--------------------------------------------------------------*/

.banner-one {
    height: 1360px;
    background-image: url(../img/home-one-hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 150px 0 0px 0;

}

.banner-one img.arrow-icon {
    position: absolute;
    bottom: calc(25% - -7px);
    left: 0;
}

.banner-one img.center-icon {
    position: absolute;
    left: 290px;
    right: 0;
    margin: 0 auto;
    top: calc(58% - 2px);
}

.banner-one img.left-icon {
    position: absolute;
    left: 45px;
    top: 200px;
}

.banner-one .banner-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 40px;
    margin-top: 62px;
}

.banner-one .banner-text {
    max-width: 720px;
    position: relative;
}

.banner-one h5.font-thank-you {
    font-family: "Thank You";
    font-size: 39px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 0 auto;
    position: absolute;
    top: -10px;
    right: 0;
    left: calc(10% - 0px);
}

.banner-one .banner-text h1 {
    font-size: 74px;
    font-weight: 700;
    line-height: 91.8px;
}

.banner-one .banner-sub-text {
    max-width: 520px;
    margin: 0 auto;
}

.banner-one .banner-sub-text p {
    font-size: 20px;
    line-height: 30px;
    color: var(--primary-black);
    margin: 0 0 65px 0;
}

.banner-one .icon-box {
    max-width: 322px;
    border-radius: 20px;
    background-color: #53493080;
    padding: 25px;
    position: absolute;
    bottom: 90px;
    left: 110px;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.banner-one .box-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 0 0 10px;
}

.banner-one .box-title h5 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: var(--quaternary-color);
    margin: 0;
    padding: 0 0 5px 0;
}


.banner-one .icon-box .box-title span {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    color: #4f4f4f;
    background-color: var(--quaternary-color);
    border-radius: 100px;
    padding: 5px 10px;
    max-width: 55px;
    margin-bottom: 17px;
}

.banner-one .box-title i.fas.fa-star {
    color: var(--text-secondary-color);
    padding-left: 3px;
}

.banner-one .icon-box p {
    font-size: 14px;
    line-height: 20.2px;
    color: var(--quaternary-color);
    margin: 0;
}

/*--------------------------------------------------------------

# our-services-one

--------------------------------------------------------------*/

.our-services-one img.area-img-left {
    position: absolute;
    top: 100px;
    left: 60px;
    width: 160px;
}

.our-services-one img.area-img-right {
    position: absolute;
    top: -70px;
    right: 50px;
    width: 112px;
}

.main-title {
    margin-bottom: 65px;
}

.main-title h3 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 500;
    line-height: 29.4px;
    text-transform: capitalize;

}

.main-title img {
    padding: 0 20px;
}

.main-title h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55.8px;
    text-align: center;
    text-transform: capitalize;
}


.our-services-one .flex-box {
    padding-top: 65px;
}

.our-services-one .services-box {
    padding: 30px 30px;
    text-align: center;
    background-color: var(--bg-color);
    border-radius: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.our-services-one .services-box:hover {
    border: 1px solid #534930;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0px 15px 30px 0px #00000026;
    box-shadow: 0px 15px 30px 0px #00000026;

}

.our-services-one .services-box:hover,
.our-services-one .services-box:hover a {
    color: var(--text-primary-color);
}

.our-services-one .services-box h6 {
    color: var(--secondary-color);
    text-align: center;
    padding: 25px 0 10px 0;
    margin: 0;
    font-size: 18px;
}

.our-services-one .services-box p {
    font-size: 14px;
    line-height: 19px;
}

.our-services-one .services-box a {
    color: var(--tertiary-gray);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.our-services-one .services-box,
.our-services-one .services-box a:hover {
    color: var(--text-primary-color);
}

.services-box i.fas.fa-arrow-right {
    padding: 2px 0px 0 5px;
}

/*--------------------------------------------------------------

# slider section

--------------------------------------------------------------*/

.specialties-one {
    padding-top: 165px;
}

.specialties-one .specialties-slider-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

}

.specialties-one .specialties-content {
    padding: 0 15px 0 40px;
    background-color: var(--bg-color);
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.specialties-one .specialties-content h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: var(--secondary-color);
    text-align: left;
}

.specialties-one .specialties-content h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55.8px;
    text-align: left;

}

.specialties-one .specialties-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    text-align: left;
    color: var(--tertiary-gray);
}

.specialties-one .specialties-content img {
    position: absolute;
    top: calc(50% - 0px);
    right: 20px;
}

.specialties-img {
    width: 50%;
}

.specialties-img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.specialties-one .custom-arrow button.slick-arrow {
    border: 0;
    outline: 0;
    border-radius: 5px;
    background: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.specialties-one .custom-arrow {
    position: absolute;
    right: calc(25% - 66px);
    bottom: 20px;
}

/*--------------------------------------------------------------

# Popular Foods section

--------------------------------------------------------------*/

.popular-food-one {
    padding-top: 165px;
}

.popular-food-one .popular-img-left {
    position: absolute;
    top: 270px;
    left: 200px;
}

.popular-food-one .popular-img-right {
    position: absolute;
    right: 50px;
    bottom: calc(50% - 150px);
}

.popular-food-one .tab-content {
    margin-top: 100px;
    gap: 65px;
}

.popular-food-one .item-box {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 30px 20px;
    margin: 50px 0 0 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    max-width: 280px;
}

.popular-food-one .item-box:hover {
    background-color: var(--primary-color);
    -webkit-box-shadow: 0px 15px 30px 0px #00000026;
    box-shadow: 0px 15px 30px 0px #00000026;

}

.popular-food-one .item-box:hover,
.popular-food-one .item-box:hover h3,
.popular-food-one .item-box:hover h4 {
    color: var(--quaternary-color);
}

.popular-food-one .item-box:hover,
.popular-food-one:hover li,
.popular-food-one:hover .divider {
    color: #A9A497;
    border-color: #79715D;
}

.popular-food-one .item-box img {
    margin-top: -134px;
}

.popular-food-one .item-box span {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    color: #4f4f4f;
    background-color: var(--quaternary-color);
    border-radius: 100px;
    padding: 5px 9px 5px 11px;
    max-width: 55px;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    margin: -44px auto 20px;
    display: block;
}

.popular-food-one .item-box i.fas.fa-star {
    color: var(--text-secondary-color);
    padding-left: 3px;
}

.popular-food-one .item-box h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: center;
    margin: 0px 0px 15px 0px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-one .divider {
    border: 0.5px solid #535353;
    border-left: 0px;
    border-right: 0px;
    padding: 10px 0;
}

.popular-food-one li {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    color: var(--secondary-gray);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-one .item-box h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: center;
    color: var(--text-secondary-color);
    margin: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-one .item-box .price {
    margin-top: 15px;
}

.popular-food-one .item-box .plus-bg {
    background-color: var(--secondary-color);
    width: 26px;
    height: 26px;
    text-align: center;
    border-radius: 7px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-one .item-box:hover .plus-bg {
    background-color: var(--quaternary-color);
}

.popular-food-one .item-box a i {
    color: var(--quaternary-color);
    font-size: 12px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-one .item-box:hover a i {
    color: var(--primary-color);
}

.popular-food-one .nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    padding: 0 0 49px 0;
    margin: 0 0 30px 0;
}

.popular-food-one .item-box:hover {
    background-color: var(--primary-color);

}

.popular-food-one .item-box:hover,
.popular-food-one .item-box:hover h3,
.popular-food-one .item-box:hover .price h4 {
    color: var(--quaternary-color);
}

.popular-food-one .nav-pills .nav-link {
    background: transparent;
    border: 1px solid #534930;
    border-radius: 100px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--text-secondary-color);
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px 10px 20px;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popular-food-one .portfolio-filters li:hover,
.popular-food-one .portfolio-filters li.filter-active {
    color: var(--quaternary-color);
    background-color: var(--primary-color);
}

.popular-food-one .portfolio-filters li:first-child {
    margin-left: 0;
}

.popular-food-one .portfolio-filters li:last-child {
    margin-right: 0;
}

.popular-food-one .portfolio-item {
    position: relative;
}

.popular-food-one .viwe-more-btn {
    text-align: center;
    margin-top: 65px;
}

/*--------------------------------------------------------------

#Table Reservation section

--------------------------------------------------------------*/

.table-reservation-one {
    padding: 50px 0 0 0;
}

.table-reservation-one img.table-left {
    position: absolute;
    left: 50px;
    top: 109px;
}

.table-reservation-one .main-title {
    margin-bottom: 30px;
}

.table-reservation-one .main-title h2 {
    text-align: left;
}

.table-reservation-one .table-box {
    padding-left: 40px !important;
}

.table-reservation-one .table-box .bg-box-one {
    height: 215px;
    max-width: 405px;
    background-image: url(../TP_22.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.table-reservation-one .table-box .bg-box-one::before {
    /* content: ""; */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgb(0 0 0 / 0%))), -webkit-gradient(linear, left bottom, left top, from(rgba(83, 73, 48, 0.5)), to(rgba(83, 73, 48, 0.5)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        -o-linear-gradient(bottom, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgb(0 0 0 / 0%)), linear-gradient(0deg, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5));
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.table-reservation-one .table-box .bg-box-one:hover::before {
    top: 75%;
}

.table-reservation-one .bg-box-one h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--quaternary-color);
    margin-bottom: 10px;
    position: relative;
}

.table-reservation-one .bg-box-one p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--quaternary-color);
    margin-bottom: 10px;
    position: relative;
}

.table-reservation-one .table-box .bg-box-two {
    height: 215px;
    max-width: 405px;
    background-image: url(../mp.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.table-reservation-one .table-box .bg-box-two::before {
    /* content: ""; */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))),
        -webkit-gradient(linear, left bottom, left top, from(rgba(83, 73, 48, 0.5)), to(rgba(83, 73, 48, 0.5)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        -o-linear-gradient(bottom, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        linear-gradient(0deg, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5));
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.table-reservation-one .table-box .bg-box-two:hover::before {
    top: 75%;
}

.table-reservation-one .bg-box-two h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--quaternary-color);
    margin-bottom: 10px;
    position: relative;
}

.table-reservation-one .bg-box-two p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--quaternary-color);
    margin-bottom: 10px;
    position: relative;
}

.table-reservation-one .table-box .bg-box-three {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* margin-top: 25px; */
    height: 215px;
    background-image: url(../banana-f.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    position: relative;
}

.table-reservation-one .table-box .bg-box-three::before {
    /* content: ""; */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))),
        -webkit-gradient(linear, left bottom, left top, from(rgba(83, 73, 48, 0.5)), to(rgba(83, 73, 48, 0.5)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        -o-linear-gradient(bottom, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        linear-gradient(0deg, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5));
}


.table-reservation-one .table-box .bg-box-three .primary-btn {
    padding: 20px 69px 20px 50px;
    background-color: #FFF;
    color: #B28E6A;
}

.table-reservation-one .table-box .bg-box-three .primary-btn:hover {
    color: #FFF;
}

.table-reservation-one .table-box .bg-box-three .primary-btn::before {
    left: auto;
    right: 0 !important;
    -webkit-transform: translate(-3px, -50%);
    -ms-transform: translate(-3px, -50%);
    transform: translate(-3px, -50%);
    background-color: #B28E6A;
    color: #FFF;
}

/*--------------------------------------------------------------

#Food Reviews section

--------------------------------------------------------------*/

.food-reviews-one {
    padding: 50px 0;
}

.food-reviews-one img.food-reviews-left {
    position: absolute;
    top: -150px;
    right: 330px;
}

.food-reviews-one .review-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.food-reviews-one .review-slide p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    margin: 0;
    max-width: 1064px;
}

.food-reviews-one .review-slide .quote {
    text-align: center;
    margin: 45px 0;
}

.food-reviews-one .review-slide .author h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: center;
    margin: 0;
    padding-left: 20px;
    color: var(--secondary-color);
}

.food-reviews-one .review-slide .author img {
    border-radius: 100%;
    width: 56px;
}

.food-reviews-one .arrow-icons button {
    border: 0;
    outline: 0;
    background: none;
    width: 14px;
    height: 24px;
    color: #B28E6A;
}

.food-reviews-one button.left-arrow {
    position: absolute;
    top: 45%;
    left: 0;
}

.food-reviews-one button.right-arrow {
    position: absolute;
    top: 45%;
    right: 0;
}

/*--------------------------------------------------------------

#video section

--------------------------------------------------------------*/
.video-section .play-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.video-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 850px;
    background-image: url(../img/video-sec-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.video-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(0 0 0 / 10%)), to(rgb(0 0 0 / 27%))), -webkit-gradient(linear, left bottom, left top, from(rgb(83 73 48 / 26%)), to(rgb(83 73 48 / 13%)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        -o-linear-gradient(bottom, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5));
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        linear-gradient(0deg, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5)); */
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.video-section:hover::before {
    /* opacity: 0.5; */
}

.video-section .play-btn {
    width: 100px;
    height: 100px;
    background: -o-radial-gradient(transparent 60%, #faf4ed 62%);
    background: radial-gradient(transparent 60%, #faf4ed 62%);
    border-radius: 50%;
    position: relative;
    display: block;
    -webkit-box-shadow: 0px 0px 25px 3px #faf4ed63;
    box-shadow: 0px 0px 25px 3px #faf4ed63;
}

/* triangle */
.video-section .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    -ms-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    z-index: 100;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.video-section .play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #faf4ed;
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        -webkit-box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        -webkit-box-shadow: none;
        box-shadow: none;

    }
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        -webkit-box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        -webkit-box-shadow: none;
        box-shadow: none;

    }
}


/*--------------------------------------------------------------

#blog section

--------------------------------------------------------------*/
.blog-one {
    padding-top: 165px;
}

.blog-one .blog-right-img {
    position: absolute;
    top: -20px;
    right: 165px;
}

.blog-one .blog-left-img {
    position: absolute;
    bottom: 0;
    left: 165px;
}

.blog-one .blog-bottom-img {
    position: absolute;
    right: 191px;
    bottom: -183px;

}

.blog-one .blog-one-bg {
    background-image: url(../img/blog-1-bg-img-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-one .blog-one-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(61%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 61%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 61%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-one .blog-one-bg:hover::before {
    top: 20%;
}

.blog-one .blog-two-bg {
    background-image: url(../img/blog-1-bg-img-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-one .blog-two-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(61%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 61%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 61%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-one .blog-two-bg:hover::before {
    top: 20%;
}

.blog-one .blog-three-bg {
    background-image: url(../img/blog-1-bg-img-3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-one .blog-three-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(61%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 61%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 61%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-one .blog-three-bg:hover::before {
    top: 20%;
}

.blog-one .blog-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 419px;
    padding: 20px 24px;

    border-radius: 10px;
}

.blog-one .blog-box::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(61%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 61%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 61%);
}


.blog-one .blog-box a {
    padding: 8px 18px 8px 18px;
    border-radius: 18px;
    background-color: var(--quaternary-color);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    text-align: center;
    position: absolute;
    top: 20px;
    left: 20px;
}

.blog-one .blog-box .blog-text h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 29.4px;
    text-align: left;
    color: var(--quaternary-color);
    margin: 0;

}

.blog-one .blog-box .div-border {
    margin: 13px 0 16px 0;
    border: 0.65px solid #B28E6A;
}

.blog-one .author-box img {
    width: 46px;
    border-radius: 100%;
    margin-right: 13px;
}

.blog-one .author-box .author-text h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    margin-bottom: 5px;
    color: var(--quaternary-color);
}

.blog-one .author-box .author-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20.2px;
    text-align: left;
    margin: 0;
    color: var(--quaternary-color);
}

.blog-one .author-box h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    text-align: left;
    color: var(--quaternary-color);
}

.blog-one .more-article-btn {
    text-align: center;
    margin-top: 65px;
}

/*--------------------------------------------------------------

#map section

--------------------------------------------------------------*/
.map {
    padding-top: 50px;
}

.map .map-overlay {
}

.map .map-overlay iframe {
    opacity: 0.5 !important;
}


/*----------------------------------------------------------------- home-page-two -----------------------------------------------------------------*/

/*--------------------------------------------------------------

# Banner Section-2

--------------------------------------------------------------*/
.banner-two {
    padding: 116px 0 0 0;
}

.banner-two img.banner-two-vector {
    position: absolute;
    bottom: -25px;
    right: calc(17% - 165px);
}

.banner-two .hero-banner {
    z-index: 10;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-two .hero-banner::after {
    content: "";
    background-color: #534930;
    width: 50%;
    height: 100%;
    position: absolute;
    left: -2px;
    z-index: -1;
}

.banner-two .hero-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.banner-two .hero-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #534930;
    position: relative;
    padding: 0 0 0px 20px;
}

.banner-two .heto-detail {
    max-width: 800px;
    margin-left: auto;
}

.banner-two .hero-heading img.arrow {
    position: absolute;
    right: 10px;
    bottom: calc(30% - 20px);
}

.banner-two .hero-heading img.dot-one {
    position: absolute;
    bottom: calc(25% - 15px);
    right: 0px;
    left: 30%;
    margin: 0 auto;
}

.banner-two .hero-heading img.dot-two {
    position: absolute;
    top: 65px;
    right: 0;
    left: 37%;
    width: 22px;
    height: 22px;
    margin: 0 auto;
}

.banner-two .hero-heading img.dot-three {
    position: absolute;
    top: 17%;
    left: calc(20% - 50px);
    width: 15px;
    height: 15px;
}

.banner-two .hero-heading img.dot-four {
    position: absolute;
    width: 22px;
    height: 22px;
    bottom: 10%;
    left: calc(25% - 88px);
}

.banner-two .hero-banner img.dot-five {
    position: absolute;
    top: 62px;
    left: 64px;
}

.banner-two .hero-heading h1 {
    color: #FFF;
    font-weight: 700;
    line-height: 91.8px;
    margin-bottom: 20px;
}

.banner-two .hero-heading p.offer-titel {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.banner-two .hero-heading p.offer-titel img {
    padding-right: 10px;
}

.banner-two .hero-heading p {
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    max-width: 648px;
    margin-bottom: 65px;
}

.banner-two .hero-banner {
    width: 35%;
}

.banner-two .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.banner-two .social-items {
    gap: 65px;
}

.banner-two .social-items a img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.banner-two .social-items a:hover img {
    -webkit-filter: grayscale(100%) brightness(0.5);
    filter: grayscale(100%) brightness(0.5);

}

.banner-two .hero-heading img.play-icon {
    width: 62px;
}

/*--------------------------------------------------------------

# our-services-two

--------------------------------------------------------------*/

.our-services-two {
    padding: 80px 0 0 0;
}

.our-services-two .our-two-bg {
    background-color: #F7F7F7;
    border-radius: 10px;
    padding: 50px 40px;
}

.our-services-two .services-box h6 {
    text-align: start;
    padding: 0px;
}

.our-services-two .services-box p {
    color: #535353;
    margin: 5px 0 0 0;
}

.our-services-two .services-box img {
    width: 65px;
    height: 65px;
    margin: 0 20px;
}

.our-services-two .border-box {
    border-right: 1px solid #B28E6A;
    border-left: 1px solid #B28E6A;
}

.our-services-two img.our-vector-two {
    position: absolute;
    top: 30px;
    left: 65px;
}


/*--------------------------------------------------------------

# our specialties section-two

--------------------------------------------------------------*/

.specialties-two {
    padding: 80px 0;
}

.specialties-two .right-top-border {
    border-radius: 10px 0px 0px 0px;
}

.specialties-two .right-bottom-border {
    border-radius: 0px 0px 0px 10px;
}

.specialties-two .left-top-border {
    border-radius: 0px 10px 0px 0px;
}

.specialties-two .left-bottom-border {
    border-radius: 0px 0px 10px 0px;
}

.specialties-two img.specialties-two-icon-one {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.specialties-two img.specialties-two-icon-two {
    position: absolute;
    bottom: 105px;
    left: 60px;
}

.specialties-two .specialties-two-content {
    padding: 30px 44px;
    background-color: var(--bg-color);
    width: 100%;
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.specialties-two-img {
    width: 100%;
    height: 100%;
    background-color: #534930;
}

.specialties-two-img img {
    /* opacity: 0.5; */
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 100%;
}

.specialties-two-img img:hover {
    /* opacity: 1; */
}

.specialties-two .specialties-two-content h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    margin-bottom: 10px;
}

.specialties-two .specialties-two-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6rem;
    color: #000000;
    margin-bottom: 35px;
}

.specialties-two .specialties-two-content a {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #000;
}

.specialties-two .specialties-two-content a:hover {
    color: var(--text-hover-color);
}

/*--------------------------------------------------------------

# Popular Foods section-two

--------------------------------------------------------------*/

.main-title-two {
    margin-bottom: 35px;
    text-align: center;
}

.main-title-two h3 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 500;
    line-height: 29.4px;
    text-transform: capitalize;
    margin: 0 0 10px 0;

}

.main-title-two img {
    position: absolute;
    top: 29px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.main-title-two h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55.8px;
    text-align: center;
    text-transform: capitalize;
}

.popular-food-two img.popular-food-icon-one {
    position: absolute;
    bottom: 0;
    top: 315px;
    margin: auto 50px;
    left: 115px;
}

.popular-food-two img.popular-food-icon-two {
    position: absolute;
    top: 130px;
    right: 95px;
}

.popular-food-two img.popular-food-icon-three {
    position: absolute;
    bottom: 0;
    right: 95px;
}

.popular-food-two .nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    padding: 0 0 15px 0;
}

.popular-food-two .item-box-two {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 30px 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    max-width: 424px;
    margin: 13px 0;
    align-items: center;
}
.popular-food-two .item-box-two  > img{
    /* max-width: 116px; */
}

.popular-food-two .item-box-two:hover {
    /* background-color: var(--primary-color); */
}

.popular-food-two .item-box-two:hover,
.popular-food-two .item-box-two:hover h3,
.popular-food-two .item-box-two:hover .price h4 {
    color: #000000;
}

.popular-food-two .nav-pills .nav-link {
    background: transparent;
    border: 1px solid #534930;
    border-radius: 100px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: var(--text-secondary-color);
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px 10px 20px;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popular-food-two .portfolio-filters li:hover,
.popular-food-two .portfolio-filters li.filter-active {
    color: var(--quaternary-color);
    background-color: var(--primary-color);
}

.popular-food-two .portfolio-filters li:first-child {
    margin-left: 0;
}

.popular-food-two .portfolio-filters li:last-child {
    margin-right: 0;
}

.popular-food-two .portfolio-item {
    position: relative;
    overflow: hidden;
    margin: 50px 0 0 0;
}

.popular-food-two .item-box-two .food-item {
    max-width: 116px;
    width: 116px;
}

.item-box-two .item-detail p {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #B28E6A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 9px 0 5px 0;
}

.item-box-two .item-detail p i {
    font-size: 12px;
    margin: 0 0 0 5px;
}

.item-box-two .item-detail h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 29.4px;
    color: #000000;
    margin: 0 0 5px 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.item-box-two .item-detail .price h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    color: #534930;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-two .item-box-two .plus-bg {
    /* background-color: var(--secondary-color); */
    /* width: 25px; */
    /* height: 25px; */
    text-align: center;
    border-radius: 7px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.popular-food-two .item-box-two a i {
    color: var(--quaternary-color);
    font-size: 12px;
}

.popular-food-two .item-box-two:hover .plus-bg {
    /* background-color: var(--quaternary-color); */
}

.popular-food-two .item-box-two a i {
    color: var(--quaternary-color);
    font-size: 12px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-two .item-box-two:hover a i {
    color: var(--primary-color);
}

.popular-food-two .viwe-more-btn {
    text-align: center;
    margin-top: 65px;
}

.popular-food-two .item-box-two .offer-lable {
    position: absolute;
    top: 15px;
    right: -26px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #FFF;
    width: 115px;
    text-align: center;
}

.popular-food-two .item-box-two .offer-lable span {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    color: #534930;
}

/*--------------------------------------------------------------

# table-Reservation-two
--------------------------------------------------------------*/

.table-reservation-two {
    padding: 80px 0 0 0;
}

.table-reservation-two img.your-order-left {
    position: absolute;
    top: 200px;
    left: 50px;
}

.table-reservation-two .your-order {
    padding: 90px 10px;
    background-image: url(../img/home-two-place-your-order-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
}

.table-reservation-two .your-order::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))),
        -webkit-gradient(linear, left bottom, left top, from(rgba(83, 73, 48, 0.5)), to(rgba(83, 73, 48, 0.5)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        -o-linear-gradient(bottom, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        linear-gradient(0deg, rgba(83, 73, 48, 0.5), rgba(83, 73, 48, 0.5));
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.table-reservation-two .your-order:hover:before {
    opacity: 0.7;
}

.table-reservation-two .your-order h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #FFFFFF;
    position: relative;
}

.table-reservation-two .your-order h3 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55.8px;
    color: #FFFFFF;
    position: relative;
}

.table-reservation-two .your-order p {
    width: 884px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    margin: 0 0 50px 3px;
}

.table-reservation-two .your-order input.form-control {
    height: 62px;
    background-color: #fff;
    position: relative;
    border-radius: 0;
    text-align: left;
    padding: 20px 10px 20px 70px;
}

.table-reservation-two .your-order input.name {
    border-radius: 30px 0 0 30px;
}

.table-reservation-two .your-order input.name::after {
    content: 'f007';
    width: 100%;
    position: absolute;
}

.table-reservation-two .your-order input.form-control::-webkit-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #534930;
}

.table-reservation-two .your-order input.form-control::-moz-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #534930;
}

.table-reservation-two .your-order input.form-control:-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #534930;
}

.table-reservation-two .your-order input.form-control::-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #534930;
}

.table-reservation-two .your-order input.form-control::placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #534930;
}

.table-reservation-two .your-order .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.table-reservation-two .form-group {
    padding: 0 5px;
}

.table-reservation-two .your-order .primary-btn {
    border-radius: 0 100px 100px 0;
    padding: 20px 69px 20px 49px;
    width: 84%;
}

.table-reservation-two .your-order .primary-btn::before {
    left: auto;
    right: 0 !important;
    -webkit-transform: translate(-3px, -50%);
    -ms-transform: translate(-3px, -50%);
    transform: translate(-3px, -50%);
}

.table-reservation-two .your-order .primary-btn span {
    font-size: 16px;
}

.table-reservation-two .primary-btn:hover::before {
    border-radius: 0 100px 100px 0;
}

/*--------------------------------------------------------------

# Testimonial section
--------------------------------------------------------------*/

.testimonial {
    padding: 80px 0;
}

img.testi-icon-two {
    position: absolute;
    bottom: 10px;
    left: calc(13% - 110px);
}

img.testi-icon-one {
    position: absolute;
    right: 185px;
    top: 53px;
}

.testimonial .testimonial-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #F7F7F7;
    border-radius: 10px 0px 0px 10px;
    padding: 97px 0;
}

.testimonial .testimonial-content h3 {
    position: relative;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
}

.testimonial .testimonial-content h3::before {
    content: '';
    width: 52%;
    position: absolute;
    border: 2px solid #534930;
    border-radius: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.testimonial .testimonial-content h5 {
    color: var(--primary-color);
    margin: 0 0 30px 0;
}

.testimonial .testimonial-content p {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin: 30px 0 30px 0;
    width: 86%;
}

.testimonial .testimonial-content li {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--secondary-color);
}

.testimonial .custom-arrow button.slick-arrow {
    border: 0;
    outline: 0;
    border-radius: 5px;
    background: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.testimonial .custom-arrow {
    position: absolute;
    right: calc(50% - 67px);
    bottom: 30px;
}

.testimonial .testimonial-img {
    background: #534930;
    border-radius: 0px 10px 10px 0px;
}

.testimonial .testimonial-img img {
    border-radius: 0px 10px 10px 0px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    opacity: 0.9;
    height: 100%;
}

/*--------------------------------------------------------------

# Video Section Tow
--------------------------------------------------------------*/

.video-section-two {
    background-image: url(../img/video-sec-bg-2.png);
    background-position: top;
}

/*--------------------------------------------------------------

# Blog-two Section
--------------------------------------------------------------*/

.blog-two {
    padding-top: 165px;
}

.blog-two .blog-right-img {
    position: absolute;
    top: 110px;
    right: calc(18% - 148px);
}

.blog-two .blog-left-img {
    position: absolute;
    top: calc(65% - 0px);
    left: 145px;
}

.blog-two .blog-bottom-img {
    position: absolute;
    right: calc(15% - 25px);
    bottom: -135px;
}

.blog-two .blog-one-bg {
    background-image: url(../img/blog-2-bg-img-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-two .blog-one-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-two .blog-one-bg:hover::before {
    top: 30%;
}

.blog-two .blog-two-bg {
    background-image: url(../img/blog-2-bg-img-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-two .blog-two-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-two .blog-two-bg:hover::before {
    top: 30%;
}

.blog-two .blog-three-bg {
    background-image: url(../img/blog-2-bg-img-3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-two .blog-three-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-two .blog-three-bg:hover::before {
    top: 30%;
}

.blog-two .blog-four-bg {
    background-image: url(../img/blog-2-bg-img-4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-two .blog-four-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-two .blog-four-bg:hover::before {
    top: 20%;
}

.blog-two .blog-five-bg {
    background-image: url(../img/blog-2-bg-img-5.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-two .blog-five-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-two .blog-five-bg:hover::before {
    top: 20%;
}

.blog-two .blog-six-bg {
    background-image: url(../img/blog-2-bg-img-6.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-two .blog-six-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-two .blog-six-bg:hover::before {
    top: 20%;
}

.blog-two .blog-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 391px;
    padding: 20px 24px;
    border-radius: 10px;
}

.blog-two .blog {
    margin: 0 0 24px 0;
}

.blog-two .blog-box a {
    padding: 8px 18px 7px 18px;
    border-radius: 18px;
    background-color: var(--quaternary-color);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    text-align: center;
}

.blog-two .blog-box h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    text-align: left;
    color: var(--quaternary-color);
    margin: auto 0;
    padding: 0 0 0 20px;
}

.blog-two .blog-box .blog-text h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 29.4px;
    text-align: left;
    color: var(--quaternary-color);
    margin: 20px 0 0 0;
}

.blog-two .more-article-btn {
    text-align: center;
    margin-top: 65px;
}

/*----------------------------------------------------------------- home-page-three -----------------------------------------------------------------*/

/*--------------------------------------------------------------

/*--------------------------------------------------------------

# Banner Section-3

--------------------------------------------------------------*/

.banner-three {
    padding: 120px 0 0 0;
    height: 1010px;
    background-image: url(../img/home-3-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-three .banner-text {
    max-width: 720px;
}

.banner-three h5.font-thank-you {
    font-family: "Thank You";
    font-size: 29px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 0 0 -21px 56px;
}

.banner-three .banner-text h1 {
    font-size: 74px;
    font-weight: 700;
    line-height: 91.8px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}


.banner-three .banner-text p {
    font-size: 20px;
    line-height: 30px;
    color: var(--primary-black);
    margin: 0 0 65px 0;
}

.banner-three img.right-leaf {
    position: absolute;
    bottom: -65px;
    right: -70px;
}

.banner-three img.left-leaf {
    position: absolute;
    top: 150px;
    left: 105px;
}

/*--------------------------------------------------------------

# our-services-three

--------------------------------------------------------------*/

.our-services-three {
    padding: 165px 0 0 0;
}

.our-services-three .our-three-bg {
    background-color: #FAF4ED;
    border-radius: 10px;
    padding: 43px 0;
    margin: 0 auto;
}

.our-services-three .services-box {
    text-align: center;
}

.our-services-three .services-box a img {
    margin: 0 0 21px 0;
}

.our-services-three .services-box h6 {
    text-align: center;
    color: #000000;
    margin: 0 0 10px 0;
}

.our-services-three .services-box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #B28E6A;
    margin: 0;
}

.our-services-three .services-box p:hover {
    color: #534930;
}

.our-services-three .border-box {
    border-right: 1px solid #B28E6A;
    border-left: 1px solid #B28E6A;
}

.our-services-three .service-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.our-services-three .service-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*--------------------------------------------------------------

# our specialties section-three

--------------------------------------------------------------*/

.main-title-three {
    margin-bottom: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-title-three h3 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55.8px;
    text-align: center;
    color: var(--primary-black);
    text-transform: capitalize;
    margin: 0 0 10px 0;
}

.main-title-three p {
    width: 650px;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #A3A3A3;
}

.specialties-three {
    padding: 165px 0 0 0;
}

.specialties-three-item {
    max-width: 230px;
    margin: 0 12px;
}

.specialties-three .specialties-three-img {
    max-height: 300px;
    max-width: 230px;
    overflow: hidden;
    border-radius: 10px;
    background: #534930;
}


.specialties-three .specialties-three-img img {
    border-radius: 10px;
    max-height: 300px;
    width: 230px;
    opacity: 0.5;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.specialties-three .specialties-three-img img:hover {
    opacity: 1;
}

.specialties-three .custom-arrow {
    margin-top: 65px;
}

.specialties-three .custom-arrow button {
    border: 0;
    outline: 0;
    border-radius: 5px;
    background: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*-------------------------------------------------------------- 

# Popular Foods section-three 

--------------------------------------------------------------*/
.popular-food-three {
    padding-top: 165px;
}

.popular-food-three .popular-img-left {
    position: absolute;
    top: 270px;
    left: 200px;
}

.popular-food-three .popular-img-right {
    position: absolute;
    right: 50px;
    bottom: calc(50% - 150px);
}

.popular-food-three .tab-content {
    margin-top: 100px;
    gap: 65px;
}

.popular-food-three .item-box {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 25px 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    max-width: 280px;
}

.popular-food-three .item-box:hover {
    background-color: var(--primary-color);
    -webkit-box-shadow: 0px 15px 30px 0px #00000026;
    box-shadow: 0px 15px 30px 0px #00000026;
}

.popular-food-three .item-box:hover,
.popular-food-three .item-box:hover h3,
.popular-food-three .item-box:hover h4 {
    color: var(--quaternary-color);
}

.popular-food-three .item-box:hover,
.popular-food-three:hover h6 {
    color: #A9A497;
    border-color: #79715D;
}

.popular-food-three .item-box img {
    margin: -134px 0 0px -20px;
    position: relative;
}


.popular-food-three .item-box h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: left;
    margin: 0px 0px 10px 0px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-three h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: left;
    color: var(--secondary-gray);
    margin: 0;
}

.popular-food-three .item-box h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: center;
    color: var(--text-secondary-color);
    margin: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-three .item-box .price {
    margin-top: 25px;
}

.popular-food-three .item-box .plus-bg {
    background-color: var(--secondary-color);
    width: 66px;
    height: 60px;
    text-align: center;
    border-radius: 20px 0 20px 0;
    padding: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-three .item-box:hover .plus-bg {
    background-color: var(--quaternary-color);
}

.popular-food-three .item-box a i {
    color: var(--quaternary-color);
    font-size: 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popular-food-three .item-box:hover a i {
    color: var(--primary-color);
}


.popular-food-three .nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    padding: 0 0 49px 0;
    margin: 0 0 30px 0;
}

.popular-food-three .item-box:hover {
    background-color: var(--primary-color);
}

.popular-food-three .item-box:hover,
.popular-food-three .item-box:hover h3,
.popular-food-three .item-box:hover .price h4 {
    color: var(--quaternary-color);
}

.popular-food-three .nav-pills .nav-link {
    background: transparent;
    border: 1px solid #534930;
    border-radius: 100px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--text-secondary-color);
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px 10px 20px;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popular-food-three .portfolio-filters li:hover,
.popular-food-three .portfolio-filters li.filter-active {
    color: var(--quaternary-color);
    background-color: var(--primary-color);
}

.popular-food-three .portfolio-filters li:first-child {
    margin-left: 0;
}

.popular-food-three .portfolio-filters li:last-child {
    margin-right: 0;
}

.popular-food-three .portfolio-item {
    position: relative;
    margin: 50px 0 0 0;
}

.popular-food-three .viwe-more-btn {
    text-align: center;
    margin-top: 65px;
}

/*-------------------------------------------------------------- 

# Table Reservation section-three 

--------------------------------------------------------------*/

.table-reservation-three {
    padding: 165px 0 0 0;
}

.table-reservation-three .table-slider {
    height: 778px;
    position: relative;
}

.table-reservation-three .table-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.table-reservation-three .table-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

}

.table-reservation-three .table-bottam img {
    max-width: 368px;
    height: 664px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 10px;
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.table-reservation-three .table-bottam {
    background: #534930;
    border-radius: 10px;
}

.table-reservation-three .table-bottam img:hover {
    opacity: 1;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.table-reservation-three .table-top img {
    max-width: 368px;
    height: 664px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 10px;
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.table-reservation-three .table-top {
    background: #534930;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: calc(50% - 254px);
}

.table-reservation-three .table-top img:hover {
    opacity: 1;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.table-reservation-three .table-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.table-reservation-three .table-detail {
    padding: 45px;
    background-color: #F7F7F7;
    border-radius: 10px;
    width: 748px;
    height: 441px;
    position: absolute;
    bottom: 0;
    right: -17px;
}

.table-reservation-three .table-detail h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #B28E6A;
    margin: 0 0 10px 0;
}

.table-reservation-three .table-detail h3 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55.8px;
    margin: 0 0 20px 0;
}

.table-reservation-three .table-detail p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin: 0 0 35px 0;
}

/*--------------------------------------------------------------

#Food Reviews section-three

--------------------------------------------------------------*/

.food-reviews-three {
    padding: 165px 0;
}

.food-reviews-three .main-title-three {
    margin-bottom: 32px;
}

.food-reviews-three .container {
    max-width: 907px;
}

.food-reviews-three .review-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.food-reviews-three .review-slide li {
    font-family: "Syne", sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    list-style: square;
    color: var(--secondary-color);
}

.food-reviews-three .review-slide p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    margin: 25px 0 25px 55px;
    max-width: 850px;
}

.food-reviews-three .review-slide .quote {
    width: 47px;
    height: 32px;
    position: absolute;
    top: 50px;
    left: calc(25% - 225px);
}

.food-reviews-three .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.food-reviews-three .slick-dots li {
    list-style: none;
    margin-right: 10px;
    border-radius: 100%;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.food-reviews-three button {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    border: transparent;
    outline: none;
    color: transparent;
    background-color: #B28E6A;
}

.food-reviews-three .slick-active button {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid #B28E6A;
    padding: 5px;
}

.food-reviews-three button img {
    display: none;

}

.food-reviews-three .slick-active button img {
    display: block
}


/*--------------------------------------------------------------

# Video Section three
--------------------------------------------------------------*/

.video-section-three {
    background-image: url(../img/video-sec-bg-3.png);
}

/*--------------------------------------------------------------

# Blog-three Section
--------------------------------------------------------------*/

.blog-three {
    padding-top: 165px;
}

.blog-three .blog-one-bg {
    background-image: url(../img/blog-1-bg-img-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    overflow: hidden;
}

.blog-three .blog-one-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-three .blog-one-bg:hover::before {
    top: 30%;
}

.blog-three .blog-two-bg {
    background-image: url(../img/blog-1-bg-img-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    height: 252px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    overflow: hidden;
}

.blog-three .blog-two-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-three .blog-two-bg:hover::before {
    top: 20%;
}

.blog-three .blog-three-bg {
    background-image: url(../img/blog-1-bg-img-3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    height: 252px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 20px;
    overflow: hidden;
}

.blog-three .blog-three-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(83, 73, 48, 0.75)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(83, 73, 48, 0.75) 70%);
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-three .blog-three-bg:hover::before {
    top: 10%;
}

.blog-three .blog-box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px 24px;
    border-radius: 10px;
}

.blog-three .blog-box a {
    padding: 8px 18px 7px 18px;
    border-radius: 18px;
    background-color: var(--quaternary-color);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    text-align: center;
}

.blog-three .blog-box h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    text-align: left;
    color: var(--quaternary-color);
    margin: auto 0;
    padding: 0 0 0 20px;
}

.blog-three .blog-box .blog-text h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 29.4px;
    text-align: left;
    color: var(--quaternary-color);
    margin: 20px 0 0 0;

}

.blog-three .more-article-btn {
    text-align: center;
    margin-top: 65px;
}

/*--------------------------------------------------------------

# social media section
--------------------------------------------------------------*/

.social-media .social-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 390px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.social-media .social-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #534930;
    opacity: 0.5;
}

.social-media .social-bg:hover::before {
    opacity: 0.65;
}

.social-media .social-bg,
.social-media .social-bg:hover a {
    position: relative;
    opacity: 1;
}

.social-media a {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}

.social-media .col {
    padding: 8px 4px 8px 4px;
}


/*--About US Page --*/

/*--------------------------------------------------------------

# title sectio
--------------------------------------------------------------*/

.title {
    padding: 130px 0 45px 0;
    background-color: var(--tertiary-color);
}

.title .heading-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.title .heading-title h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55.8px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.title .heading-title span {
    background-color: var(--secondary-color);
    border-radius: 5px;
    padding: 9px 31px;
    color: #FFF;
}

.title .heading-title span a {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-transform: capitalize;
    color: var(--quaternary-color);

}

.title .heading-title span a.active {
    pointer-events: none;
}


.title .heading-title span a:hover {
    color: #000;
}

/*--------------------------------------------------------------

# about-us section
--------------------------------------------------------------*/

.about-us {
    padding: 50px 0;
}

.about-us .heading-content {
    padding: 0 0 50px 0;
    text-align: center;
}

.about-us .heading-content h4 {
    font-weight: 600;
    line-height: 2px;
    text-align: center;
    margin: 0 0 30px 0;
}

.about-us .heading-content .divider {
    border-top: 2px dashed #B28E6A;
    color: #B28E6A;
}

.about-us .heading-content p {
    font-size: 20px;
    line-height: 30px;
    margin: 25px 0 0 0;
}

.about-us .about-detail {
    width: 55%;
    padding: 0;
}

.about-us .banner-img {
    width: 41%;
    padding: 0;
}

.about-us .about-detail h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.about-us .about-detail h3 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55.8px;
    margin: 0 0 30px 0;
}


.about-us .about-detail p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0 0 30px 0;
}

.about-us .about-detail .service {
    padding: 0 0 65px 0;
}

.about-us .about-detail .service-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
}

.about-us .about-detail .service-link a {

    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.about-us .about-detail .service-link a img {
    margin: 0 20px 0 0;
}

/*--------------------------------------------------------------

# counter section
--------------------------------------------------------------*/

.counter-section {
    background-color: #534930;
    margin-top: 50px;
    padding: 44px 0;
}

.counter-box h2 {
    color: var(--quaternary-color);
    margin: 0 0 10px 0;
}

.counter-box p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--tertiary-color);
    margin: 0;
}


/*--------------------------------------------------------------

# Clint Logo Section

--------------------------------------------------------------*/

.clint-logo {
    padding: 165px 0px;
}

.clint-logo .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.clint-logo .swiper-slide img {
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.clint-logo .swiper-slide:hover img {
    opacity: 1;
}


/*----------------------------------------------------------------- Services Page -----------------------------------------------------------------*/
/*--------------------------------------------------------------

# Our Services section
--------------------------------------------------------------*/

.sec-padding {
    padding: 165px 0 0 0;
}

/*--------------------------------------------------------------

# Clint Logo Section

--------------------------------------------------------------*/

.clint-logo-two {
    padding: 0 0 165px 0px;
}

.clint-logo-two .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.clint-logo-two .swiper-slide img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0.5;
}

.clint-logo-two .swiper-slide:hover img {
    opacity: 1;
}


/*----------------------------------------------------------------- Product Details Page -----------------------------------------------------------------*/
/*--------------------------------------------------------------

# Menu Details section
--------------------------------------------------------------*/
.menu-detail {
    padding: 50px 0;
}

.menu-detail .banner-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    /* background-color: #534930; */
    border-radius: 20px;
    margin: 0 45px 0 0;
    text-align: center;
}

.menu-detail .menu-content {}

.menu-detail .menu-content span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
    margin: 0 0 20px 0;
}

.menu-detail .menu-content h3 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55.8px;
    margin: 0;
}

.menu-detail .menu-content span img {
    margin: 0 20px 0 0;
}

.menu-detail .food-price {
    margin: 0 0 20px 0;
}

.menu-detail .food-price h5 {
    font-weight: 500;
    color: #B28E6A;
    margin: 0 25px 0 0;
}

.menu-detail .menu-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    margin: 0 0 27px 0;
}


.menu-detail .quantity {
    position: relative;
    padding: 0 20px 0 0;
}

.menu-detail input[type=number]::-webkit-inner-spin-button,
.menu-detail input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.menu-detail input[type=number] {
    -moz-appearance: textfield;
}

.menu-detail .quantity input {
    width: 106px;
    height: 43px;
    line-height: 1.65;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 25px;
    border: none;
    -webkit-box-shadow: 0 0 0 1px #B28E6A;
    box-shadow: 0 0 0 1px #B28E6A;
    font-size: 19px;
    border-radius: 100px;
    color: #B28E6A;
    background-color: #FAF4ED;
}

.menu-detail .quantity input:focus {
    outline: 0;
}

.menu-detail .quantity-nav {
    float: left;
    position: relative;
    height: 43px;
}

.menu-detail .quantity-button {
    position: relative;
    cursor: pointer;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    width: 21px;
    text-align: center;
    color: #333;
    font-size: 13px;
    font-family: "FontAwesome" !important;
    line-height: 1.5;
    padding: 0;
    background: #FAFAFA;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.menu-detail .quantity-button:active {
    background: #EAEAEA;
}

.menu-detail .quantity-button.quantity-up {
    position: absolute;
    height: 50%;
    width: 53px;
    top: 0;
    border-left: 1px solid #B28E6A;
    background-image: url(../img/angle-up-solid.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
    border-radius: 0 100px 0 0;
    padding: 0;
    line-height: 1.6;
    background-color: #FAF4ED;
}

.menu-detail .quantity-button.quantity-down {
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 53px;
    border-left: 1px solid #B28E6A;
    background-image: url(../img/angle-down-solid.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
    border-radius: 0 0 100px 0;
    padding: 0;
    background-color: #FAF4ED;
}

.menu-detail .cart-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 27px 0;
}

.menu-detail .cart-btn button {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: #FFFFFF;
    padding: 12px 30px;
    background-color: #B28E6A;
    border-radius: 100px;
    border: 0;
    outline: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.menu-detail .cart-btn button:hover {
    background-color: #534930;
}

.menu-detail .menu-content .menu-meta {
    margin: 0 0 27px 0;
}

.menu-detail .menu-content .menu-meta p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
    margin: 0 0 10px 0;
}

.menu-detail .menu-content .shere-now p {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin: 0 0 14px 0;
}

.menu-detail .social-icon a {
    background-color: var(--secondary-color);
    border-radius: 100%;
    margin-right: 10px;
    color: var(--quaternary-color);
    padding: 2px;
    height: 30px;
    width: 30px;
    text-align: center;
}

.menu-detail .social-icon a:hover {
    background-color: var(--text-secondary-color);
}

.menu-detail .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 40px 0 0 0;
}


.menu-detail .tabs__label {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #534930;
    border: 1px solid #534930;
    padding: 16px 27px 17px 28px;
    border-radius: 100px;
    cursor: pointer;
    margin: 0 20px 30px 0;
}

.menu-detail .tabs__radio {
    display: none;
}

.menu-detail .tabs__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    display: none;
}

.menu-detail .tabs__content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 20px 0;
}

.menu-detail .tabs__content h6 {
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    color: #B28E6A;
}

.menu-detail .tabs__content i {
    color: #000000;
    margin: 0 10px 0 0;
}


.menu-detail .tabs__radio:checked+.tabs__label {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #F7F7F7;
    border: 1px solid #534930;
    padding: 16px 27px 17px 28px;
    border-radius: 100px;
    background-color: #534930;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}


.menu-detail .tabs__radio:checked+.tabs__label+.tabs__content {
    display: initial;
}

.menu-detail .leave-reviews {
    margin: 50px 0 0 0;
}

.menu-detail .leave-reviews h5 {
    font-weight: 500;
    line-height: 32.2px;
}

.menu-detail .form-inner .first-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
}

.menu-detail .form-inner .last-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
}

.menu-detail .form-inner .form-group {
    margin: 0 0 30px 0;
}

.menu-detail .form-inner input::-webkit-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner input::-moz-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner input:-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner input::-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner input::placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner textarea::-webkit-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner textarea::-moz-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner textarea:-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner textarea::-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner textarea::placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A3A3A3;
}

.menu-detail .form-inner label {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #000;
    margin: 17px 0 8px;
}

.menu-detail form {
    margin: 15px 0 65px 0;
}

.menu-detail .submit-review {
    margin: 10px 0 0 0;
}

.menu-detail .wrap-input-8 .input {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #F7F7F7;
    border: none;
    padding: 25px 30px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
}

.wrap-input-8 .input:focus {
    outline: none;
}

.wrap-input-8 {
    position: relative;
}

.wrap-input-8 .input~.focus-border:before,
.wrap-input-8 .input~.focus-border:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B28E6A;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.wrap-input-8 .input~.focus-border:after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.wrap-input-8 .input~.focus-border i:before,
.wrap-input-8 .input~.focus-border i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: #B28E6A;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.wrap-input-8 .input~.focus-border i:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.wrap-input-8 .input:focus~.focus-border:before,
.wrap-input-8 .input:focus~.focus-border:after {
    width: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.wrap-input-8 .input:focus~.focus-border i:before,
.wrap-input-8 .input:focus~.focus-border i:after {
    height: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.menu-detail .related-menu h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    margin: 0;
}

.menu-detail .portfolio-item {
    position: relative;
    overflow: hidden;
    margin: 30px 0 0 0;
}

.menu-detail .item-box-two {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 31px 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.menu-detail .item-box-two .offer-lable {
    position: absolute;
    top: 15px;
    right: -26px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #FFF;
    width: 115px;
    text-align: center;
}

.menu-detail .item-box-two .offer-lable span {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    color: #534930;
}

.menu-detail .item-box-two .food-item {
    max-width: 116px;
}

.menu-detail .item-box-two .item-detail h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 29.4px;
    color: #000000;
    margin: 0 0 5px 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.menu-detail .item-box-two .item-detail .price h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    color: #534930;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.menu-detail .item-box-two .plus-bg {
    background-color: var(--primary-color);
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 7px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.menu-detail .item-box-two a i {
    color: var(--quaternary-color);
    font-size: 12px;
}

.menu-detail .item-box-two:hover .plus-bg {
    background-color: var(--quaternary-color);
}

.menu-detail .item-box-two a i {
    color: var(--quaternary-color);
    font-size: 12px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.menu-detail .item-box-two:hover a i {
    color: var(--primary-color);
}

.menu-detail .item-box-two .item-detail p {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #B28E6A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 5px 0;
}

.menu-detail .item-box-two:hover,
.menu-detail .item-box-two:hover h3,
.menu-detail .item-box-two:hover .price h4 {
    color: var(--quaternary-color);
}

.menu-detail .item-box-two:hover,
.menu-detail .item-box-two:hover .plus-bg {
    background-color: var(--quaternary-color);
}

.menu-detail .item-box-two:hover,
.menu-detail .item-box-two:hover i.fas.fa-plus {
    color: #534930;
}

.menu-detail .item-box-two:hover {
    background-color: var(--primary-color);
}

/*----------------------------------------------------------------- Team Chef Page -----------------------------------------------------------------*/
/*--------------------------------------------------------------

#our chef section
--------------------------------------------------------------*/

.our-chef {
    padding: 165px 0 0 0;
}

.our-chef .heading-content {
    margin: 0 0 65px 0;
}

.our-chef .heading-content h3 {
    text-align: center;
    margin: 0;
}

.our-chef .chef-detail {
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: #534930;
    position: relative;
    margin: 0 0 65px 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.our-chef .chef-detail:hover img {
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 10px;
}

.our-chef .chef-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.our-chef .chef-detail:hover .chef-info {
    display: block;
}

.our-chef .chef-info h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: center;
    margin: 0 0 3px 0;
}

.our-chef .white-bg {
    padding: 7px 16px;
    margin: 0 auto;
    width: 206px;
    background-color: #FFFFFF;
    border-radius: 5px;
}

.our-chef .chef-info p {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: center;
    margin: 0;
    color: #fff;
}

.our-chef .brown-bg {
    padding: 4px 24px;
    margin: -6px 0 0 69px;
    width: 111px;
    background-color: #534930;
    border-radius: 5px;
}

.our-chef .more-load {
    text-align: center;
}

/*----------------------------------------------------------------- Blog Page -----------------------------------------------------------------*/

/*--------------------------------------------------------------

#all blog section
--------------------------------------------------------------*/

.all-blog {
    padding: 165px 0;
}

.all-blog .blog-detail {
    max-width: 896px;
}

.all-blog .blog {
    margin: 0 0 65px 0;
}

.all-blog .blog-thumbnail {
    height: 550px;
    background: #534930;
    border-radius: 10px;
    position: relative;
    margin: 0 0 50px 0;

}

.all-blog .blog-thumbnail img {
    height: 550px;
    width: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.5;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.all-blog .blog-thumbnail:hover img {
    opacity: 1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.all-blog .date {
    height: 85px;
    width: 85px;
    border: 2px solid #FFF;
    border-radius: 100%;
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 30px;
    bottom: -42px;
}

.all-blog .date p {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.all-blog .blog-meta button {
    padding: 7px 23px 8px 24px;
    border: none;
    background-color: #534930;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #FFF;
    border-radius: 100px;
    margin-right: 35px;
}

.all-blog .blog-meta {
    margin: 10px 0 20px 0;
}

.all-blog .blog-meta button:hover {
    background-color: #B28E6A;
}

.all-blog .blog-meta a {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #534930;
    margin: 0 35px 0 0;
}

.all-blog .blog-meta a:hover,
.all-blog .blog-meta a:hover i {
    color: #B28E6A;
}

.all-blog .blog-meta a i {
    margin: 0 10px 0 0;
    font-size: 18px;
    color: #A3A3A3;
}

.all-blog .blog-content a h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    margin: 0 0 20px 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.all-blog .blog-content a h5:hover {
    color: #B28E6A;
}

.all-blog .blog-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 20px 0;
}

.all-blog .pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.all-blog .pagination a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.all-blog .pagination i {
    font-size: 26px;
    color: #A3A3A3;
}

.all-blog .pagination i:hover {
    color: #534930;
}

.all-blog .number {
    margin: 0 50px;
}

.all-blog .number button {
    font-family: "Syne", sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    color: #A3A3A3;
    background-color: transparent;
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 3px 15px 8px 15px;

}

.all-blog .number button:hover {
    background-color: #534930;
    color: #FFF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 10px;
}

/* search bar */

.slide-bar {
    max-width: 370px;
    margin-left: auto;
}

.slide-bar .search-bar {
    border-radius: 10px;
    padding: 30px 15px;
    background-color: #F7F7F7;
    margin: 0 0 35px 0;
}

.slide-bar .search-bar-title h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: left;
    text-transform: capitalize;
    position: relative;
    margin: 0 0 30px 0;
    padding: 0 0 8px 0;
}

.slide-bar .search-bar-title h5::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 57px;
    height: 3px;
    background-color: #B28E6A;
}

.slide-bar .search-bar i.fas.fa-search {
    position: absolute;
    z-index: 10;
    bottom: 25px;
    right: 50px;
    font-size: 18px;
    color: #A3A3A3;
}

.slide-bar .search-bar .wrap-input-8 .input {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #FFFFFF;
    border: none;
    padding: 19px 72px 19px 30px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.slide-bar .search-bar .wrap-input-8 .input:focus {
    outline: none;
}

.slide-bar .search-bar .wrap-input-8 {
    position: relative;
}

.slide-bar .search-bar .wrap-input-8 .input~.focus-border:before,
.slide-bar .search-bar .wrap-input-8 .input~.focus-border:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B28E6A;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.slide-bar .search-bar .wrap-input-8 .input~.focus-border:after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.slide-bar .search-bar .wrap-input-8 .input~.focus-border i:before,
.slide-bar .search-bar .wrap-input-8 .input~.focus-border i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: #B28E6A;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.slide-bar .search-bar .wrap-input-8 .input~.focus-border i:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.slide-bar .search-bar .wrap-input-8 .input:focus~.focus-border:before,
.slide-bar .search-bar .wrap-input-8 .input:focus~.focus-border:after {
    width: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.slide-bar .search-bar .wrap-input-8 .input:focus~.focus-border i:before,
.slide-bar .search-bar .wrap-input-8 .input:focus~.focus-border i:after {
    height: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

/* category */

.slide-bar .all-category {
    padding: 30px 15px 3px 15px;
    border-radius: 10px;
    background-color: #F7F7F7;
    margin: 0 0 35px 0;
}

.slide-bar .all-category .category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 19px 0;
    border-bottom: 1px solid #A3A3A3;
}

.slide-bar .all-category .category i {
    font-size: 12px;
    margin-right: 17px;
    color: #534930;
}

.slide-bar .all-category .category span {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #534930;
    margin: 0;
}

.slide-bar .all-category .category a {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #534930;
    margin: 0;
    padding-bottom: 19px;
}

.slide-bar .all-category .category a:hover,
.slide-bar .all-category .category:hover span {
    color: #B28E6A;
}

/* recent-post */

.slide-bar .recent-post {
    border-radius: 10px;
    padding: 34px 15px 34px 15px;
    background-color: #F7F7F7;
    margin: 0 0 35px 0;
}

.slide-bar .recent-post .post-item {
    margin: 0 0 20px 0;
}

.slide-bar .recent-post .post-item a {
    display: block;
}

.slide-bar .recent-post .post-meta {
    padding: 0 0 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.slide-bar .recent-post .post-meta a {
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    margin: 0 0 12px 0;
    color: #534930;
}

.slide-bar .recent-post .post-meta a:hover {
    color: #B28E6A;
}

.slide-bar .recent-post .post-meta span {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: #535353;
}

/* product-tags */

.slide-bar .product-tags {
    border-radius: 10px;
    padding: 26px 15px;
    background-color: #F7F7F7;
    margin: 0 0 35px 0;
}

.slide-bar .product-tags .tags a {
    border: 1px solid #534930;
    border-radius: 100px;
    padding: 10px 20px;
    margin: 0 10px 10px 0;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #534930;
    background-color: #F7F7F7;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.product-tags .tags a:hover {
    background-color: #534930;
    color: #FFF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}


/*contact-info*/

.slide-bar .contact-info .info p {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #000;
    margin: 0;
}

.contact-info .info .address a {
    margin: 0 0 20px 13px;
}

.contact-info .info .email a {
    margin: 0 0 20px 38px;
}

.contact-info .info .phone a {
    margin: 0 0 0 31px;
}

.contact-info .info a {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.contact-info .info a:hover {
    color: var(--secondary-color);
}

/*----------------------------------------------------------------- Blog Detail Page -----------------------------------------------------------------*/

/*--------------------------------------------------------------

#all blog section
--------------------------------------------------------------*/

.single-blog {
    padding: 165px 0;
}

.single-blog .blog-detail {
    max-width: 896px;
}

.single-blog .blog-thumbnail {
    height: 550px;
    background: #534930;
    border-radius: 10px;
    position: relative;
    margin: 0 0 50px 0;

}

.single-blog .blog-thumbnail img {
    height: 550px;
    width: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.5;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.single-blog .date {
    height: 85px;
    width: 85px;
    border: 2px solid #FFF;
    border-radius: 100%;
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 30px;
    bottom: -42px;
}

.single-blog .date p {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.single-blog .blog-meta button {
    padding: 7px 23px 8px 24px;
    border: none;
    background-color: #534930;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #FFF;
    border-radius: 100px;
    margin-right: 35px;
}

.single-blog .blog-meta {
    margin: 10px 0 20px 0;
}

.single-blog .blog-meta button:hover {
    background-color: #B28E6A;
}

.single-blog .blog-meta a {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #534930;
    margin: 0 35px 0 0;
}

.single-blog .blog-meta a:hover,
.single-blog .blog-meta a:hover i {
    color: #B28E6A;
}

.single-blog .blog-meta a i {
    margin: 0 10px 0 0;
    font-size: 18px;
    color: #A3A3A3;
}

.single-blog .blog-content a h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    margin: 0 0 20px 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.single-blog .blog-content a h5:hover {
    color: #B28E6A;
}

.single-blog .blog-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 35px 0;
}


.single-blog .blog-content .content-heading {
    padding: 16px 20px;
    background-color: #FAF4ED;
    border-left: 2px solid #B28E6A;
    margin: 0 0 35px 0;
}

.single-blog .blog-content .content-heading h6 {
    font-size: 22px;
    font-weight: 500;
    line-height: 29.4px;
    color: #535353;
    margin: 0 0 10px 0;
}

.single-blog .blog-content .content-heading li {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #B28E6A;
}

.single-blog .poplar-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 15px 0;
}

.single-blog .poplar-tag p span {
    font-weight: 600;
    color: #000;

}

.single-blog .poplar-tag p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
    margin: 0 !important;
}

.single-blog .social-icon span {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #000;
    margin: 0 20px 0 0;
}

.single-blog .social-icon a {
    background-color: #faf4ed;
    border-radius: 100%;
    margin-right: 8px;
    color: #b28e6a;
    padding: 2px;
    height: 28px;
    width: 28px;
    text-align: center;
}

.single-blog .social-icon a:hover {
    background-color: var(--secondary-color);
    color: var(--quaternary-color);
}

.single-blog .blog-content {
    margin: 0 0 65px 0;
}

.single-blog .global-visit {
    margin: 0 0 65px 0;
}

.single-blog .global-visit h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 41.4px;
    margin: 0 0 20px 0;
}

.single-blog .global-visit p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
}

.single-blog .global-visit .row {
    margin-bottom: 20px;
}

.single-blog .global-visit .global img {
    height: 200px;
    width: 438px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 5px;
}

.single-blog .global-visit li {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #000;
    margin-left: 10px;

}

.single-blog .recent-comments {
    margin: 0 0 65px 0;
}

.single-blog .recent-comments h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 41.4px;
    margin: 0 0 35px 0;
}

.single-blog .recent-comments .author-detail img {
    max-height: 50px;
    padding-right: 15px;
}

.single-blog .recent-comments .author-detail {
    margin: 0 0 20px 0;
}

.single-blog .recent-comments .author-info h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 3px;
}

.single-blog .recent-comments .author-info p {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: #A3A3A3;
    margin: 0;
}

.single-blog .recent-comments p {

    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 20px 0;
}

.single-blog .recent-comments a {
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #B28E6A;
}

.single-blog .recent-comments a:hover {
    color: #534930;
}

.single-blog .recent-comments .border {
    border: 0.5px solid #A3A3A3;
    margin: 35px 0;
}

.single-blog .post-comments h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 41.4px;
    margin-bottom: 27px;
}

.single-blog .post-comments .form-inner .first-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    padding-right: 15px;
}

.single-blog .post-comments .form-inner .last-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    padding-left: 0;
}

.single-blog .post-comments .form-inner .form-group {
    margin: 0 0 30px 0;
}

.single-blog .post-comments .form-inner input::-webkit-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .form-inner input::-moz-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .form-inner input:-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .form-inner input::-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .form-inner input::placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .form-inner textarea::-webkit-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .form-inner textarea::-moz-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .form-inner textarea:-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .form-inner textarea::-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .form-inner textarea::placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #A3A3A3;
}

.single-blog .post-comments .submit-review {
    margin: 10px 0 0 0;
}

.single-blog .post-comments .wrap-input-8 textarea.input {
    padding: 25px 30px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #FAF4ED;
    border: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
}

.single-blog .post-comments .wrap-input-8 .input {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #FAF4ED;
    border: none;
    padding: 16px 30px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.single-blog .post-comments .wrap-input-8 .input:focus {
    outline: none;
}

.single-blog .post-comments .wrap-input-8 {
    position: relative;
}

.single-blog .post-comments .wrap-input-8 .input~.focus-border:before,
.single-blog .post-comments .wrap-input-8 .input~.focus-border:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B28E6A;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.single-blog .post-comments .wrap-input-8 .input~.focus-border:after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.single-blog .post-comments .wrap-input-8 .input~.focus-border i:before,
.single-blog .post-comments .wrap-input-8 .input~.focus-border i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: #B28E6A;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.single-blog .post-comments .wrap-input-8 .input~.focus-border i:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.single-blog .post-comments .wrap-input-8 .input:focus~.focus-border:before,
.single-blog .post-comments .wrap-input-8 .input:focus~.focus-border:after {
    width: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.single-blog .post-comments .wrap-input-8 .input:focus~.focus-border i:before,
.single-blog .post-comments .wrap-input-8 .input:focus~.focus-border i:after {
    height: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

/*----------------------------------------------------------------- Reservation page -----------------------------------------------------------------*/

/*--------------------------------------------------------------

#Table Reservation Form section
--------------------------------------------------------------*/

.reservation-form {
    padding: 165px 0 0 0;
}

.reservation-form .table-main-div {
    background-color: #F7F7F7;
    border-radius: 10px;
}

.reservation-form .table-img {
    height: 100%;
    background: #534930;
    border-radius: 10px 0px 0px 10px;
}

.reservation-form .table-img img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.5;
    border-radius: 10px 0px 0px 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.reservation-form .table-img:hover img {
    opacity: 1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.reservation-form .table-info {
    padding: 40px 25px;
}

.reservation-form .table-info .table-heding {
    margin-bottom: 30px;
}

.reservation-form .table-info .table-heding h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    margin-bottom: 5px;

}

.reservation-form .table-info .table-heding p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20.2px;
    color: #A3A3A3;
    margin: 0;
}

.reservation-form .table-form .form-inner .first-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    padding-right: 20px;
}

.reservation-form .table-form .form-inner .last-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    padding-left: 0;
}

.reservation-form .table-form .form-inner .form-group {
    margin: 0 0 20px 0;
}

.reservation-form .table-form .form-inner input::-webkit-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.reservation-form .table-form .form-inner input::-moz-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.reservation-form .table-form .form-inner input:-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.reservation-form .table-form .form-inner input::-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.reservation-form .table-form .form-inner input::placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.reservation-form .table-form .form-inner textarea::-webkit-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.reservation-form .table-form .form-inner textarea::-moz-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.reservation-form .table-form .form-inner textarea:-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.reservation-form .table-form .form-inner textarea::-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.reservation-form .table-form .form-inner textarea::placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.reservation-form .table-form .submit-review {
    margin: 10px 0 0 0;
}

.reservation-form .table-form .wrap-input-8 textarea.input {
    padding: 23px 20px 23px 53px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #FFFFFF;
    border: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
}

.reservation-form .table-form .wrap-input-8 .input {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #FFFFFF;
    border: none;
    padding: 23px 20px 23px 55px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.reservation-form .table-form .wrap-input-8 .input:focus {
    outline: none;
}

.reservation-form .table-form .wrap-input-8 {
    position: relative;
}

.reservation-form .table-form .wrap-input-8 .input~.focus-border:before,
.reservation-form .table-form .wrap-input-8 .input~.focus-border:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B28E6A;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.reservation-form .table-form .wrap-input-8 .input~.focus-border:after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.reservation-form .table-form .wrap-input-8 .input~.focus-border i:before,
.reservation-form .table-form .wrap-input-8 .input~.focus-border i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: #B28E6A;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.reservation-form .table-form .wrap-input-8 .input~.focus-border i:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.reservation-form .table-form .wrap-input-8 .input:focus~.focus-border:before,
.reservation-form .table-form .wrap-input-8 .input:focus~.focus-border:after {
    width: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.reservation-form .table-form .wrap-input-8 .input:focus~.focus-border i:before,
.reservation-form .table-form .wrap-input-8 .input:focus~.focus-border i:after {
    height: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

/*----------------------------------------------------------------- Contect Us page -----------------------------------------------------------------*/

/*--------------------------------------------------------------

#map 
--------------------------------------------------------------*/

.map .contact-us-title {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.map .contact-us-title h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: center;
}

.map .contact-us-title p {
    max-width: 700px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    color: #A3A3A3;
}


.map .our-three-bg {
    background-color: #FFFFFF;
    border: 3px solid #FFFFFF;
    border-radius: 10px;
    padding: 40px 35px;
    margin: -60px 0 0 0;
    z-index: 10;
    position: relative;
}

.map .services-box {
    text-align: center;
    max-width: 275px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map .services-box i {
    font-size: 22px;
    margin: 0 0 30px 0;
    width: 40px;
    height: 40px;
    background-color: #534930;
    color: #FFF;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.map .services-box h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: center;
    color: #000000;
    margin: 0 0 10px 0;
}

.map .services-box a {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #535353;
    margin: 0;
}

.map .services-box a:hover {
    color: #B28E6A;
}

.map .border-box {
    border-right: 2px solid #A3A3A3;
    border-left: 2px solid #A3A3A3;
}

.map .service-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.map .service-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*--------------------------------------------------------------

#Table Reservation Form section
--------------------------------------------------------------*/

.contact-form {
    padding: 50px 0;
}

.contact-form .table-right-img {
    background: #534930;
    border-radius: 10px;
    height: 100%;
}

.contact-form .table-right-img img {
    height: 100%;
    width: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.5;
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-form .table-right-img:hover img {
    opacity: 1;
}

.contact-form .table-info .table-heding {
    margin-bottom: 30px;
}

.contact-form .table-info .table-heding h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    margin-bottom: 5px;
}

.contact-form .table-info .table-heding p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
    margin: 0;
}

.contact-form .table-info {
    padding: 45px 30px;
    background: #F7F7F7;
    border-radius: 10px;
}

.contact-form .table-form .form-inner .first-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    padding-right: 20px;
}

.contact-form .table-form .form-inner .last-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    padding-left: 0;
}

.contact-form .table-form .form-inner .form-group {
    margin: 0 0 20px 0;
}

.contact-form .table-form .form-inner input::-webkit-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.contact-form .table-form .form-inner input::-moz-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.contact-form .table-form .form-inner input:-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.contact-form .table-form .form-inner input::-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.contact-form .table-form .form-inner input::placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #A3A3A3;
}

.contact-form .table-form .form-inner textarea::-webkit-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.contact-form .table-form .form-inner textarea::-moz-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.contact-form .table-form .form-inner textarea:-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.contact-form .table-form .form-inner textarea::-ms-input-placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.contact-form .table-form .form-inner textarea::placeholder {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A3A3A3;
}

.contact-form .table-form .submit-review {
    margin: 10px 0 0 0;
}

.contact-form .table-form .wrap-input-8 textarea.input {
    padding: 23px 20px 23px 53px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #FFFFFF;
    border: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
}

.contact-form .table-form .wrap-input-8 .input {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #FFFFFF;
    border: none;
    padding: 23px 20px 23px 55px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.contact-form .table-form .wrap-input-8 .input:focus {
    outline: none;
}

.contact-form .table-form .wrap-input-8 {
    position: relative;
}

.contact-form .table-form .wrap-input-8 .input~.focus-border:before,
.contact-form .table-form .wrap-input-8 .input~.focus-border:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B28E6A;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.contact-form .table-form .wrap-input-8 .input~.focus-border:after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.contact-form .table-form .wrap-input-8 .input~.focus-border i:before,
.contact-form .table-form .wrap-input-8 .input~.focus-border i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: #B28E6A;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.contact-form .table-form .wrap-input-8 .input~.focus-border i:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.contact-form .table-form .wrap-input-8 .input:focus~.focus-border:before,
.contact-form .table-form .wrap-input-8 .input:focus~.focus-border:after {
    width: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.contact-form .table-form .wrap-input-8 .input:focus~.focus-border i:before,
.contact-form .table-form .wrap-input-8 .input:focus~.focus-border i:after {
    height: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

/*----------------------------------------------------------------- Error page -----------------------------------------------------------------*/

/*--------------------------------------------------------------

#Error 
--------------------------------------------------------------*/

.error {
    padding: 165px 0 65px 0;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #FAF4ED;
}

.error .error-div {
    position: relative;
}

.error .error-box {
    max-width: 650px;
    text-align: center;
}

.error .error-box .error-text {
    margin: 58px 0 64px 0;
}

.error .error-box .error-text h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 41.4px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.error .error-box .error-text h4::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 133px;
    height: 3px;
    background-color: #534930;
}

.error .error-box .error-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin: 0;

}

.error img.right-img {
    position: absolute;
    right: 33px;
    bottom: calc(40% - 63px);
    margin: auto 0;
}

.error img.left-img {
    position: absolute;
    left: 33px;
    top: 0;
}

.error img.bottom-img {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: calc(35% - 0px);
    margin: 0 auto;
}



/*--------------------------------------------------------------

#footer section

--------------------------------------------------------------*/

footer {
    padding: 80px 0 30px 0;
    background-color: var(--bg-color);
}

footer .social-icon {
    margin-top: 24px;
}

footer .social-icon a {
    background-color: var(--secondary-color);
    border-radius: 100%;
    margin-right: 10px;
    color: var(--quaternary-color);
    padding: 3px;
    height: 30px;
    width: 30px;
    text-align: center;
}

footer .social-icon a:hover {
    background-color: var(--text-secondary-color);
}


footer .footer-col .footer-logo {
    margin-bottom: 35px;
}

footer .footer-col p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    max-width: 289px;
}

footer .footer-col .footer-titel h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.2px;
    text-align: left;
    text-transform: capitalize;
    color: var(--text-secondary-color);
    margin: 0;
}

footer .footer-col .footer-titel h2::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 40px;
    height: 2.5px;
    background-color: var(--primary-color);

}

footer .footer-col .footer-menu {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

footer .footer-col .footer-menu a {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-transform: capitalize;
    color: var(--primary-black);
    margin: 1px 0;
}

footer .footer-col .footer-menu a:hover {
    color: var(--text-hover-color);
    background-color: var(--bg-color) !important;
}

footer .footer-contact {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 5px;
}

footer .footer-contact li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-transform: capitalize;
    color: var(--primary-black);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

footer .footer-contact ul a:hover {
    color: var(--text-hover-color);
    background-color: var(--bg-color) !important;
}

footer .footer-contact ul a:hover,
footer .footer-contact ul:hover i {
    background-color: var(--text-secondary-color);
}

footer .footer-contact li i {
    background-color: var(--secondary-color);
    border-radius: 100%;
    margin-right: 10px;
    color: var(--quaternary-color);
    height: 25px;
    width: 25px;
    padding: 4px 0;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

.footer-contact ul {
    padding: 0;
    margin-bottom: 20px;
}

.footer-contact ul li {
    list-style: none;
}

footer .bottom-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-transform: capitalize;
    margin: 0;
}

footer .footer-link {
    padding: 0 0 50px 0;
}

footer .footer-copyright {
    border-top: 1px solid var(--secondary-color);
    padding-top: 24px;
}

/*--------------------------------------------------------------

#Cursor

--------------------------------------------------------------*/

.circle {
    height: 24px;
    width: 24px;
    border-radius: 24px;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999;
}
.logoo {
    width: 30%;
    border-radius: 20px;
}
.logoo2 {
    width: 50%;
    border-radius: 20px;
}

.call_me, .call_me::before {
    background: radial-gradient(#33a93c, #33a93c, #18791f);
}
.call_me {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    z-index: 100000 !important;
    cursor: pointer;
}
.call_me, .call_me::before {
    background: radial-gradient(#33a93c, #33a93c, #18791f);
}
.call_me::before {
    content: '';
    transform: scale(1, 1);
    opacity: .5;
    width: 60px;
    height: 60px;
    display: block;
    position: fixed;
    left: 30px;
    bottom: 30px;
    border-radius: 100%;
    z-index: 9999;
    -webkit-animation: uptocallmini 1.5s infinite;
    -moz-animation: uptocallmini 1.5s infinite;
    animation: uptocallmini 1.5s infinite;
}
@keyframes uptocallmini {
0% {
    transform: scale(1, 1);
    opacity: .5;
}
80% {
    opacity: 0;
    transform: scale(1.5, 1.5);
}
85% {
    transform: scale(.5, .5);
    opacity: 0;
}
100% {
    transform: scale(1, 1);
    opacity: .5;
}
}

.call_me i {
    color: #fff;
    font-size: 24px;
    line-height: 60px;
    -webkit-animation: uptocallphone 1.5s linear infinite;
    -moz-animation: uptocallphone 1.5s linear infinite;
    animation: uptocallphone 1.5s linear infinite;
    position: relative;
    z-index: 10001;
}

.table-reservation-one .bg-box-three h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--quaternary-color);
    margin-bottom: 10px;
    position: relative;
}
.box-silde {
    border: 1px solid #00000040;
    margin: 0;
    width: 75%;
    background: #f5f5ec;
    border-radius: 10px 0;
}
.box-silde .item-detail h3 {
    font-size: 17px;
    text-align: center;
    margin: 10px 0;
}
.item-box-two.box-silde img {
    border-radius: 10px 0;
}
.bd-text {
    color: #fff;
    font-family: 'DM Sans';
    line-height: 27px;
    word-spacing: 4px;
}
.banner-img img {
    border-radius: 20px;
}
.anti-image img{
    max-width: 100%;
    margin: 10px 0;
}
.contact-form .table-form .wrap-input-8 select {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #FFFFFF;
    border: none;
    padding: 23px 20px 23px 55px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.contact-form .table-form .wrap-input-8 .input:focus {
    outline: none;
}
.contact-form .table-form .wrap-input-8 select:focus~.focus-border i:before, .contact-form .table-form .wrap-input-8 select:focus~.focus-border i:after {
    height: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.contact-form .table-form .wrap-input-8 select~.focus-border i:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}
.wrap-input-8 input[type="tel"] {
    width: calc(200% - 20px)!important; /* Adjust based on country dropdown width */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Specific Styles for Country Dropdown */
.country-dropdown {
    width: 91px!important; /* Adjust the width as needed */
    padding: 5px!important;
    font-size: 16px;
    border: 1px solid #87ceeb;
    border-radius: 4px;
    background: #f0f8ff;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.menu-detail .wrap-input-8 select {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: #F7F7F7;
    border: none;
    padding: 25px 30px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
}
.box {
    border: 1px solid #534930;
    /* box-shadow: 2px 3px 5px 0px; */
    padding: 8px 20px;
    margin: 15px 0;
}
.sticky-icon  {
	z-index: 9;
	position:fixed;
	top: 40%;
	right:0%;
	width: 215px;
	display:flex;
	flex-direction:column;
	}  
.sticky-icon a  {
	transform:translate(160px,0px);
	border-radius: 46px 0px 0px 50px;
	text-align:left;
	margin: 4px 0;
	text-decoration:none;
	text-transform:uppercase;
	padding: 4px;
	font-size: 15px;
	font-family:'Oswald', sans-serif;
	transition:all 0.8s;
	}
.sticky-icon a:hover  {
	color:#FFF;
	transform:translate(0px,0px);}	
.sticky-icon a:hover i  {
	transform:rotate(360deg);}
/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook  {
	background-color:#2C80D3;
	color:#FFF;}
	
.Youtube  {
	background-color:#fa0910;
	color:#FFF;}
	
.Twitter  {
	background-color:#53c5ff;
	color:#FFF;}
	
.Instagram  {
	background-color:#FD1D1D;
	color:#FFF;}
	
.Google  {
	background-color:#d34836;
	color:#FFF;}						
.sticky-icon a i {
	background-color:#FFF;
	height: 40px;
	width: 40px;
	color:#000;
	text-align:center;
	line-height:40px;
	border-radius:50%;
	margin-right:20px;
	transition:all 0.5s;
	}
.sticky-icon a i.fa-facebook-f  {
	background-color:#FFF;
	color:#2C80D3;}
	
    .linkedin {
        background-color: #0e76a8;
        color: #fff;
    }
	
.sticky-icon a i.fa-instagram  {
	background-color:#FFF;
	color:#FD1D1D;}
	
.sticky-icon a i.fa-youtube  {
	background-color:#FFF;
	color:#fa0910;}
	
.sticky-icon a i.fa-twitter  {
	background-color:#FFF;
	color:#53c5ff;}
    
    .sticky-icon a i.fa-linkedin {
        background-color: #FFF;
        color: #0e76a8;
    }
    .box22 {
        margin: 10px 0;
    }
    .left-arrow, .right-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        border: none;
        padding: 10px 15px;
        font-size: 24px;
        cursor: pointer;
        z-index: 100;
        border-radius: 50%;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    
    /* Positioning Arrows */
    .left-arrow {
        left: -40px;
    }
    
    .right-arrow {
        right: -40px;
    }
    
    /* Hover Effects */
    .left-arrow:hover, .right-arrow:hover {
        background-color: rgba(0, 0, 0, 0.9);
        transform: translateY(-50%) scale(1.1);
    }
    
    /* Responsive Styling */
    @media (max-width: 768px) {
        .left-arrow, .right-arrow {
            font-size: 18px;
            padding: 8px 12px;
            left: 5px;
            right: 5px;
        }
    }