/*----------------------------------------------------------------------------------------
* Author : Awaiken
* Template Name : Fwizz - Restaurant Cafe And Food HTML Template
* File : CSS File
* Version : 1.0
*---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About us css
06. Why Choose Us css
07. Most Popular Dises css
08. Food Pricing css
09. Infobar css
10. Testimonial css
11. Latest Posts css
12. Footer css
13. About us Page css
16. Blog Archive css
17. Blog Single css
18. Dises Menu Page css
19. Gallery Page css
20. FAQ Page css
21. Contact Page css
22. Booking Page css
23. 404 Page css
24. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/****    01. Global Variables    ****/
/************************************/

:root {
	--primary-color			: #FFFFFF;
	--secondary-color		: #FEBC30;
	--text-color			: #808080;
	--accent-color			: #222222;
	--background-color		: #F7F4ED;
	--dark-background		: #000000;
	--dark-text-color		: #D3D3D3;
	--error-color			: #FF0000;
	--default-font			: 'Inter', sans-serif;
	--accent-font			: 'Domine', serif;
	--transition			: all 0.3s ease-in-out;
	--ticker-gap			: 40px;
	--photo-gap				: 15px;
}

/************************************/
/**** 	   02. General css		 ****/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
}

p{
	line-height: 1.7em;
}
 
p:last-child {
	margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: var(--accent-font);
	margin-top:0;
	font-weight: 600;
}

figure{
	margin: 0;
}

img {
    max-width: 275px;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
	margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1em;
	color: var(--accent-color);
	background: transparent;
	text-align: start;
	padding: 16px 60px 16px 20px;
	border: 2px solid var(--accent-color);
	border-radius: 100px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-default:hover{
	color: #ffffff;
}

.btn-default::before {
    content: '\f061';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    font-family: 'FontAwesome';
    font-size: 16px;
    font-weight: 900;
    width: 36px;
    height: 36px;
    color: #ffffff;
    background-color: #b5070f;
    border: 1.5px solid var(--accent-color);
    border-radius: 50%;
    transition: var(--transition);
    transform: translate(-6px, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-default::after {
    content: '';
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: #d0040f;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-default:hover::after{
	width: 100%;
}

.btn-default:hover::before {
    background-color: #ffffff;
    border-color: var(--secondary-color);
    color: #d0040f;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 300%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.2);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

#magic-cursor {
	position: absolute;
	width: 14px !important;
	height: 14px !important;
	pointer-events: none;
	z-index:1000000;
}

#ball {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background: #b5070f;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1 !important;
}

.preloader{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;
}

.loading-container{
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotating Loader */

.loading{
    width: 150px;
    height: 150px;

    border: 4px solid rgba(181,7,15,0.15);

    border-top-color: #b5070f;

    border-radius: 50%;

    animation: rotateLoader 1s linear infinite;
}

/* Logo */

#loading-icon{
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;
}

#loading-icon img {
    /* width: 128px; */
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}

/* Animation */

@keyframes rotateLoader{
    100%{
        transform: rotate(360deg);
    }
}


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container, .loading {
    height: 200px;
    position: relative;
    width: 200px;
    border-radius: 100%;
}

.loading-container{
	margin: 40px auto
}

.loading{
	border: 1px solid transparent;
	border-color: transparent #fff transparent #FFF;
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 50px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-title {
    margin-bottom: 20px;
    text-align: center;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: auto;
	right: -8px;
	bottom: 3px;
	background-color: rgb(181, 7, 15);
	color: rgb(181, 7, 15);
	width: 5px;
	height: 5px;
	border-radius: 50%;
}

.section-title h2 {
    font-size: 45px;
    color: var(--accent-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: relative;
    width: 100%;    
    background: var(--primary-color);
    border-bottom: 1px solid transparent;
	border-radius: 0;
	padding: 0;
	margin: 0;
    z-index: 100;
}

.main-header {
	height: auto;
}

header.main-header .header-sticky {
	position: relative;
    top: 0;
	margin-top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
header#hero-section {
    height: auto;
}

header.main-header .header-sticky.active {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
	border-bottom: 1px solid #22222226;
	background-color: var(--primary-color);
	padding: 0;
	margin-top: 0;
}

.navbar{
	padding: 0;
	width: 100%;
}

.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	width: 100%;
	max-width: 1300px;
}

.navbar-brand{
	padding: 0;
}

.navbar-brand img{
	/* max-width: 110px; */
	max-width: 155px;
	height: auto;
	display: block;
}

.main-menu{
	font-family: var(--accent-font);
	justify-content: flex-end;
}

.main-menu ul{
	align-items: center;
}

.main-menu ul li{
	margin: 0 15px;
	position: relative;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 5px;
}

.main-menu ul li.nav-item a{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	padding: 0;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	height: 100%;
}

.main-menu ul li.first-menu {
	margin-left: 0;
}

.main-menu ul li.highlighted-menu {
	margin-right: 0;
	line-height: 0;
}

.main-menu ul li.highlighted-menu a{
	font-size: 16px;
    color: var(--accent-color);
    padding: 16px 60px 16px 20px;
}

.main-menu ul li.highlighted-menu a:hover {
    color: #ffffff;
}

.main-menu ul li a:hover, .main-menu ul li a:focus {
    color: #b5070f;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	padding: 8px 0;
	margin: 0;
	list-style: none;
	width: 200px;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--secondary-color);
	transform: scaleY(0.8);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--primary-color);
	padding: 6px 20px !important;
}

.main-menu ul ul li a:hover {
	background-color: #FFFFFF1A;
	color: var(--primary-color);
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	margin-top: 0;
}

.slicknav_menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.slicknav_btn {
	position: relative;
	width: 40px;
	height: 38px;
	background: var(--secondary-color);
	border-radius: 100px;
	padding: 6px 0 0;
	margin: 0;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	height: 3px;
	width: 24px;
	background-color: var(--primary-color);
	margin: 4px auto;
	border-radius: 2px;
}

.slicknav_icon .slicknav_icon-bar.slicknav_icon-bar {
	content: '\f00d';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
}

.slicknav_menu {
	padding: 0;
	background: var(--secondary-color);
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
	padding: 15px 20px 10px;
	margin: 0px;
}

.slicknav_nav {
	padding-top: 5px;
	padding-bottom: 5px;
}

.slicknav_nav ul {
	margin: 0;
}

.slicknav_nav li ul li a {
	margin: 0;
	padding: 12px 30px;
}

.slicknav_nav li a {
	font-size: 16px;
	margin: 0;
	padding: 12px 20px;
	color: var(--accent-color);
}

.slicknav_nav li.highlighted-menu a {
	border: none;
	border-radius: 0;
	font-weight: 400;
}

.slicknav_nav li.highlighted-menu a::before {
	display: none;
}

.slicknav_nav li .slicknav_row:hover a {
	color: inherit;
}

.slicknav_nav li a:hover, .slicknav_nav li a.active, .slicknav_nav li .slicknav_row:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 0;
}

.slicknav_nav li a a:hover,
.slicknav_nav li a.active a:hover,
.slicknav_nav li .slicknav_row a:hover {
	background-color: #FFFFFF00;
	color: var(--primary-color);
}

.slicknav_arrow {
	font-size: 0 !important;
	position: relative;
}

.slicknav_arrow:after {
	content: '\f107';
	position: absolute;
	top: 50%;
	right: -18px;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 16px;
	line-height: 1;
	margin-top: -13.5px;
}

.navbar-toggle a.slicknav_btn .slicknav_icon span.slicknav_icon-bar {
	transition: 0.1s;
	border-radius: 4px;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

/************************************/
/**** 	    04. Hero css		 ****/
/************************************/

.hero {
	/* min-height: 70vh; */
	height: auto;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin-top: 0;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #00000080;
	width: 100%;
	height: 100%;
}

.hero-slider.swiper {
	width: 100%;
	height: auto;
	position: relative;
}

.hero-slider.swiper .swiper-wrapper {
	height: auto;
}

.hero-slide {
	width: 100%;
	height: auto;
	min-height: 585px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.6) 100%);
	pointer-events: none;
}

.hero .container {
	position: relative;
	z-index: 2;
	max-width: 780px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .row {
	height: auto;
}

.hero .col-md-12 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: auto;
}

.hero .section-title {
	margin-bottom: 30px;
	text-align: center;
}

.hero .section-title h3,
.hero .section-title h1,
.hero p {
	color: var(--primary-color);
}



.hero .section-title h1 {
	font-size: 60px;
}

.hero-content p {
	text-align: center;
	max-width: 550px;
	margin: 0 auto 30px;
}

.hero-footer {
	max-width: 400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
	z-index: 3;
}

.hero-slider .swiper-button-prev {
	left: 18px;
}

.hero-slider .swiper-button-next {
	right: 18px;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
	background: rgb(181, 7, 15);
	border-color: rgb(181, 7, 15);
	transform: translateY(-50%) scale(1.05);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 18px;
	color: var(--primary-color);
}

.hero-slider .swiper-button-prev::after {
	content: '\f104';
}

.hero-slider .swiper-button-next::after {
	content: '\f105';
}

.hero-slider .swiper-pagination {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.hero-slider .swiper-pagination-bullet {
	background: rgba(255,255,255,0.6);
}

.hero-slider .swiper-pagination-bullet-active {
	background: #ffffff;
}

.hero .btn-book-now {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.hero .btn-order-online {
	border-color: var(--secondary-color);
	color: var(--primary-color);
}

.hero .btn-book-now::before,
.hero .btn-order-online::before {
	border-color: var(--primary-color);
}

.hero .btn-book-now:hover,
.hero .btn-order-online:hover {
	color: #ffffff;
	border-color: var(--primary-color);
}

.down-arrow a {
	position: absolute;
	top: auto;
	left: 50%;
	bottom: 30px;
	width: 24px;
	height: 36px;
	border: 2px solid var(--primary-color);
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%);
	animation: jumpInfinite 1.5s infinite;
}

.down-arrow a img {
	width: 12px;
	height: 24px;
}
  
@keyframes jumpInfinite {
	0% {
		margin-bottom: 0;
	}
	50% {
		margin-bottom: 20px;
	}
	100% {
		margin-bottom: 0;
	}
}

/************************************/
/****     05. About us css		 ****/
/************************************/

.home-about {
    padding: 90px 0 90px;
    background: var(--primary-color);
    position: relative;
}

.home-about::before,
.gallery-page::before,
.send-msg-section::before,
.advance-booking-page::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: auto;
	background: url('../image/aboutus/home-about-bg.png') no-repeat;
	width: 465px;
	height: 610px;
	transform: translateY(-50%);
}

.home-about .container {
	position: relative;
	z-index: 1;
}

.home-about-left {
	position: relative;
}

.home-about-left .home-about-img {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.home-about-left .home-about-img figure {
	width: 48%;
}

.home-about-left .home-about-img figure img {
	width: 100%;
	border-radius: 30px;
}

.home-about-left .home-about-since {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--secondary-color);
	border: 10px solid var(--primary-color);
	border-radius: 50%;
	width: 190px;
	height: 190px;
	transform: translate(50px, -70px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	text-align: center;
	z-index: 1;
}

.home-about-since h3 {
	font-size: 24px;
	color: var(--primary-color);
	width: 100%;
	margin-bottom: 10px;
}

.home-about-since h2 {
	font-size: 46px;
	color: var(--primary-color);
	width: 100%;
	margin-bottom: 0;
}

.home-about-right {
	padding-left: 0;
}

.home-about-right .section-title {
	text-align: start;
	margin-bottom: 20px;
	width: 100%;
	max-width: 100%;
}

.home-about-right .section-title h2 {
	width: 100%;
	max-width: 100%;
	white-space: normal !important;
	overflow-wrap: break-word;
	word-break: break-word;
}

.home-about-right .section-title h2,
.home-about-right .section-title h2 span,
.home-about-right .section-title h2 .word,
.home-about-right .section-title h2 .char,
.text-anime,
.text-anime span {
	white-space: normal !important;
}

.home-about-right p {
	margin-bottom: 30px;
}

.about-icon-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.about-icon-box .icon-box {
	width: 47%;
	background: var(--primary-color);
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0px 0px 30px 0px #0000000D;
}

.icon-box .icon-box-img {
	margin-bottom: 20px;
}

.icon-box .icon-box-content h3 {
	font-size: 20px;
	color: var(--accent-color);
}

.icon-box .icon-box-content p {
	margin-bottom: 0;
}

/**************************************/
/****     06. Why Choose Us css	   ****/
/**************************************/

.why-choose-us {
	background: var(--background-color);
	padding: 90px 0;
	position: relative;
}
/* 
.why-choose-us::before,
.about-gallery::before {
	content: '';
	position: absolute;
	top: auto;
	left: 0;
	bottom: 0;
	background: url("../images/why-choose-us-bg.png") no-repeat;
	background-size: cover;
	width: 300px;
	height: 500px;
} */

.why-choose-us .container {
	position: relative;
	z-index: 1;
}

/* .why-choose-us .col-md-4.col-12:nth-child(2) .wcu-img-box {
	background-color: var(--primary-color);
} */

.why-choose-us .section-title {
	width: 100%;
}

/* .why-choose-us .section-title h3 {
	display: block;
	width: 100%;
} */

.why-choose-us .section-title h2 {
	max-width: 100%;
	margin: 0 auto;
}

.home-about-img figure{
    border-radius: 30px;
    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.25),
        0 20px 45px rgba(0,0,0,0.35);

    transition: 0.4s ease;
}

