@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

a 
{
    text-decoration: none;
}

a:hover 
{
    color: var(--primary-color) !important;
}

ul 
{
    margin: 0;
    padding: 0;
}

/* root define */
:root 
{
    --primary-color: #00c604;
    --secondary-color: #151b20;
    --white-color: #fff;
    --blck-color: #0e1317;

    /* text color */
    --text-color: #cfd3d7;
    --text-gray: #999;
    
    /* Font-family */
    --base-font: "Roboto", sans-serif;
    --heading-font: "Lobster", sans-serif;
}

/* custom css  */
html 
{
    scroll-behavior: smooth;
}

body 
{
    font-family: var(--base-font);
    font-size: 100%;
    font-weight: 400;
}

::-webkit-scrollbar 
{
    width: .425rem;
}

::-webkit-scrollbar-track 
{
    background: var(--white-color);
}

::-webkit-scrollbar-thumb 
{
    background: var(--primary-color);
}

h1 
{
    font-size: 4.375rem;
    font-weight: 900;
    margin-bottom: .3rem;
    font-family: var(--heading-font);
    color: var(--white-color);
    text-transform: capitalize;
}

h2
{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--heading-font);
    color: var(--white-color);
    text-transform: capitalize;
}

h4
{
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: .5rem;
    font-family: var(--heading-font);
    color: var(--secondary-color);
    text-transform: capitalize;
}

h5
{
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .5rem;
    font-family: var(--heading-font);
    color: var(--primary-color);
    text-transform: capitalize;
}

p{
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.75rem;
    letter-spacing: 0.0625rem;
}

.main-btn 
{
    padding: 0.625rem 1.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 0 0.125rem 0.625rem -0.0625rem rgba(0 0 0 / 10%);
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    border: 0.1875rem solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

.main-btn:hover 
{
    background: transparent;
    color: var(--primary-color);
}

.wrapper 
{
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

.text-content
{
    width: 70%;
    margin: 0 auto;
}

/* navbar design */
.navigation-wrap 
{
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-wrap .navbar-brand img 
{
    width: 13rem;
}

.navigation-wrap .nav-item 
{
    padding: 0 0.625rem;
    transition: all 200ms linear;
}

.navbar-toggler
{
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus
{
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.navigation-wrap .nav-link 
{
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--text-color);
    letter-spacing: 0.0625rem;
}

.navigation-wrap .main-btn 
{
    padding: 0.3125rem 1.4376rem;
    box-shadow: none;
    margin-left: 0.625rem;
}

/* change navbar scroll */
.navigation-wrap.scroll-on 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--blck-color);
    box-shadow: 0 0.125rem 1.75rem 0 rgba(0,0,0,0.09);
    transition: all 0.15s ease-in-out 0s;
}


/* Top banner section */
.top-banner
{
    background: url("img/bg-1.jpg") no-repeat center;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.top-section 
{
    padding: 8.375rem 0 3.75rem;
}

.top-section h1 
{
    font-size: 3.375rem;
    font-weight: 900;
    margin-bottom: .3rem;
    font-family: var(--heading-font);
    color: var(--white-color);
    text-transform: capitalize;
}


/* COUNTER Design */
.counter_section 
{
    background: var(--blck-color);
    padding: 2.5rem 0;
}

.counter_section h2 
{
    color: var(--primary-color);
}

.counter_section p 
{
    color: var(--white-color);
    text-transform: uppercase;
    margin-bottom: 0;
}


/* About Section start */
.about-section 
{
    background: var(--secondary-color);
    overflow: hidden;
}

.about-section h2 
{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--heading-font);
    color: var(--white-color);
    text-transform: capitalize;
}

.about-section ul li 
{
    font-size: 1rem;
    color: var(--text-color);
    line-height: 2rem;
    list-style: none;
}

.about-section ul li  i 
{
    color: var(--primary-color);
}


/* Story section start */
.story-section 
{
    width: 100%;
    height: 28.125rem;
    background: url("img/bg-2.jpg") no-repeat center;
    background-size: cover;
    padding-top: 6.25rem;
    text-align: center;
}

.story-section h2 
{
    color: var(--white-color);
}


/* Explore Food Section */
.explore-food 
{
    background: var(--secondary-color);
}

.explore-food h2 
{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--heading-font);
    color: var(--white-color);
    text-transform: capitalize;
}

.explore-food .card 
{
    background: transparent;
    border-radius: 0.9375rem;
    border: 0.125rem dashed var(--primary-color);
}

.explore-food .card h4 
{
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: .5rem;
    font-family: var(--heading-font);
    color: var(--white-color);
    text-transform: capitalize;
}

.explore-food .card img 
{
    border-radius: 0.9375rem 0.9375rem;
    object-fit: cover;
}

.explore-food .card span 
{
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 1rem;
    border-bottom: 0.0325rem solid var(--primary-color);
}

.explore-food .card span del 
{
    color: var(--text-gray);
    margin-left: 0.5rem;
}


/* Review Section Start */
.testimonial-section 
{
    background: url(img/bg-4.jpg) no-repeat center top;
    background-size: cover;
}

.testimonial-section .carousel-item 
{
    margin-top: 3rem;
    padding: 10rem 3.125rem;
    background-color: var(--blck-color);
    border-radius: 0.9375rem;
    text-align: center;
} 


.testimonial-section .carousel-item img 
{
    max-width: 5rem;
    border-radius: 50%;
    padding: 0.3125rem;
    border: 0.125rem solid var(--primary-color);
}

.testimonial-section .carousel-item .carousel-caption p
{
    font-size: 1.3125rem;
    line-height: 2.0625rem;
    padding: 0.625rem 11%;
}

.testimonial-section .carousel-indicators 
{
    bottom: -3.9125rem;
}

.testimonial-section .carousel-indicators .round-btn
{
    width: 22px;
    height: 2px;
    border-radius: 50%;
    background: var(--primary-color);
    margin-top: 10px;
}

.testimonial-section h2 
{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--heading-font);
    color: var(--white-color);
    text-transform: capitalize;
}

