@import url('https://fonts.googleapis.com/css?family=Dancing+Script:400,700|Lato:400,700');


:root {
    --c-primary: #ffad18;
    --c-dark: #232323;
    --c-body: #f7f7f7;
    --c-text: #808080;
    --f-main: 'Dancing Script', cursive;
}

p {
    color: var(--c-text);
    font-size: 14px;
}

h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 60px;
    color: var(--c-dark);
}

.container {
    width: 1170px;
}

.text-brand {
    color: var(--c-primary);
}

section{
    padding: 80px 0px;
}

.section-padding {
    padding: 80px 0;
}

.item-content .btn {
    border-radius: 100px;
    padding: 2px 10px;
    font-size: 15px;
}
.btn-custom {
    color: var(--c-dark);
    background-color: var(--c-primary);
    border-radius: 100px;
}
button {
    border-radius: 100px;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 2px;
}

.btn-custom:hover {
    color: var(--c-primary);
    background-color: var(--c-dark);
}
button:hover {
    border-radius: 100px;
    background-color: transparent;
    border: 1px solid var(--c-primary);
    padding: 2px;
}


/*NAVBAR*/
@media (min-width: 1000px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 16px;
        padding-left: 16px;
    }
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
header .container {
    max-width: 1170px;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.header.sticky_menu {
    background-color: #fff;
    left: 0;
    right: 0;
    top: 0;
    padding: 2px 0;
    position: fixed;
    z-index: 9;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.menubar {
    position: relative;
    z-index: 0;
    padding: 5px 0;
    background-color: #ffffff;
}

.menubar:before {
    content: "";
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -28px;
    background-color: #fff;
    transform: skewX(-25deg);
    z-index: -1;
}

    .menubar:after {
        content: "";
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        right: -50%;
        background-color: #fff;
        z-index: -1;
    }

    .menubar ul.nav {
        margin: 22px auto;
        position: relative;
    }



#navbar {
    width: 90%;
    margin: auto;
}

.mx-auto {
    margin-right: 30px!important;
    margin-left: auto!important;
}
.navbar-nav {
    background-color: var(--c-primary);
    padding: 5px 0px;
    margin-bottom: 17px;
}

.navbar .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
}
/*.navbar .navbar-nav .nav-link:hover{
    color: var(--c-primary);
}*/

.navbar-brand {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-dark);
}

/*BTN*/
.btn {
    padding: 10px 24px;
    font-weight: 500;
    font-size: 20px;
    border-radius: 0;
    font-size: 16px;
}
.btn-brand {
    color: #fff;
    background-color: var(--c-dark);
    
}
.btn-brand:hover {
    color: var(--c-dark);
    background-color: var(--c-primary);
}







/*SLIDER*/

    .owl-carousel {
        display: flex;
        flex-wrap: nowrap;
        position: relative;
    }

    .owl-carousel .item {
        margin: 10px;
        text-align: center;
    }

    .owl-carousel img {
        width: 100%;
        height: auto;
    }

    .item-content {
        padding: 20px;
        border-radius: 8px;
        color: #fff;
        text-align: left;
    }
    .owl-carousel p {
        color: #fff;
    }
   
    .hero {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        max-width: 1170px;
        padding: 0 20px;
        transform: translate(-50%, -50%);
    }
    .time {
        color: #fff;
        text-align: center;
        justify-content: center;
        margin: auto;
    }
    .time h3{
        font-family: 'Dancing Script', cursive;
        color: var(--c-dark);
        background-color: #fff;
        width: 200px;
        margin: auto;
        font-size: 25px;
        font-weight: 700;
        padding: 5px 10px;
        -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        clip-path: polygon(0 18%, 100% 0, 100% 100%, 0% 100%);
    }

    .icon i {
        font-size: 35px;
    }
    .time .time-box .icon img {
        width: 40px;
        margin: auto;
    }

    .item-content h2 {
        color: #fff;
    }
    .icon h4 {
       font-family: 'Dancing Script', cursive;
       color: var(--c-primary);
    }
    .item-content p {
        font-size: 19px;
        padding: 20px 0px;
    }
    .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        z-index: 9;
    }

    .owl-nav button {
        background-color: rgba(255, 255, 255, .2);
        color: white;
        border: none;
        border-radius: 10px;
        padding: 10px;
        cursor: pointer;
        font-size: 1.5em;
        width: 28px;
        height: 90px;
        margin: 30px;
        position: relative;
    }
    .owl-nav .owl-prev img {
        position: absolute;
        top: 36px;
        left: 5px;
        width: 20px;
    }
    .owl-nav .owl-next img {
        position: absolute;
        top: 36px;
        left: 5px;
        width: 20px;
    }

    
    .sliders .owl-nav .owl-prev:hover, .sliders .owl-nav .owl-next:hover {
    background-color: #fff;
    }




