@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Poppins:wght@400;500;600;700&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFB000;
    --secondary-color: #00a651;
    --tertiory-color: #131517;
    --para-font:
        'Poppins', sans-serif;
    --heading-font:
        'Concert One', sans-serif;
    --para-font-size: 16px;
    --p-heading-font-size: 23px;
    --s-heading-font-size: 35px;
}

/* common css start */
body {
    font-family: var(--para-font);
    letter-spacing: 0.5px;
}

h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

img {
    height: auto;
    max-width: 100%;
}

ul,
li {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

p {
    margin: 0;
    padding: 0;
    font-size: var(--paragraph-font-size);
    letter-spacing: 1px;
}

i {
    vertical-align: middle;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
}

a:hover {
    color: var(--theme-color);
}

/* custom common classes */

.padding_sec {
    padding: 60px 0;
}

.primary-btn {
    z-index: 1;
    color: #131517;
    transition: .5s;
    background-color: var(--primary-color);
    padding: 8px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.primary_heading {
    font-size: 17px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    position: relative;
    /* margin-left: 35px; */
    display: inline-block;
}

.primary_heading::before {
    position: absolute;
    content: '';
    left: calc(100% + 15px);
    bottom: 8px;
    width: 90px;
    height: 2px;
    background-color: var(--primary-color);
}

.main_heading {
    font-weight: 500;
    color: var(--tertiory-color);
    margin-bottom: 30px;
    font-size: 48px;
    position: relative;
}

/* common css end */

/* css for top header start here */
.top_header {
    background-color: #131517;
    padding: 10px 0px;
}

.top_header a {
    font-size: 15px;
    color: #ffffff;
    text-transform: capitalize;
    padding-right: 7px;
}

.top_header i {
    padding-right: 7px;
}

.top_header a:hover {
    color: var(--theme-color);
}

.top_header li {
    padding-right: 20px;
}

.top_header .social-icon-box li:last-child,
.top_header .social-icon-box li:last-child a {
    padding-right: 0;
}

.social-icon-box img {
    max-width: 29px;
}

/* css for top header end here */

/* css for main header start here */


.logo {
    max-width: 220px;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
}

.navbar .navbar-nav {
    background-color: #13151785;
    border-radius: 30px;
    margin-right: 5px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 0 !important;
    margin: 20px;
    text-transform: capitalize;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -9px;
    width: 0%;
    height: 2px;
    opacity: 0;
    background-color: var(--primary-color);
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    opacity: 1;

}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--primary-color) !important;

}

.navbar-light .navbar-toggler {
    background-color: #fff;
}

.dropdown .dropdown-toggle::after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-size: 0.7em;
    color: inherit;
    margin-left: 5px;
    content: "\f078" !important;
    vertical-align: middle;
    border-top: 0;
    border-right: 0 transparent;
    border-bottom: 0;
    border-left: 0 transparent;
}

.navbar-nav .dropdown .dropdown-menu {
    min-width: 13rem;
    background-color: #fffcde;
    border-radius: 0.7rem;
    border: none;
}

.dropdown .dropdown-item {
    width: fit-content;
}

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover {
    background-color: unset;

}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

header {
    color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    transition: top 0.3s;
    z-index: 2;
}

.show_fix_header .top_header {
    display: none;
}

.show_fix_header .logo {
    max-width: 130px;
}

.show_fix_header .main_header {
    background-color: #131517;
}

/* css for bottom header start here */
/* hero section start */


.hero_sec {
    position: relative;
    z-index: 1;
    margin-top: 35px;
}


/* hero section end */

/* about section start here */
.about_sec {
    position: relative;
}

.bouncing {
    animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
    0% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {

        transform: translateY(-5px);
    }
}

.top-left-shap {
    position: absolute;
    bottom: 0;
    left: -10;
    z-index: -1;
}

.top-right-shap {
    position: absolute;
    top: -50px;
    right: 0;
    z-index: 1;
}

.about_sec p {
    margin-bottom: 20px;
}

/* about section end here */

/* Category section start */
.category {
    padding: 30px;
    border-radius: 25px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.category::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #131517a6;
    z-index: -1;
}

.category a {
    border: 1px solid var(--tertiory-color);
    padding: 10px 36px;
    font-size: 28px;
    background-color: #fff;
    color: var(--tertiory-color);
    font-family: var(--heading-font);
    border-radius: 50px;
}

.category h3 {
    font-size: 56px;
    color: #fff;
    font-weight: 600;
}

.category1_inner {
    background-image: url(../images/category/offer-bg.png);
}

.category2_inner {
    background-image: url(../images/category/category-bg-2.jpg);
    margin-bottom: 20px;
    background-position: center;

}

.category3_inner {
    background-image: url(../images/category/category-bg-3.jpg);
    background-position: center;

}

/* Category section end */

