<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Author : Kamal
Version : 0.1v
Type : CSS
*/


@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&amp;subset=devanagari,latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Tangerine&amp;display=swap');

/* font-family: 'Teko', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&amp;display=swap');

/* font-family: 'Roboto Slab', serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&amp;family=Teko:wght@300;400;500;600;700&amp;display=swap');

/* @font-face {
  font-family: RobotoSlab;
  src: url(../fonts/RobotoSlab-VariableFont_wght.ttf);
} */
/* @font-face {
  font-family: RobotoSlab;
  src: url(../fonts/.ttf);
} */

/* #Primary
================================================== */
html {
    scroll-behavior: smooth;
}

a {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    line-height: 24px;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    margin: 0px auto;
}

::selection {
    color: #fff;
    background-color: #f0bb0f;
}

::-moz-selection {
    color: #fff;
    background-color: #f0bb0f;
}

header::before {
    content: "";
    position: fixed;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    box-shadow: 0px 0 37px rgb(0 0 0 / 90%);
    z-index: 100;
}

.bg-transparent {
    background-color: transparent !important;
    transition: all 200ms linear;
}

/* #Navigation
================================================== */

.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 0px 0;
    /* box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15); */
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 10px 0px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
    width: 80%;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    width: 70%;
    display: block;
    /* filter: brightness(10%); */
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #fff !important;
    font-weight: 200;
    transition: all 200ms linear;
    text-transform: uppercase;
    /*font-size: 32px;*/
    font-size: 2.3vw;
}

.nav-item:hover .nav-link {
    color: #f0bb0f !important;
}

.nav-item.active .nav-link {
    color: #f0bb0f !important;
}

.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #f0bb0f;
    opacity: 0;
    transition: all 200ms linear;
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

.nav-item.active:hover:after {
    opacity: 0;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
}

.header-social a i {
    font-size: 20px;
    color: #fff;
}

/* #Primary style
================================================== */

.bg-light {
    background-color: #fff !important;
    transition: all 200ms linear;
}

.section {
    position: relative;
    width: 100%;
    display: block;
}

.full-height {
    height: 100vh;
}

.over-hide {
    overflow: hidden;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: 40px;
    transform: translateY(-50%);
    z-index: 20;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #212112;
    text-align: center;
}

p {
    margin: 0;
    padding-top: 10px;
    opacity: 1;
    transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1700ms;
}

body.hero-anime p {
    opacity: 0;
    transform: translateY(40px);
    transition-delay: 1700ms;
}

h1 span {
    display: inline-block;
    transition: all 300ms linear;
    opacity: 1;
    transform: translate(0);
}

body.hero-anime h1 span:nth-child(1) {
    opacity: 0;
    transform: translateY(-20px);
}

body.hero-anime h1 span:nth-child(2) {
    opacity: 0;
    transform: translateY(-30px);
}

body.hero-anime h1 span:nth-child(3) {
    opacity: 0;
    transform: translateY(-50px);
}

body.hero-anime h1 span:nth-child(4) {
    opacity: 0;
    transform: translateY(-10px);
}

body.hero-anime h1 span:nth-child(5) {
    opacity: 0;
    transform: translateY(-50px);
}

body.hero-anime h1 span:nth-child(6) {
    opacity: 0;
    transform: translateY(-20px);
}

body.hero-anime h1 span:nth-child(7) {
    opacity: 0;
    transform: translateY(-40px);
}

body.hero-anime h1 span:nth-child(8) {
    opacity: 0;
    transform: translateY(-10px);
}

body.hero-anime h1 span:nth-child(9) {
    opacity: 0;
    transform: translateY(-30px);
}

body.hero-anime h1 span:nth-child(10) {
    opacity: 0;
    transform: translateY(-20px);
}

h1 span:nth-child(1) {
    transition-delay: 1000ms;
}

h1 span:nth-child(2) {
    transition-delay: 700ms;
}

h1 span:nth-child(3) {
    transition-delay: 900ms;
}

h1 span:nth-child(4) {
    transition-delay: 800ms;
}

h1 span:nth-child(5) {
    transition-delay: 1000ms;
}