/*ABOUT US*/

    #about-us {
        background-color: var(--c-body);
    }

    .about-img {
        width: 100%;
        position: relative;
    }
    .about-img::after {
        content: '';
        width: 55%;
        height: 5px;
        position: absolute;
        bottom: 0;
        left: 42px;
        z-index: 99;
        background-color: var(--c-primary);
    }
    .about-us {
        vertical-align: center;
    }
    .about-heading::before {
        content: '';
        width: 40%;
        height: 2px;
        position: absolute;
        top: 12%;
        left: 30px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .about-heading::after {
        content: '';
        width: 40%;
        height: 2px;
        position: absolute;
        top: 14%;
        left: 15px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .about-head {
        position: relative;
    }
    .about-heading span {
    background-color: transparent;
    display: inline-block;
    padding: 2px 25px;
    position: relative;
    padding-left: 50%;
    }
    .about-head-iconbox img {
        width: 13px;
        height: 13px;
        margin-bottom: 10px;
        margin-right: 5px;
    }
    .about-head-iconbox li {
        list-style: none;
        display: flex;
        align-items: center;
    }
    .about-head-iconbox p {
        display: inline-block;
        margin-left: 5px;        
    }
    .about-img-box {
        padding-left: 0px
    }

    .about-buttom {
        width: 100%;
    }
    .about-buttom img {
        width: 20%;
    }
    .about-buttom h4 {
       font-size: 15px;
    }






/*    SERVICES*/
#services {
    background: url(../img/services-bg.jpg) no-repeat center center;
}
.services-head {
    position: relative;
}
#services .services-heading::before {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 33%;
        left: 200px;
        z-index: 99;
        background-color: var(--c-dark);
    }
#services .services-heading::after {
        content: '';
        width: 20%;
        height: 2px;
        position: absolute;
        top: 37%;
        left: 200px;
        z-index: 99;
        background-color: var(--c-dark);
    }
#services .img-box img {
    width: 40px;
}
#services .img-box h4 {
   font-size: 20px;
   font-family: var(--f-main);
   color: var(--c-dark);
   font-weight: 600;
}
/*.flaticon-cake:before {
    content: "\f102";
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-size: inherit;
    font-style: normal;
}
*/





/*MENU*/
    #menu {
    background: url(../img/menu-bg.jpg) no-repeat center center;
    }

    .menu-head {
        position: relative;
    }
    #menu .menu-heading::before {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 33%;
        left: 240px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #menu .menu-heading::after {
        content: '';
        width: 20%;
        height: 2px;
        position: absolute;
        top: 37%;
        left: 240px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #menu .img-box {
    position: relative;
    }
    #menu .img-box img {
    width: 70px;
    }
    #menu .img-box h4 {
       font-size: 18px;
       font-family: var(--f-main);
       color: var(--c-dark);
       font-weight: 600;
    }
    #menu .img-box h4:hover {
       color: var(--c-primary);
    }
    .menu-name {
        position: absolute;
        left: 90px;
        top: -20px;
    }



    .food-menu .menus-item {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 50px;
        display: inline-block;
    }
    .food-menu .menus-item li {
        float: left;
        border: 1px solid #ffad18;
        border-right: 0;
        padding: 10px 25px;
        position: relative;
        color: #000;
        font-family: var(--f-main);
        font-weight: 700;
        font-size: 20px;
        cursor: pointer;
        transition: 0.3s all;
    }
    .food-menu .menus-item li i {
        font-size: 30px;
        margin-right: 10px;
        vertical-align: middle;
    }
    .food-menu .menus-item li:last-child {
    border-right: 1px solid var(--c-primary);
    }
    .food-menu .menu-name a {
        text-decoration: none;
    }
    .food-menu .menus-item li:hover,
    .food-menu .menus-item li.active {
        background-color: #ffad18;
    }
    .mixitup-control-active {
        background-color: var(--c-primary);
    }



    .mix {
        padding: 10px;
    }
        .active-tab {
            display: block;
        }

        .tab {
            cursor: pointer;
            display: inline-block;
        }

        .filter-btn {
            cursor: pointer;
            display: inline-block;
        }