/* Our strength section start */
.strength_sec {
    position: relative;
    background-color: #fffaed;
    padding: 120px;
    z-index: 0;
}

.strength_sec::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../images/strength/bg-pattern.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .04;
    z-index: -1;
}

.s-img-bg img {
    position: absolute;
    right: 0;
    top: 0;
}

.strength-icon {
    padding-bottom: 25px;
}

.strength-title {
    padding-bottom: 15px;
    margin-bottom: 0;
    font-family: var(--para-font);
    font-weight: 500;
}

/* Our strength section end */

/* (Service) Food section start here */
.service_sec {
    background-image: url('../images/category/category-bg.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

.service_sec::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #131517a6;
    z-index: -1;
}

.service_sec .main_heading {
    color: #fff;
}

.food_c_name {
    padding: 20px;
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.food_c_name a {
    color: var(--tertiory-color);
}

.innerbox img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.innerbox a {
    display: block;
}

/* (Service) Food section end here */

/* Testimonial section start here */
#testimonials {
    background-color: #f5f5f5;
}

.testimonials_heading {
    color: #201c1c;
}

.c-review-item {

    border-radius: 15px;
    padding: 50px 30px 10px 30px;
    min-height: 300px;
    background: #fff;
    text-align: center;
}

.c-name {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 18px;
}


.c-review-item i {
    color: #ffc857;
}

.c-review-item::before {
    content: "";
    background: url(../images/testimonials/quote.png) center left no-repeat;
    position: absolute;
    left: 0;
    top: 15px;
    right: 0;
    width: 115px;
    height: 81px;
    text-align: center;
    margin: 0 auto;
    z-index: 0;
    opacity: 0.3;
}

.c-review {
    position: relative;
    z-index: 10;
    /* font-size: 20px; */
    /* letter-spacing: 2px; */
    color: #201c1c;
    padding-top: 20px;
}

#testimonials .owl-carousel .owl-item img {
    width: auto;
    /* text-align: center; */
    margin: 0 auto;
}

/* Testimonial section end here */

/* About page start here */
.breadcrumb {
    background-image: url('../images/about/3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 0;
    padding-top: 260px;
    padding-bottom: 30px;
}

.breadcrumb::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #131517b6;
    z-index: -1;
}


.breadcrumb .main_heading {
    color: #fff;
    margin-bottom: 10px;
}

.bread_menu li:first-child a {
    color: var(--primary-color);
    padding-right: 20px;
}

.bread_menu li:last-child {
    color: #fff;
    position: relative;
}

.bread_menu li:last-child::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 20px;
    background: var(--primary-color);
    top: 2px;
    left: -9px;
    transform: rotate(15deg);
}

.about_pg_sec p {
    margin-bottom: 20px;
}

.about_pg_img {
    margin-top: 30px;
    border-radius: 30px;
    overflow: hidden;
}

/* catering section start here */

.form-box {
    padding: 50px;
    background: #fff;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
    border-radius: 7px;
}

.c-form input,
.c-form textarea {
    padding-left: 20px;
    border-color: #dfdfdf;
    height: 50px;
}

.c-form textarea {
    height: 100px;
}

.form-btn {
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--secondary-color);
    padding: 14px 15px;
    border: none;
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #dfdfdf;
}

/* gallery page start here */

.grid-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    font-size: 17px;
    font-weight: 500;
}

.grid-item img {
    border-radius: 15px;
}

/* menu page section start here */
.menu_sec button {
    margin-right: 5px;
    margin-top: 5px;
}

.menu_title {
    font-size: 32px;
    text-align: center;
    margin: 30px 0;
    text-transform: uppercase;
}

.pq-food-price-content {
    padding: 5px 0;
}

.pq-food-price-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.pq-food-price-line {
    height: 1px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex: 1;
    position: relative;
    bottom: -15px;
    margin: 0 15px;
}

.pq-food-price-main {
    font-size: 20px;
    font-weight: 600;
}

.pq-food-title {
    font-family: var(--para-font);
    font-weight: 600;
}

.menu_sec .content {
    display: none;
}

.menu_sec .m-active {
    display: block;
}

/* footer section start */
.footer-bg {
    background-color: var(--tertiory-color);
}

.footer-heading {
    position: relative;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-heading:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    height: 2px;
    width: 44px;
    background-color: var(--primary-color);
}


.footer-bg ul li a {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-bg ul li a i {
    padding-right: 10px;
    width: 24px;
}

.footer-bg .footer-icons {
    color: #ffffff;
    font-size: 20px;
    padding-top: 7px;
    padding-right: 20px;
}

.b-footer {
    background-color: #080808;
}

.footer-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.b-footer p {
    font-size: 13px;
    color: #a8a8a8;
    text-transform: capitalize;
    letter-spacing: 1.5px;

}

.b-footer ul li a {
    padding: 0 15px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-right: 1px solid;
}


/* footer section end */