h1 span:nth-child(6) {
    transition-delay: 700ms;
}

h1 span:nth-child(7) {
    transition-delay: 900ms;
}

h1 span:nth-child(8) {
    transition-delay: 800ms;
}

h1 span:nth-child(9) {
    transition-delay: 600ms;
}

h1 span:nth-child(10) {
    transition-delay: 700ms;
}

body.hero-anime h1 span:nth-child(11) {
    opacity: 0;
    transform: translateY(30px);
}

body.hero-anime h1 span:nth-child(12) {
    opacity: 0;
    transform: translateY(50px);
}

body.hero-anime h1 span:nth-child(13) {
    opacity: 0;
    transform: translateY(20px);
}

body.hero-anime h1 span:nth-child(14) {
    opacity: 0;
    transform: translateY(30px);
}

body.hero-anime h1 span:nth-child(15) {
    opacity: 0;
    transform: translateY(50px);
}

h1 span:nth-child(11) {
    transition-delay: 1300ms;
}

h1 span:nth-child(12) {
    transition-delay: 1500ms;
}

h1 span:nth-child(13) {
    transition-delay: 1400ms;
}

h1 span:nth-child(14) {
    transition-delay: 1200ms;
}

h1 span:nth-child(15) {
    transition-delay: 1450ms;
}

#switch,
#circle {
    cursor: pointer;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

#switch {
    width: 60px;
    height: 8px;
    border: 2px solid #f0bb0f;
    border-radius: 27px;
    background: #000;
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1900ms;
}

body.hero-anime #switch {
    opacity: 0;
    transform: translateY(40px);
    transition-delay: 1900ms;
}

#circle {
    position: absolute;
    top: -11px;
    left: -13px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #000;
}

.switched {
    border-color: #000 !important;
    background: #f0bb0f !important;
}

.switched #circle {
    left: 43px;
    box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
    background: #fff;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    padding: 7px 14px;
    color: #212121;
    border-radius: 2px;
    transition: all 200ms linear;
    font-size: 24px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #ffc107;
    background-color: rgb(50 19 5 / 88%);
}

body.dark {
    color: #fff;
    background-color: #1f2029;
}

body.dark .navbar-brand img {
    filter: brightness(100%);
}

body.dark h1 {
    color: #fff;
}

body.dark h1 span {
    transition-delay: 0ms !important;
}

body.dark p {
    color: #fff;
    transition-delay: 0ms !important;
}

body.dark .bg-light {
    background-color: #14151a !important;
}

body.dark .start-header {
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}

body.dark .start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

body.dark .nav-link {
    color: #fff !important;
}

body.dark .nav-item.active .nav-link {
    color: #999 !important;
}

body.dark .dropdown-menu {
    color: #fff;
    background-color: #1f2029;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

body.dark .dropdown-item {
    color: #fff;
}

body.dark .navbar-light .navbar-toggler-icon {
    border-bottom: 1px solid #fff;
}

body.dark .navbar-light .navbar-toggler-icon:after,
body.dark .navbar-light .navbar-toggler-icon:before {
    background-color: #fff;
}

body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}




/* #Link to page
================================================== */

.logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: block;
    z-index: 100;
    transition: all 250ms linear;
}

.logo img {
    height: 26px;
    width: auto;
    display: block;
    filter: brightness(10%);
    transition: all 250ms linear;
}

body.dark .logo img {
    filter: brightness(100%);
}

.navbar-center {
    /* position: absolute;
	left: 50%; */
    /* transform: translatex(-33%); */
}

/* --------------------------------------------------------------------------------------------- */
.bg-video-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: 100vh; */
    background: url(../img/kaali-bg.jpg) no-repeat center center/cover;
}

.bg-video-wrap video {
    width: 100%;
    /* min-height: 100vh; */
    z-index: 1;
}

.bg-video-wrap iframe {
    width: 100%;
    /* min-height: 100vh; */
    z-index: 1;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, .2) 70%, rgba(0, 0, 0, .2) 70%);
    background-size: 3px 3px;
    z-index: 2;
}