.home-about-img figure img{
    width: 100%;
    display: block;
    border-radius: 30px;
}


.wcu-img-box{
    background: #111111;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    
    box-shadow:
        0 5px 15px rgba(0,0,0,0.25),
        0 10px 30px rgba(0,0,0,0.35);

    border: 1px solid rgba(255,255,255,0.05);
}

.wcu-img-box:hover{
    transform: translateY(-10px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.35),
        0 20px 45px rgba(181, 7, 15, 0.25);

    border-color: rgba(181, 7, 15, 0.4);
}
.why-choose-us .row{
    row-gap: 30px;
}

.wcu-img-box{
    height: 100%;
}



.image-box img{
    filter: brightness(0) saturate(100%) invert(12%) sepia(96%) saturate(5617%) hue-rotate(352deg) brightness(92%) contrast(108%);
}
 
.wcu-img-box {
	border-radius: 30px;
	text-align: center;
	padding: 60px 40px 40px;
}

.image-box figure {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	margin: 0 auto 20px;
}

.image-box figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #b5070f36;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    transform: translate(35px, -12px);
}

.image-box img {
	width: 80px;
	height: 80px;
}

.image-body h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
}

.image-body p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;
}




/* =========================
Vision Mission Section
========================= */



.vision-mission-section{
    padding: 90px 0;

    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #fff6f6 45%,
    #ffecec 100%
    );

    position: relative;
    overflow: hidden;
}

/* Vision & Mission Card */

.vision-box{
    position: relative;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(10px);

    padding: 50px 45px;

    border-radius: 28px;

    height: 100%;

    overflow: hidden;

    border: 1px solid rgba(181,7,15,0.10);

    transition: all 0.45s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06),
        0 20px 50px rgba(181,7,15,0.08);
}

/* Hover Effect */

.vision-box:hover{
    transform: translateY(-12px);

    border-color: rgba(181,7,15,0.30);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.10),
        0 25px 60px rgba(181,7,15,0.15);
}

/* Top Glow Border */

.vision-box::before{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
    90deg,
    #b5070f,
    #ff4d4d
    );
}

/* Icon Circle */

.vm-icon{
    width: 90px;
    height: 90px;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    rgba(181,7,15,0.10),
    rgba(181,7,15,0.03)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    transition: 0.4s ease;

    border: 1px solid rgba(181,7,15,0.10);
}

.vm-icon i{
    font-size: 36px;
    color: #b5070f;
}

.vision-box:hover .vm-icon{
    transform: rotate(8deg) scale(1.05);

    box-shadow:
        0 10px 25px rgba(181,7,15,0.15);
}

/* Heading */

.vision-box h2{
    color: #111111;

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 22px;
}

/* Paragraph */

.vision-box p {
    color: #555555;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 0;
}

/* =========================
Modern Mission Checklist
========================= */

/* Modern Checklist Style */

.vision-box ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-box ul li{
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 15px;

    color: #555555;

    font-size: 16px;

    line-height: 1.6;

    margin-bottom: 18px;
}

/* Check Icon */

.vision-box ul li::before{
    content: "\f00c";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    min-width: 36px;
    width: 36px;
    height: 36px;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #b5070f,
    #d61b24
    );

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;

    margin-top: 2px;

    box-shadow:
        0 8px 18px rgba(181,7,15,0.22);
}

/* Section Title */

/* .vision-mission-section .section-title h3{
    color: #b5070f;
} */

.vision-mission-section .section-title h2{
    color: #111111;
}

/* Responsive */

@media(max-width: 767px){

    .vision-box{
        padding: 40px 28px;
    }

    .vision-box h2{
        font-size: 28px;
    }

    /* .vision-box ul li{
        padding-left: 55px;
    } */

}


/**************************************/
/****  07. Most Popular Dises css  ****/
/**************************************/

.most-popular-section ,
.menu-page-section {
	background: url('../images/most-popular-dises-bg.png') no-repeat bottom right;
	background-size: 500px;
	padding: 100px 0 75px;
}

.menu-dises-nav {
	background-color: var(--background-color);
	border-radius: 30px;
	padding: 40px;
}

