*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
:root{
    --bg-color-1: #fff;
    --bg-color-2: #f9f6f0;
    --grey-color: #rgba(0,0,0,0.20);
    --heading-color: #2c2c2c;
    --text-color: #353535;
    --primary-color: #ed2433;
    --nav-items-border-bottom: 1px solid rgba(0,0,0,0.7);
    --color-scheme: light;

}
.dark-mode{
    --bg-color-1: #08060e;
    --bg-color-2: #101418;
    --grey-color: #383737;
    --heading-color: #ffffff;
    --text-color: #ffffffcc;
    --primary-color: #ed2433;
    --nav-items-border-bottom: 1px solid rgba(255,255,255,0.7);
    --color-scheme:dark;
}

body{
    overflow-x: hidden;
}
::-webkit-scrollbar{
    width: 10px;
    background: var(--bg-color-2);
    color: white;
}
::-webkit-scrollbar-thumb{
    background-color: var(--primary-color);
}
.flex-row{
    display: flex;
    justify-content: center;
    align-items:center;
    flex-wrap: wrap;
}
.flex-col{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
section{
    padding: 50px 5rem 35px 5rem;
    margin-bottom: -1px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
img{
    transition: all 0.3s ease-in-out;
    width: 100%;
    vertical-align: middle;
}
h1{
    font-size: 48px;
    font-weight: 500;
    color: var(--heading-color);
    line-height: 1.2;
}
h2{
    color: var(--heading-color);
}
h3{
    letter-spacing: 0.1rem;
    font-size: 34px;
    margin-bottom: 15px;
    line-height: 28px;
    color: var(--primary-color);
}
h4{
    line-height: 1.8;
    color: var(--heading-color);
    font-size: 24px;
}
h5{
    color: var(--primary-color);
    font-size: 20px;
}
p{
    padding: 5px 0;
    font-size: 18px;
    color: var(--text-color);
    line-height: 28px;
    font-weight: 400;
}
a{
    text-decoration: none;
}
ul{
    display: flex;
    list-style: none;
}
#prenav-text{
    width: 100%;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 2;
}
#prenav-text .flex-row{
    margin: 0 4rem;
    justify-content: space-between;
    align-items: center;
}
#prenav-text .contact-info,
#prenav-text .opening-times{
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
#prenav-text .contact-info span{
    color: white;
}
#prenav-text .social-links{
   margin: 0;
}
#prenav-text .social-links li a{
    color: white;
    font: 17px;
    margin: 0 10px;
}
#navbar{
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    height: 5.5rem;
    margin: 0 4rem;
    justify-content: space-between;
    padding: 0 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.2);
}

.logo h5{
    font-size: 22px;
    color: var(--primary-color);
    display: inline-block;
}
.logo h5 span{
    color: white;
}
.nav-items{
    display: flex;
    justify-content: space-around;
}
.nav-items .nav-links{
    color: white;
    padding: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}
.nav-items .nav-links:hover{
    color: var(--primary-color);
}
.nav-btns{
    gap: 10px;
}
.nav-icon i{
    color: white;
    font-size: 24px;
    cursor: pointer;
}
.menu-btn-wrapper{
    display: none;
}
#navbar.fixed{
    padding: 0 4.5rem;
    margin: 0;
    position: fixed;
    top: 0;
    border-radius: 0;
    height: 4rem;
    background-color: var(--bg-color-1);
}
#navbar.fixed .logo h5{
    color: var(--heading-color);
}
#navbar.fixed .logo h5 span{
    color: var(--primary-color);
}
#navbar.fixed .nav-items .nav-links{
    color: var(--heading-color);
}
#navbar.fixed .nav-items .nav-links:hover{
    color: var(--primary-color);
}
#navbar.fixed .nav-icon i{
    color: var(--heading-color);
}
.search-btn-wrapper,
.cart-btn-wrapper{
    position: relative;
}
#search-from,
#cart{
    position: absolute;
    box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.2);
    height: 0px;
    top: 60px;
    visibility: hidden;
    right: -2rem;
    z-index: 5;
    padding: 1rem;
    background-color: var(--bg-color-1);
    transition: all 0.3s ease-in-out;
}