.testimonial-section p 
{
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.75rem;
    letter-spacing: 0.0625rem;
}

.testimonial-section h5 
{
    font-size: 1.568rem;
    font-weight: 400;
    margin-bottom: .5rem;
    font-family: var(--heading-font);
    color: var(--primary-color);
    text-transform: capitalize;
}


/* Team section start */
.team 
{
    background: var(--secondary-color);
}

.team .card 
{
    background: var(--blck-color);
    border-radius: 0.625rem;
    border: 0.25rem solid var(--primary-color);
    text-align: center;
}

.team .card img 
{
    border-radius: 0.625rem 0 0;
}

.team h2 
{
    color: var(--white-color);
}

.team h4 
{
    color: var(--primary-color);
    text-transform: uppercase;
}

.team h6,
.team p 
{
    color: var(--white-color);
}

.social-icon i 
{
    font-size: 1.125rem;
    transition: 0.3s all ease;
    margin: 0.3125rem;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 2.1875rem;
    height: 2.1875rem;
    line-height: 2.1875rem;
}

.social-icon i:hover 
{
    background: var(--white-color);
    color: var(--primary-color);
}


/* Book Section Start */
.book-food 
{
    width: 100%;
    background: url("img/bg-3.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    background-position: 0 4.4945rem;
    padding: 5.575rem 0;
    overflow: hidden;
}

.book-food h2 
{
    color: var(--primary-color);
}


/*  Download App Section */
.download-app 
{
    width: 100%;
    background: url("img/bg-5.jpg") no-repeat center;
    background-size: cover;
}

.download-app h1 
{
    font-size: 3.375rem;
    font-weight: 900;
    margin-bottom: .3rem;
    font-family: var(--heading-font);
    color: var(--white-color);
    text-transform: capitalize;
}


/* Footer Section Start */
.footer 
{
    background: var(--blck-color);
}

.footer .footer-link 
{
    font-size: 1rem;
    color: var(--white-color);
    padding: 0 1.875rem;
}

.footer a 
{
    font-size: 1.5rem;
    color: var(--white-color);
    padding: 0 0.4rem;
    text-decoration: none;
}