@charset "utf-8";
/* CSS Document */

/* Montserrat = font-family: "Montserrat", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Baloo Chettan =  font-family: "Baloo Chettan 2", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Chettan+2:wght@400..800&display=swap');

/* Pirata One = font-family: "Pirata One", system-ui; */
@import url('https://fonts.googleapis.com/css2?family=Pirata+One&display=swap');

/* Bootstrap Icon */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


/*html, body {
	width: 100%;
	overflow-x: hidden;
} */


:root {
  --color-theme: #FFC400;
  --color-black: #000;
}


* {
    text-decoration: none !important;
    outline: none !important;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    background: #fff;
    letter-spacing: 0.4px;
    overflow-x: hidden;
    color: #333333;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

ol {
    list-style: decimal inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: #0d141e;
    line-height: 30px;
     font-family: "Baloo Chettan 2", sans-serif;
}

p {
    margin: 0;
    padding: 0;
    color: #212121;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

b,
strong {
    font-weight: 600;
}

blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

a,
a:hover,
a:visited {
    color: #21a108;
}

/* ::selection 
{
    background: #21a108;
    color: #fff;
}
::-moz-selection 
{
    background: #21a108;
    color: #fff;
} */
a:focus,
p:focus,
div:focus,
input:focus,
textarea:focus,
submit:focus,
button:focus {
    outline: none;
}


/***************
page scrool
**************/
.scrollup {
    right: 15px;
    position: fixed;
    border-radius: 200px;
    bottom: -80px;
    width: 45px;
    height: 45px;
    z-index: 9999;
    background: rgb(95, 154, 42);
    background: linear-gradient(90deg, rgba(95, 154, 42, 1) 0%, rgba(120, 186, 60, 1) 100%);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-align: center;
    color: #FFF;
    padding: 10px;
}

.scrollup.active {
    bottom: 92px;
    right: 15px;
}

/* .scrollup:hover {
    background-color: rgba(37, 37, 37, 0.7);
} */

/***************
page scrool
***************/

/********HAMBURGER ICON***********/
.hamburger {
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--color-theme);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/** Spring **/
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/** Spring **/

/********HAMBURGER ICON***********/

.topmines {
    top: -100px;
}

.nav-active {
    position: fixed;
    top: 0 !important;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: 100%;
    background: #0000009c;
    border-bottom: 1px solid #7D7D7D;
}



.nav-active .menu-part {
    align-items: center;
    border: none;
}



/*******************************
********NAV BAR*****************
*****************************/
#pull {
    display: none;
}

.nav>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    height: auto;
    margin: 0px 44px 0px 0px;
}

.nav>ul>li:last-child,
.nav>ul>li:only-child {
    margin: 0;
}

/* .nav>ul>li::before {
    position: absolute;
    bottom: 10px;
    left: 0px;
    z-index: 1;
    content: " ";
    width: 20px;
    height: 3px;
    background: #1db315;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    margin: 0 auto;
    left: 0;
    right: 0;
} */

.nav>ul>li:hover::before,
.nav>ul>li.current-menu-item::before,
.nav>ul>li.current-menu-parent::before,
.nav>ul>li.current-menu-ancestor::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.nav>ul>li>a {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    padding: 20px 0px;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 300;
    line-height: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:hover>a,
.nav>ul>li.current-menu-item>a,
.nav>ul>li.current-menu-parent>a,
.nav>ul>li.current-menu-ancestor>a {
    color: #fff;
}

.nav>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 300px;
    height: auto;
    padding: 0px 0px 0px 0px;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul,
.nav>ul>li:nth-last-child(2)>ul {
    left: auto;
    right: 0;
}

.nav>ul>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav>ul>li>ul>li,
.nav>ul>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
}