#search-from::before,
#cart::before{
    content: "";
    position: absolute;
    top: -11px;
    right: 25px;
    transform: translateX(-50%) rotate(45deg);
    background-color: var(--bg-color-1);
    height: 20px;
    width: 20px;
}
#search-from form{
    width: 300px;
    height: 100%;
    display: flex;
}
#search-from form input{
    width: 100%;
    background-color: transparent;
    outline: none;
    overflow: hidden;
    border: 1px solid var(--heading-color);
    padding: 0 10px;
    height: 100%;
    font-size: 1rem;
    color-scheme: var(--color-scheme);
}
input[type='search']::-webkit-search-cancel-button{
    display: none;
}
#search-from form button{
    font-size: 23px;
    cursor: pointer;
    height: 2rem;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) scale(0);
    position: absolute;
    background-color: transparent;
    color: var(--heading-color);
    border: none;
    outline: none;
    transition: all 0.2s ease-in-out;
}
#cart{
    width: 250px;
}
#cart span{
    text-align: center;
    transition: all 0.3s ease-in-out;
    color: var(--text-color);
    transform: scale(0);
}
#search-from.active,
#cart.active{
    height: 78px;
    top: 70px;
    visibility: visible;
}
#search-from.active form button{
    transform: translateY(-50%) scale(1);
    transition: all 0.4s ease-in-out;
}
#cart.active span{
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

/* home */
#home{
    padding: 0;
    margin-bottom: -10px;
}
#home .slide{
    background-position: center!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    margin-left: -1px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#home .slide1{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/home/home-slide-1.jpg);
}
#home .slide2{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/home/home-slide-2.jpg);
}
#home .slide .content{
    text-align: center;
    margin-top: 40px;
}
#home .slide .content .sub-heading{
    color: rgba(255,255,255,0.9);
    font-weight: 900;
    letter-spacing: 5px;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0 10px;
    position: relative;
    line-height: 2;
    z-index: 0;
    text-shadow: 0px 2px 2px black;
}
#home .slide .content .heading{
    color: white;
    line-height: 1;
    font-family: 'Dancing Script', cursive;
    font-size: 10vh;
    font-weight: 400;
    margin-bottom: 40px;

}
#home .slide .content .sub-heading-2{
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    z-index: 0;
    letter-spacing: 5px;
    text-shadow: 0px 2px 2px black;

}
#home .slide .content .sub-heading-2::after,
#home .slide .content .sub-heading-2::before{
    content: "";
    display: inline-block;
    margin: 0 2rem;
    width: 70px;
    transform: translateY(-5px);
    height: 2px;
    background-color: var(--primary-color);
}
#home .home-carousel .owl-dots{
    position: absolute;
    left: -3px;
    right: 0;
    bottom: 100px;
    width: 100%;
    text-align: center;
}
.owl-dot{
    border: 1px solid rgba(255, 255, 255, 0.5)!important;
    border-radius: 50%;
    margin: 0 3px;
}
.owl-dot span{
    margin: 2px!important;
    background-color: rgba(255, 255, 255, 0.4)!important;
}
.owl-dot.active span{
    background-color: white!important;
}
/* About */
#about{
    padding: 0 4.5rem;
    background-color: var(--bg-color-1);
    justify-content: flex-start;
    position: relative;
}
.booking-form{
    width: 30%;
    background-color: var(--primary-color);
    padding: 50px 30px 30px 30px;
}
.booking-form h2{
    font-size: 40px;
    color: white;
    line-height: 0.8;
    font-weight:700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.booking-form form input,
.booking-form form textarea{
    width: 100%;
    background-color: transparent;
    outline: none;
    border: 1px solid white;
    padding: 12px 10px;
    font-size: 16px;
    color-scheme: dark;
    margin-bottom: 10px;
}
.booking-form form input::placeholder,
.booking-form form textarea::placeholder{
    color: wheat;
    font-weight: 500;
}
.booking-form form textarea{
    resize: vertical;
    overflow: hidden;
    min-height: 2rem;
}
.btn1{
    display: inline-block;
    background-color: white;
    border: 1px solid white;
    color: black;
    width: 100%;
    font-weight: 400;
    padding: 20px 30px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    position: relative;
}
.btn1:hover{
    background-color: var(--primary-color);
    color: white;
}
#about .text-wrapper{
    padding: 10px 60px;
    width: 50%;
}
#about .text-wrapper h1{
    font-size: 60px;
}
#about .text-wrapper h3{
    font-size: 28px;
    margin: 20px 0;
}
#about .sign{
    width: 12rem;
    margin-top: 10px;
}
#about .img-wrapper{
    margin-top: auto;
    position: absolute;
    width: 25rem;
    right: 100px;
    bottom: 0;
}
/* Quote */
#quote{
    padding: 150px 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(/images/quote/quote-img.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
}
#quote .text-wrapper h2{
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    text-transform: 5px;
    margin-bottom: 10px;
}
#quote .text-wrapper h1{
    color: white;
    font-family:'Dancing Script',cursive;
    font-size: 60px;
}