.menu-dises-nav ul ,
.category-section ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.menu-dises-nav ul li,
.category-section ul li {
	font-size: 18px;
	font-weight: 600;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.menu-dises-nav ul li:last-child,
.category-section ul li:last-child {
	margin-bottom: 0;	
}

.menu-dises-nav ul li a,
.category-section ul li a {
	display: inline-block;
	color: inherit;
}

.menu-dises-nav ul li a img,
.category-section ul li img {
	width: 35px;
	height: 20px;
	padding-right: 15px;
}

.menu-item-box {
	margin-bottom: 25px;
}

.menu-item {
	background-color: var(--background-color);
	border-radius: 30px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.menu-item:hover .menu-item-img img,
.post-item:hover .post-featured-image a figure img,
.team-card:hover .team-img img {
	transform: scale(1.1);
}

.menu-item:hover .menu-item-img .image-anime:after,
.post-item:hover .post-featured-image a figure::after,
.team-card:hover .team-img figure::after {
	height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.menu-item-img img {
	width: 100%;
	border-radius: 30px 30px 0 0;
	transition: all 0.5s ease-in-out;
}

.menu-item-body {
	padding: 15px 20px 25px;
}

.menu-item-body .rating-img {
	margin-bottom: 10px;
}

.menu-item-body .rating-img img {
	width: 94px;	
	height: 18px;
}

.menu-item-body h3 {
	font-size: 20px;
	color: var(--accent-color);
}

/**************************************/
/****     08. Food Pricing css	   ****/
/**************************************/

.food-pricing {
	background-color: var(--background-color);
	padding: 100px 0;
	position: relative;
}

.food-pricing::before {
	content: '';
	position: absolute;	
	background: url("../images/food-pricing-bg.png") no-repeat center left;
	background-size: cover;
	width: 170px;
	height: 757px;
}

.food-pricing .container {
	position: relative;
	z-index: 1;
}

.pricing-list {
	background-color: var(--dark-background);
	padding: 40px;
	border-radius: 30px;
}

.pricing-list-item {	
	margin-bottom: 25px;
}

.pricing-list-item:last-child {	
	margin-bottom: 0;
}

.pricing-list-item ul {
	list-style-type: none;
	padding: 0;
	margin: 0 0 8px 0;
}

.pricing-list-item ul li {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 500;
	color: var(--primary-color);
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.pricing-list-item ul li .price-list-title{
	max-width: 80%;
}

.pricing-list-item ul li .price-list-separator {	
	border-bottom-style: dashed; 
    border-bottom-width: 1.5px; 
    border-bottom-color: #fff; 
    margin-left: 4px;
    margin-right: 10px;
	display: flex;
	flex-grow: 1;
}

.pricing-list-item ul li .price-list-price {
	color: var(--secondary-color);
}

.pricing-list-item p {
	font-size: 16px;
	color: var(--dark-text-color);
}

.food-bar-1 {
	background: url("../images/food-bar-1.png") no-repeat center center;
	background-size: cover;
	background-color: var(--dark-background);
	margin-bottom: 23px;
	border-radius: 30px;
}

.food-bar-details {
	padding: 35px 30px;
	border-radius: 30px;
	max-width: 70%;
	color: var(--primary-color);
}

.food-bar-details h3 {
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.food-bar-details p {
	font-size: 14px;
	color: var(--dark-text-color);
	margin-bottom: 20px;
	max-width: 120px;
}

.food-bar-details h4 {
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 20px;
}

.food-bar-details .btn-default {
	font-size: 12px;
	color: var(--primary-color);
	border-color: var(--secondary-color);
	padding: 12px 40px 12px 14px;
}

.food-bar-details .btn-default:hover {
	border-color: var(--primary-color);
}

.food-bar-details .btn-default::before {
	width: 24px;
    height: 24px;
	font-size: 12px;
	border-color: var(--primary-color);
}

.food-bar-2 {
	background: url("../images/food-bar-2.png") no-repeat center center;
	background-size: cover;
	background-color: var(--dark-background);
	border-radius: 30px;
}

/****************************************/
/****    	09. Infobar css    		 ****/
/****************************************/

.restaurant-inforamtion {
	background: url('../images/restaurants-wrap-bg.png') no-repeat center right;
	background-size: auto;
	padding: 100px 0 70px;
}

.restaurant-info-box {
	background: url('../images/restaurants-bg.png') no-repeat center right;
	background-size: cover;
	background-color: var(--dark-background);
	display: flex;
	flex-wrap: wrap;
	align-items: center;	
	justify-content: center;
	border-radius: 30px;
	padding: 35px 50px;
	margin-bottom: 60px;
}

.restaurant-info-box .info-box-content {
	width: 55%;
}

.info-box-content .section-title {
	margin-bottom: 0;
}

.info-box-content .section-title h2 {
	text-align: start;
	color: var(--primary-color);
	margin-bottom: 30px;
}

.info-box-content p {
	width: 520px;
	color: var(--dark-text-color);
}

.info-box-img {
	width: 45%;
}

.info-btn {
	margin-top: 30px;
}

.info-btn .btn-default {
	color: var(--primary-color);
	border-color: var(--primary-color);
	margin-right: 25px;
}

.info-btn .btn-default:last-child {
	margin-right: 0;
	margin-bottom: 0;
}

.info-btn .btn-default::before {
	border-color: var(--primary-color);
}

.counter-bar {
	position: relative;
	border-radius: 30px;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
}

.counter-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #00000099;
	background-size: cover;
	border-radius: 30px;
	z-index: 1;
}

.counter-bar:hover .counter-bar-img img{
	transform: scale(1.1);
}

.counter-bar-img img {
	width: 100%;
	transition: all 0.5s ease-in-out;
}

.counter-bar .counter-bar-body {
	position: absolute;
	top: 50%;
	left: 0;
	text-align: center;
	color: var(--primary-color);
	width: 100%;
	transform: translateY(-50%);
	z-index: 3;
}

.counter-bar-body h3 {
	font-size: 46px;
	color: var(--primary-color);
	margin-bottom: 0;
}

.counter-bar-body p {
	font-size: 16px;
}

/************************************/
/****    10. Testimonial css     ****/
/************************************/

.testimonials-section {
    position: relative;
    background-color: #ffffff;
    padding: 90px 0 90px;
}

/* .testimonials-section::before {
	content: '';
	position: absolute;
	top: auto;
	left: 0;
	bottom: 0;
	background: url('../images/testimonial-bg.png') no-repeat bottom left;
	background-size: cover;
	width: 214px;
	height: 531px;
} */

.testimonials-section .container {
	position: relative;
	z-index: 1;
}

.testimonials-section .row.align-items-center {
	justify-content: center;
}

.testimonials-section .section-title {
	text-align: center;
	margin-bottom: 30px;
}

/* .testimonials-section .section-title h3,
.testimonials-section .section-title h2 {
	color: #ffffff;
} */

.testimonial-slider-wrapper {
	margin: 0 auto;
	max-width: 760px;
	position: relative;
}

/* .testimonial-slider-wrapper .swiper-wrapper {
	padding-bottom: 20px;
} */

.testimonial-slide {
	background: #111111;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 32px;
	padding: 50px 45px;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-body {
	padding: 0;
	margin: 0;
	max-width: 650px;
	text-align: center;
}

.testimonial-body p {
	color: #edecec;
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0.01em;
	margin-bottom: 30px;
}

.testimonial-rating{
    margin-top: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 6px;
}

.testimonial-rating i{
    color: #ffb800;

    font-size: 18px;

    text-shadow:
        0 2px 8px rgba(255,184,0,0.35);
}

.testimonial-footer {
	text-align: center;
}

.testimonial-footer h3 {
	font-family: var(--default-font);
	font-size: 24px;
	color: #b5070f;
	margin-bottom: 8px;
	position: relative;
}

.testimonial-footer h3::before {
	content: '';
	width: 48px;
	height: 3px;
	background: #b5070f;
	display: block;
	margin: 0 auto 12px;
	border-radius: 2px;
}

.testimonial-footer p {
	font-size: 14px;
	color: #d1d1d1;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin: 0;
}

.swiper-pagination {
	position: relative;
	bottom: auto;
	left: auto;
	transform: none;
	margin: 32px auto 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 120px;
}

.swiper-pagination .swiper-button {
	width: 36px;
	height: 36px;
	background-color: var(--secondary-color);
	color: var(--dark-background);
	border: 2px solid var(--secondary-color);
	border-radius: 50%;	
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.swiper-pagination .swiper-button:hover {
	color: var(--primary-color);
	background-color: #FFFFFF00;
	border-color: var(--primary-color);
}

.swiper-pagination .swiper-button-next {
	right: 0px;
}

.swiper-pagination .swiper-button-prev {
	left: 0;
}

.swiper-pagination .swiper-button-next::after,
.swiper-pagination .swiper-button-prev::after {
	font-family: 'FontAwesome';
	font-size: 18px;
	font-weight: 900;
}

.swiper-pagination .swiper-button-next::after {
	content: '\f061';
}

.swiper-pagination .swiper-button-prev::after {
	content: '\f060';
}

/************************************/
/****    11. Latest Posts css    ****/
/************************************/

.events-post {
	padding: 100px 0 70px;
	background: url("../images/upcoming-events-bg.png") no-repeat center right;
	background-size: auto;
}

.events-post .row .col-lg-4.col-md-12 {
	margin: 0 0 30px;
}

.post-item {
	background-color: var(--background-color);
	border-radius: 30px;
	overflow: hidden;
	height: 100%;
}

.post-item .post-featured-image {
	line-height: 0;
}

.post-featured-image a {
	display: block;
}

.post-featured-image a figure img {
	width: 100%;
    transition: all 0.5s ease-in-out;
}

.post-header {
	padding: 30px;
}

.post-header ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.post-header ul li {
	display: inline-block;
	position: relative;
	font-size: 16px;
	color: var(--text-color);
	padding-left: 20px;
	margin-right: 8px;
}

.post-header ul li.post-meta-date {
	padding-left: 0;
	color: var(--secondary-color);
}

.post-header ul li:last-child {
	margin-right: 0;
}

.post-header ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	bottom: auto;
	color: var(--secondary-color);
	background-color: var(--secondary-color);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin-top: -4px;
}

.post-header ul li.post-meta-date::before {
	display: none;
}

.post-header ul li a {
	display: inline-block;
	color: inherit;
}

.post-header h3 {
	font-size: 22px;
	color: var(--accent-color);
	margin-bottom: 0;
	margin-top: 20px;
}

.post-header h3 a {
	display: inline-block;
	color: inherit;
}


/* =========================
Compact Brand Statement
========================= */

.compact-brand-statement {
    padding: 30px 0;
    background: linear-gradient(133deg, #af070e 0%, #ffffff 50%, #b5070f 100%);
}

/* Main Layout */

.brand-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 25px 25px;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(181,7,15,0.08);
    transition: 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03),
        0 12px 30px rgba(181,7,15,0.06),
        0 25px 50px rgba(0,0,0,0.04);
}

/* Hover Effect */

.brand-tagline:hover{

    transform: translateY(-6px);

    box-shadow:
        0 5px 15px rgba(0,0,0,0.04),
        0 18px 40px rgba(181,7,15,0.10),
        0 30px 60px rgba(0,0,0,0.06);
}

/* Side Lines */

.brand-tagline .line{
    width: 70px;
    height: 3px;

    border-radius: 50px;

    background:
    linear-gradient(
    90deg,
    #b5070f,
    #ff4d4d
    );
}

/* Heading */

.brand-tagline h2{
    margin: 0;

    color: #111111;

    font-size: 34px;

    font-weight: 700;

    text-align: center;

    line-height: 1.5;
}

/* Responsive */

@media(max-width:991px){

.brand-tagline{
    padding: 30px 25px;

    gap: 18px;
}

.brand-tagline h2{
    font-size: 28px;
}

.brand-tagline .line{
    width: 50px;
}

}

@media(max-width:767px){

.compact-brand-statement{
    padding: 40px 0;
}

.brand-tagline{
    flex-direction: column;

    gap: 15px;

    padding: 28px 20px;
}

.brand-tagline h2{
    font-size: 22px;

    line-height: 1.6;
}

.brand-tagline .line{
    width: 70px;
}

}

/********************************/
/****    12. Footer css      ****/
/********************************/

.scrolling-ticker {
	padding: 20px 0;
	color: var(--primary-color);
	background-color: var(--secondary-color);
}

.scrolling-ticker-box {
	--gap: 20px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 24s linear infinite;
}

.scrolling-content span {
	display: inline-flex;
	align-items: center;
	font-family: var(--accent-font);
	font-size: 22px;
	line-height: 1.1em;
	font-weight: 500;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-content span i{
	font-size: 8px;
	color: var(--primary-color);
	margin-right: 20px;
}

.footer-mega {
    position: relative;
    background-color: var(--dark-background);
    padding: 50px 0 0px;
}


.footer-copyright p{
    color: #ffffff !important;
}
.copyright-text{
    background: #b5070f !important;
}


/* .footer-mega::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("../images/footer-bg.png") no-repeat center center;
	background-size: cover;
} */

.footer-mega .container {
	position: relative;
	z-index: 1;
}

.footer-about {
	padding-right: 0;
	text-align: center;
}

.footer-logo {
	margin-bottom: 12px;
}

/* .footer-logo img {
    display: block;
    margin: 0 auto;
    max-width: 160px;
} */
 .footer-logo img {
    display: block;
    margin: 0 auto;
    max-width: 185px;
}

.footer-content p {
	color: var(--primary-color);
}

.footer-content .footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
}

.footer-social-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b5070f;
    background-color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s;
}

.footer-social-link a:hover {
    background-color: #96060c;
    color: #ffffff;
}

.footer-social-link a:last-child{
	margin-right: 0;
}

.footer-social-link a i {
	font-size: 18px;
	color: inherit;
}

.footer-links h2,
.footer-contact h2 {
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 30px;
}

.footer-links ul,
.footer-contact ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li {
    font-size: 16px;
    color: var(--dark-text-color);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-links ul li:last-child,
.footer-contact ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li:hover, .footer-links ul li:hover a i {
    color: #b5070f;
}

.footer-links ul li a,
.footer-contact ul li .icon-list-text a {
	display: inline-block;
	color: inherit;
}

.footer-links ul li a i {
    color: #ffffff;
    padding-right: 10px;
    transition: all 0.3s;
}

.footer-contact ul li {
	font-size: 16px;
	color: var(--dark-text-color);
	display: flex;
	margin-bottom: 10px;
}

.footer-contact ul li .icon-list-icon {
	padding-right: 10px;
}
.foot{
	margin-bottom: 40px;
}

.footer-contact ul li .icon-list-icon i {
    width: 30px;
    height: 30px;
    font-family: "Font Awesome 6 Free";
    font-size: 15px;
    color: var(--primary-color);
    background-color: #b5070f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact ul li .icon-list-text a {
	padding-top: 2px;
	transition: all 0.3s;
}

.footer-contact ul li .icon-list-text a:hover {
    color: #b5070f;
}

.footer-subscribe-section {
	background-color: #262626;
	padding: 15px 0;
	border-radius: 1000px;
	margin: 40px 0;
}

.footer-subscribe-title h2{
	font-size: 24px;
	color: var(--primary-color);
	margin: 0;
	padding-left: 20px;
}

.footer-subscribe-form {
	position: relative;
	background-color: #141414;
	border-radius: 100px;
	margin-left: 30px;
}

.footer-subscribe-form .form-group .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--primary-color);
	background-color: transparent;
	border: 2px solid #FFFFFF00;
	border-radius: 30px 0 0 30px;
	padding: 14px 20px;
}

.footer-subscribe-form .form-group .form-control:focus,
.footer-subscribe-form .form-btn:focus {
	outline: none;
	box-shadow: none;
}

.footer-subscribe-form .form-group.has-error.has-danger .form-control{
	border-color: var(--error-color);
}

.footer-subscribe-form .form-group .form-control::placeholder {
	color: var(--dark-text-color);
}

.footer-subscribe-form .form-group .help-block.with-errors{
	display: none;
}

.footer-subscribe-form .form-btn {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
	background-color: var(--secondary-color);
	border: 2px solid var(--secondary-color);
	border-radius: 0 100px 100px 0;
	width: 100%;
	padding: 14px 20px;
	transition: all 0.3s;
}

.footer-subscribe-form .form-btn:hover {
	color: var(--secondary-color);
	border-color: var(--primary-color);
	background-color: var(--primary-color);
}

.footer-subscribe-form #nmsgSubmit {
	font-family: var(--accent-font);
	font-size: 12px;
	color: var(--secondary-color);
	position: absolute;
	top: auto;
	right: 20px;
	bottom: -5px;
	margin: 0;
}

.footer-copyright p {
	color: var(--dark-text-color);
}

.footer-copyright p strong {
	color: var(--primary-color);
}

.footer-copyright .footer-btn {
	display: inline-block;
	font-size: 12px;
	color: var(--dark-text-color);
}

.footer-copyright .footer-btn i {
	font-size: 14px;
	color: var(--primary-color);
	padding-left: 10px;
}

/*************************************/
/****    13. About us Page css    ****/
/*************************************/

.page-header {
    position: relative;
    background: url("../image/about-main-page/butter-chicken.jpg") no-repeat center center;
    background-size: cover;
    padding: 50px 0;
	object-fit: cover !important;
	background-size: cover !important;
	background-position: center !important;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	/* subtle dark-to-transparent gradient to improve text contrast */
	background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
	width: 100%;
	z-index: 0;
}

.page-header .container {
	position: relative;
	z-index: 2;
}

.page-header-box {
	text-align: center;
	color: var(--primary-color);
}

.page-header-box h1 {
    font-size: 43px;
    margin-bottom: 3px;
}

.page-header-box nav ol {
	justify-content: center;
	color: var(--primary-color);
	margin-bottom: 0;
}

.page-header-box nav ol .breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	color: var(--primary-color);
	transition: var(--transition);
}

.page-header-box nav ol .breadcrumb-item.active {
    font-weight: 600;
    color: #b5070f;
}

.page-header-box nav ol .breadcrumb-item a {
	color: inherit;
}

.page-header-box nav ol .breadcrumb-item a:hover {
    color: #b5070f;
}

.page-header-box nav ol .breadcrumb-item::before {
	color: var(--primary-color);
}

.about-gallery {
	background: var(--background-color);
    padding: 100px 0;
    position: relative;
}

.about-photo-gallery-entry{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.about-photo-gallery-entry .photo-gallery-item{
    width:100%;
    margin:0;
}

.about-photo-gallery-entry .photo-gallery-item:nth-of-type(3n + 3) {
	margin-right: 0;
}

.photo-gallery-item a figure img {
	aspect-ratio: 1/0.8;
	object-fit: cover;
	border-radius: 30px;
}
.photo-gallery-item figure{
    margin:0;
    overflow:hidden;
    border-radius:25px;
}

.photo-gallery-item figure img{
    max-width:100%;
    display:block;
}

.always-quality {
	background: url(../images/most-popular-dises-bg.png) no-repeat bottom right;
    background-size: 500px;
    padding: 100px 0 70px;
	position: relative;
}

.always-quality::before {
	content: '';
	position: absolute;
	top: auto;
	left: 0;
	bottom: 0;
	background: url("../images/always-quality-bg.png") no-repeat;
	background-size: cover;
	width: 200px;
	height: 115px;
}

.always-quality .container {
	position: relative;
	z-index: 1;
}

.always-quality .row .col-lg-4.col-md-6 {
	margin: 0 auto;
}

.team-card {
	background-color: var(--background-color);
	border-radius: 30px;
	margin-bottom: 30px;
	overflow: hidden;
}

.team-card .team-img img {
	width: 100%;
	transition: all 0.5s ease-in-out;
}

.team-card .team-body {
	padding: 0 20px 20px;
	margin-top: -20px;
	text-align: center;
}

.team-body .team-card-header h4 {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--primary-color);
	background-color: var(--secondary-color);
	border-radius: 5px;
	padding: 12px 25px;
	margin: 0;
	z-index: 1;
}