.bg-video-wrap h1 {
    text-align: center;
    color: #fff;
    /* position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  max-width: 400px;
  width: 100%;
  height: 50px; */
}

.banner-cont {
    text-align: center;
    position: absolute;
    top: 60%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    max-width: 400px;
    width: 100%;
    height: 50px;
}

#scrollnext a {
    padding-top: 70px;
}

#scrollnext a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 1.5s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

@keyframes sdb05 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

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

/* section after banner */
.section-01 {
    background: url(../img/o3.png);
    background-position: top left;
    background-repeat: no-repeat;
}

.section-01 .content {
    padding: 30px 150px;
}

.section-01 .content h2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 0.9em;
}

.section-01 p {
    font-size: 25px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
    list-style: 28px;
    margin-bottom: 20px;
}

.button {
    font-size: 20px;
    padding: 5px 20px;
    color: white;
    background: #800000;
    transition: all 200ms linear;
    border: 2px solid #fff;
}

.button:hover {
    font-size: 20px;
    padding: 5px 20px;
    color: #f0bb0f;
    background: #000;
}

/* slider/video ends */

/* meals offer */
.meals-offers {
    padding: 16px 100px 25px 100px;
    background-image: url(../img/left.png), url(../img/right.png);
    background-position: left, right;
    background-repeat: no-repeat, no-repeat;
}

.meals-offers .left {
    float: left;
}

.meals-offers .right {
    float: right;
}

.meals-offers .clear {
    clear: both;
}

.meals-offers .icon {
    color: #fff;
    font-size: 52px;
    display: inline-block;
}

.meals-offers .column {
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
}

.meals-offers p {
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 300;
}

@media (max-width:991px) {
    .column {
        width: 100%;
    }
}

/* meals offer ends */

/* after meal */
.section-02 {
    background: url(../img/o4.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}

.section-02 .content {
    padding: 20px 80px;
}

.section-02 .content h2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 0.9em;
}

.section-02 .content p {
    font-size: 25px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
    list-style: 28px;
}

.btn-set-after-mealoffers {
    margin-top: 50px;
}

.button02 {
    font-size: 20px;
    padding: 5px 20px;
    color: white;
    background: #800000;
    transition: all 200ms linear;
    border: 2px solid #fff;
}

.button02:hover {
    font-size: 20px;
    padding: 5px 20px;
    color: #f0bb0f;
    background: #000;
}

/* after meal offer ends */

/* chef section starts */
.chef-first-cont {
    padding: 10px;
    background: #800000;
}

.chef-first-cont-wrap {
    padding: 50px;
    border: 1px solid #fff;
}

.chef-first-cont h2 {
    font-weight: 300;
}

.chef-first-cont p {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 26px;
}

.chef-2nd-cont {
    margin-top: 80px;
}

.chef-2nd-cont h3 {
    font-size: 35px;
    color: #f0bb0f;
    line-height: 0px;
    font-weight: 300;
    letter-spacing: 1px;
}

.chef-2nd-cont h2 {
    font-size: 70px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: -12px;
}

.chef-2nd-cont p {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 26px;
    padding-right: 220px;
}

.chef-3rd-img {
    margin-top: 40px;
}


/* right side of chef section */
.chef-rightside-first-cont-wrap-img {
    padding: 1px;
   
}

.chef-rightside-2nd-cont {
    margin-top: 85px;
}

.chef-rightside-2nd-cont h3 {
    font-size: 35px;
    color: #f0bb0f;
    line-height: 0px;
    font-weight: 300;
    letter-spacing: 1px;
}

.chef-rightside-2nd-cont h2 {
    font-size: 70px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}

.chef-rightside-2nd-cont p {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 26px;
    margin-top: -15px;
    margin-bottom: 30px;
}

/* chef section ends */

/* thumb-img slider */
.thumb-img {
    width: 90%;
    height: 230px;
    overflow: hidden;
    margin: 0px auto;
}

/* thumb-img slider ends */