.section-heading{
    text-align: center;
    margin: 30px 0;
}
.square-wrapper{
    position: relative;
    margin: 1rem;
}
.square-wrapper::after,
.square-wrapper::before{
    content: "";
    display: inline-block;
    margin: 0 0.5rem;
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
}
.square{
    background-color: var(--primary-color);
    transform: rotate(45deg);
    margin: 0 0.25rem;
}
.square:nth-child(1){
    width: 6px;
    height: 6px;
}
.square:nth-child(3){
    width: 6px;
    height: 6px;
}

/* menu */
#menu{
    padding-bottom: 70px;
    background-color: var(--bg-color-2);
    width: 100%;
}
.menu-tabs{
    justify-content: center;
    margin: 20px 0;
    width: 100%;
    padding: 0 1.5rem;
    flex-wrap: nowrap;
    text-align: center;
}
.menu-tab-item{
    font-size: 17px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin: 8px 15px;
    width: 100%;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
    background-color: var(--bg-color-1);
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    position: relative;
}
.menu-tab-item i{
    font-size: 60px;
    transition: all 0.3s ease-in-out;
    color: var(--primary-color);
    margin-bottom: 10px;
    pointer-events: none;
}
.menu-tab-item span{
    pointer-events: none;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
    color: var(--heading-color);
}
.menu-tab-item:hover,
.menu-tab-item.active{
    background-color: var(--primary-color);
}
.menu-tab-item:hover span,
.menu-tab-item.active span{
    color: white;
}
.menu-tab-item:hover i,
.menu-tab-item.active i{
    color: white;
}
.menu-tab-item::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
}
.menu-tab-item.active::after{
    opacity: 1;
    visibility: visible;
}

.menu-tab-content{
    display: none;
    padding: 0 1rem;
}
.menu-tab-content.show{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: fade-in 0.5s ease-in-out;
}

@keyframes fade-in{
    0%{
        opacity: 0;
    }
    100%{
            opacity: 1;
        }
}
.menu-item{
    display: flex;
    align-items: center;
    width: 50%;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}
.menu-item:hover{
    transform: scale(1.05);
}
.menu-item .menu-item-inner{
    background-color: var(--bg-color-1);
    display: flex;
    align-items: center;
    border: 1px solid var(--grey-color);
    padding: 20px;
    width: 100%;
}
.menu-item .menu-item-inner .food-img{
    width: 130px;
    display: inline-block;
    margin-right: 15px;
}
.menu-item .menu-item-inner .text{
    width: 100%;
}
.menu-item .menu-item-inner .text .dish-details{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-item .menu-item-inner .text .dish-details h2{
    white-space: nowrap;
}
.menu-item .menu-item-inner .text .dish-details .line{
    width: 100%;
    margin: 0 10px;
    height: 1px;
    background-color: var(--grey-color);
}
.menu-item .menu-item-inner .text .dish-details .price{
    color: var(--primary-color);
    font-family: Dancing Script;
    font-size: 32px;
}
.menu-item .menu-item-inner .text .desc{
    color: var(--text-color);
    font-size: 16px;
}
#menu .btn-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.btn2{
    display: inline-block;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 30px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}
.btn2:hover{
    color: var(--primary-color);
    background-color: var(--bg-color-1);
}