.team-body .team-card-header h3 {
	font-size: 20px;
	color: var(--dark-background);
	margin: 30px 0 20px;
}

.team-body .team-content p {
	font-size: 16px;
	color: #5C6167;
}

.team-body .team-social-link {
	margin-top: 20px;
}

.team-body .team-social-link a,
.post-footer .post-social-link a {
	display: inline-block;
	color: inherit;
}

.team-body .team-social-link a i,
.post-footer .post-social-link a i {
	font-family: "Font Awesome 6 Brands";
	font-size: 18px;	
	width: 35px;
	height: 35px;
	color: var(--secondary-color);
	background-color: transparent;
	border: 1px solid var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;	
	margin-right: 10px;
	transition: all 0.4s ease-in-out;
}

.team-body .team-social-link a i:hover {
	color: var(--primary-color);
	background-color: var(--secondary-color);
}

.sponsors-section {
	padding: 100px 0;
}

.sponsors-section .sponsors-logo {
	padding: 0;
	background-color: transparent;
}

.sponsors-section .sponsors-logo .scrolling-content span {
	padding-right: 80px;
}

.sponsors-section .restaurant-info-box {
	margin-bottom: 0;
	margin-top: 100px;
}

/**************************************/
/****    16. Blog Archive css      ****/
/**************************************/

.post-section {
	padding: 100px 0;
}

.post-section .row .col-lg-4.col-md-6{
	margin: 0 auto 30px;
}

.post-pagination{
	margin-top: 10px;
	text-align: center;
}

.post-pagination ul{
	justify-content: center;
	padding: 0;
	margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span{
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	background: var(--secondary-color);
	border: 2px solid var(--secondary-color);
	margin: 0 4px;
	border-radius: 10px;
	font-family: var(--accent-font);
	font-weight: 700;
	color: var(--primary-color);
	transition: all 0.3s ease-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover{
	background: transparent;
	color: var(--secondary-color);
}

/*************************************/
/****    17. Blog Single css      ****/
/*************************************/

.blog-detail-page {
	padding: 100px 0;
	background: url("../images/post-single-bg.png") no-repeat bottom right;
	background-size: auto;
}	

.post-content .post-feature-img {
	margin-bottom: 30px;
}

.post-content .post-feature-img img {
	width: 100%;
	border-radius: 30px;
}

.post-content .post-body p {
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 20px;
}

.post-content .post-body p:last-child {
	margin-bottom: 0;
}

.post-content .post-body ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.post-content .post-body ul li {
	font-size: 16px;
	font-weight: 400;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.post-content .post-body ul li::before {
	content: '\f058';
	position: absolute;
	top: 50%;
	left: 0;
	bottom: auto;
	font-family: "Font Awesome 6 Free";
	font-size: 16px;
	font-weight: 900;
	color: var(--secondary-color);
	transform: translateY(-50%);
}

.post-content .post-body blockquote {
	position: relative;
	font-size: 20px;
	font-weight: 500;
	background-color: var(--background-color);
	border-radius: 30px;
	padding: 30px 30px 30px 110px;
	margin-bottom: 20px;
}

.post-content .post-body blockquote::before {
	content: '';
	position: absolute;
	top: 30px;
	left: 30px;
	bottom: auto;
	background: url('../images/double-quotes.png') no-repeat center center;
	background-size: cover;
	width: 50px;
	height: 36px;
}

.post-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-top: 1px solid #c1c1c1;
	padding-top: 30px;
	margin-top: 30px;
}

.post-footer .footer-tag-links {
	width: 70%;
	display: flex;
	align-items: center;
}

.post-footer .footer-tag-links h3 {
	font-size: 30px;
	font-weight: 700;
	color: var(--dark-background);
	margin-bottom: 0;
	margin-right: 10px;
}

.post-footer .footer-tag-links ul,
.tags-section ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	line-height: 0;
}

.post-footer .footer-tag-links ul li,
.tags-section ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-footer .footer-tag-links ul li:last-child,
.tags-section ul li:last-child {
	margin-right: 0;
}

.post-footer .footer-tag-links ul li a,
.tags-section ul li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--dark-background);
	background-color: transparent;
	border: 2px solid var(--dark-background);
	border-radius: 100px;
	padding: 15px 20px;
	transition: var(--transition);
	overflow: hidden;
	z-index: 1;
}

.post-footer .footer-tag-links ul li a::after,
.tags-section ul li a::after {
	content: '';
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: var(--secondary-color);
    border-radius: 30px;
    transition: var(--transition);
}

.post-footer .footer-tag-links ul li a:hover::after,
.tags-section ul li a:hover::after {
	width: 100%;
}

.post-footer .post-social-link {
	width: 30%;
	text-align: end;
}

.post-footer .post-social-link a:last-child i {
	margin-right: 0;
}

.post-footer .post-social-link a i {
	font-size: 22px;
	width: 46px;
	height: 46px;
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.post-footer .post-social-link a i:hover {
	background-color: transparent;
	color: var(--secondary-color);
}

.search-box ,
.category-section,
.recent-post-section ,
.tags-section {
	background-color: var(--background-color);
	border-radius: 30px;
	padding: 30px;
	margin-bottom: 30px;
}

.search-box h3,
.category-section h3,
.recent-post-section h3,
.tags-section h3 {
	font-size: 24px;
	color: var(--dark-background);
	margin-bottom: 20px;
}

.search-box .form-group {
	background-color: var(--primary-color);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 8px;
}

.search-box .form-group input{
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	width: 85%;
	border: none;
	padding: 4px 8px;
}

.search-box .form-group input:focus {
	outline: none;
	box-shadow: none;
}

.search-box .form-group button {
	border: none;
	padding: 0;
	background-color: transparent;
	transition: var(--transition);
	width: 12%;
}

.search-box .form-group button i {
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: var(--primary-color);
	background-color: var(--secondary-color);
	border: 1px solid var(--secondary-color);
	border-radius: 50%;
	transition: var(--transition);
}

.search-box .form-group button:hover i {
	background-color: var(--primary-color);
	color: var(--secondary-color);
}

.recent-post .post-item {
	display: flex;
	border-radius: 10px;
	margin-bottom: 30px;
}

.recent-post .post-item:last-child {
	margin-bottom: 0;
}

.recent-post .post-item .post-img {
	width: 35%;
	padding-right: 10px;
}

.recent-post .post-item .post-img a {
	display: inline-block;
}

.recent-post .post-item .post-img a img {
	border-radius: 10px;
}

.recent-post .post-item .post-body {
	width: 65%;
	padding-left: 10px;
}

.recent-post .post-body .post-meta ul {
	list-style-type: none;
	padding: 0;
	margin: 0 0 8px 0;
}

.recent-post .post-body .post-meta ul li {
	font-size: 16px;
	font-weight: 400;
	color: var(--secondary-color);
}

.recent-post .post-body .post-meta ul li a {
	display: inline-block;
	color: inherit;
}

.recent-post .post-body .post-meta ul li a i {
	color: inherit;
	padding-right: 8px;
}

.recent-post .post-body h3 {
	font-size: 16px;
	font-weight: 500;
	padding-right: 20px;
	margin-bottom: 0;
}

.recent-post .post-body h3 a {
	display: inline-block;
	color: inherit;
}

.tags-section {
	margin-bottom: 0;
}

.tags-section ul li {
	margin-bottom: 10px;
}

.tags-section ul li a {
	padding: 12px 18px;
}

/***********************************/
/****  18. Dises Menu Page css  ****/
/***********************************/

.menu-page-section {
    padding: 90px 0;
}

/*************************************/
/****    19. Gallery Page css     ****/
/*************************************/

.gallery-page {
    position: relative;
    padding: 90px 0;
}

.gallery-page .container {
	position: relative;
	z-index: 1;
}

/*********************************/
/****    20. FAQ Page css     ****/
/*********************************/

.faq-section {
	background: url('../images/faq-bg.png') no-repeat bottom right;
	background-size: 250px;
	padding: 100px 0;
}

.faq-accordion .accordion-item {	
	margin-bottom: 30px;
}	

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--dark-background);
	background-color: var(--secondary-color);
	border-radius: 15px !important;
	transition: var(--transition);
	padding: 18px 60px 18px 30px;
}

.accordion-header .accordion-button.collapsed {
	transition: var(--transition);
	background-color: var(--background-color);
}

.accordion-header .accordion-button::after {
	content: '\f106';
	position: absolute;
	top: 50%;
	right: 0;
	font-family: 'Font Awesome 6 Free';
	font-size: 22px;
    font-weight: 900;
    margin-left: 5px;
	color: var(--primary-color);
	transform: translate(-30px, -50%);
	transition: var(--transition);
}

.accordion-header .accordion-button.collapsed::after {
	content: '\f107';
	color: var(--dark-background);
}

.accordion-body {
	padding: 20px 60px 5px 30px;
}

.accordion-body p {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: #808080;	
}

/************************************/
/****    21. Contact Page css     ***/
/************************************/

.send-msg-section {
    position: relative;
    padding: 90px 0;
}

.send-msg-section .container {
	position: relative;
	z-index: 1;
}	

.send-msg-section .section-title {
	text-align: start;
	margin-bottom: 30px;
}

.send-msg-section .send-msg-body {
	padding-right: 20px;
}

.send-msg-section .send-msg-body p {
	font-size: 16px;
	/* margin-bottom: 30px; */
}

.contact-form {
	background-color: var(--background-color);
	border-radius: 30px;
	padding: 40px;
}

.contact-form .form-group .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
	background-color: transparent;
	border-width: 0 0 1px 0;
	border-color: #c1c1c1;
	border-radius: 0;
	padding: 12px 20px 12px 0;
}

.contact-form .form-group.has-error.has-danger .help-block ul {
	margin-bottom: 0;
}

.contact-form .form-group.has-error.has-danger .help-block ul li {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2em;
	text-transform: uppercase;
	color: var(--error-color);
	padding-top: 2px;
}

.contact-form .form-group .form-control:focus,
.contact-form .form-group .form-control:focus-visible,
.contact-form .form-group button.btn-default:focus,
.contact-form .form-group button.btn-default:focus-visible {
	outline: none;
	box-shadow: none;
}

.contact-form .button-group {
	position: relative;
}

.contact-form .button-group #msgSubmit,
.booking-form .button-group #msgSubmit {
	/* position: absolute;
	top: 50%;
	left: 200px;
	bottom: auto;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
	transform: translateY(-50%); */
	font-size: 18px;
	margin-top: 10px;
}

.contact-section {
	background-color: var(--background-color);
	padding: 90px 0;
}

.contact-section .google-map iframe {
	width: 100%;
	height: 330px;
	border-radius: 30px;
}

.contact-detail {
	position: relative;
	background-color: var(--primary-color);
	padding: 40px;
	border-radius: 30px;
	overflow: hidden;
}

.contact-detail::before {
	content: '';
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	background: url("../image/contact/contact-detail-bg.png") no-repeat center center;
	background-size: cover;
	width: 141px;
	height: 153px;
}

.contact-detail * {
	position: relative;
	z-index: 1;
}

.contact-detail h3 {
	font-size: 22px;
	color: var(--dark-background);
	margin-bottom: 20px;
}

.contact-detail ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.contact-detail ul li.list-item {
    padding-bottom: 25px;
    padding-right: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #b5070f;
    display: flex;
    flex-wrap: wrap;
}

.contact-detail ul li.list-item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
.send-msg-section .section-title h2{
    max-width:100%;
    white-space:normal;
    word-break:normal;
}

.contact-detail ul li span.list-icon-img {
	width: 14%;
}

.contact-detail ul li span.list-icon-img img {
	width: 22px;
	height: 25px;
}