/*    CHEFS*/

    .chefs-img {
        width: 100%;
        position: relative;
    }
    .chefs {
        vertical-align: center;
    }
    .chefs-heading::before {
        content: '';
        width: 15%;
        height: 2px;
        position: absolute;
        top: 34px;
        right: 418px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .chefs-heading::after {
        content: '';
        width: 15%;
        height: 2px;
        position: absolute;
        top: 40px;
        right: 433px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .chefs-head {
        position: relative;
    }
    .chefs-heading span {
    background-color: transparent;
    display: inline-block;
    padding: 2px 25px;
    position: relative;
    padding-left: 65%;
    }
    .chefs-img {
        position: relative;
        text-align: center;
    }
    .chefs-img:hover .chef-intro {
        position: relative;
        background-color: var(--c-primary);
    }
    .chefs-img:hover .intro-box:before {
        border: 2px solid var(--c-primary);
    }
    .chefs-img:hover .intro-box h5 {
        color: var(--c-dark);
    }
    .chefs-img:hover .social-icon li a {
        color: var(--c-dark);
    }
    .chefs-img h5 {
        font-size: 15px;
        color: #fff;
        text-align: left;
        margin-bottom: 0;
        position: relative;
        padding: 10px 20px;
    }
    .chefs-img span {
        font-size: 12px;
        font-family: var(--f-main);
    }
    .chef-intro {
        position: relative;
        background-color: var(--c-dark);
    }
    .social-icon {
        position: absolute;
        top: 5px;
        right: 15px;
    }
    .social-icon li{
        list-style: none;
        display: inline-block;
        font-size: 20px;
    }
    .social-icon li a {
        color: #fff;
    }
    .intro-box {
        position: relative;
    }
    .intro-box:before {
    content: "";
    position: absolute;
    height: 160px;
    width: 100%;
    border: 2px solid var(--c-dark);
    left: 0;
    top: 0;
    z-index: -1;
    -o-transition: .3s all;
    -ms-transform: translateY(-98%);
    transform: translateY(-98%);
}







/*BLOG*/
#blog {
    background: url(../img/blogs-bg.jpg) no-repeat center center;
    }

    .blog-head {
        position: relative;
    }
    #blog .img-box {
        background-color: #fff;
        box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    }
    #blog .img-box h4 {
       font-size: 20px;
       font-family: var(--f-main);
       color: var(--c-dark);
       font-weight: 600;
    }
    #blog .img-box h4:hover {
       color: var(--c-primary);
    }
    #blog .img-box img {
        width: 100%;
    }
    .blog-text {
        padding: 20px;
        position: relative;
    }
    .blog-text  .date {
        background-color: var(--c-primary);
        position: absolute;
        top: -18px;
        width: 89%;
        padding: 5px 10px;
    }
    .blog-text .blog-btn {
       color: var(--c-dark);
    }
    .blog-text .blog-btn:hover {
       color: var(--c-primary);
    }
    .blog-text ul {
        padding: 8px 0px;
    }
    .date li {
        list-style: none;
        display: inline-block;
        padding: 0px 10px;
    }
    .border-li {
        border-right: 1px solid var(--c-dark);
    }
    .border-li {
        border-left: 1px solid var(--c-dark);
    }
    #blog .blog-heading::before {
        content: '';
        width: 15%;
        height: 2px;
        position: absolute;
        top: 33%;
        left: 380px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #blog .blog-heading::after {
        content: '';
        width: 15%;
        height: 2px;
        position: absolute;
        top: 37%;
        left: 370px;
        z-index: 99;
        background-color: var(--c-dark);
    }
      .bx {
        font-family: boxicons!important;
        font-weight: 400;
        font-style: normal;
        font-variant: normal;
        line-height: 1;
        text-rendering: auto;
        display: inline-block;
        text-transform: none;
        speak: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin-right: 8px;
    }






/*    EXPERIENCE*/
#experience {
    background: url(../img/callout.jpg) no-repeat;
    background-size: cover;
    width: 100%;
}
#experience h2 {
    color: #fff;
}
#experience .btn {
    border-radius: 100px;
    padding: 2px 10px;
    font-size: 15px;
}
#experience button {
    margin: 20px 0px;
}






/*TESTIMONIALS*/
#testimonials {
    background: var(--c-body);
    position: relative;
    padding: 80px 0px;
}
    .testimonials-heading {
    background-color: transparent;
    display: inline-block;
    padding: 2px 25px;
    position: relative;
    padding-left: 50%;
    float: right;
    }
    .testimonials-heading::before {
        content: '';
        width: 27%;
        height: 2px;
        position: absolute;
        top: 34px;
        right: 310px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .testimonials-heading::after {
        content: '';
        width: 27%;
        height: 2px;
        position: absolute;
        top: 40px;
        right: 320px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .testimonials-head {
        position: relative;
    }

    .testimonials-body {
        position: relative;
        padding: 30px 0px 30px 65px;
    }
    #testimonials .testimonials-body::before {
        content: '';
        position: absolute;
        width: 250px;
        height: 100%;
        background-color: var(--c-primary);
        z-index: -1;
        top: 0;
        left: 0;
    }
    .testimonials-img {
        text-align: center;
}
    }
    .testimonials-body .testimonials-review {
        position: relative;
        width: 70%;
    }
    .testimonials-body .row {
        margin-right: -15px;
        margin-left: -15px;
    }
    .testimonials-review  {
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    }
    .testimonials-review .rating i {
        color: var(--c-primary);
    }

    .testimonials-img h5 {
        font-size: 12px;
    }
    .testimonials-img span {
        font-size: 16px;
        font-weight: bold;
        color: #000;
        font-family: var(--f-main);
    }
    .testimonials-review p {
        color: var(--c-dark)!important;
    }
    .rating {
        text-align: right;
    }
    .rating span {
        color: var(--c-text);
        font-size: 12px;
    }
    .item1 {
        margin-right: 7px;
    }