/* events */
#events{
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(/images/event/event-img.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

#events .section-heading h1{
    font-family: 'Dancing Script';
    font-size: 80px;
    color: white;

}

#events .section-heading .square-wrapper .square,
#events .section-heading .square-wrapper::before,
#events .section-heading .square-wrapper::after{
   background-color: white;
}

#events .events-carousel{
    padding: 0 0.5rem;
}
.event-item{
    display: inline-block;
    padding: 40px;
    background-color: var(--bg-color-2);
    margin: 15px 0;
    position: relative;
}
.event-item .event-name{
    color: var(--heading-color);
    font-size: 24px;
}
.event-item .details{
    color: var(--text-color);
    margin-right: 2px;
    font-size: 15px;
    display: inline-block;
    line-height: 1.3;
}
.event-item .details .icon{
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 5px;
    transform: translateY(3px);
}
.event-item .desc{
    font-size: 17px;
    margin-top: 15px;
}
.event-mark{
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 35px solid var(--primary-color);
    border-left: 35px solid transparent;
    bottom: 20px;
    right: 20px;
}

/* Gallery */
#gallery{
    background-color: var(--bg-color-2);
    padding: 70px 0;
}
.gallery-wrapper .gallery-img{
    width: 34rem;
    margin: 10px 5px;
    position: relative;
    overflow: hidden;
}
.gallery-wrapper .gallery-img img{
    transition: all 0.7s ease-in-out;
}
.gallery-wrapper .gallery-img .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: baseline;
    transition: all 0.5s ease-in-out;
}
.gallery-wrapper .gallery-img .overlay .icon{
    color: wheat;
    font-size: 34px;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
    text-align: center;
    padding: 0 5rem;
}
.gallery-wrapper .gallery-img img{
    transform: scale(1.05);
}
.gallery-wrapper .gallery-img:hover .overlay{
    opacity: 1;
}
.gallery-wrapper .gallery-img:hover .overlay .icon{
    transform: scale(1);
}

/* team */
#team{
    background-color: var(--bg-color-2);
}
#team .team-carousel .team-card{
    margin-bottom: 20px;
}
.team-card .text-wrapper{
    text-align: center;
    margin-top: 10px;
    width: 100%;
}
.team-card .text-wrapper .name{
    font-size: 20px;
}
.team-card .social-link{
    position: absolute;
    top: 25px;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    list-style: none;
}
.team-card:hover .social-link{
    left: 25px;
    opacity: 1;
}
.team-card .social-link .icon{
    background-color: var(--bg-color-1);
    color: var(--heading-color);
    cursor: pointer;
    margin: 2.5px;
    padding: 15px;
    font-size: 22px;
    transition: all 0.3s ease-in-out;
}
.team-card .social-link .icon:hover{
    background-color: var(--primary-color);
    color: white;
}


/* review */
#reviews{
    background-color: var(--bg-color-2);
}
.review-item{
    padding: 40px;
    background-color: var(--bg-color-1);
    margin: 15px 5px;
}
.review-item .container{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.review-item .container .img-box{
    margin-right: 20px;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    overflow: hidden;
}
.review-item .container .text-holder  .desc{
      font-size: 15px;
      color: var(--text-color);
      font-weight: 400;
}
.review-item .container .text-holder .comment{
    font-weight: 400;
}
.review-item  .rating{
    margin-top: 10px;
}
.review-item  .rating .icon{
    color: rgb(255, 157, 46);
    font-size: 25px;
    transform: translateY(5px);
    margin: 0;
}

/* Blogs */
#blog{
    background-color: var(--bg-color-1);
}
#blog .blog-carousel{
    padding: 0;
}
.blog-post{
    display: inline-block;
    margin: 10px;
    transition: all 0.3s ease-in-out;
}
.blog-post:hover{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 10px;
}
.blog-post .img-wrapper{
    position: relative;
    overflow: hidden;
}
.blog-post .img-wrapper .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    transition: all 0.3s ease-in;
}
.blog-post .img-wrapper .overlay .icon{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    transition: all 0.8s ease-in-out;
    color: black;
    font-size: 22px;
    padding: 15px;
    border-radius: 50%;
}
.blog-post:hover .img-wrapper .overlay{
    top: 0;
}
.blog-post:hover .img-wrapper .overlay .icon{
    top: 50%;
}
.blog-carousel .text-wrapper{
    background-color: var(--bg-color-1);
    padding: 1.5rem;
}
.blog-post .text-wrapper .blog-title{
    color: var(--heading-color);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}