.nav>ul>li>ul>li>a,
.nav>ul>li>ul>li>ul>li>a {
    display: block;
    width: auto;
    height: auto;
    padding: 2px 15px 1px 15px;
    background: rgba(11, 30, 48, 0.8);
    border-top: 1px #485665 solid;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:hover>ul>li>a,
.nav>ul>li:hover>ul>li>ul>li>a {
    padding: 9px 15px 10px 15px;
}

.nav>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li.current-menu-parent>a,
.nav>ul>li>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li>ul>li.current-menu-parent>a {
    background: #199adb;
}

.nav>ul>li>ul>li>ul {
    position: absolute;
    top: 10%;
    left: 100%;
    z-index: 9999;
    width: 240px;
    height: auto;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul>li>ul,
.nav>ul>li:nth-last-child(2)>ul>li>ul {
    left: auto;
    right: 100%;
}

.nav>ul>li>ul>li:hover>ul {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.middle-conter {
    width: 100%;
    display: inline-block;
    vertical-align: top;

}


.nav {
    width: 100%;
    justify-content: flex-end;
}

 


/*******************************
********NAV BAR*****************
*****************************/

 
header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
}

.location-top i, .phone-number i {
    color: #FFF;
    font-size: 30px;
    margin-right: 10px;
}

.location-top i 
{
    font-size: 40px;
}


.location-top p, .phone-number p 
{
    color: #FFF;
    font-size: 18px;
}

.location-top {
    width: 400px;
    flex: 0 0 400px;
}

.my-border-bottom 
{
    border-bottom: 1px solid #7D7D7D;
}

 
 


/************ End Header ***************/

/************  Banner Start ***************/

.banner-content {
    position: absolute;
    top: 30%;
    z-index: 99;
    width: 550px;
    margin-left: auto;
    right: 15%;
}

.banner-content h1 {
    font-size: 80px;
    line-height: 80px;
    color: #FFF;
    margin-bottom: 20px;
    font-weight: bold;
}

.banner-content h1 span {
    font-size: 58px;
    font-weight: 100;
}

.banner-content h1 strong {
    font-size: 72px;
    color: var(--color-theme);
    font-family: "Pirata One", system-ui;
}

.button-design {
    background: var(--color-theme);
    color: var(--color-black) !important;
    text-transform: capitalize;
    padding: 8px 5px 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: flex !important;
    align-items: center;
    width: 160px;
    font-size: 15px;
}

.button-design i {
    color: #000;
    background: #FFF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.banner-content p {
    padding: 5px 0 5px 30px;
    position: relative;
    color: #FFF;
    border-left: 3px solid #6eac37;
    margin-bottom: 20px;
}

/***** Banner End *******/
 


/******* slider dots **********/ 


.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #000;
}

.slick-dots li button:before {
    font-size: 12px; 
}

.slick-dots li 
{
    margin: 0;
}

.slick-dots li button:before {
    color: #21a108; 
}

.banner .slick-dots {
    bottom: 35px; 
}
     
.banner-area .slick-dots li button:before {
    font-size: 45px;
}


 /******* End slider dots **********/



.welcome-part 
{
    padding-top: 200px;
    padding-bottom: 50px;
    background-size: inherit !important;
}

.welcome-text p 
{
    margin-bottom: 15px;
    line-height: 30px;
}

.heading-text h2 
{
    font-size: 48px;
    line-height: 55px;
    font-family: "Pirata One", system-ui;
}

.color-yellow 
{
    color: var(--color-theme);
}


.cat-area 
{
    background: var(--color-theme);
    padding: 20px;
    border-radius: 46% 46% 0 0;
}

.food-category 
{
    background:#000 url(../images/bg-design.png) no-repeat center top !important;
    padding: 50px 0 80px 0;
}

.cat-area h3 
{
    font-weight: 600;
    margin: 10px 0;
    font-size: 22px;
}

.cat-area a 
{
    display: inline-block;
    border: 2px solid #000;
    padding: 4px 20px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    border-radius:  30px;
}

.w-85 
{
    width: 85%;
}

.w-140 
{
    width: 140px;
}

.food-menu 
{
    padding: 80px 0;
}

.menu-list h3  
{
    font-weight: bold;
    color: #000;
    font-size: 24px;
    line-height: 30px;
}


.food-image 
{
    width: 93px;
    height: 93px;
    flex: 0 0 93px;
    border-radius: 50%; 
    overflow: hidden;
    margin-right: 15px;
}

.food-content h4  
{
    font-weight: bold;
    color: #000;
    font-size: 22px;
    line-height: 30px;
}

.food-con-right a  
{
    background: var(--color-theme);
    color: #000 !important;
    padding: 5px 25px; 
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-top: 5px;
}

.food-con-left {
    width: 300px;
}

.food-gallery {
    background-size: cover !important;
    padding: 60px 0;
    background-repeat: no-repeat !important;
}

.event-gallery 
{
    background: #FFFCF3;
    padding-top: 20px;
    padding-bottom: 60px;
}


.event-gallery .gallery-holder 
{
    border: none !important;
}


/* ******************************************** */
/******************* Gallery Start **************/
/* ******************************************** */

.gallery-area {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 80px 0px;
}

.gallery-area>.container-fluid .gallerys {
    margin-right: -15px;
    margin-left: -15px;
}

.gallery-holder {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    border: 5px solid #DFD2A7;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-holder img {
    width: 100%;
}

.gallery-holder>.holder {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}

.gallery-holder>.holder .capson {
    background: rgb(0 0 0 / 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-100%, 0px);
    transition: all 0.4s;
}

.gallery-holder:hover .holder .capson {
    transform: translate(0px, 0px);
}

.gallery-holder>.holder .capson .lightbox {
    position: relative;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #fff;
    transform: translate(-500%, 0px);
    transition: all 0.9s;
}

.gallery-holder:hover>.holder .capson .lightbox {
    transform: translate(0px, 0px);
}

.gallery-holder>.holder .capson .lightbox i {
    position: relative;
    z-index: 1;
}

.gallery-holder>.holder .capson .lightbox::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 0px;
    top: 0px;
    transform: rotateZ(0deg);
    z-index: 0;
    transition: all 0.3s;

}

.lightbox:hover i
{
    color: #000;
}

.gallery-holder>.holder .capson .lightbox:hover::after {
    background: var(--color-theme);
    transform: rotateZ(45deg);
}

.tab-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.tab-center button {
    margin: 5px 1px;
    width: 165px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-weight: 500;
    font-size: 13px;
}

.tab-center button:first-child {
    background: #133d99;

}

.tab-center button:last-child {
    background: #d2202d;
}



/* ******************************************** */
/******************* Gallery End **************/
/* ******************************************** */



.ride-order h3  
{
    font-size: 36px;
    color: var(--color-theme);
    line-height: 50px;
    font-weight: bold;
}

.ride-order h4 
{
    font-size: 64px;
    color: #000;
    line-height: 75px;
    font-weight: 500;
    font-family: "Pirata One", system-ui;
    margin-bottom: 10px;
}

.ride-order p  
{
    margin-bottom: 20px;
}




footer 
{
    background: url(../images/footer-bg.png) no-repeat center;
    background-size: cover;
    padding-top: 50px;
}

.footerdetails li 
{
    padding: 0 30px;
    max-width: 500px;
}

.footerdetails li, .footerdetails li a  
{
    color: #FFF;
    display: flex;
    align-items: center;
}

.footerdetails li i  
{
    color: #FFF;
    font-size: 35px;
    margin-right: 10px;
}

.footer-social ul li a 
{
    padding: 0 5px;
}

.copy-right 
{
    border-top: 1px solid #7C7F8D;
    padding: 20px 0;
}

.copy-right p  
{
    color: #FFFFFF;
}