/*RESERVE NOW*/
    #reserve {
    background: url(../img/reserv-bg.jpg) no-repeat center center;
    }

    .reserve-head {
        position: relative;
    }
    #reserve .reserve-heading::before {
        content: '';
        width: 40%;
        height: 2px;
        position: absolute;
        top: 9%;
        left: 310px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #reserve .reserve-heading::after {
        content: '';
        width: 40%;
        height: 2px;
        position: absolute;
        top: 10%;
        left: 295px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #reserve button:hover {
    border-radius: 0!important;
    background-color: transparent;
    border: 1px solid var(--c-primary);
    padding: 2px;
    }
    .reserve-price {
        border: 2px solid var(--c-primary);
        padding: 20px;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    }
    .reserve-price h5 {
        font-family: var(--f-main);
        color: var(--c-primary);
        font-size: 30px;
        font-weight: bold;
    }
    .reserve-price span {
        color: var(--c-dark);
    }
    .reserve-price h3 {
        color: #000;
        background-color: var(--c-primary);
        font-size: 20px;
        font-weight: 400;
        padding: 7px 10px;
    }
    .reserve-price-body h4 {
        font-size: 14px;
        color: var(--c-dark);
    }

    .input-box {
        border: 1px solid #363636;
        position: relative;
    }
    .form-control {
        width: 80%;
    }
    .form-icon {
        width: 20%;
    }
    .input-box input {
        border: none;
    }
    .input-box input::placeholder {
        font-size: 13px;
    }
    .input-box span {
        position: absolute;
        top: 0;
        right: 0;
        background: #363636;
        padding: 6px 13px;
        color: #fff;
    }




    /*NEWSLETTER*/

    #newsletter {
        background: url(../img/newsletter-bg.jpg) no-repeat fixed;
        background-size: cover;
        background-position: center;
        width: 100%;
    }
    #newsletter h2 {
        color: #fff;
    }
    #newsletter .btn {
        border-radius: 100px;
        padding: 2px 10px;
        font-size: 15px;
    }
    #newsletter button {
        margin: 20px 0px;
    }







    /*FOOTER*/

    #footer-body .body-title {
        position: relative;
    }
    #footer-body .body-title-head {
        position: relative;
    }
    #footer-body .body-title .body-title-head h5 {
        font-size: 30px;
        font-family: var(--f-main);
    }
     #footer-body .body-title .body-title-head::before {
            content: '';
            width: 25%;
            height: 2px;
            position: absolute;
            top: 46%;
            left: 157px;
            z-index: 99;
            background-color: var(--c-dark);
        }
    #footer-body .body-title-head::after {
            content: '';
            width: 25%;
            height: 2px;
            position: absolute;
            top: 60%;
            left: 150px;
            z-index: 99;
            background-color: var(--c-dark);
        }


    /*FOOTER-CONTACT*/
    #footer-body .contact-address li {
        list-style: none;
        padding-bottom: 20px;
        font-size: 14px;
        color: var(--c-text);
    }
    #footer-body .contact-address li i {
        font-size: 20px;
        color: var(--c-primary);
        margin-right: 5px;
        vertical-align: middle;
    }
    #footer-body .contact-address li span {
        font-size: 15px;
        color: #000;
        margin-right: 5px;
        vertical-align: middle;
    }
    ul {
        display: block;
        list-style-type: disc;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        padding-inline-start: 0;
    }
    .footer-social h4 {
        font-size: 15px;
    }

    .footer-social-icon li{
        list-style: none;
        display: inline-block;
        font-size: 17px;
        border: 1px solid var(--c-dark);
        padding: 0px 5px;
        margin-right: 8px;
    }
    .footer-social-icon li a {
        color: var(--c-dark);
    }


    /*FOOTER-NEWS*/
    .news-img-box img {
        width: 30px;
        margin-right: 10px;
    }
    .news-img-box p {
        font-size: 14px;
        color: var(--c-dark);
        margin-bottom: 0;
    }
    .news-img-box span {
        font-size: 14px;
        color: var(--c-text);
        margin-bottom: 0;
    }
    .news-img-box img {
    width: 70px;
    }
    .news-title a {
       text-decoration: none;
    }




    /*FOOTER-GALLERY*/
    .gallery {
        margin: 0;
        padding: 0;
    }
    .gallery img {
        width: 100%;
    }
    .gallery li {
        list-style: none;
        float: left;
        margin-right: 5px;
        margin-bottom: 5px;
        width: calc((100% - 15px) / 3);
    }

    .mfp-arrow-right:after {
        border-left: 17px solid #FFF;
        margin-left: 0px;
    }
    .mfp-arrow {
        position: absolute;
        opacity: 0.65;
        margin: 0;
        top: 50%;
        margin-top: -61px;
        padding: 0;
        width: 40px;
        height: 40px;
        -webkit-tap-highlight-color: transparent;
    }

    .mfp-arrow-right {
        right: 20px;
    }
    button:hover {
        border-radius: 0;
        background-color: transparent;
        border: none;
    }



    /*-- COPYRIGHT --*/
    .copyright {
        background-color: var(--c-primary);
        text-align: center;
        margin-bottom: 0px;
        padding-top: 15px;
    }
    .copyright p {
        color: var(--c-dark);
        font-weight: 600;
        font-size: 13px;
    }
    .copyright a {
        color: #fff;
        font-size: 13px;
        font-weight: 300;
        text-decoration: none;
    }








/*MOBAIL RESPONSIVE*/