/* testimonials */
.testi {
    background: url('../img/r5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 50px auto;
    padding: 100px;
}

.inside-testi {
    border: 1px solid #fff;
    padding: 30px 10px;
}

.inside-testi-left {}

.testi-img {
    height: 350px;
    overflow: hidden;
}

.testi-left-cont {
    background: #fff;
    color: #14151a;
    padding: 30px;
}

.testi-left-cont p {
    font-size: 22px;
    margin-top: -12px;
}

.inside-testi-right-1st {
    background: #800000;
    margin-left: -15px;
}

.inside-testi-right {
    background: #800000;
    color: #14151a;
    padding-top: 20px;
    margin-left: -15px;
}

.swiper-container {
    width: 100%;
    /* background: #fff; */
}

.swiper-container p {
    line-height: 27px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Roboto Slab', serif;
    color:white;
}

.swiper-container h4 {
    padding-top: 10px;
    color: #FFD700;
    font-weight: 400;
}

.swiper-slide {
    text-align: left;
    font-size: 18px;
    padding: 20px;
    margin-bottom: 20px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #14151a;
}

/* testimonials ends */

/* footer */

.col-6 {
    width: 50%;
    display: inline-table;
}

footer {
    /* background-color: #3c3b3b; */
    padding: 1em 6em 2em;
}

footer a {
    color: #f0bb0f;
}

footer a:hover {
    color: #fff;
}

footer .row {
    font-family: 'Teko', sans-serif;
    margin: 2em 0;
    font-family: lato;
    color: #fff;
    position: relative;
    border-bottom: 1px solid #f0bb0f;
}

.footer-toggle {
    display: none;
}

.footer-logo {
    text-align: center;
}

.link-cat {
    cursor: pointer;
}

footer ul {
    padding: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#address ul {
    margin-top: 10px;
}

footer ul li {
    list-style-type: none;
    padding: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    line-height: 2;
}

footer .footer-cat,
#newsletter span {
    font-size: 26px;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

.footer-cat-links a {
    color: #cecece;
    text-decoration: none;
    position: relative;
}

.footer-cat-links.active&gt;li a {
    pointer-events: auto;
}

.footer-cat-links a:after {
    top: 21px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    width: 0;
    background: #fff;
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.footer-cat-links a:hover:after,
.footer-cat-links a:focus:after {
    width: 100%;
    left: 0;
}

footer #subscribe {
    margin: 20px 0px 30px;
}

.col-3 {
    display: inline-table;
    width: 25%;
}

.col-3#newsletter {
    width: 24%
}

.col-3#newsletter #btn-scribe {
    margin-left: -4px;
    border: 1px solid #cecece;
    border-radius: 0px 4px 4px 0;
    padding: 8px 5px;
    background-color: #e2e2e2;
    color: #212121;
    cursor: pointer;
}

.social-2 {
    display: none;
}

.social-links {
    bottom: 60px;
    position: absolute;
    left: 0;
}

.social-links a {
    color: #fff;
    font-size: 20px;
    border: 1px solid;
    border-radius: 20px;
    padding: 6px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.social-links a:not(:last-child) {
    margin-right: 10px;
}

.social-links a:hover,
.social-links a:focus {
    background-color: #212121;
}

.social-links a i {
    width: 25px;
    height: 25px;
    text-align: center;
}

#newsletter #address li:not(:first-child) {
    padding: 20px 0;
}

#newsletter #address li i {
    font-size: 45px;
    width: auto;
    padding: 5px;
    color: #f0bb0f;
}

#newsletter #address li div {
    color: #cecece;
    font-size: 14px;
    width: 80%;
    text-align: left;
    /* float: right; */
    line-height: 1.3;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 2px;
    line-height: 20px;
    font-weight: 300;
}

#copyright {
    text-align: center;
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 0px;
    font-weight: 300;
}

#owner {
    text-align: center;
    padding: 20px 0 0px;
    color: #fff;
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 8px;
    font-weight: 300;
}

#owner a {
    color: #f0bb0f;
}

/* footer ends */

.fade {
    opacity: 0;
}

.order-call-btn {
    display: none;
}