.blog-post .text-wrapper .blog-title:hover{
    color: var(--primary-color);
}
.blog-post .text-wrapper .desc{
    padding-top: 10px;
    line-height: 24px;
}
.blog-post .text-wrapper .time .icon{
    color: var(--primary-color);
    font-size: 25px;
    transform: translateY(5px);
    margin-right: 5px;
}
.blog-post .text-wrapper .time span{
    font-weight: 600;
}
/* footer */
.footer-quote{
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: var(--primary-color);
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer-quote h1{
    color: white;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.5;
    margin-bottom: 10px;
}
.btn3{
    display: inline-block;
    background-color: var(--primary-color);
    border: 1px solid white;
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}
.btn3:hover{
    color: var(--primary-color);
    background-color: white;
}

footer{
    justify-content: space-between;
    background-color: #101418;
}
.footer-top{
    padding: 30px 5rem;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-top .flex-col{
    width: 15rem;
    margin-bottom: 30px;
}
.footer-top .flex-col .logo-name,
.footer-top .flex-col .heading{
    font-size: 20px;
    color: white;
    margin-top: 10px;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}
.footer-top .flex-col .desc{
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
.footer-top .flex-col .social-links{
    margin-top: 10px;
    display: flex;
}
.footer-top .flex-col .social-links li a{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 22px;
    margin-right: 10px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}
.footer-top .flex-col .social-links li a:hover{
    color: white;
    background-color: black;
}
.footer-top .flex-col .timings li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    height: 30px;
}
.footer-top .flex-col .timings li .days{
    color: white;
    font-size: 14px;
}
.footer-top .flex-col .timings  li .time{
    color: #85b585;
    font-size: 14px;
}
.footer-top .flex-col a{
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
    padding: 5px 0;
    transition: color 0.3s ease-in-out;
}
.footer-top .flex-col a:hover{
    color: var(--primary-color);
}
.footer-bottom{
    background-color: var(--primary-color);
    height: 3.5rem;
    text-align: center;
}
.footer-bottom span{
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

@media (max-width: 1080px){
    #events .events-carousel{
        padding: 0;
    }
    #about .img-wrapper{
        width: 22rem;
    }
    .gallery-wrapper .gallery-img{
        width: 28vw;
    }
}
@media (max-width: 1030px) {
    #navbar{
        margin: 0 2rem;
    }
    #navbar.fixed{
        padding: 0 1.5rem;
    }
    #team .team-carousel,
    #blogs .blog-carousel{
        padding: 0;
    }
    .booking-form{
        width: 100%;
        margin-bottom: 20px;
    }
    #about .img-wrapper{
        position: static;
        width: 45%;
        margin: 0 auto;
    }
    .footer-top .flex-col{
        width: 20rem;
        text-align: center;
        align-items: center;
    }
}
@media (max-width:980px) {
    h4{
        font-size: 20px;
    }
    #prenav-text{
        display: none;
    }
    .logo h5{
        font-size: 26px;
        transform: translateY(-15px);
        margin-left: 3.7rem;
    }
    .logo h5 span{
        font-size: 26px; 
    }
    .menu-btn-wrapper{
        display: block!important;
    }
    #navbar{
        top: 0;
        margin: 0;
    }
    #navbar.fixed{
        padding: 0 25px;
    }
    .nav-items{
        padding: 15px;
        position: absolute;
        flex-direction: column;
        top: 100%;
        overflow: hidden;
        z-index: 999;
        background-color: var(--bg-color-1);
        left: 10px;
        right: 10px;
        border-bottom-left-radius:5px;
        border-bottom-right-radius: 5px;
        box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.2);
        transition: all 0.3s ease-in-out;
        height: 200px;
        visibility: hidden;
        opacity: 1;
    }
    .nav-items li{
        border-bottom: var( --nav-items-border-bottom);
    }
    .nav-items li:last-child{
        border-bottom: none;
    }
    .nav-items .nav-links{
        color: var(--heading-color);
        width: 100%;
        padding: 10px;
        display: block;
    }
    .nav-items.active{
        height: 280px;
        visibility: visible;
        opacity: 1;
    }
    #home .slide  .content .heading{
        font-size:  15vw;
        margin: 15px 0;
    }
}
@media (max-width:850px) {
    #about .text-wrapper h1{
        font-size: 48px;
    }
    h1{
        font-size: 40px;
    }
    p,.event-item p{
        font-size: 15px!important;
    }
    .menu-tab-item::after,
    .menu-tab-item.active::after{
        display: none;
    }
    .booking-form{
        justify-content: center;
        width: 100%;
        align-items: center;
    }
    .menu-tabs{
        flex-wrap: wrap;
    }  
    .menu-tab-item{
        width: 40%;
    }
}
@media (max-width:780px) {
    .nav-items .nav-links{
         font-size: 16px;
    }
    section{
        padding: 25px;
    }
    .gallery-wrapper .gallery-img{
        width: 45vw;
    }
    .menu-item{
        width: 100%;
    }
    .footer-top{
        padding: 35px 15px;
    }
}
@media (max-width:480px) {
    .logo{
        margin-left: 0.5rem;
        flex: auto;
    }
    .logo h5{
        margin: 0;
    }
    h1{
        font-size: 28px;
    }
    h3{
        font-size: 24px;
    }
    #search-from form{
        width: 200px!important;
    }
    #home .slide .content{
        width: 25rem;
        padding: 0 2rem ;
    }
    #home .slide .content .sub-heading-2::after,
    #home .slide .content .sub-heading-2::before{
        margin: 0 1rem;
        width: 40px;
    }
    section, #menu{
        padding: 35px 10px;
    }
    #about{
        padding: 0 10px;
    }
    .booking-form h2{
        font-size: 10vw;
    }
    #about .text-wrapper{
        padding: 0;
        width: 100%;
    }
    #about .img-wrapper{
        width: 60%;
    }
    .square-wrapper::after,
    .square-wrapper::before{
        width: 50px;
    }
    #quote .text-wrapper{
        margin: 0 10px;
    }
    #quote .text-wrapper h1{
        font-size: 48px
    }
    #quote .text-wrapper h2{
        font-size: 30px;
    }
    .menu-tab-content{
        padding: 0;
    }
    .menu-tabs{
        padding: 0;
    }
    .menu-tab-item{
        width: 40%;
        margin: 10px;
    }
    .menu-tab-item span{
        font-size: 16px;
    }
    .menu-item{
        padding: 20px 10px;
    }
    .menu-item .menu-item-inner{
        flex-direction: column;
    }
    .menu-item .menu-item-inner  .food-img{
        width: 100%;
        margin: 0;
    }
    .menu-item .menu-item-inner .text .dish-details{
        flex-direction: column-reverse;
        text-align: center;
        margin-top: 10px;
    }
    .menu-item .text,
    .menu-item .text .price,
    .menu-item .text .dish-details h2,
    .menu-item .text .desc p{
        padding-right: 0!important;
        width: 100%;
        text-align: center;
    }
    .menu-item .text .desc p{
        font-size: 18px;
    }
    .menu-item .text .dish-details{
        flex-direction: column;
        align-items: flex-start!important;
    }
    .menu-item .text .dish-details .line{
        display: none;
    }
    .gallery-wrapper .gallery-img{
        width: 90vw;
    }
    .review-item .container{
        flex-direction: column;
        text-align: center;
    }
    .review-item .img-box{
        margin-right: 0!important;
        margin-bottom: 10vw;
    }
    .review-item p,
    .review-item .rating{
        text-align: center;
    }
    .footer-top .flex-col{
        width: 100%;
    } 
    .footer-quote h1{
        font-size: 30px;
    }
}

@media (max-width) {
    #home .slide .content{
        width: 100%;
    }
    #navbar,
    #navbar.fixed{
        padding: 0 10px;
    }
    .review-item .details{
        font-size: 16px;
    }
}