.contact-detail ul li span.list-icon-text {
	width: 86%;
}

.contact-detail ul li span.list-icon-text {
	font-size: 16px;
	font-weight: 400;
	color: #777777;
}

.contact-detail ul li span.list-icon-text a {
	display: inline-block;
	color: #777777;
	transition: var(--transition);
}

.contact-detail ul li span.list-icon-text a:hover {
    color: #b5070f;
}

/************************************/
/****    22. Booking Page css     ***/
/************************************/

.advance-booking-page {
	position: relative;
	padding: 100px 0;
}

.advance-booking-page .container {
	position: relative;
	z-index: 1;
}

.booking-content {
	margin-bottom: 40px;
}

.booking-content p {
	font-size: 16px;
	color: var(--accent-color);
}

.booking-form .form-group .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background-color: var(--background-color);
	border: none;
	border-radius: 30px;
	padding: 20px 25px;
}

.booking-form .form-group .form-control:focus,
.booking-form .form-group .form-control:focus-visible ,
.booking-form button.btn-default:focus,
.booking-form button.btn-default:focus-visible {
	outline: none;
	box-shadow: none;
}

.booking-form .form-group.has-error.has-danger .help-block ul {
	margin: 0;
}

.booking-form .form-group.has-error.has-danger .help-block ul li {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--error-color);
	padding-left: 20px;
}

.booking-form .button-group {
	position: relative;
}


/* =========================
Modern Compact Brand Values
========================= */

.brand-values-section{
    padding: 90px 0;

    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #fff7f7 50%,
    #fff1f1 100%
    );
}

/* Small Modern Card */

.brand-value-box{
    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(10px);

    border-radius: 22px;

    padding: 32px 25px;

    text-align: center;

    height: 100%;

    transition: 0.4s ease;

    border: 1px solid rgba(181,7,15,0.08);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.04),
        0 15px 35px rgba(181,7,15,0.05);
}

/* Hover */

.brand-value-box:hover{
    transform: translateY(-8px);

    border-color: rgba(181,7,15,0.20);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07),
        0 20px 40px rgba(181,7,15,0.10);
}

/* Small Modern Icon */