@media (max-width: 600px) {


    .container {
        max-width: 100%;
    }
    p {
    color: var(--c-text);
    font-size: 13px;
    }

    h2 {
        font-family: 'Dancing Script', cursive;
        font-size: 55px;
        color: var(--c-dark);
    }

    .text-brand {
        color: var(--c-primary);
    }

    section{
        padding: 40px 0px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .item-content .btn {
        border-radius: 100px;
        padding: 2px 10px;
        font-size: 15px;
    }
    .btn-custom {
        color: var(--c-dark);
        background-color: var(--c-primary);
        border-radius: 0px;
    }
    button {
        border-radius: 100px;
        background-color: transparent;
        border: 1px solid #fff;
        padding: 2px;
    }

    .btn-custom:hover {
        color: var(--c-primary);
        background-color: var(--c-dark);
    }
    button:hover {
        border-radius: 100px;
        background-color: transparent;
        border: 1px solid var(--c-primary);
        padding: 2px;
    }
    


/*    HEADER*/
@media (min-width: 1000px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 16px;
        padding-left: 16px;
    }
}
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
header .container {
    max-width: 100%;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.header.sticky_menu {
    background-color: #fff;
    left: 0;
    right: 0;
    top: 0;
    padding: 2px 0;
    position: fixed;
    z-index: 9;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.menubar {
    position: relative;
    z-index: 0;
    padding: 5px 0;
    background-color: #ffffff;
}

.menubar:before {
    content: "";
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -28px;
    background-color: #fff;
    transform: skewX(-25deg);
    z-index: -1;
}

    .menubar:after {
        content: "";
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        right: -50%;
        background-color: #fff;
        z-index: -1;
        display: none;
    }

    .menubar ul.nav {
        margin: 22px auto;
        position: relative;
    }



#navbar {
    width: 90%;
    margin: auto;
}

.mx-auto {
    margin-right: 30px!important;
    margin-left: auto!important;
}
.navbar-nav {
    background-color: var(--c-primary);
    padding: 5px 0px;
    margin-bottom: 17px;
}

.navbar .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
}
/*.navbar .navbar-nav .nav-link:hover{
    color: var(--c-primary);
}*/

.navbar-brand {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-dark);
}

/*BTN*/
.btn {
    padding: 10px 24px;
    font-weight: 500;
    font-size: 20px;
    border-radius: 0;
    font-size: 16px;
}
.btn-brand {
    color: #fff;
    background-color: var(--c-dark);
    
}
.btn-brand:hover {
    color: var(--c-dark);
    background-color: var(--c-primary);
}




    /*SLIDER*/

    .owl-carousel {
        display: flex;
        flex-wrap: nowrap;
        position: relative;
    }

    .owl-carousel .item {
        margin: 10px;
        text-align: center;
    }

    .owl-carousel img {
        width: 100%;
        height: auto;
    }

    .item-content {
        padding: 20px;
        border-radius: 8px;
        color: #fff;
        text-align: center;
    }
    .owl-carousel p {
        color: #fff;
        display: none;
    }
   
    .hero {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        max-width: 1170px;
        padding: 0 20px;
        transform: translate(-50%, -50%);
    }
    .time {
        color: #fff;
        text-align: center;
        justify-content: center;
        margin: auto;
    }
    .time h3{
        font-family: 'Dancing Script', cursive;
        color: var(--c-dark);
        background-color: #fff;
        width: 200px;
        margin: auto;
        font-size: 25px;
        font-weight: 700;
        padding: 5px 10px;
        -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        clip-path: polygon(0 18%, 100% 0, 100% 100%, 0% 100%);
    }

    .icon i {
        font-size: 35px;
    }
    .time .time-box .icon img {
        width: 40px;
        margin: auto;
    }

    .item-content h2 {
        color: #fff;
        font-size: 40px;
    }
    .icon h4 {
       font-family: 'Dancing Script', cursive;
       color: var(--c-primary);
    }
    .item-content p {
        font-size: 13px;
        padding: 20px 0px;
    }
    .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        z-index: 9;
        display: none;
    }

    .owl-nav button {
        background-color: rgba(255, 255, 255, .2);
        color: white;
        border: none;
        border-radius: 10px;
        padding: 10px;
        cursor: pointer;
        font-size: 1.5em;
        width: 28px;
        height: 90px;
        margin: 30px;
        position: relative;
    }
    .owl-nav .owl-prev img {
        position: absolute;
        top: 36px;
        left: 5px;
        width: 20px;
    }
    .owl-nav .owl-next img {
        position: absolute;
        top: 36px;
        left: 5px;
        width: 20px;
    }

    
    .sliders .owl-nav .owl-prev:hover, .sliders .owl-nav .owl-next:hover {
    background-color: #fff;
    }
    .owl-carousel .col-md-3 {
        display: none;
    }