/* inner page setting */
.inner-banner {
    background: url(../img/gy15.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 200px;
}

.inner-banner .innner-title-div {
    color: white;
    border: 1px;
    border-color: white;
    border-style: double;
    margin-top: 130px;
    background: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

.inner-banner h2 {
    padding: 20px 50px;
    font-size: 45px;
}

.inner-page-afterbanner {
    /* background: url(../img/bg03-inner.png);
	background-repeat: no-repeat;
	background-size: cover; */

    background-image: url(../img/o3.png), url(../img/o4.png);
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
}

.con-info {
    background: #800000;
    padding: 20px 35px;
}

.con-info .row {
    padding: 20px 20px;
    border: 1px solid #fcfaff;
}

.feature {
    display: block;
    margin-bottom: 30px;
}

.feature.feature-1 .icon {
    float: left;
}

.icon {
    position: relative;
    display: inline-block;
    font-size: 30px;
    width: 52px;
    vertical-align: middle;
    color: white;
}

.feature.feature-1 .feature-content {
    padding-left: 52px;
    color: #fff;
}

.feature-content h2 {
    font-weight: 200;
}

.feature-content p {
    text-align: left;
    color: white;
}

.con-info h4 {
    color: #fcfaff;
}

.inner-page-afterbanner h2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 0.9em;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 4px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.error {
    color: #f00!important;
}

/* gallery css */
.gal {
    /* background: url(../img/bg03-inner.png);
	background-repeat: repeat-y;
    background-size: contain; */
}

.gal-div {
    margin-bottom: 20px;
    transition: all 02ms;
    height: 200px;
    overflow: hidden;
}

.gal-div img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* width: 50%; */
}

.gal-div:hover img {
    opacity: 0.6;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

/* about css */
.about-page .chef-section {
    background-size: cover;
    padding: 25px 0px;
}

.about-inbtw {
    width: 100%;
    height: 400px;
    min-height: 400px;
    background: url(../img/testi-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-page .chef-rightside-2nd-cont {
    margin-top: 50px;
}

.about-page .btn-set-after-mealoffers {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* caterting &amp; event */
.parallax {
    padding: 100px 0px;
    background: url(../img/testi-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fcfaff;
}

.parallax h2 {
    font-size: 50px;
    text-shadow: 3px 2px #282828;
}

.catering-page .content {
    padding: 40px 10px;
}

.before-card {
    padding: 10px 20px;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #242424;
    background-clip: border-box;
    border: none;
    border-radius: 0rem;
    background: #242424;
    padding: 0px;
}

.card-title {
    margin-bottom: 0;
}

.card-text {
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Roboto Slab', serif;
}

/*reseveration page css*/
.res-form {
    /*background: #f0bb0f;*/
    border: 3px solid #f0bb0f;
    padding: 20px 35px;
}

.res-form label {
    display: inline-block;
    margin-bottom: .5rem;
    color: #f0bb0f;
    font-size: 20px;
    margin-top: 10px;
}
/*reservation page ends*/

/*event page*/
.event-page .content {
    padding: 10px 10px;
}
.event-page ul{
    list-style: circle;
}
.event-page ul li {
    color: #f0bb0f !important;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Roboto Slab';
    text-transform: capitalize;
    line-height: 30px;
}
.parallax-event {
    padding: 100px 0px;
    background: url(../img/y1bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fcfaff;
}

.parallax-event h2 {
    text-transform: capitalize;
    font-size: 40px;
    color: #f0bb0f !important;
    text-shadow: 3px 2px #282828;
    line-height: 40px;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 30px;
}

.faq-section h2{
    text-transform: capitalize;  
    color: #f0bb0f;  
}
.faq-section .accordion{
    font-family: 'Roboto Slab';
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.faq-section .accordion .card-header:after {
    font-family: 'FontAwesome';  
    content: "\f068";
    float: right; 
}
.faq-section .accordion .card-header.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\f067"; 
}
/*event page ends*/

/*mob-only-btn*/
.mob-only{
    display:none;
}
.mob-only-btn{
    display:none;
}
.offer-popup .modal-content{
    margin-top: 30%;
    background-color: rgba(256, 256, 256, 0.7);
}</pre></body></html>