.brand-icon{
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    border-radius: 18px;

    background:
    linear-gradient(
    135deg,
    rgba(181,7,15,0.10),
    rgba(181,7,15,0.03)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s ease;
}

.brand-icon i{
    font-size: 28px;
    color: #b5070f;
}

.brand-value-box:hover .brand-icon{
    transform: scale(1.08);

    box-shadow:
        0 10px 25px rgba(181,7,15,0.12);
}

/* Heading */

.brand-value-box h3{
    font-size: 22px;

    font-weight: 700;

    color: #111111;

    margin-bottom: 12px;
}

/* Text */

.brand-value-box p {
    color: #666666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}
/* Top Edge Gradient */

.brand-value-box{
    position: relative;
    overflow: hidden;
}

/* Premium Top Border */

.brand-value-box::before{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
    linear-gradient(
    90deg,
    #b5070f,
    #ff4d4d
    );
}

/* Responsive */

@media(max-width:991px){

.brand-value-box{
    padding: 28px 22px;
}

}

@media(max-width:767px){

.brand-values-section{
    padding: 70px 0;
}

.brand-icon{
    width: 65px;
    height: 65px;
}

.brand-icon i{
    font-size: 24px;
}

.brand-value-box h3{
    font-size: 20px;
}

.brand-value-box p{
    font-size: 14px;
}

}




/********************************/
/****    23. 404 Page css     ***/
/********************************/

.error-page {
	padding: 100px 0;
}

.error-image {
	text-align: center;
	margin-bottom: 60px;
}

.error-btn {
	text-align: center;
}

/********************************/
/****    24. Responsive css   ***/
/********************************/

@media only screen and (max-width: 991px) {

	#magic-cursor{
		display: none;
	}

	header.main-header {
		padding: 0;
		margin: 0;
		width: 100%;
	}

	/* header.main-header .header-sticky {
		position: relative;
		top: 0;
		padding: 15px 15px;
		margin: 0;
	} */

	/* header.main-header .header-sticky.active {
		padding: 15px 0;
	} */

	.navbar .container {
		flex-wrap: nowrap;
		gap: 10px;
	}

	.navbar-brand,
	.navbar-toggle {
		flex-shrink: 0;
	}

	.navbar-brand img {
		/* max-width: 90px; */
    max-width: 125px;
	}

	.navbar-toggle {
        display: block;
	}

	.main-menu {
		display: none !important;
	}

    .responsive-menu {
        display: block;
        position: relative;
        width: 100%;
		margin-top: 0;
        z-index: 1000;
    }
	
	/* .responsive-menu .slicknav_menu {
		margin-top: 20px;
		border-radius: 20px;
	} */

	header.main-header .header-sticky.active .responsive-menu .slicknav_menu {
		border-radius: 0;
	} 

	.responsive-menu .slicknav_menu {
		border-radius: 10px;
	}

	.section-title {
		margin-bottom: 40px;
	}
	
	.section-title h2 {
		font-size: 36px;
	}

	.hero {
		margin-top: 0;
	}

	.hero .section-title h1 {
		font-size: 50px;
	}

	.hero-content p {
		max-width: 650px;
	}

	.home-about {
		padding: 90px 0 60px;
	}

	.home-about-left {
		text-align: center;
	}

	.home-about-left .home-about-img {
		width: 90%;
	}

	.home-about-left .home-about-since {
		width: 180px;
		height: 180px;
		transform: translate(10px, -70px);
	}

	.home-about-since h3 {
		font-size: 22px;
	}

	.home-about-since h2 {
		font-size: 42px;
	}

	.home-about-right {
		padding-top: 40px;
		padding-left: 0;
	}

	.why-choose-us {
		padding: 60px 0;
	}
	
	.why-choose-us::before, 
	.about-gallery::before {
		width: 200px;
		height: 340px;
	}

	.why-choose-us .section-title h2 {
		max-width: 450px;
	}
	
	.wcu-img-box {
		padding: 30px 20px 20px;
		border-radius: 20px;
	}
	
	.image-box figure {
		width: 60%;
		margin: 0 auto 20px;
	}
	
	.image-box figure::before {
		width: 60px;
		height: 60px;
		transform: translate(5px, -10px);
	}
	
	.image-box img {
		width: 70px;
		height: 70px;
	}
	
	.image-body h3 {
		font-size: 20px;
	}

	.most-popular-section,
	.menu-page-section  {
		background-size: 350px;
		padding: 60px 0 35px;
	}
	
	.menu-dises-nav {
		border-radius: 20px;
		padding: 20px;
		margin-bottom: 30px;
	}

	.menu-dises-nav ul {
		text-align: center;
	}
	
	.menu-dises-nav ul li, 
	.category-section ul li{
		font-size: 16px;	
	}
	
	.menu-dises-nav ul li a img, 
	.category-section ul li img {
		width: 30px;
		height: 18px;
		padding-right: 10px;
	}
	
	.menu-item-body h3 {
		font-size: 20px;
	}

	.food-pricing {
		padding: 50px 0;
	}
	
	.pricing-list {
		padding: 30px;		
		margin-bottom: 30px;
	}
	
	.pricing-list-item ul li {
		font-size: 22px;
	}

	.food-bar-items {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	.food-bar-1 {	
		width: 48%;
		margin-bottom: 0;	
	}
	
	.food-bar-details {
		padding: 35px 30px;
	}
	
	.food-bar-2 {
		width: 48%;	
	}

	.restaurant-inforamtion {
		padding: 60px 0 30px;
	}
	
	.restaurant-info-box {
		padding: 50px 40px 30px;
		margin-bottom: 40px;
	}
	
	.restaurant-info-box .info-box-content ,
	.info-box-img {
		text-align: center;
		width: 100%;
	}
		
	.info-box-content .section-title h2 {
		text-align: center;
	}

	.restaurant-info-box p {
		width: 100%;
	}

	.info-btn .btn-default {
		margin-right: 20px;
	}

	.info-box-img {
		margin-top: 30px;
	}
	
	.counter-bar-body h3 {
		font-size: 36px;
	}

	.testimonials-section {
		padding: 60px 0 0;
	}
	
	.testimonials-section::before {
		width: 170px;
		height: 430px;
	}

	.events-post {
		padding: 60px 0 30px;
	}

	.scrolling-content span {
		font-size: 20px;
	}

	/* .footer-mega {
		padding: 60px 0 20px;
	} */

	.footer-about {
		padding-right: 0;
		text-align: center;
	}

	.footer-content {
		max-width: 550px;
		margin: 0 auto 40px;
	}

	.footer-content .footer-social-link {
		margin-top: 20px;
		justify-content: center;
	}

	.footer-links h2,
	.footer-contact h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-subscribe-section {		
		border-radius: 30px;
		margin: 40px 0 30px;
	}

	.footer-subscribe-title h2 {
		font-size: 22px;	
		padding-left: 0;
		padding-bottom: 20px;
		text-align: center;
	}

	.footer-subscribe-form {	
		margin-left: 0;
	}

	

	.page-header-box h1 {
		font-size: 46px;
	}

	.about-gallery {
		padding: 60px 0;
	}
	
	/* .about-photo-gallery-entry .photo-gallery-item {
		width: calc(50% - 10px);
	} */
	
	.about-photo-gallery-entry .photo-gallery-item:nth-of-type(2n + 2) {
		margin-right: 0 !important;
	}

	.about-photo-gallery-entry .photo-gallery-item:nth-of-type(3n + 3) {
		margin-right: 20px;
	}

	.always-quality {
		background-size: 350px;
		padding: 60px 0 30px;
	}
	
	.always-quality::before {		
		width: 150px;
		height: 90px;
	}

	.sponsors-section {
		padding: 60px 0;
	}
	
	.sponsors-section .sponsors-logo .scrolling-content span {
		padding-right: 60px;
	}
	
	.sponsors-section .restaurant-info-box {
		margin-top: 80px;
	}

	.post-section {
		padding: 60px 0;
	}

	.blog-detail-page {
		padding: 60px 0;	 	
	}	
	
	.post-content .post-body blockquote {
		font-size: 18px;
		padding: 20px 20px 20px 110px;
	}

	.post-footer {
		margin-bottom: 40px;
	}

	.post-footer .footer-tag-links {
		width: 65%;		
	}
	
	.post-footer .footer-tag-links h3 {
		font-size: 26px;
	}
	
	.post-footer .footer-tag-links ul li a,
	.tags-section ul li a {
		padding: 10px 15px;	
	}

	.post-footer .post-social-link {
		width: 35%;		
	}
	
	.post-footer .post-social-link a i {
		font-size: 20px;
		width: 40px;
		height: 40px;	
	}
	
	.search-box h3,
	.category-section h3,
	.recent-post-section h3,
	.tags-section h3 {
		font-size: 22px;
	}
	
	.search-box .form-group input {
		width: 90%;
	}	
	
	.search-box .form-group button {	
		width: 6%;
	}
	
	.recent-post .post-item .post-img {
		width: 25%;
	}
	
	.recent-post .post-item .post-body {
		width: 75%;
	}	
	
	.recent-post .post-body h3 {
		padding-right: 0;
	}

	.gallery-page {
		padding: 60px 0 30px;
	}

	.faq-section {
		background-size: 200px;
		padding: 60px 0;
	}
	
	.accordion-header .accordion-button::after {
		font-size: 20px;
	}

	.send-msg-section {
		padding: 60px 0;
	}
	
	.send-msg-section .send-msg-body {
		padding-right: 0;
		padding-bottom: 40px;
	}
	
	.contact-section {
		padding: 60px 0;
	}
	
	.contact-section .google-map iframe {
		height: 400px;
	}
	
	.contact-detail {
		margin-bottom: 30px;	
	}

	.contact-detail ul li span.list-icon-img {
		width: 6%;
	}
	
	.contact-detail ul li span.list-icon-text {
		width: 94%;
	}

	.advance-booking-page {
		padding: 60px 0;
	}
	
	.booking-content {
		margin-bottom: 30px;
	}

	.booking-form .form-group .form-control {
		padding: 15px 20px;
	}

	.error-page {
		padding: 60px 0;
	}
	
	.error-image {		
		margin-bottom: 40px;
	}	
}	

@media only screen and (max-width: 767px) {

	header.main-header {
		margin: 0;
		width: 100%;
	}

	/* header.main-header .header-sticky {
		position: relative;
		top: 0;
		padding: 12px 12px;
    	margin: 0;	
	} */

	.navbar .container {
		flex-wrap: nowrap;
		gap: 10px;
	}

	.navbar-brand,
	.navbar-toggle {
		flex-shrink: 0;
	}

	.navbar-brand img {
		/* max-width: 75px; */
		max-width: 115px;
	}

	.main-menu {
		display: none !important;
	}
	
	.slicknav_arrow:after {
        right: -15px;
        font-size: 14px;
        margin-top: -10.5px;
    }

    .slicknav_btn {
        width: 40px;
        height: 38px;
        padding: 6px 0 0;
    }

	/* .responsive-menu .slicknav_menu {
		margin-top: 15px;
	} */

	.btn-default {
		font-size: 14px;
		padding: 14px 50px 14px 15px;
	}

	.btn-default::before {
		font-size: 15px;		
		width: 32px;
		height: 32px;
	}
	
	.section-title h2 {
		font-size: 30px;
	}

	.hero .section-title h1 {
		font-size: 38px;
	}

	.home-about {
		padding: 60px 0 50px;
	}

	.home-about-left .home-about-img {
		width: 100%;
	}

	.home-about-left .home-about-since {
		border-width: 6px;
		width: 105px;
		height: 105px;
		transform: translate(12px, -35px);
	}

	.home-about-since h3 {
		font-size: 14px;
		margin-bottom: 5px;
	}

	.home-about-since h2 {
		font-size: 28px;
	}

	.home-about-right {
		padding-top: 30px;
		padding-left: 0;
	}

	.about-icon-box .icon-box {
		width: 48%;
		padding: 20px;
		text-align: center;
	}

	.icon-box .icon-box-content h3 {
		font-size: 16px;
	}

	.icon-box .icon-box-content p {
		font-size: 14px;
	}

	.why-choose-us {
		padding: 50px 0;
	}
	
	.why-choose-us::before, 
	.about-gallery::before {
		width: 150px;
		height: 250px;
	}
	
	.wcu-img-box {
		padding: 40px 30px 30px;
		border-radius: 20px;
	}
	
	.image-box figure {
		width: 50%;
		margin: 0 auto 20px;
	}
	
	.image-box figure::before {	
		transform: translate(20px, -9px);
	}

	.most-popular-section,
	.menu-page-section  {
		background-size: 120px;
		padding: 50px 0 25px;
	}
	
	.menu-dises-nav {
		border-radius: 30px;
		padding: 30px ;
		margin-bottom: 30px;
	}
	
	.menu-item-body h3 {
		font-size: 18px;
	}

	.food-pricing {
		padding: 60px 0;
	}

	.pricing-list {
		padding: 30px 20px;
	}
	
	.pricing-list-item ul li {
		font-size: 20px;
	}

	.pricing-list-item p {
		font-size: 14px;
	}

	.food-bar-1 {	
		width: 100%;
		margin-bottom: 30px;	
	}
	
	.food-bar-2 {
		width: 100%;	
	}

	.restaurant-inforamtion {
		padding: 60px 0 30px;
	}
	
	.restaurant-info-box {
		padding: 35px 35px 30px;
		margin-bottom: 30px;
	}

	.info-box-content .section-title h2 {
		text-align: center;
		margin-bottom: 20px;
	}

	.info-btn .btn-default {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.counter-bar,
	.counter-bar::before {
		border-radius: 20px;
	}

	.counter-bar-img img {
		height: 100px;
		object-fit: cover;
	}
	
	.counter-bar-body h3 {
		font-size: 30px;
	}

	.testimonials-section {
		padding: 50px 0 0;
	}
	
	.testimonials-section::before {
		display: none;
	}

	.testimonials-section .section-title,
	.testimonial-slider-wrapper .swiper-wrapper{
		text-align: center;
	}

	.testimonial-body {
		padding-right: 0;
	}

	.testimonial-footer h3 {
		font-size: 20px;
	}

	.swiper-pagination {
		left: 50%;
		right: auto;
	}

	.swiper-pagination .swiper-button-prev {
		left: -45px;
	}

	.swiper-pagination .swiper-button-next {
		right: -45px;
	}

	.testimonial-img {
		margin-top: 40px;
		text-align: center;
	}

	.testimonial-img img {
		max-width: 50%;
	}

	.events-post {
		padding: 50px 0 20px;
	}

	.post-header h3 {
		font-size: 20px;
		margin-top: 15px;
	}

	.scrolling-content span {
		font-size: 18px;
	}

	/* .footer-mega {
		padding: 40px 0 20px;
	} */

	.footer-content {		
		margin: 0 auto 30px;
	}

	.footer-social-link a {
		width: 40px;	
		height: 40px;
	}

	.footer-social-link a i {
		font-size: 18px;
	}

	/* .footer-links {
		padding-bottom: 20px;
	} */

	.footer-links h2,
	.footer-contact h2 {
		font-size: 18px;
	}

	.footer-contact ul li .icon-list-icon i {
		width: 28px;
    	height: 28px;
    	font-size: 14px;
	}

	.footer-subscribe-section {		
		border-radius: 10px;
		margin: 30px 0 40px;
	}

	.footer-subscribe-title h2 {
		font-size: 20px;
	}

	.footer-subscribe-form {	
		border-radius: 10px;
	}

	.footer-subscribe-form .form-group .form-control {
		border-radius: 10px 10px 0 0;
	}

	.footer-subscribe-form .form-btn {
		border-radius: 0 0 10px 10px;
		padding: 10px;
	}

	.footer-copyright p {
		text-align: center;
	}

	.footer-copyright .footer-btn {
		position: fixed;
		top: auto;
		right: -100px;
		bottom: 20px;
		z-index: 10;
		transition: all 0.3s ease-in-out;
	}

	.footer-copyright .footer-btn.active {
		right: 20px;
	}

	.footer-copyright .footer-btn span {
		display: none;
	}

	.footer-copyright .footer-btn i {
		color: var(--primary-color);
		background-color: var(--secondary-color);
		border-radius: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding-left: 0;
		transition: all 0.3s;		
	}

	.footer-copyright .footer-btn i:hover {
		color: var(--secondary-color);
		background-color: var(--primary-color);
	}

	.page-header {
		padding: 150px 0 60px;
	}

	.page-header-box h1 {
		font-size: 34px;
	}

	.about-gallery {
		padding: 50px 0;
	}
	
	.about-photo-gallery-entry .photo-gallery-item:nth-of-type(3n + 3) {
		margin-right: 20px;
	}

	.photo-gallery-item a figure img {
		border-radius: 20px;
	}

	.always-quality {
		background-size: 150px;
		padding: 50px 0 20px;
	}
	
	.always-quality::before {		
		width: 100px;
		height: 60px;
	}
	
	.team-card {	
		margin-bottom: 20px;
	}

	.sponsors-section {
		padding: 50px 0;
	}
	
	.sponsors-section .sponsors-logo .scrolling-content span {
		padding-right: 40px;
	}
	
	.sponsors-section .restaurant-info-box {
		margin-top: 60px;
	}

	.post-section {
		padding: 50px 0;
	}

	.blog-detail-page {
		padding: 50px 0;
	}

	.post-content .post-body blockquote {
		padding: 60px 20px 20px;
	}

	.post-content .post-body blockquote::before {
		top: 20px;
		left: 20px;
		width: 40px;
		height: 29px;
	}

	.post-content .post-body p.post-image-section img {
		border-radius: 20px;	
	}

	.post-footer .footer-tag-links,
	.post-footer .post-social-link {
		width: 100%;
	}

	.post-footer .footer-tag-links h3 {
		font-size: 22px;
	}

	.post-footer .footer-tag-links ul li, 
	.tags-section ul li {
		margin-right: 5px;
	}

	.post-footer .footer-tag-links ul li a, 
	.tags-section ul li a {
		font-size: 14px;
		padding: 8px 12px;
		border-radius: 20px;
	}

	.post-footer .post-social-link  {
		padding-top: 20px;
		text-align: start;
	}

	.search-box .form-group input {
		width: 80%;
	}

	.search-box .form-group button {
		width: 13%;
	}

	.recent-post .post-item {
		margin-bottom: 20px;
	}

	.recent-post .post-item .post-img {
		width: 40%;
	}

	.recent-post .post-item .post-body {
		width: 60%;
		padding-left: 5px;
	}

	.recent-post .post-body .post-meta ul li {
		font-size: 14px;
	}

	.recent-post .post-body h3 {
		font-size: 15px;
	}

	.gallery-page {
		padding: 50px 0 20px;
	}

	.faq-section {
		background-size: 150px;
		padding: 50px 0;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 25px;
	}

	.accordion-header .accordion-button {
		font-size: 18px;
		padding: 15px 35px 15px 20px;
	}

	.accordion-header .accordion-button::after {
		font-size: 18px;
		transform: translate(-16px, -50%);
	}

	.accordion-body {
		padding: 15px 30px 0px 20px;
	}

	.send-msg-section {
		padding: 50px 0;
	}

	.contact-form {
		padding: 30px;
	}

	.contact-form .button-group #msgSubmit,
	.booking-form .button-group #msgSubmit {
		/* left: 180px; */
		font-size: 16px;
	}
	
	.contact-section {
		padding: 50px 0;
	}
	
	.contact-section .google-map iframe {
		height: 300px;
	}
	
	.contact-detail {
		padding: 40px;
		margin-bottom: 30px;	
	}

	.contact-detail h3 {
		font-size: 20px;
	}

	.contact-detail ul li span.list-icon-img {
		width: 14%;
	}
	
	.contact-detail ul li span.list-icon-text {
		width: 86%;
	}

	.advance-booking-page {
		padding: 50px 0;
	}
	
	.booking-form .form-group .form-control {
		border-radius: 20px;
		padding: 12px 20px;
	}

	.error-page {
		padding: 50px 0;
	}
	
	.error-image {		
		margin-bottom: 30px;
	}
}



/* extra */


/* Smooth Header Shadow */



/* Elegant Nav Hover */

.navbar-nav .nav-link{
    position: relative;

    transition: 0.3s ease;
}

/* Small Underline Animation */

.navbar-nav .nav-link::after{
    content: "";

    position: absolute;

    left: 50%;
    bottom: -2px;

    width: 0;
    height: 2px;

    background: #b5070f;

    transform: translateX(-50%);

    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after{
    width: 60%;
}



/* Contact Button Enhancement */

.highlighted-menu .btn-default{
    transition: 0.3s ease;

    box-shadow:
        0 6px 18px rgba(181,7,15,0.15);
}

.highlighted-menu .btn-default:hover{
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(181,7,15,0.22);
}


.arabic-hero{
    font-size: 26px;

    font-weight: 600;

    color: #ffffff;

    direction: rtl;

    margin-top: 10px;

    letter-spacing: 1px;

    opacity: 0.92;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.35);
}






.arabic-vm{
    color: #b5070f;

    font-size: 22px;

    font-weight: 700;

    direction: rtl;

    margin-top: -5px;
    margin-bottom: 20px;
}

.arabic-desc{
    direction: rtl;

    color: #777777;

    margin-top: 20px;

    line-height: 1.9;
}

.arabic-mission{
    direction: rtl;

    margin-top: 30px;

    opacity: 0.9;
}

.arabic-mission li{
    color: #777777;

    margin-bottom: 14px;

    line-height: 1.8;
}

.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(255,255,255,0.6);
    opacity: 0.8;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

.hero-slider .swiper-pagination {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
    width: auto;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #b5070f;
    border-color: #ffffff;
    opacity: 1;
}
.home-about-img figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-about-img figure{
    height: 100%;
}
.home-about-left{
    height: 100%;
}

.home-about-img{
    height: 100%;
}




/* Home page Responsive */

/* ipad pro start*/

@media (max-width:1199px){
.hero-slide {
    width: 100%;
    height: auto;
    min-height: 560px;
}
.hero {
    min-height: 40vh;
}
 .hero-slider .section-title h1 {
        font-size: 45px;
    }

	.home-about-right .section-title h2 {
        font-size: 30px;
		line-height: 1.1;
    }
	.home-about {
    padding: 80px 0;
}
.home-about-img figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-about-img figure{
    height: 100%;
}
.home-about-left{
    height: 100%;
}

.home-about-img{
    height: 100%;
}

.why-choose-us {
    padding: 80px 0;
}

.why-choose-us .section-title h2{
	font-size: 45px;
	line-height: 1.1;
}

.wcu-img-box {
    border-radius: 30px;
    text-align: center;
    padding: 45px 30px 45px;
}

.vision-mission-section {
    padding: 80px 0;
}

.vision-mission-section .section-title h2{
	font-size: 45px;
	line-height: 1.1;
}
.vision-box {
    padding: 50px 35px;
}

.testimonials-section {
    padding: 80px 0;
}
.testimonials-section .section-title h2{
	font-size: 45px;
	line-height: 1.1;
}
.footer-menu .iframe{
	width:100%;
}
.why-choose-us .section-title h2 {
        max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

	.brand-values-section {
    padding: 80px 0;
}
.brand-values-section .section-title h2 {
	max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
		line-height: 1.1;
}
.brand-tagline h2 {
    font-size: 45px;
    line-height: 1.1;
}


}


/* ipad pro ends */


/* ipad start */

@media (max-width:991px){

.hero-slide {
    width: 100%;
    height: auto;
    min-height: 450px;
}
.hero {
    min-height: 30vh;
}
.hero-slider .section-title h1 {
        font-size: 35px;
    }

	.hero-content p{
		line-height: 1.5;
	}

	.slicknav_btn {
    background: #d1030f;
}.slicknav_icon .slicknav_icon-bar {
    height: 4px;
    width: 20px;
}
.slicknav_btn {
    width: 40px;
    height: 40px;
}
.slicknav_nav li a {
    color: #ffffff;
}
.slicknav_menu {
    background: #d1030f;
}

.btn-default {
    padding: 12px 55px 12px 20px;
}
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
}
.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}
.home-about {
    padding: 60px 0;
}
.home-about-left .home-about-img {
    width: 60%;
}
.home-about-right .section-title h2 {
    font-size: 30px;
    line-height: 1.1;
}
.why-choose-us {
    padding: 60px 0;
}
.why-choose-us .section-title h2 {
    font-size: 30px;
    line-height: 1.1;
	width: 100%;
}
.why-choose-us .section-title h2 {
        max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

	.image-body p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.4;
}
.wcu-img-box {
    border-radius: 30px;
    text-align: center;
    padding: 38px 30px 38px;
}

.vision-mission-section {
    padding: 60px 0;
}

.vision-mission-section .section-title h2 {
	max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
		font-size: 30px;
		line-height: 1.1;
}
.vision-box h2 {
    font-size: 30px;
}

.testimonials-section {
    padding: 60px 0;
}

.testimonials-section .section-title h2 {
	max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
		font-size: 30px;
		line-height: 1.1;
}
.testimonial-rating {
    margin-bottom: 20px;
}
.footer-menu .iframe{
	width:100%;
}
.footer-logo img {
    margin: 0;
}
.footer-content .footer-social-link {
    margin-top: 10px;
    justify-content: left;
}
.footer-social-link a {
    width: 38px;
    height: 38px;
}
.foo{
	margin: 0;
}

.brand-values-section {
    padding: 60px 0;
}
.section-title h2 {
    font-size: 30px;
}
.brand-values-section .section-title h2 {
	max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
		line-height: 1.1;
}
.brand-tagline h2 {
    font-size: 30px;
    line-height: 1.1;
}
.footer-logo img {
    max-width: 230px;
}

}

/* ipad ends */

/* mobile start */

@media (max-width:767px){
.hero-slider .section-title h1 {
        font-size: 25px;
    }

	.hero-content p{
		line-height: 1.4;
	}
	.hero-content p {
    margin: 0 auto 22px;
}
.section-title h3 {
    font-size: 12px;
}
.btn-default {
    padding: 10px 55px 10px 11px;
}
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
    display: none;
}
.slicknav_icon .slicknav_icon-bar {
    margin: 5px auto;
}
.slicknav_icon .slicknav_icon-bar {
    height: 3px;
}
.hero-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
}
.home-about {
    padding: 50px 0;
}
.home-about-right .section-title h2 {
    font-size: 23px;
    line-height: 1.1;
}
.section-title h3 {
    margin-bottom: 10px;
}
.home-about-right p {
    margin-bottom: 15px;
    line-height: 1.6;
}
.why-choose-us {
    padding: 50px 0;
}
.why-choose-us .section-title h2 {
    font-size: 23px;
    line-height: 1.1;
	width: 100%;
}
.why-choose-us .section-title h2 {
        max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
	.image-body p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.3;
}
.wcu-img-box {
    border-radius: 30px;
    text-align: center;
    padding: 30px 30px 30px;
}
.vision-mission-section {
    padding: 50px 0;
}
.vision-mission-section .section-title h2 {
	max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
		font-size: 23px;
		line-height: 1.1;
}
.vision-box h2 {
    font-size: 23px;
}
.vision-box ul li::before {
    min-width: 30px;
    width: 30px;
    height: 30px;
}
.vm-icon {
    width: 80px;
    height: 80px;
}
.vision-box p {
    line-height: 1.5;
    margin-bottom: 0;
}
.vision-box ul li {
    line-height: 1.5;
}
.testimonials-section {
    padding: 50px 0;
}
.testimonials-section .section-title h2 {
	max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
		font-size: 23px;
		line-height: 1.1;
}
.testimonial-slide {
    padding: 40px 25px;
}
.testimonial-body p {
    color: #edecec;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-bottom: 23px;
}
.testimonial-footer h3 {
    font-size: 16px;
}
.footer-social-link a {
    width: 35px;
    height: 35px;
}
.footer-links {
    padding-bottom: 28px;
}
.footer-contact {
    margin-bottom: 28px;
}
.footer-links ul li {
    margin-bottom: 7px;
}
.footer-contact ul li {
    margin-bottom: 7px;
}
.foott{
	margin: 0;
}
.footer-social-link a i {
    font-size: 16px;
}
.footer-copyright p {
    color: #ffffff !important;
    font-size: 15px;
    line-height: 1.3;
}
/* .footer-logo img {
    max-width: 150px;
} */
 .footer-logo img {
    max-width: 170px;
}
.home-about-left .home-about-img {
    width: 70%;
}
.brand-values-section {
    padding: 50px 0;
}
.section-title h2 {
    font-size: 23px;
}
.brand-values-section .section-title h2 {
	max-width: 100% !important;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
		line-height: 1.1;
}
.brand-tagline h2 {
    font-size: 23px;
    line-height: 1.1;
}
.compact-brand-statement {
    padding: 20px 0;
}
.brand-tagline {
    padding: 25px 16px;
}
.home-about {
    padding: 50px 0!important;
}
.abt{
	margin-top: 20px;
}
.loading-container, .loading {
    height: 180px;
    position: relative;
    width: 180px;
    border-radius: 100%;
}
#loading-icon img {
    /* width: 128px; */
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
}
	

}