/*ABOUT US*/

    #about-us {
        background-color: var(--c-body);
    }

    .about-img {
        width: 100%;
        position: relative;
    }

    .about-img img {
        width: 95%;
    }
    .about-img::after {
        content: '';
        width: 50%;
        height: 5px;
        position: absolute;
        bottom: 0;
        left: 32px;
        z-index: 99;
        background-color: var(--c-primary);
    }
    .about-us {
        vertical-align: center;
    }
    .about-heading::before {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 19%;
        left: 125px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .about-heading::after {
        content: '';
        width: 30%;
        height: 2px;
        position: absolute;
        top: 20%;
        left: 112px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .about-head {
        position: relative;
    }
    .about-heading span {
    background-color: transparent;
    display: inline-block;
    padding: 30px 25px;
    position: relative;
    padding-left: 23%;
    top: 0px;
    font-size: 55px;
    }
    .about-head-iconbox img {
        width: 13px;
        height: 13px;
        margin-bottom: 10px;
        margin-right: 5px;
    }
    .about-head-iconbox li {
        list-style: none;
        display: flex;
        align-items: center;
    }
    .about-head-iconbox p {
        display: inline-block;
        margin-left: 5px;        
    }
    .about-img-box {
        padding-left: 0px
    }

    .about-buttom {
        width: 100%;
    }
    .about-buttom img {
        width: 30px;
    }
    .about-buttom h4 {
       font-size: 15px;
    }

    .about-buttom .img-box {
       text-align: center;
    }






    /*SERVICES*/
    #services {
        background: url(../img/services-bg.jpg) no-repeat center center;
    }
    .services-head {
        position: relative;
        text-align: center;
    }
    #services .services-heading::before {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 60%;
        left: 125px;
        z-index: 99;
        background-color: var(--c-dark);
        }
    #services .services-heading::after {
        content: '';
        width: 25%;
        height: 2px;
        position: absolute;
        top: 66%;
        left: 120px;
        z-index: 99;
        background-color: var(--c-dark);
        }
    #services .img-box {
        width: 45%;
        display: inline-block;
        text-align: center;
        margin: 6px;
    }
    #services .img-box img {
        width: 25px;
    }
    #services .img-box h4 {
       font-size: 18px;
       font-family: var(--f-main);
       color: var(--c-dark);
       font-weight: 600;
    }
    .service-chef {
        text-align: center;
    }
    .service-chef img {
        width: 80%;
    }




    /*MENU*/
    #menu {
    background: none;
    }

    .menu-head {
        position: relative;
        text-align: center;
    }
    #menu .menu-heading::before {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 60%;
        left: 125px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #menu .menu-heading::after {
        content: '';
        width: 25%;
        height: 2px;
        position: absolute;
        top: 66%;
        left: 120px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #menu .img-box {
    position: relative;
    }
    #menu .img-box img {
    width: 70px;
    }
    #menu .img-box h4 {
       font-size: 16px;
       font-family: var(--f-main);
       color: var(--c-dark);
       font-weight: 600;
    }
    #menu .img-box p {
       font-size: 13px;
    }
    #menu .img-box h4:hover {
       color: var(--c-primary);
    }
    .menu-name {
        position: absolute;
        left: 90px;
        top: -20px;
    }



    .food-menu .menus-item {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 50px;
        display: inline-block;
    }
    .food-menu .menus-item li {
        float: left;
        border: 1px solid #ffad18;
        border-right: 0;
        padding: 6px 4px;
        position: relative;
        color: #000;
        font-family: var(--f-main);
        font-weight: 700;
        font-size: 12px;
        cursor: pointer;
        transition: 0.3s all;
    }
    .food-menu .menus-item li i {
        font-size: 18px;
        margin-right: 0;
        vertical-align: middle;
    }
    .food-menu .menus-item li:last-child {
    border-right: 1px solid var(--c-primary);
    }
    .food-menu .menu-name a {
        text-decoration: none;
    }
    .food-menu .menus-item li:hover,
    .food-menu .menus-item li.active {
        background-color: #ffad18;
    }
    .mixitup-control-active {
        background-color: var(--c-primary);
    }



    .mix {
        padding: 10px;
    }
        .active-tab {
            display: block;
        }

        .tab {
            cursor: pointer;
            display: inline-block;
        }

        .filter-btn {
            cursor: pointer;
            display: inline-block;
        }






/*    CHEFS*/

    .chefs-img {
        width: 100%;
        position: relative;
    }
    .chefs {
        vertical-align: center;
    }
    .chefs-heading::before {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 100%;
        right: 135px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .chefs-heading::after {
        content: '';
        width: 30%;
        height: 2px;
        position: absolute;
        top: 106%;
        right: 125px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    .chefs-heading span {
    background-color: transparent;
    display: inline-block;
    padding: 10px;
    position: relative;
    text-align: center;
    }
    .chefs-head {
        position: relative;
        text-align: center;
    }
    .chefs-img {
        position: relative;
        text-align: center;
        margin-bottom: 30px;
    }
    .chefs-img:hover .chef-intro {
        position: relative;
        background-color: var(--c-primary);
    }
    .chefs-img:hover .intro-box:before {
        border: 2px solid var(--c-primary);
    }
    .chefs-img:hover .intro-box h5 {
        color: var(--c-dark);
    }
    .chefs-img:hover .social-icon li a {
        color: var(--c-dark);
    }
    .chefs-img h5 {
        font-size: 15px;
        color: #fff;
        text-align: left;
        margin-bottom: 0;
        position: relative;
        padding: 10px 20px;
    }
    .chefs-img span {
        font-size: 12px;
        font-family: var(--f-main);
    }
    .chef-intro {
        position: relative;
        background-color: var(--c-dark);
    }
    .social-icon {
        position: absolute;
        top: 5px;
        right: 15px;
    }
    .social-icon li{
        list-style: none;
        display: inline-block;
        font-size: 20px;
    }
    .social-icon li a {
        color: #fff;
    }
    .intro-box {
        position: relative;
    }
    .intro-box:before {
    content: "";
    position: absolute;
    height: 160px;
    width: 100%;
    border: 2px solid var(--c-dark);
    left: 0;
    top: 0;
    z-index: -1;
    -o-transition: .3s all;
    -ms-transform: translateY(-98%);
    transform: translateY(-98%);
    }







/*BLOG*/
#blog {
    background: url(../img/blogs-bg.jpg) no-repeat center center;
    }

    .blog-head {
        position: relative;
        text-align: center;
    }
    #blog .img-box {
        background-color: #fff;
        box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    }
    #blog .img-box h4 {
       font-size: 20px;
       font-family: var(--f-main);
       color: var(--c-dark);
       font-weight: 600;
    }
    #blog .img-box h4:hover {
       color: var(--c-primary);
    }
    #blog .img-box img {
        width: 100%;
    }
    .blog-text {
        padding: 30px 18px;
        position: relative;
    }
    .blog-text  .date {
        background-color: var(--c-primary);
        position: absolute;
        top: -18px;
        width: 89%;
        padding: 5px 10px;
    }
    .blog-text .blog-btn {
       color: var(--c-dark);
    }
    .blog-text .blog-btn:hover {
       color: var(--c-primary);
    }
    .blog-text ul {
        padding: 8px 0px;
    }
    .date {
        text-align: center;
    }
    .date li {
        list-style: none;
        display: inline-block;
        padding: 0px 10px;
    }
    .date li:nth-child(2) {
        display: none;
    }
    .date li:nth-child(3) {
        display: none;
    }
    .border-li {
        border-right: 1px solid var(--c-dark);
    }
    .border-li {
        border-left: 1px solid var(--c-dark);
    }
    #blog .blog-heading::before {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 65%;
        left: 125px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #blog .blog-heading::after {
        content: '';
        width: 30%;
        height: 2px;
        position: absolute;
        top: 72%;
        left: 110px;
        z-index: 99;
        background-color: var(--c-dark);
    }
  






    /* EXPERIENCE*/
    #experience {
        background: url(../img/callout.jpg) no-repeat;
        background-size: cover;
        width: 100%;
    }
    #experience h2 {
        color: #fff;
    }
    #experience .btn {
        border-radius: 100px;
        padding: 2px 10px;
        font-size: 15px;
    }
    #experience button {
        margin: 20px 0px;
    }





    /*TESTIMONIALS*/
    #testimonials {
        background: var(--c-body);
        position: relative;
        padding: 80px 0px;
    }
    .testimonials-heading {
        background-color: transparent;
        display: inline-block;
        padding: 2px 57px;
        position: relative;
        padding-left: 50%;
        float: right;
        padding-bottom: 20px;
    }
    .testimonials-heading::before {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 68%;
        left: 210px;
        z-index: 99;
        background-color: var(--c-dark);
        display: none;
    }
    .testimonials-heading::after {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 73%;
        left: 210px;
        z-index: 99;
        background-color: var(--c-dark);
        display: none;
    }
    .testimonials-head {
        position: relative;
        text-align: center;
    }

    .testimonials-body {
        position: relative;
        padding: 30px;
    }
    .owl-carousel .testy  {
        width: 100%;
        padding: 0px;
    }
    #testimonials .testimonials-body::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--c-primary);
        z-index: -1;
        top: 0;
        left: 0;
    }
    .testimonials-img {
        text-align: center;
        padding-bottom: 10px;
    }
    .owl-carousel .testimonials-body .testimonials-img img {
        width: 25%;
        margin: auto;
    }
    .testimonials-body .testimonials-review {
        position: relative;
        width: 100%;
    }
    .testimonials-body .row {
        margin-right: -15px;
        margin-left: -15px;
    }
    .testimonials-review  {
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    }
    .testimonials-review .rating i {
        color: var(--c-primary);
    }

    .testimonials-img h5 {
        font-size: 12px;
    }
    .testimonials-img span {
        font-size: 16px;
        font-weight: bold;
        color: #000;
        font-family: var(--f-main);
    }
    .testimonials-review p {
        color: var(--c-dark)!important;
    }
    .rating {
        text-align: right;
    }
    .rating span {
        color: var(--c-text);
        font-size: 12px;
    }
    .testy-body {
        padding: 0px;
    }
    .item1 {
        margin-right: 0px;
    }
    .bx {
    font-family: boxicons!important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     margin-right: 0px; 
    }
    .owl-carousel .col-6:nth-child(2) {
        display: none;
    }