/* mobile end */



/* =========================
Full Width About Banner
========================= */

.about-full-banner {
    width: 100%;
    overflow: hidden;
    border-radius: 35px;
    position: relative;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08),
        0 25px 60px rgba(181,7,15,0.08);
}

/* Image */

.about-full-banner img{
    width: 100%;

    min-width: 100%;

    height: 450px;

    object-fit: cover;

    display: block;
}

/* Responsive */

@media(max-width:991px){

.about-full-banner img{
    height: 350px;
}

}

@media(max-width:767px){

.about-full-banner{
    border-radius: 22px;
}

.about-full-banner img{
    height: 260px;
}

}



/* about main page responsive starts*/

/* ipad pro start */

@media (max-width:1199px){

.home-about {
    padding: 80px 0;
}

.page-header {
    padding: 40px 0;
}
.main-about .section-title h2 {
    font-size: 45px;
    line-height: 1.1;
}
.page-header-box h1 {
    font-size: 40px;
    margin-bottom: 3px;
}


}

/* ipad pro ends */


/* ipad start */

@media (max-width:991px){
.main-about .section-title h2 {
    font-size: 30px;
    line-height: 1.1;
}
.home-about {
    padding: 60px 0;
}
.home-about-right {
    padding-top: 0px;
    padding-left: 0;
}
.page-header-box h1 {
    font-size: 35px;
    margin-bottom: 1px;
}
.page-header {
    padding: 30px 0;
}
.about-full-banner img {
    height: 320px;
}

}

/* ipad ends */


/* mobile start */

@media (max-width:767px){

.main-about .section-title h2 {
    font-size: 23px;
    line-height: 1.1;
}
.about-full-banner {
    margin-bottom: 35px;
}
.page-header-box h1 {
    font-size: 27px;
    margin-bottom: 0px;
}
.page-header {
    padding: 25px 0;
}

}


/* mobile ends */


/* about main page responsive ends*/



/* menu */

/* ===================================
   HINCHI MENU SECTION
=================================== */

.hinchi-menu-section {
    padding: 90px 0;
    background: #faf7f2;
}

/* ===================================
   HEADER
=================================== */

.hinchi-menu-header{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
}

.hinchi-menu-header span{
    display:inline-block;
    color:#d62828;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.hinchi-menu-header h2 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 5px;
    color: #111;
}

.hinchi-menu-header p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.5;
    font-size: 18px;
}

/* ===================================
   FILTER BUTTONS
=================================== */

.hinchi-menu-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-bottom:60px;
}

.hinchi-tab{
    border:none;
    outline:none;
    background:#fff;
    color:#111;
    padding:14px 24px;
    border-radius:50px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.hinchi-tab:hover,
.hinchi-tab.active{
    background:#d62828;
    color:#fff;
}

/* ===================================
   MENU GRID
=================================== */

.hinchi-menu-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* ===================================
   CARD
=================================== */

.hinchi-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

    display:flex;
    flex-direction:column;
}

.hinchi-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.12);
}

.hinchi-card:hover .hinchi-card-image img{
    transform:scale(1.05);
}
/* ===================================
   IMAGE
=================================== */

.hinchi-card-image{
    max-width:100%;
    /* min-height:250px; */
    height:auto;
    overflow:hidden;
    background:#f5f5f5;
    border-radius:20px 20px 0 0;
	object-fit:cover;
}

.hinchi-card-image img{
    max-width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;

    /* smooth animation */
    transition:transform .8s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
}

/* smooth zoom */

.hinchi-card:hover .hinchi-card-image img{
    transform:scale(1.08);
}

/* ===================================
   CONTENT
=================================== */

.hinchi-card-content {
    padding: 18px;
    flex: 1;
}

.hinchi-card-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    color: #d62828;
}

.hinchi-card-content p {
    margin: 0;
    color: #666;
    line-height: 1.2;
    font-size: 16px;
}

/* ===================================
   FILTER HIDE
=================================== */

.hinchi-hidden{
    display:none !important;
}


/* ===================================
   MOBILE TOGGLE
=================================== */

.hinchi-menu-toggle{
    display:none;
}

.hinchi-menu-toggle button{
    width:100%;
    border:none;
    background:#d62828;
    color:#fff;
    padding:15px 20px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

/* hidden menu */

.hinchi-menu-tabs.mobile-open{
    display:flex !important;
}




/* ===================================
   1199px
=================================== */

@media(max-width:1199px){

    .hinchi-menu-section {
    padding: 80px 0;
}

    .hinchi-menu-header h2 {
    font-size: 45px;
    line-height: 1.2;
}

    .hinchi-menu-grid{
        grid-template-columns:repeat(3,1fr);
    }

}



/* ===================================
   991px
=================================== */

@media(max-width:991px){

    .hinchi-menu-section {
    padding: 60px 0;
}

    .hinchi-menu-header {
    margin-bottom: 16px;
}

    .hinchi-menu-header h2 {
    font-size: 30px;
    line-height: 1.2;
}

    .hinchi-menu-header p{
        font-size:16px;
    }

    /* SHOW HAMBURGER */

    .hinchi-menu-toggle{
        display:block;
        margin-bottom:20px;
    }

    /* HIDE MENU INITIALLY */

    .hinchi-menu-tabs{
        display:none;
        flex-direction:column;
        gap:10px;
        margin-bottom:30px;
    }

    .hinchi-tab{
        width:100%;
        text-align:left;
        border-radius:10px;
    }

    .hinchi-menu-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

   

    .hinchi-card-content h3{
        font-size:20px;
    }

}


/* ===================================
   767px
=================================== */

@media(max-width:767px){

    .hinchi-menu-section {
    padding: 50px 0;
}

    .hinchi-menu-header {
    margin-bottom: 20px;
}

    .hinchi-menu-header h2 {
    font-size: 23px;
    line-height: 1.2;
}

    .hinchi-menu-header p {
    font-size: 12px;
    line-height: 1.4;
}

    .hinchi-menu-toggle{
        display:block;
        margin-bottom:20px;
    }

    .hinchi-menu-tabs{
        display:none;
        flex-direction:column;
        gap:10px;
        margin-bottom:25px;
    }

    .hinchi-tab{
        width:100%;
        text-align:left;
        padding:12px 16px;
        border-radius:10px;
    }

    .hinchi-menu-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

  

    .hinchi-card-content {
    padding: 10px;
}

    .hinchi-card-content h3{
        font-size:18px;
    }

    .hinchi-card-content p {
    font-size: 14px;
    line-height: 1.4;
}


}

.hinchi-card{
    position:relative;
}
.hinchi-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 10;
    background: #d62828;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 5px 15px rgba(214,40,40,.3);
}