/*RESERVE NOW*/
    #reserve {
    background: url(../img/reserv-bg.jpg) no-repeat center center;
    }

    .reserve-head {
        position: relative;
        text-align: center;
    }
    #reserve .reserve-heading::before {
        content: '';
        width: 22%;
        height: 2px;
        position: absolute;
        top: 13%;
        left: 125px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #reserve .reserve-heading::after {
        content: '';
        width: 25%;
        height: 2px;
        position: absolute;
        top: 14%;
        left: 118px;
        z-index: 99;
        background-color: var(--c-dark);
    }
    #reserve button:hover {
    border-radius: 0!important;
    background-color: transparent;
    border: 1px solid var(--c-primary);
    padding: 2px;
    }
    .reserve-price {
        border: 2px solid var(--c-primary);
        padding: 20px;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    }
    .reserve-price h5 {
        font-family: var(--f-main);
        color: var(--c-primary);
        font-size: 30px;
        font-weight: bold;
    }
    .reserve-price span {
        color: var(--c-dark);
    }
    .reserve-price h3 {
        color: #000;
        background-color: var(--c-primary);
        font-size: 20px;
        font-weight: 400;
        padding: 7px 10px;
    }
    .reserve-price-body h4 {
        font-size: 14px;
        color: var(--c-dark);
    }
    .reserve-price-body img {
        width: 100%;
    }

    .input-box {
        border: 1px solid #363636;
        position: relative;
    }
    .form-control {
        width: 80%;
    }
    .form-icon {
        width: 20%;
    }
    .input-box input {
        border: none;
    }
    .input-box input::placeholder {
        font-size: 13px;
    }
    .input-box span {
        position: absolute;
        top: 0;
        right: 0;
        background: #363636;
        padding: 6px 13px;
        color: #fff;
    }
    .reserve .col-6 {
    flex: 0 0 auto;
    width: 100%;
    }
    .reserve-form {
        width: 100%;
        padding-top: 30px;
    }
    .form-input {
        margin-bottom: 20px;
    }



    /*NEWSLETTER*/

    #newsletter {
        background: url(../img/newsletter-bg.jpg) no-repeat fixed;
        background-size: cover;
        background-position: center;
        width: 100%;
    }
    #newsletter h2 {
        color: #fff;
    }
    #newsletter .btn {
        border-radius: 100px;
        padding: 2px 10px;
        font-size: 15px;
    }
    #newsletter button {
        margin: 20px 0px;
    }







    /*FOOTER*/

    #footer-body .body-title {
        position: relative;
    }
    #footer-body .body-title-head {
        position: relative;
    }
    #footer-body .body-title .body-title-head h5 {
        font-size: 30px;
        font-family: var(--f-main);
    }
     #footer-body .body-title .body-title-head::before {
            content: '';
            width: 25%;
            height: 2px;
            position: absolute;
            top: 46%;
            left: 157px;
            z-index: 99;
            background-color: var(--c-dark);
            display: none;
        }
        #footer-body .body-title-head::after {
            content: '';
            width: 25%;
            height: 2px;
            position: absolute;
            top: 60%;
            left: 150px;
            z-index: 99;
            background-color: var(--c-dark);
            display: none;
        }
        





    /*FOOTER-CONTACT*/
    #footer-body .contact-address li {
        list-style: none;
        padding-bottom: 20px;
        font-size: 14px;
        color: var(--c-text);
    }
    #footer-body .contact-address li i {
        font-size: 20px;
        color: var(--c-primary);
        margin-right: 5px;
        vertical-align: middle;
    }
    #footer-body .contact-address li span {
        font-size: 15px;
        color: #000;
        margin-right: 5px;
        vertical-align: middle;
    }
    ul {
        display: block;
        list-style-type: disc;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        padding-inline-start: 0;
    }
    .footer-social h4 {
        font-size: 15px;
    }

    .footer-social-icon li{
        list-style: none;
        display: inline-block;
        font-size: 17px;
        border: 1px solid var(--c-dark);
        padding: 0px 5px;
        margin-right: 8px;
    }
    .footer-social-icon li a {
        color: var(--c-dark);
    }
    #footer-body .col-4 {
        width: 100%;
    }
    #footer-body .col-4:nth-child(2) {
        padding-top: 30px;
    }



    /*FOOTER-NEWS*/
    .news-img-box img {
        width: 30px;
        padding-right: 10px;
    }
    .news-img-box p {
        font-size: 14px;
        color: var(--c-dark);
        margin-bottom: 0;
    }
    .news-img-box span {
        font-size: 14px;
        color: var(--c-text);
        margin-bottom: 0;
    }
    .news-img-box img {
        width: 73px;
    }
    .news-title a {
       text-decoration: none;
    }
    .news-img-box .col-md-3 {
        width: 20%;
    }
    .news-img-box .col-md-9 {
        width: 80%;
    }




    /*FOOTER-GALLERY*/
    .gallery {
        margin: 0;
        padding: 0;
    }
    .gallery img {
        width: 100%;
    }
    .gallery li {
        list-style: none;
        float: left;
        margin-right: 5px;
        margin-bottom: 5px;
        width: calc((100% - 15px) / 3);
    }

    .mfp-arrow-right:after {
        border-left: 17px solid #FFF;
        margin-left: 0px;
    }
    .mfp-arrow {
        position: absolute;
        opacity: 0.65;
        margin: 0;
        top: 50%;
        margin-top: -61px;
        padding: 0;
        width: 40px;
        height: 40px;
        -webkit-tap-highlight-color: transparent;
    }

    .mfp-arrow-right {
        right: 20px;
    }
    button:hover {
        border-radius: 0;
        background-color: transparent;
        border: none;
    }
    #footer-body .col-4:last-child {
            padding-top: 30px;
    }



    /*-- COPYRIGHT --*/
    .copyright {
        background-color: var(--c-primary);
        text-align: center;
        margin-bottom: 0px;
        padding-top: 15px;
    }
    .copyright p {
        color: var(--c-dark);
        font-weight: 600;
        font-size: 13px;
    }
    .copyright a {
        color: #fff;
        font-size: 12px;
        font-weight: 300;
        text-decoration: none;
    }


}