/* ==================================
   ORDER CTA
================================== */

.hinchi-order-cta {
    padding: 90px 0;
    background: #111;
    overflow: hidden;
}

.hinchi-order-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hinchi-order-content{
    flex:1;
}

.hinchi-order-tag{
    display:inline-block;

    padding:8px 18px;

    background:rgba(214,40,40,.15);

    color:#ff4d4d;

    border-radius:30px;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.hinchi-order-content h2 {
    color: #fff;
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hinchi-order-content p {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
}

.hinchi-order-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
}

.hinchi-order-btn{
    text-decoration:none;
    padding:15px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hinchi-order-btn.primary{
    background:#d62828;
    color:#fff;
}

.hinchi-order-btn.primary:hover{
    transform:translateY(-3px);
}

.hinchi-order-btn.secondary{
    background:#fff;
    color:#111;
}

.hinchi-order-btn.secondary:hover{
    transform:translateY(-3px);
}

.hinchi-order-image{
    flex:1;
    text-align:center;
}

.hinchi-order-image img{
    max-width:100%;
    width:520px;
}

.hinchi-order-image img{
    animation:
        bikeRideIn 2.5s forwards,
        bikeFloat 3s ease-in-out infinite 2.5s;
}

@keyframes bikeFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

@media(max-width:991px){

    .hinchi-order-wrap{
        flex-direction:column;
        text-align:center;
    }

    .hinchi-order-content h2 {
    font-size: 30px;
    line-height: 1.2;
}

    .hinchi-order-content p {
    margin: auto;
    line-height: 1.5;
}

    .hinchi-order-buttons{
        justify-content:center;
    }
	.hinchi-order-buttons {
    margin-top: 25px;
}

}

@media(max-width:767px){

    .hinchi-order-cta{
        padding:50px 0;
    }

    .hinchi-order-content h2 {
    font-size: 23px;
    line-height: 1.2;
}

    .hinchi-order-content p {
    font-size: 12px;
    line-height: 1.4;
}

    .hinchi-order-buttons{
        flex-direction:column;
    }

    .hinchi-order-btn{
        width:100%;
        text-align:center;
    }
.hinchi-order-wrap {
    gap: 20px;
}
.hinchi-order-content h2 {
    margin-bottom: 13px;
}


}


/* MOTORCYCLE START POSITION */

.hinchi-order-image{
    opacity:0;
    transform:translateX(-600px);
}

/* RUN ANIMATION */

.hinchi-order-image.animate{
    animation:bikeRideIn 2.5s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes bikeRideIn{

    0%{
        opacity:0;
        transform:translateX(-800px);
    }

    60%{
        opacity:1;
        transform:translateX(40px);
    }

    80%{
        transform:translateX(-10px);
    }

    100%{
        opacity:1;
        transform:translateX(0);
    }

}

.whatsmenu {
    display: inline-block;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1em;
    color: var(--accent-color);
    text-align: start;
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 16px 60px 16px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 100px;
    transition: var(--transition);
    overflow: hidden;
}



/* Menu page Responsive  starts*/


/* ipad pro starts */

@media (max-width:1199px){

.hinchi-order-cta {
    padding: 80px 0;
}
.hinchi-order-wrap {
    gap: 30px;
}
 .hinchi-order-image img{
        max-width:450px;
    }

}

/* ipad pro ends */


/* ipad starts */

@media (max-width:991px){

 .hinchi-order-image img{
        max-width:450px;
    }
	.hinchi-order-cta {
    padding: 60px 0;
}
.hinchi-order-wrap {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

    .hinchi-order-image{
        order:-1;
    }

    .hinchi-order-image img{
        max-width:380px;
    }

    .hinchi-order-image{
    opacity:1;
    transform:none;
}

}

/* ipad ends */

/* mobile	starts */


@media(max-width:767px){
	.hinchi-order-cta {
    padding: 50px 0;
}
 .hinchi-order-wrap{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .hinchi-order-image{
        order:-1;
        opacity:1;
        transform:none;
    }

    .hinchi-order-image img{
        max-width:280px;
        width:100%;
        height:auto;
        margin:auto;
        display:block;
    }
	.hinchi-order-tag {
    font-size: 12px;
}

.whatsmenu {
    font-size: 15px;
}

}


/* mobile ends */


/* Menu page Responsive  ends*/


/* ===================================
   PREMIUM FLOATING ORDER BUTTON
=================================== */

.hinchi-order-pill-premium {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 12px;
    min-width: 210px;
    text-decoration: none;
    border-radius: 100px;
    background: linear-gradient(
        135deg,
        #d62828,
        #ff5a36
    );
    box-shadow: 0 15px 40px rgba(214,40,40,.35);
    transition: .4s ease;
}

.hinchi-order-pill-premium:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 20px 50px rgba(214,40,40,.45);
}

/* BIKE */

.hinchi-order-bike-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hinchi-order-bike-wrap img{

    width:42px;

    animation:
    hinchiBikeMove 1.8s infinite ease-in-out;
}

@keyframes hinchiBikeMove{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(4px);
    }

    100%{
        transform:translateX(0);
    }

}

/* TEXT */

.hinchi-order-text{

    display:flex;
    flex-direction:column;
}

.hinchi-order-text span{

    color:#fff;

    font-size:16px;

    font-weight:700;

    line-height:1.2;
}

.hinchi-order-text small{

    color:rgba(255,255,255,.85);

    font-size:12px;
}


@media (max-width:1199px){

    .hinchi-order-pill-premium{
        right:20px;
        bottom:20px;

        min-width:190px;

        padding:5px 10px;
        gap:10px;
    }

    .hinchi-order-bike-wrap{
        width:46px;
        height:46px;
    }

    .hinchi-order-bike-wrap img{
        width:38px;
    }

    .hinchi-order-text span{
        font-size:15px;
    }

    .hinchi-order-text small{
        font-size:11px;
    }

}

@media (max-width:991px){

    .hinchi-order-pill-premium{
        right:18px;
        bottom:18px;

        min-width:175px;

        padding:4px 10px;
        gap:8px;
    }

    .hinchi-order-bike-wrap{
        width:42px;
        height:42px;
    }

    .hinchi-order-bike-wrap img{
        width:34px;
    }

    .hinchi-order-text span{
        font-size:14px;
        line-height:1.1;
    }

    .hinchi-order-text small{
        font-size:10px;
    }

}

@media (max-width:767px){

    .hinchi-order-pill-premium{

        right:12px;
        bottom:12px;

        min-width:auto;

        padding:4px 8px;

        gap:6px;

        border-radius:60px;
    }

    .hinchi-order-bike-wrap{
        width:38px;
        height:38px;
    }

    .hinchi-order-bike-wrap img{
        width:28px;
    }

    .hinchi-order-text span{
        font-size:12px;
        font-weight:700;
    }

    .hinchi-order-text small{
        font-size:9px;
        line-height:1;
    }

}



/* contact main page */

/* ===================================
   CONTACT FORM
=================================== */

.contact-form{
    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

    transition:.4s ease;
}

.contact-form:hover{
    transform:translateY(-5px);

    box-shadow:
    0 30px 80px rgba(0,0,0,.12);
}

.contact-form .form-control{
    height:60px;
    width:100%;

    border:2px solid #ececec;

    background:#ffffff;

    border-radius:14px;

    padding:0 18px;

    font-size:15px;

    color:#222;

    transition:all .3s ease;

    box-shadow:
    0 3px 10px rgba(0,0,0,.03);
}

/* Textarea */

.contact-form textarea.form-control{
    height:140px;
    padding-top:18px;
    resize:none;
}

/* FOCUS */

.contact-form .form-control:focus{

    background:#fff;

    box-shadow:
    0 0 0 4px rgba(214,40,40,.12);

    border:1px solid #d62828;
}

/* PLACEHOLDER */

.contact-form .form-control::placeholder{
    color:#888;
}

/* BUTTON */



.contact-form{
    position:relative;
    overflow:hidden;
}

.contact-form::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #d62828,
        #ff6b35
    );
}

.send-msg-section .section-title h2{
    max-width:100% !important;
    width:100% !important;
    white-space:normal;
    word-break:normal !important;
    overflow-wrap:normal !important;
	line-height:1.1;
}



/* contact main page starts */

/* ipad pro starts */


@media (max-width:1199px){
	.send-msg-section {
    padding: 80px 0;
}
.contact-section {
    padding: 80px 0;
}
}


/* ipad pro ends */


/* ipad starts */

@media (max-width:991px){
.send-msg-section {
    padding: 60px 0;
}
.section-title h2 {
    font-size: 30px;
}
.send-msg-section .send-msg-body p {
    margin-bottom: 0px;
}
.send-msg-section .section-title {
    margin-bottom: 20px;
}
.contact-section {
    padding: 60px 0;
}
}


/* ipad ends */


/* mobile starts */

@media (max-width:767px){
	.send-msg-section {
    padding: 50px 0;
}
.send-msg-section .section-title h2{
	font-size: 23px;
	line-height: 1.2;
}
.contact-form {
    padding: 20px;
}
.contact-section {
    padding: 50px 0;
}
.contact-section .section-title h2 {
	font-size: 23px;
	line-height: 1.2;
}
.contact-section .section-title{
	margin-bottom: 20px;
}
.contact-detail {
    padding: 20px;
    margin-bottom: 30px;
}
.contact-detail ul li.list-item {
    padding-bottom: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}
}

/* mobile  ends */

/* contact main page ends */



@media(max-width:1199px){

    .about-photo-gallery-entry{
        grid-template-columns:repeat(3,1fr);
        gap:20px;
    }
	.gallery-page {
    position: relative;
    padding: 80px 0;
	}


}
    


@media(max-width:991px){

    .about-photo-gallery-entry{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }
	.gallery-page {
    position: relative;
    padding: 60px 0;
	}

  

}

@media(max-width:767px){

    .about-photo-gallery-entry{
        grid-template-columns:1fr;
        gap:15px;
    }
	.gallery-page {
    position: relative;
    padding: 50px 0;
	}

   

}


/* Active Menu */

/* Active Menu */

.nav-link.active{
    color:#d62828 !important;
}



/* ===================================
   SUCCESS MESSAGE
=================================== */

.hinchi-success-msg{

    display:none;

    margin-top:20px;

    padding:14px 20px;

    border-radius:12px;

    color:#b5070f;

    font-weight:600;

    border:1px solid #b7ebc6;

    font-size:16px;

    line-height:1.5;

    text-align:center;

    width:100%;
}

/* ===================================
   1199px
=================================== */

@media(max-width:1199px){

    .hinchi-success-msg{
      

        padding:14px 18px;

        font-size:15px;

        border-radius:10px;

    }

}

/* ===================================
   991px
=================================== */

@media(max-width:991px){

    .hinchi-success-msg{
        

        margin-top:18px;

        padding:13px 18px;

        font-size:15px;

        line-height:1.5;

        border-radius:10px;

    }

}

/* ===================================
   767px
=================================== */

@media(max-width:767px){

    .hinchi-success-msg{
        

        margin-top:15px;

        padding:12px 15px;

        font-size:14px;

        line-height:1.5;

        border-radius:8px;

        text-align:center;

    }

}



/*hide user to inspect start*/

body{
    user-select:none;
    -webkit-user-select:none;
}


/*hide user to inspect end*/




